2022-04-27 16:59:31 +00:00
|
|
|
<?php // Preamble
|
2001-01-09 20:37:17 +00:00
|
|
|
$pageName = "Documentation";
|
2001-10-17 05:46:43 +00:00
|
|
|
$currPage = "docs"; // Name of the page, for the menu
|
2007-03-18 04:34:44 +00:00
|
|
|
require "parts/preamble.php"; // Load most of document
|
2001-01-09 19:49:31 +00:00
|
|
|
|
2010-08-19 10:57:03 +00:00
|
|
|
need ("boxes news table");
|
2007-03-09 17:16:17 +00:00
|
|
|
|
2001-11-06 09:43:55 +00:00
|
|
|
function doc_list ($title, $list, $type)
|
|
|
|
{
|
2002-04-09 20:16:29 +00:00
|
|
|
?>
|
|
|
|
<TABLE class="inside" width="100%">
|
2022-04-27 16:59:31 +00:00
|
|
|
<?php
|
2001-11-06 09:43:55 +00:00
|
|
|
tableTitle ($title, 1, featureHeadColor);
|
2002-04-09 20:16:29 +00:00
|
|
|
?>
|
|
|
|
<TD class="inside">
|
2022-04-27 16:59:31 +00:00
|
|
|
<UL><?php
|
2002-04-09 20:16:29 +00:00
|
|
|
reset ($list);
|
|
|
|
while (list (, $cdl) = each ($list)) {
|
2010-08-19 10:51:48 +00:00
|
|
|
if (is_file ('doc/old/' . $cdl . '-' . $type . '.txt')) {
|
2002-04-09 20:16:29 +00:00
|
|
|
echo '<LI>';
|
2007-03-16 00:49:05 +00:00
|
|
|
echo '<A href="doc_' . $type . '.php?program='
|
2002-04-09 20:16:29 +00:00
|
|
|
. $cdl . '">' . $cdl . '</A>';
|
|
|
|
echo '</LI>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?></UL>
|
|
|
|
</TD>
|
2022-04-27 16:59:31 +00:00
|
|
|
<?php
|
2001-11-06 09:43:55 +00:00
|
|
|
tableBoxFooter ();
|
2001-01-09 19:49:31 +00:00
|
|
|
}
|
2001-11-06 09:43:55 +00:00
|
|
|
|
|
|
|
function program_doc_list ($title, $list, $notes)
|
|
|
|
{
|
2010-08-19 10:51:48 +00:00
|
|
|
newsBoxOpen ($title);
|
2002-04-09 20:16:29 +00:00
|
|
|
?>
|
|
|
|
<TR>
|
|
|
|
<TD colSpan="2">
|
2022-04-27 16:59:31 +00:00
|
|
|
<?php
|
2010-08-19 10:57:03 +00:00
|
|
|
if (is_file ('doc/old/' . $notes . '-notes' . '.txt')) {
|
2011-12-11 18:43:16 +00:00
|
|
|
include ('doc/old/' . $notes . '-notes' . '.txt');
|
2002-04-09 20:16:29 +00:00
|
|
|
} else {
|
|
|
|
echo "<P>There are no errata for this release.";
|
2001-11-06 09:43:55 +00:00
|
|
|
}
|
2002-04-09 20:16:29 +00:00
|
|
|
?>
|
|
|
|
</TR>
|
|
|
|
<TR>
|
|
|
|
<TD class="inside" align="left" vAlign="top" width="50%">
|
2022-04-27 16:59:31 +00:00
|
|
|
<?php doc_list ("Cvar Documentation", $list, "cvars"); ?>
|
2002-04-09 20:16:29 +00:00
|
|
|
</TD>
|
|
|
|
<TD class="inside" align="left" vAlign="top" width="50%">
|
2022-04-27 16:59:31 +00:00
|
|
|
<?php doc_list ("Command Documentation", $list, "cmds"); ?>
|
2002-04-09 20:16:29 +00:00
|
|
|
</TD>
|
|
|
|
</TR>
|
2022-04-27 16:59:31 +00:00
|
|
|
<?php
|
2010-08-19 10:51:48 +00:00
|
|
|
newsBoxClose ();
|
2001-02-06 19:21:47 +00:00
|
|
|
}
|
|
|
|
?>
|
2001-11-06 09:43:55 +00:00
|
|
|
|
2022-04-27 16:59:31 +00:00
|
|
|
<?php
|
2002-04-09 20:16:29 +00:00
|
|
|
$program_list = array (
|
|
|
|
"nq-3dfx",
|
|
|
|
"nq-ggi",
|
|
|
|
"nq-glx",
|
|
|
|
"nq-mgl",
|
|
|
|
"nq-sdl",
|
|
|
|
"nq-sdl32",
|
|
|
|
"nq-sgl",
|
|
|
|
"nq-svga",
|
|
|
|
"nq-wgl",
|
|
|
|
"nq-x11",
|
|
|
|
"nq-server",
|
|
|
|
"qw-client-3dfx",
|
|
|
|
"qw-client-ggi",
|
|
|
|
"qw-client-glx",
|
|
|
|
"qw-client-mgl",
|
|
|
|
"qw-client-sdl",
|
|
|
|
"qw-client-sdl32",
|
|
|
|
"qw-client-sgl",
|
|
|
|
"qw-client-svga",
|
|
|
|
"qw-client-wgl",
|
|
|
|
"qw-client-x11",
|
|
|
|
"qw-master",
|
|
|
|
"qw-server"
|
|
|
|
);
|
|
|
|
program_doc_list ("QuakeForge 0.5", $program_list, "quakeforge");
|
|
|
|
?>
|
|
|
|
<BR>
|
2022-04-27 16:59:31 +00:00
|
|
|
<?php
|
2002-04-09 20:16:29 +00:00
|
|
|
$program_list = array (
|
|
|
|
"qf-client-3dfx",
|
|
|
|
"qf-client-ggi",
|
|
|
|
"qf-client-glx",
|
|
|
|
"qf-client-mgl",
|
|
|
|
"qf-client-sdl",
|
|
|
|
"qf-client-sgl",
|
|
|
|
"qf-client-svga",
|
|
|
|
"qf-client-wgl",
|
|
|
|
"qf-client-x11",
|
|
|
|
"qf-server"
|
|
|
|
);
|
2001-11-06 09:43:55 +00:00
|
|
|
|
2002-04-09 20:16:29 +00:00
|
|
|
program_doc_list ("QuakeForge 0.3", $program_list, "");
|
2001-01-09 19:49:31 +00:00
|
|
|
?>
|