File:  [LON-CAPA] / doc / build / generate_web_pages.pl
Revision 1.40: download - view: text, annotated - select for diffs
Sun Dec 27 18:15:13 2009 UTC (14 years, 4 months ago) by raeburn
Branches: MAIN
CVS tags: version_2_9_99_0, bz6209-base, bz6209, HEAD
- Instructions for LON-CAPA installation on Scientific Linux 5.

    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: 
   13: Basically, there's a few comments in shell.hemp that we replace with
   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: 
   24: my @pages = (
   25:               ['Fedora 9 Install', 'F9_install'],
   26:               ['Fedora 8 Install', 'F8_install'], 
   27:               ['Fedora 7 Install', 'F7_install'],
   28:               ['Fedora Core 6 Install', 'FC6_install'], 
   29: 	      ['Fedora Core 5 Install', 'FC5_install'],
   30: #             ['Fedora Core 4 Install', 'FC4_install'],
   31: #             ['Fedora Core 3 Install', 'FC3_install'],
   32: #	      ['Fedora Install', 'fedora_install'],
   33: #	      ['Red Hat 7.3 Install', 'rh73'],
   34:               ['CentOS Linux 5 Install','centos5_install'],
   35:               ['Scientific Linux 5 Install','scientific5_install'],
   36:               ['Red Hat Enterprise Linux 5 Install','RHEL5_install'],
   37:               ['Red Hat Enterprise Linux 4 Install','RHEL4_install'],
   38:               ['SuSE Linux 10.3 Install', 'suse10.3_install'],
   39:               ['SuSE Linux 10.2 Install', 'suse10.2_install'],
   40:               ['SuSE Linux 10.1 Install', 'suse10.1_install'],
   41: #              ['SuSE Linux Professional 9.3 Install', 'suse9.3_install'],
   42: #              ['SuSE Linux Professional 9.2 Install', 'suse9.2_install'],
   43:               ['SuSE Linux Enterprise Server 10 Install', 'sles10_install'],
   44:               ['SuSE Linux Enterprise Server 9 Install', 'sles9_install'],
   45: #	      ['Manual Install from Tarballs', 'manual_install'],
   46: 	      ['Upgrading from Previous LON-CAPA install', 'upgrade'],
   47: 	      ['LON-CAPA License (Gnu Public License)', 'license']
   48: 	      );
   49: 
   50: my @testing_pages = ( 
   51: 		      );
   52: my @other_pages = ( 
   53: 		    ['Developer Information', 'dev'],
   54: 		    ['Configuration Information', 'config'],
   55: 		    );
   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 {
   63:     my ($title, $links, $breadcrumb, $content) = @_;
   64: 
   65:     my $page = $shell;
   66:     $page =~ s/\<!-- *title *--\>/$title/g;
   67:     $page =~ s/\<!-- *links *--\>/$links/g;
   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";
   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
   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
   87: LON-CAPA</a>.</p>
   88: 
   89: <hr />
   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: 
   99: my $testing_content = '';
  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";
  111: <hr />
  112: <a name="download" />
  113: <h3>Downloading LON-CAPA</h3>
  114: 
  115: <p>
  116: <b>Current Production Release is Version LATESTVERSION.
  117: This version was released on LATESTDATE.</b>
  118: </p>
  119: <p>
  120: You can download the <b>most current production version of LON-CAPA</b> at
  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>
  125: TESTINGRELEASE_START
  126: <p>
  127: <b>Current Testing Release is Version LATESTTESTINGVERSION.
  128: This version was released on LATESTTESTINGDATE.</b>
  129: </p>
  130: <p>
  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>
  134: (version LATESTTESTINGVERSION).
  135: </p>
  136: $testing_content
  137: TESTINGRELEASE_END
  138: 
  139: <hr />
  140: POSTLUDE
  141: 
  142: open(RELEASE, '<', "release.frag");
  143: $content .= join('',<RELEASE>);
  144: close(RELEASE);
  145: 
  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: 
  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);
  157: 
  158: print INDEX $index;
  159: close INDEX;
  160: 
  161: # Build the pages
  162: for (@pages,@other_pages,@testing_pages) {
  163:     my ($title, $source) = @$_;
  164: 
  165:     # read in content
  166:     open SOURCE, '<', $source.'.frag';
  167:     $content = join '', <SOURCE>;
  168:     close SOURCE;
  169: 
  170:     $content = replaceText($title, '', '<a href="/">Install LON-CAPA</a> &gt; ' . $title,
  171: 			   $content);
  172:     open DEST, '>', $source.'.html';
  173:     print DEST $content;
  174:     close DEST;
  175: }

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