website/files.php
2000-05-22 03:55:46 +00:00

67 lines
2.1 KiB
PHP

<? // Preamble
$pageName = "Files";
$focused = "none"; // Dock icon name to gets a border
require("parts/preamble.php"); // Load most of document
?>
<?
function fileDownloadLink ($baseUrl, $extensions)
{
$extension = explode (' ', $extensions);
$count = count ($extension);
for ($i = 0 ; $i < $count ; $i++) {
if ($i == 0) {
echo '[ ';
}
echo '<A href="' . $baseUrl . '.' . $extension[$i] . '">' . $extension[$i] . '</A> ';
if (($i+1) < $count) {
echo '| ';
} else {
echo ']';
}
}
}
?>
<P>QuakeForge is always in constant development. Our development version has
the latest features, but changes rapidly as bugs are fixed and features are
added. Stable versions do not change significantly once released, though we
sometimes make revisions of the stable branch to fix known bugs.
<H4>QuakeForge Stable release (0.1.1, released 27 Feb 2000)</H4>
<P>QuakeForge 0.1 is our initial offering to the public. It's not really ready
for end users at this point, but it is quite stable.
<UL>
<LI>Download source <? fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-0.1.1", "tar.gz tar.bz2 zip"); ?>
<LI>Download binaries (no binaries have been released of this version)
</UL>
<p>
<H4>CVS Snapshots (updated daily)</H4>
<UL>
<LI>Download source <? fileDownloadLink("files/qf-current-snapshot", "tar.gz tar.bz2 zip"); ?>
<LI>Win32 binaries (Borland) [ <A href="http://personal.inet.fi/cool/quake1/">homepage</A> ]
<LI>Win32 binaries (Microsoft) <? fileDownloadLink("files/quakeforge-win32-current", "zip"); ?>
</UL>
<H4>Quake Shareware files </H4>
<A href="files/quake106.zip">Quake v1.06
<?
$size = filesize("files/quake106.zip"); $size /= 1024;
echo '(' . round($size) . ' KB)</A><BR>';
?>
<A href="files/quake_sw.tar.gz">quake_sw.tar.gz without .exes or .dlls
<?
$size = filesize("files/quake_sw.tar.gz"); $size /= 1024;
echo '(' . round($size) . ' KB)</A><BR>';
?>
<H4>Miscellaneous Files</H4>
Grab Taniwha's pak util replacement <a href="http://www.taniwha.org/">here.</a>
<!--NOSEARCH-->
<?
require("parts/postamble.php"); // Finish this sucker up
?>