Annotation of doc/build/generate_web_pages.pl, revision 1.40

1.1       bowersj2    1: #!/usr/bin/perl -w
                      2: 
                      3: =pod
                      4: 
                      5: =NAME
                      6: 
                      7: generate_web_pages.pl - generate the web pages for the install site
                      8: 
                      9: =SYNOPSIS
                     10: 
                     11: Yeah, it does that.
                     12: 
1.23      albertel   13: Basically, there's a few comments in shell.hemp that we replace with
1.1       bowersj2   14:     what we really want in the files. Pretty simple.
                     15: 
                     16: The point of this is to look like the main site.
                     17: 
                     18: =cut
                     19: 
                     20: # This is the list of pages to generate: Change this to
                     21: # add/subtract/etc. pages. Index is done seperately.
                     22: # Title, source
                     23: 
1.32      raeburn    24: my @pages = (
1.38      raeburn    25:               ['Fedora 9 Install', 'F9_install'],
1.35      raeburn    26:               ['Fedora 8 Install', 'F8_install'], 
1.34      raeburn    27:               ['Fedora 7 Install', 'F7_install'],
1.32      raeburn    28:               ['Fedora Core 6 Install', 'FC6_install'], 
1.30      albertel   29: 	      ['Fedora Core 5 Install', 'FC5_install'],
1.32      raeburn    30: #             ['Fedora Core 4 Install', 'FC4_install'],
1.30      albertel   31: #             ['Fedora Core 3 Install', 'FC3_install'],
                     32: #	      ['Fedora Install', 'fedora_install'],
1.14      matthew    33: #	      ['Red Hat 7.3 Install', 'rh73'],
1.39      raeburn    34:               ['CentOS Linux 5 Install','centos5_install'],
1.40    ! raeburn    35:               ['Scientific Linux 5 Install','scientific5_install'],
1.33      raeburn    36:               ['Red Hat Enterprise Linux 5 Install','RHEL5_install'],
1.17      raeburn    37:               ['Red Hat Enterprise Linux 4 Install','RHEL4_install'],
1.36      raeburn    38:               ['SuSE Linux 10.3 Install', 'suse10.3_install'],
1.33      raeburn    39:               ['SuSE Linux 10.2 Install', 'suse10.2_install'],
1.31      raeburn    40:               ['SuSE Linux 10.1 Install', 'suse10.1_install'],
1.37      raeburn    41: #              ['SuSE Linux Professional 9.3 Install', 'suse9.3_install'],
1.33      raeburn    42: #              ['SuSE Linux Professional 9.2 Install', 'suse9.2_install'],
1.31      raeburn    43:               ['SuSE Linux Enterprise Server 10 Install', 'sles10_install'],
1.26      raeburn    44:               ['SuSE Linux Enterprise Server 9 Install', 'sles9_install'],
1.21      albertel   45: #	      ['Manual Install from Tarballs', 'manual_install'],
1.1       bowersj2   46: 	      ['Upgrading from Previous LON-CAPA install', 'upgrade'],
                     47: 	      ['LON-CAPA License (Gnu Public License)', 'license']
                     48: 	      );
1.29      albertel   49: 
                     50: my @testing_pages = ( 
                     51: 		      );
1.22      albertel   52: my @other_pages = ( 
1.23      albertel   53: 		    ['Developer Information', 'dev'],
                     54: 		    ['Configuration Information', 'config'],
1.22      albertel   55: 		    );
1.1       bowersj2   56: 
                     57: open SHELL, '<', "shell.html";
                     58: my $shell = join '', <SHELL>;
                     59: $shell =~ s/\r/\n/g;
                     60: 
                     61: # Call with: The title, breadcrumb, and content
                     62: sub replaceText {
1.27      albertel   63:     my ($title, $links, $breadcrumb, $content) = @_;
1.1       bowersj2   64: 
                     65:     my $page = $shell;
                     66:     $page =~ s/\<!-- *title *--\>/$title/g;
1.27      albertel   67:     $page =~ s/\<!-- *links *--\>/$links/g;
1.1       bowersj2   68:     $page =~ s/\<!-- *breadcrumb *--\>/$breadcrumb/g;
                     69:     $page =~ s/\<!-- *content *--\>/$content/g;
                     70: 
                     71:     return $page;
                     72: }
                     73: 
                     74: # Do the index page
                     75: 
                     76: open INDEX, '>', "index.html";
