[LON-CAPA-cvs] cvs: doc /build dev.frag generate_web_pages.pl
albertel
lon-capa-cvs@mail.lon-capa.org
Fri, 02 Sep 2005 18:47:55 -0000
albertel Fri Sep 2 14:47:55 2005 EDT
Added files:
/doc/build dev.frag
Modified files:
/doc/build generate_web_pages.pl
Log:
- moving developer information into seperate file
Index: doc/build/generate_web_pages.pl
diff -u doc/build/generate_web_pages.pl:1.21 doc/build/generate_web_pages.pl:1.22
--- doc/build/generate_web_pages.pl:1.21 Fri Sep 2 10:52:50 2005
+++ doc/build/generate_web_pages.pl Fri Sep 2 14:47:53 2005
@@ -33,6 +33,9 @@
['Post-installation Configuration', 'config'],
['LON-CAPA License (Gnu Public License)', 'license']
);
+my @other_pages = (
+ ['Developer Infomation', 'dev']
+ );
open SHELL, '<', "shell.html";
my $shell = join '', <SHELL>;
@@ -103,40 +106,17 @@
(version LATESTTESTINGVERSION).
</p>
TESTINGRELEASE_END
-<p>
-The <b>development release of LON-CAPA</b> is at:
-<a href="http://install.lon-capa.org/versions/loncapa-unstable.tar.gz">
-http://install.lon-capa.org/versions/loncapa-unstable.tar.gz</a>.
-</p>
-<p>
-To view the code development history of LON-CAPA, you can access a <a
-href="http://zaphod.lite.msu.edu/cgi-bin/cvsweb.cgi/">web version</a>
-of our CVS respository. Otherwise, please contact Guy Albertelli (<a
-href="mailto:albertel@msu.edu">albertel@msu.edu</a>) to request a
-CVS USERNAME.
-</p>
-<p>
-The initial CVS commands would be:
-</p>
-<blockquote>
-<table bgcolor="#aaaaaa" border="1">
-<tr><td>
-<pre>
-export CVSROOT=:pserver:USERNAME@zaphod.lite.msu.edu:/home/cvs
-cvs login
-cvs co loncapa
-</pre>
-</td></tr></table>
-</blockquote>
-<p>
-For more information on using CVS, please visit
-<a href="http://www.cvshome.org/">http://www.cvshome.org/</a>
-or read <tt>loncom/build/readme.html</tt> after downloading
-the current version of LON-CAPA as described above.
-</p>
+<hr />
POSTLUDE
+$content .= "<ul>\n";
+for (@other_pages) {
+ $content .= "<li><a href='$_->[1].html'>$_->[0]</a></li>\n";
+}
+
+$content .= "</ul>\n";
+
my $index = replaceText("Install LON-CAPA", "Install LON-CAPA",
$content);
@@ -144,7 +124,7 @@
close INDEX;
# Build the pages
-for (@pages) {
+for (@pages,@other_pages) {
my ($title, $source) = @$_;
# read in content
Index: doc/build/dev.frag
+++ doc/build/dev.frag
<p>
To view the code development history of LON-CAPA, you can access a <a
href="http://zaphod.lite.msu.edu/cgi-bin/cvsweb.cgi/">web version</a>
of our CVS respository. Otherwise, please contact Guy Albertelli (<a
href="mailto:albertel@msu.edu">albertel@msu.edu</a>) to request a
CVS USERNAME.
</p>
<p>
The initial CVS commands would be:
</p>
<blockquote>
<table bgcolor="#aaaaaa" border="1">
<tr><td>
<pre>
export CVSROOT=:pserver:USERNAME@zaphod.lite.msu.edu:/home/cvs
cvs login
cvs co loncapa
</pre>
</td></tr></table>
</blockquote>
<p>
For more information on using CVS, please visit
<a href="http://www.cvshome.org/">http://www.cvshome.org/</a>
or read <tt>loncom/build/readme.html</tt> after downloading
the current version of LON-CAPA as described above.
</p>