File:  [LON-CAPA] / doc / build / generate_web_pages.pl
Revision 1.28: download - view: text, annotated - select for diffs
Tue Jun 6 15:13:42 2006 UTC (17 years, 11 months ago) by albertel
Branches: MAIN
CVS tags: version_2_1_99_0, HEAD
- adding release schedule to instal.loncapa.org front page

    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: #	      ['Red Hat 7.3 Install', 'rh73'],
   26: #	      ['Fedora Install', 'fedora_install'],
   27:               ['Fedora Core 3 Install', 'FC3_install'],
   28:               ['Fedora Core 4 Install', 'FC4_install'],
   29:               ['Red Hat Enterprise Linux 4 Install','RHEL4_install'],
   30:               ['SuSE Linux Professional 9.2 Install', 'suse9.2_install'],
   31:               ['SuSE Linux Professional 9.3 Install', 'suse9.3_install'],
   32:               ['SuSE Linux Enterprise Server 9 Install', 'sles9_install'],
   33: #	      ['Manual Install from Tarballs', 'manual_install'],
   34: 	      ['Upgrading from Previous LON-CAPA install', 'upgrade'],
   35: 	      ['LON-CAPA License (Gnu Public License)', 'license']
   36: 	      );
   37: my @other_pages = ( 
   38: 		    ['Developer Information', 'dev'],
   39: 		    ['Configuration Information', 'config'],
   40: 		    );
   41: 
   42: open SHELL, '<', "shell.html";
   43: my $shell = join '', <SHELL>;
   44: $shell =~ s/\r/\n/g;
   45: 
   46: # Call with: The title, breadcrumb, and content
   47: sub replaceText {
   48:     my ($title, $links, $breadcrumb, $content) = @_;
   49: 
   50:     my $page = $shell;
   51:     $page =~ s/\<!-- *title *--\>/$title/g;
   52:     $page =~ s/\<!-- *links *--\>/$links/g;
   53:     $page =~ s/\<!-- *breadcrumb *--\>/$breadcrumb/g;
   54:     $page =~ s/\<!-- *content *--\>/$content/g;
   55: 
   56:     return $page;
   57: }
   58: 
   59: # Do the index page
   60: 
   61: open INDEX, '>', "index.html";
   62: my $content = <<PRELUDE; 
   63: 
   64: <p>LON-CAPA is based upon a lot of Open Source modules, so it's
   65: important to have the right environment on your computer. This is most
   66: easily done by installing on a dedicated machine while installing the
   67: operating system.</p>
   68: 
   69: <p>The configuring of LON-CAPA is part of the install process of the
   70: software. However, In case something needs to be altered, or isn't
   71: working, here is some <a href="config.html">information on configuring
   72: LON-CAPA</a>.</p>
   73: 
   74: <hr />
   75: PRELUDE
   76: 
   77: $content .= "<ul>\n";
   78: for (@pages) {
   79:     $content .= "<li><a href='$_->[1].html'>$_->[0]</a></li>\n";
   80: }
   81: 
   82: $content .= "</ul>\n";
   83: 
   84: open(RELEASE, '<', "release.frag");
   85: $content .= join('',<RELEASE>);
   86: close(RELEASE);
   87: 
   88: $content .= <<'POSTLUDE';
   89: <hr />
   90: <a name="download" />
   91: <h3>Downloading LON-CAPA</h3>
   92: 
   93: <p>
   94: <b>Current Production Release is Version LATESTVERSION.
   95: This version was released on LATESTDATE.</b>
   96: </p>
   97: <p>
   98: You can download the <b>most current production version of LON-CAPA</b> at
   99: <a href="http://install.lon-capa.org/versions/loncapa-current.tar.gz">
  100: http://install.lon-capa.org/versions/loncapa-current.tar.gz</a>
  101: (version LATESTVERSION).
  102: </p>
  103: TESTINGRELEASE_START
  104: <p>
  105: <b>Current Testing Release is Version LATESTTESTINGVERSION.
  106: This version was released on LATESTTESTINGDATE.</b>
  107: </p>
  108: <p>
  109: You can download the <b>testing version of the upcoming LON-CAPA</b> at
  110: <a href="http://install.lon-capa.org/versions/loncapa-testing.tar.gz">
  111: http://install.lon-capa.org/versions/loncapa-testing.tar.gz</a>
  112: (version LATESTTESTINGVERSION).
  113: </p>
  114: TESTINGRELEASE_END
  115: 
  116: <hr />
  117: POSTLUDE
  118: 
  119: $content .= "<ul>\n";
  120: for (@other_pages) {
  121:     $content .= "<li><a href='$_->[1].html'>$_->[0]</a></li>\n";
  122: }
  123: 
  124: $content .= "</ul>\n";
  125: 
  126: $links='<link rel="alternate" type="application/rss+xml" title="CVS RSS" href="loncapa.rss" />';
  127: 
  128: my $index = replaceText("Install LON-CAPA", $links, "Install LON-CAPA",
  129: 			$content);
  130: 
  131: print INDEX $index;
  132: close INDEX;
  133: 
  134: # Build the pages
  135: for (@pages,@other_pages) {
  136:     my ($title, $source) = @$_;
  137: 
  138:     # read in content
  139:     open SOURCE, '<', $source.'.frag';
  140:     $content = join '', <SOURCE>;
  141:     close SOURCE;
  142: 
  143:     $content = replaceText($title, '', '<a href="/">Install LON-CAPA</a> &gt; ' . $title,
  144: 			   $content);
  145:     open DEST, '>', $source.'.html';
  146:     print DEST $content;
  147:     close DEST;
  148: }

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