web site updates.

This commit is contained in:
Jeff Teunissen 2002-02-18 07:25:03 +00:00
parent 6ba3277ef4
commit 89cab481fd
2 changed files with 14 additions and 16 deletions

View file

@ -50,7 +50,7 @@
function develMenu ()
{
menuSectionHeader ("Developers", 'white', menuHeadColor, menuBgColor);
menuItemLink ("cvs", "http://cvs.quakeforge.net/cgi-bin/viewcvs.cgi/quake", "Browse CVS");
menuItemLink ("cvs", "/cgi-bin/viewcvs.cgi/", "Browse CVS");
menuItemLink ("devtools", "/devtools.php", "Developer Tools");
menuItemLink ("plans", "/plans.php", "Developer Plans");
menuItemLink ("progress", "/progress.php", "Progress");

View file

@ -6,20 +6,18 @@
?>
<!--SEARCHME-->
<P>The State of the Code address is a not-frequently-enough updated article
written by <a href="mailto:knghtbrd@debian.org">Knghtbrd</a> primarily for
QuakeForge developers and other people who consider themselves to be knee-deep
in the code, whether they happen to be writing it or just testing it. What
you won't find here is a lot of the fluff news that tells the casual onlooker
that the project is actually doing stuff without really telling you what the
state of things are.
written by one of the QuakeForge developers, primarily for other QuakeForge
developers and other people who consider themselves to be knee-deep in the
code, whether they happen to be writing it or just testing it. What you won't
find here is a lot of the fluff news that tells the casual onlooker that the
project is actually doing stuff without really telling you what the state of
things are.
<P>No attempt will be made to soften technical issues so anyone can understand
them. If you want to really know what's going on, you probably don't want
details left out because they might not make a whole lot of sense to a
non-coder. Feedback is always welcome. So are corrections if they're
necessary - contrary to popular (with him) belief, Knghtbrd has in fact been
known to be wrong sometimes. He isn't afraid to admit it either (most of the
time..)
necessary.
<? // Display latest update
function sotcShowLatest ($year) {
$i = 0;
@ -67,28 +65,28 @@ time..)
}
closedir ($dirHandle);
rsort ($sotcList);
if (count($sotcList) > 0) {
if (count ($sotcList) > 0) {
tableBoxHeader('black', tableHeadColor);
tableTitle('SotC Archives for ' . $year, 3, tableHeadColor);
for ( $i = 0; $i < count($sotcList) ; $i++) {
for ($i = 0; $i < count ($sotcList); $i++) {
$file = fopen ($year . '/' . $sotcList[$i], 'r');
$line = fgets ($file, 4096);
fclose($file);
$line = ereg_replace('<!--', '', ereg_replace('-->', '', $line));
echo '<TR><TD>' . $line . '</TD></TR>';
}
tableBoxFooter();
tableBoxFooter ();
}
}
}
if (!$year) {
$year = date('Y', time());
$year = date('Y', time ());
}
sotcShowLatest ($year);
// echo '<P>';
// sotcListFiles($year);
echo '<P>';
sotcListFiles ($year);
?>
<!--NOSEARCH-->
<?