website/documentation.php

35 lines
738 B
PHP
Raw Normal View History

<? // Preamble
2001-01-09 20:37:17 +00:00
$pageName = "Documentation";
$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>';
echo '</LI>';
}
}
?>
</UL>
<?
require("parts/postamble.php"); // Finish this sucker up
?>