[LON-CAPA-cvs] cvs: doc /build generate_web_pages.pl

raeburn raeburn@source.lon-capa.org
Wed, 01 Jun 2011 06:26:45 -0000


raeburn		Wed Jun  1 06:26:45 2011 EDT

  Modified files:              
    /doc/build	generate_web_pages.pl 
  Log:
  - Links to ancillary pages.
  
  
Index: doc/build/generate_web_pages.pl
diff -u doc/build/generate_web_pages.pl:1.46 doc/build/generate_web_pages.pl:1.47
--- doc/build/generate_web_pages.pl:1.46	Wed Jun  1 06:19:57 2011
+++ doc/build/generate_web_pages.pl	Wed Jun  1 06:26:45 2011
@@ -90,25 +90,32 @@
 LON-CAPA</a>.</p>
 
 <hr />
+<h3>Supported Linux Distros</h3>
 PRELUDE
 
 $content .= '<p>LON-CAPA is supported on a variety of Linux distributions.</p>'."\n".
              '<p>In the list below these are divided into distros with a long
 life cycle, i.e., those for which a particular version is supported by the distributor for 5 years or more, and those with a short life cycle, i.e., those for which a particular versions is supported for up to 18 months.</p>'.     
             '<div style="float: left;">'.
-            '<b>'Long life cycle</b><br />';
+            '<b>'Long life cycle</b><br />'.
             '<ul>'."\n";
 for (@longlifecycle) {
     $content .= "<li><a href='$_->[1].html'>$_->[0]</a></li>\n";
 }
 $content .= '</ul></div>'.\n".
             '<div style="float: left;">'.
-            '<b>Short life cycle</b><br />';
+            '<b>Short life cycle</b><br />'.
             '<ul>'."\n";
 for (@shortlifecycle) {
     $content .= "<li><a href='$_->[1].html'>$_->[0]</a></li>\n";
 }
-$content .= '</ul></div><br clear="all" />'.\n";
+$content .= '</ul></div><br clear="all" />'.\n".
+            '<b>Additional information</b><ul>'."\n";
+for (@ancillary) {
+    $content .= "<li><a href='$_->[1].html'>$_->[0]</a></li>\n";
+}
+$content .= '</ul><br />';
+
 
 my $testing_content = '';
 if (@testing_pages) {