--- doc/build/generate_web_pages.pl 2006/06/06 15:13:42 1.28 +++ doc/build/generate_web_pages.pl 2006/07/12 20:00:09 1.29 @@ -34,6 +34,10 @@ my @pages = ( ['Upgrading from Previous LON-CAPA install', 'upgrade'], ['LON-CAPA License (Gnu Public License)', 'license'] ); + +my @testing_pages = ( + ['Fedora Core 5 Install', 'FC5_install'], + ); my @other_pages = ( ['Developer Information', 'dev'], ['Configuration Information', 'config'], @@ -81,11 +85,22 @@ for (@pages) { $content .= "\n"; +my $testing_content; +if (@testing_pages) { + $testing_content .= "

Installation on the following systems requires the use of a testing release of LON-CAPA.

\n"; + $testing_content .= "\n"; +} + + open(RELEASE, '<', "release.frag"); $content .= join('',); close(RELEASE); -$content .= <<'POSTLUDE'; +$content .= <<"POSTLUDE";

Downloading LON-CAPA

@@ -111,6 +126,7 @@ You can download the testing version http://install.lon-capa.org/versions/loncapa-testing.tar.gz
(version LATESTTESTINGVERSION).

+$testing_content TESTINGRELEASE_END
@@ -132,7 +148,7 @@ print INDEX $index; close INDEX; # Build the pages -for (@pages,@other_pages) { +for (@pages,@other_pages,@testing_pages) { my ($title, $source) = @$_; # read in content