1.23      albertel   77: my $content = <<PRELUDE; 
                     78: 
                     79: <p>LON-CAPA is based upon a lot of Open Source modules, so it's
                     80: important to have the right environment on your computer. This is most
                     81: easily done by installing on a dedicated machine while installing the
                     82: operating system.</p>
                     83: 
                     84: <p>The configuring of LON-CAPA is part of the install process of the
1.24      albertel   85: software. However, In case something needs to be altered, or isn't
                     86: working, here is some <a href="config.html">information on configuring
1.23      albertel   87: LON-CAPA</a>.</p>
1.1       bowersj2   88: 
1.3       bowersj2   89: <hr />
1.1       bowersj2   90: PRELUDE
                     91: 
                     92: $content .= "<ul>\n";
                     93: for (@pages) {
                     94:     $content .= "<li><a href='$_->[1].html'>$_->[0]</a></li>\n";
                     95: }
                     96: 
                     97: $content .= "</ul>\n";
                     98: 
1.30      albertel   99: my $testing_content = '';
1.29      albertel  100: if (@testing_pages) {
                    101:     $testing_content .= "<hr/><p>Installation on the following systems requires the use of a testing release of LON-CAPA.</p>\n";
                    102:     $testing_content .= "<ul>\n";
                    103:     for (@testing_pages) {
                    104: 	$testing_content .= "<li><a href='$_->[1].html'>$_->[0]</a></li>\n";
                    105:     }
                    106:     $testing_content .= "</ul>\n";
                    107: }
                    108: 
                    109: 
                    110: $content .= <<"POSTLUDE";
1.3       bowersj2  111: <hr />
                    112: <a name="download" />
                    113: <h3>Downloading LON-CAPA</h3>
                    114: 
                    115: <p>
1.10      albertel  116: <b>Current Production Release is Version LATESTVERSION.
1.3       bowersj2  117: This version was released on LATESTDATE.</b>
                    118: </p>
                    119: <p>
1.10      albertel  120: You can download the <b>most current production version of LON-CAPA</b> at
1.3       bowersj2  121: <a href="http://install.lon-capa.org/versions/loncapa-current.tar.gz">
                    122: http://install.lon-capa.org/versions/loncapa-current.tar.gz</a>
                    123: (version LATESTVERSION).
                    124: </p>
1.8       albertel  125: TESTINGRELEASE_START
                    126: <p>
1.10      albertel  127: <b>Current Testing Release is Version LATESTTESTINGVERSION.
1.9       albertel  128: This version was released on LATESTTESTINGDATE.</b>
                    129: </p>
                    130: <p>
1.8       albertel  131: You can download the <b>testing version of the upcoming LON-CAPA</b> at
                    132: <a href="http://install.lon-capa.org/versions/loncapa-testing.tar.gz">
                    133: http://install.lon-capa.org/versions/loncapa-testing.tar.gz</a>
1.9       albertel  134: (version LATESTTESTINGVERSION).
1.8       albertel  135: </p>
1.29      albertel  136: $testing_content
1.8       albertel  137: TESTINGRELEASE_END
1.3       bowersj2  138: 
1.22      albertel  139: <hr />
1.3       bowersj2  140: POSTLUDE
1.5       bowersj2  141: 
1.30      albertel  142: open(RELEASE, '<', "release.frag");
                    143: $content .= join('',<RELEASE>);
                    144: close(RELEASE);
                    145: 
1.22      albertel  146: $content .= "<ul>\n";
                    147: for (@other_pages) {
                    148:     $content .= "<li><a href='$_->[1].html'>$_->[0]</a></li>\n";
                    149: }
                    150: 
                    151: $content .= "</ul>\n";
                    152: 
1.27      albertel  153: $links='<link rel="alternate" type="application/rss+xml" title="CVS RSS" href="loncapa.rss" />';
                    154: 
                    155: my $index = replaceText("Install LON-CAPA", $links, "Install LON-CAPA",
                    156: 			$content);
1.3       bowersj2  157: 
1.1       bowersj2  158: print INDEX $index;
                    159: close INDEX;
                    160: 
                    161: # Build the pages
1.29      albertel  162: for (@pages,@other_pages,@testing_pages) {
1.1       bowersj2  163:     my ($title, $source) = @$_;
                    164: 
                    165:     # read in content
                    166:     open SOURCE, '<', $source.'.frag';
                    167:     $content = join '', <SOURCE>;
                    168:     close SOURCE;
                    169: 
1.27      albertel  170:     $content = replaceText($title, '', '<a href="/">Install LON-CAPA</a> &gt; ' . $title,
1.1       bowersj2  171: 			   $content);
                    172:     open DEST, '>', $source.'.html';
                    173:     print DEST $content;
                    174:     close DEST;
                    175: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>