website/credits.php

91 lines
3.3 KiB
PHP

<html>
<head>
<title>QuakeForge: An Open Source Quake Development Project</title>
<meta http-equiv="Content-Type" content="text/html; CHARSET=iso-8859-1">
<meta name="description" content="The QuakeForge Project">
<meta name="Author" content="members of The QuakeForge Project">
<style>
<!--
A:link {text-decoration: none}
A:visited {text-decoration: none}
A:active {text-decoration: none;}
A:hover {text-decoration: underline}
-->
</style>
</head>
<body text="#ffffff" bgcolor="#000000" link="#SkyBlue" vlink="#0000ff" alink="LightSeaGreen">
<table BORDER="0" COLS="0" WIDTH="95%" align="center">
<tr>
<td WIDTH="100%" align=center>
<a href="contest.php"><img src="images/qfcontest.gif" border="0" align="absmiddle"></a><img src="images/qfproject2small.png" border="0" align="absmiddle">
<br><br>
</td>
</tr>
<tr>
<td WIDTH="100%" align=center><hr>
[&nbsp;<a href="index.php">about</a>&nbsp;]
[&nbsp;<a href="news.php">news</a>&nbsp;]
[&nbsp;<a href="progress.php">progress</a>&nbsp;]
[&nbsp;<a href="irc.php">irc</a>&nbsp;]
[&nbsp;<a href="devfiles.php">downloads</a>&nbsp;]
[&nbsp;<a href="howto.php">howto</a>&nbsp;]
[&nbsp;<a href="http://sourceforge.net/mail/?group_id=882">mailing lists</a>&nbsp;]
[&nbsp;<a href="links.php">links</a>&nbsp;]
[&nbsp;<a href="develop.php">developers</a>&nbsp;]
[&nbsp;<a href="gallery.php">Logo Gallery</a>&nbsp;]
[&nbsp;<a href="mailto:palisade@quakeforge.net">comments</a>&nbsp;]
[&nbsp;Credits&nbsp;]
</td>
</tr>
<tr>
<td WIDTH="100%" align="left"><hr>
<?
$fr = fopen("files/CREDITS", "r");
while($line = fgets($fr, 2048))
{
if(preg_match("/\</", $line))
{
$words = preg_split("/\</", $line);
$words[1] = preg_replace("/>/", "", $words[1]);
print "<a href=\"mailto:$words[1]\">$words[0]</a><br>";
}
else
{
$line = preg_replace("/http:\/\/(.*)/", "<a href=\"http://\\1\">http://\\1</a>", $line);
print "$line<br>";
}
}
fclose($fr);
?>
</td>
</tr>
<tr>
<td align="center">
<hr>
<a href="http://www.sourceforge.net"><img src="images/sflogo.png" border=0 alt="SourceForge"></a>
<a href="http://www.libranet.com/petition.html"><img src="images/petition_button.jpg" border=0 alt="Sign The Linux Driver Petition"></a>
<a href="http://www.planetquake.com/aftershock/"><img src="images/aftershock_logo.jpg" border=0 alt="Aftershock"></a>
<br>
</td>
</tr>
<tr>
<td align="center">
<br>
<font size="-1">
<br>Website Copyright (C) 1999,2000 contributors of the QuakeForge Project.
<br><a href="copyright.php">View Additional Copyright and Trademark Acknowledgements</a>
</font>
<br>
</td>
</tr>
</table>
</body>
</html>