2001-01-09 19:49:31 +00:00
|
|
|
<? // Preamble
|
|
|
|
$pageName = "Page Name";
|
|
|
|
$focused = "none"; // Dock icon name to gets a border
|
|
|
|
require("parts/preamble.php"); // Load most of document
|
|
|
|
?>
|
|
|
|
|
|
|
|
<P>cvar documentation</P>
|
|
|
|
<UL>
|
|
|
|
<?
|
|
|
|
$cvar_doc_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"
|
|
|
|
);
|
|
|
|
while (list (, $cdl) = each ($cvar_doc_list)) {
|
|
|
|
if (is_file ('doc/' . $cdl . '-cvar.txt')) {
|
|
|
|
echo '<LI>';
|
2001-01-09 20:25:30 +00:00
|
|
|
echo '<A href="cvar.php?program=' . $cdl . '">' . $cdl . '</A>';
|
2001-01-09 19:49:31 +00:00
|
|
|
echo '</LI>';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</UL>
|
|
|
|
|
|
|
|
<?
|
|
|
|
require("parts/postamble.php"); // Finish this sucker up
|
|
|
|
?>
|