diff --git a/www/images/hdr-bottom-left.gif b/www/images/hdr-bottom-left.gif new file mode 100644 index 0000000..631fe5b Binary files /dev/null and b/www/images/hdr-bottom-left.gif differ diff --git a/www/images/hdr-bottom-right.gif b/www/images/hdr-bottom-right.gif new file mode 100644 index 0000000..38206e7 Binary files /dev/null and b/www/images/hdr-bottom-right.gif differ diff --git a/www/images/hdr-top-left.gif b/www/images/hdr-top-left.gif new file mode 100644 index 0000000..07369fd Binary files /dev/null and b/www/images/hdr-top-left.gif differ diff --git a/www/images/hdr-top-right.gif b/www/images/hdr-top-right.gif new file mode 100644 index 0000000..2513c51 Binary files /dev/null and b/www/images/hdr-top-right.gif differ diff --git a/www/phplib/globals.php b/www/phplib/globals.php index 7d647dc..fa4d293 100644 --- a/www/phplib/globals.php +++ b/www/phplib/globals.php @@ -1,6 +1,6 @@ diff --git a/www/phplib/html.php b/www/phplib/html.php index 25eae13..38cd535 100644 --- a/www/phplib/html.php +++ b/www/phplib/html.php @@ -1,6 +1,6 @@ " ."" - .""); $add_html_cols = 0; // Add to html_cols after display if colspan is used. @@ -315,7 +315,7 @@ html_start_table($headings, // I - Array of heading strings $html_cols += $add_html_cols; print("" - ."\n"); } @@ -330,10 +330,10 @@ html_end_table() global $html_cols; print("" - ."" ." " - ."\n" ."

\n"); } diff --git a/www/software.php b/www/software.php index 71ebe0a..c88f8f4 100644 --- a/www/software.php +++ b/www/software.php @@ -1,6 +1,6 @@ Download"); - -html_start_table(array("Version", "Filename", "Size", "MD5 Sum")); -$curversion = ""; reset($files); if ($argc >= 1) @@ -69,6 +65,25 @@ if ($argc >= 1) else $firstversion = current($files); +html_start_links(1); +html_link("CVS", "#CVS"); + +$curversion = ""; +while (list($file, $version) = each($files)) + if ($version != $curversion) + { + $curversion = $version; + html_link("v$version", "$PHP_SELF?$version"); + } + +html_end_links(); + +print("

Download

"); + +html_start_table(array("Version", "Filename", "Size", "MD5 Sum")); + +reset($files); +$curversion = ""; while (list($file, $version) = each($files)) { html_start_row(); @@ -111,9 +126,22 @@ while (list($file, $version) = each($files)) html_end_table(); +print("

CVS Access

\n" + ."

The $PROJECT_NAME software is available via anonymous CVS " + ."using the following CVS root:

\n" + ."
\n"
+     ."    :pserver:anonymous@cvs.easysw.com:/home/anoncvs\n"
+     ."
\n" + ."

The module name is $PROJECT_MODULE. The following " + ."command can be used to checkout the $PROJECT_NAME source from " + ."CVS:

\n" + ."
\n"
+     ."    cvs -d:pserver:anonymous@cvs.easysw.com:/home/anoncvs get $PROJECT_MODULE\n"
+     ."
\n"); + html_footer(); // -// End of "$Id: software.php,v 1.3 2004/05/19 14:02:38 mike Exp $". +// End of "$Id: software.php,v 1.4 2004/05/19 22:45:23 mike Exp $". // ?>