make the GPG signatures easier to get

This commit is contained in:
Bill Currie 2002-10-10 05:12:57 +00:00
parent c66791587c
commit 7f0ab85398

View file

@ -24,6 +24,25 @@
}
}
function fileDownloadLinkGPG ($baseUrl, $extensions)
{
$extension = explode (' ', $extensions);
$count = count ($extension);
echo '<br>PGP Signatures (to verify archive authenticity) ';
for ($i = 0 ; $i < $count ; $i++) {
if ($i == 0) {
echo '[ ';
}
echo '<A href="' . $baseUrl . '.' . $extension[$i] . '.asc">' . $extension[$i] . '</A> ';
if (($i+1) < $count) {
echo '| ';
} else {
echo ']';
}
}
}
?>
<P>QuakeForge and <A href="#quake2">Quake2Forge</A> are always in constant
@ -75,11 +94,13 @@ very few people on Windows would be able to play. <STRONG>:)</STRONG>
<LI>Source code
<?
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-0.5.2", "tar.bz2 tar.gz zip");
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-0.5.2", "tar.bz2 tar.gz zip");
?>
</LI>
<LI>Win32 binaries (Made with <A href="http://www.mingw.org/">MinGW</A> (GCC) in Linux)
<?
fileDownloadLink("http://download.sourceforge.net/quake/quakeforge-0.5.2-win32", "zip");
fileDownloadLinkGPG("http://download.sourceforge.net/quake/quakeforge-0.5.2-win32", "zip");
?>
</LI>
<LI><A href="http://www.debian.org/">Debian GNU/Linux</A> packages for the
@ -92,9 +113,10 @@ very few people on Windows would be able to play. <STRONG>:)</STRONG>
screw up future upgrades. This will be fixed in 0.5.3. If you want menus,
you will have to download <TT>menu.dat</TT>
<?
fileDownloadLink("files/menu.dat", "gz gz.asc");
?><BR>
This goes into your <TT>id1</TT> directory. However, this will override any
fileDownloadLink("files/menu.dat", "gz");
fileDownloadLinkGPG("files/menu.dat", "gz");
?>
<BR>This goes into your <TT>id1</TT> directory. However, this will override any
<TT>menu.dat</TT> we supply in the future which will possibly cause
problems.
</LI>