mirror of
https://git.code.sf.net/p/quake/website
synced 2025-02-17 17:31:39 +00:00
Buh bye old site.... off to the Attic
This commit is contained in:
parent
c3eff262e2
commit
36d8f40d52
9 changed files with 35 additions and 973 deletions
84
contest.php
84
contest.php
|
@ -1,84 +0,0 @@
|
|||
<?PHP
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "Logo Contest";
|
||||
require("parts/library.php"); // Load function library
|
||||
include("parts/head.php"); // Load the HEAD and open BODY
|
||||
include("parts/topstrip.php"); // Display top strip
|
||||
include("parts/titletable.php"); // Display main title w/ logos
|
||||
?>
|
||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||
<TR valign="top">
|
||||
<?php
|
||||
include("parts/menu.php"); // Import left-side menus
|
||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||
?>
|
||||
<TD width="100%">
|
||||
<?php
|
||||
$focused = "none"; // name of focused icon
|
||||
include( "parts/topmain.php" ); // Display content top table
|
||||
?>
|
||||
<P>
|
||||
Please check out the <A href="contest_rules.php">Contest Rules</A> before submitting a logo.
|
||||
<P>
|
||||
<B>[07 Mar 2000] Update:</B> The contest is closed, and judging is happening on the QuakeForge developers' private mailing list. Expect the results soon.
|
||||
<P>
|
||||
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
|
||||
<TR vAlign=top>
|
||||
<TD colSpan="2">
|
||||
<?php
|
||||
function Contestant( $name, $email, $imgUrl, $score )
|
||||
{
|
||||
echo '<TR><TD><DL><DT>From <A href="mailto:' . $email . '">' . $name . '</A><BR>' .
|
||||
'Score: ' . $score . '</DT>' .
|
||||
' <DD><P><IMG src="' . $imgUrl . '" alt="" border="0"></DD>' .
|
||||
'</DL></TD></TR>';
|
||||
}
|
||||
|
||||
tableBoxHeader( 'black', $tableHeadColor );
|
||||
tableTitle( 'Contestants', 1, $tableHeadColor );
|
||||
Contestant( 'Mathieu Helie', 'matt@solarweb.hypermart.net', 'images/quakeforge12.png', 'To Be Announced');
|
||||
Contestant( 'Nick Rusnov', 'nick@intus.net', 'images/qforgec1.png', 'To Be Announced');
|
||||
Contestant( 'Nick Rusnov', 'nick@intus.net', 'images/qforgec2.png', 'To Be Announced');
|
||||
Contestant( 'Fabian Emmes', 'fab@orlen.de', 'images/quakeforge-logo2.png', 'To Be Announced');
|
||||
Contestant( 'Matthew Keller', 'kellermg@potsdam.edu', 'images/hammer1.png', 'To Be Announced');
|
||||
Contestant( 'Christian Haselbach', 'kritanus@kawo1.rwth-aachen.de', 'images/qfpch3.png', 'To Be Announced');
|
||||
Contestant( 'Eric Sutton', 'suttoneh@mail.norwich.net', 'images/blklarge.png', 'To Be Announced');
|
||||
Contestant( 'Chris Lambe', 'lambeco99@maine.rr.com', 'images/qforgeb.png', 'To Be Announced');
|
||||
Contestant( 'Matthew D. Kerr', 'synic@home.com', 'images/synic.png', 'To Be Announced');
|
||||
Contestant( 'Matthew Caldwell', 'matt@burn.demon.co.uk', 'images/blackbg.png', 'To Be Announced');
|
||||
Contestant( 'Raul Silva', 'raul@onshore.com', 'images/qfcomp2.png', 'To Be Announced');
|
||||
Contestant( 'Peter Coyne', 'nitrane@mailandnews.com', 'images/quakeforge2.png', 'To Be Announced');
|
||||
Contestant( 'Mandy Warren', 'seagypsy@softhome.com', 'images/qfmandy.png', 'To Be Announced');
|
||||
Contestant( 'Christopher R. Wedman', 'christopher.wedman@ualberta.ca', 'images/wedman2.png', 'To Be Announced');
|
||||
Contestant( 'Kristian Yrjola', 'kriy@telia.com', 'images/quakef.png', 'To Be Announced');
|
||||
Contestant( 'Kristian Yrjola', 'kriy@telia.com', 'images/quakef4.png', 'To Be Announced');
|
||||
Contestant( 'Artur Tsuguiyoshi Hara', 'hara@mps.com.br', 'images/logo6b.png', 'To Be Announced');
|
||||
Contestant( 'Bertalan Moravanszky', 'amoravanszky@dplanet.ch', 'images/logo.png', 'To Be Announced');
|
||||
Contestant( 'Nancy Ayumi Hara', 'nancyhara@hotmail.com', 'images/quake1.png', 'To Be Announced');
|
||||
Contestant( 'Nancy Ayumi Hara', 'nancyhara@hotmail.com', 'images/quake2.png', 'To Be Announced');
|
||||
Contestant( 'Sam Keel', 'shark@iinet.net.au', 'images/forceblack1.png', 'To Be Announced');
|
||||
// Contestant( 'Jonathan A. Chandrose', '', 'images/jac_banner.png', 'To Be Announced');
|
||||
Contestant( 'Chris Venter', 'gorb@mailroom.com', 'images/qf-black.png', 'To Be Announced');
|
||||
Contestant( 'Nolan Irving', 'nirving@umr.edu', 'images/ni_qfblack1.png', 'To Be Announced');
|
||||
Contestant( 'Tom Sobczyk', 'kyzcbos@idcnet.com', 'images/quakefb.png', 'To Be Announced');
|
||||
Contestant( 'Erik Lehtonen', 'transiit@ix.netcom.com', 'images/qferik.png', 'To Be Announced');
|
||||
// Contestant( '', '', '', 'To Be Announced');
|
||||
tableBoxFooter();
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<BR>
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
?>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN="4">
|
||||
<?php
|
||||
include("parts/copyright.php");
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
|
@ -1,81 +0,0 @@
|
|||
<?PHP
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "Contest Rules";
|
||||
require("parts/library.php"); // Load function library
|
||||
include("parts/head.php"); // Load the HEAD and open BODY
|
||||
include("parts/topstrip.php"); // Display top strip
|
||||
include("parts/titletable.php"); // Display main title w/ logos
|
||||
?>
|
||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||
<TR valign="top">
|
||||
<?php
|
||||
include("parts/menu.php"); // Import left-side menus
|
||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||
?>
|
||||
<TD width="100%">
|
||||
<?php
|
||||
$focused = "none"; // name of focused icon
|
||||
include( "parts/topmain.php" ); // Display content top table
|
||||
?>
|
||||
<P>
|
||||
The QuakeForge project leader, Nelson Rush, contacted lead id Software programmer, John Carmack, and asked if QuakeForge had permission to use the Quake® logo. John wrote back saying that id Software's CEO had said that we are not allowed to use the logo for anything related to our project.
|
||||
<P>
|
||||
As a result, QuakeForge needs a new logo. The new logo will be used on the website, t-shirts, bumper stickers, advertisements, etc. Contest ends on Feb. 29, 2000.
|
||||
<P>
|
||||
The new logo must fit the following specifications:
|
||||
<OL>
|
||||
<LI>It must be original. You are not allowed to use the original Quake 1 logo or any logos trademark id Software as part of the image, not even if it is partially covered or skewed.</LI>
|
||||
<LI>The logo must have a transparent background (preferred) or you must provide two images, one with a black background and one with a white background.</LI>
|
||||
<LI>The logo may not be profane, you cannot include any curses or defamatory remarks, nor may pornography be used in the image, nor may any references or resemblences to real people be used.</LI>
|
||||
<LI>The image must fit into size sets; 200x200, 100x100, and larger resolutions may be needed for T-shirts. Anti-aliasing might come in handy here.</LI>
|
||||
<LI>Keep it simple. We need something that'll show up on a t-shirt nice and last through several washes, and something that is low bandwidth for modem users to download from the website. ie. Don't raytrace a Quake soldier and put a burning sun behind him with starships shooting photon torpedos in perfect detail.</LI>
|
||||
<LI>Submissions must be in before the Feb. 29, 2000 deadline, late submissions will be disqualified.</LI>
|
||||
<LI>A voting booth will appear on the website after the deadline and voting will begin on all qualified submissions. A gallery will be set up for viewing purposes. The core developers will act as an electoral college and make the final decision based off the polls and their own opinions, ain't democracy in the new millenium grand?</LI>
|
||||
<LI>The author of the logo agrees that by submitting the logo they give all rights to the public to copy, modify, and redistribute freely.</LI>
|
||||
</OL>
|
||||
<P>
|
||||
The winner of the contest will recieve a QuakeForge t-shirt with their logo on it! The same one that the core developers will be wearing 24/7 as they hack away on QuakeForge, with the occasional washing. The logo will also be used on T-shirts to be sold by Copyleft so that people outside of the core aren't left out.
|
||||
<P>
|
||||
Please send submissions via email to: <a href="mailto:palisade@quakeforge.net?subject=QuakeForge Logo Contest">Nelson Rush</a> with your full name, a brief description of the logo, the attached logo (PNG format only please) and your home mailing address if you wish to recieve the prize.
|
||||
<DL>
|
||||
<P>
|
||||
<DT>Disclaimer:</DT>
|
||||
<DD>NEITHER NELSON RUSH NOR ANY OTHER CONTRIBUTOR TO THE QUAKEFORGE PROJECT WILL BE HELD RESPONSIBLE FOR
|
||||
ANY PRIZE(S) LOST IN THE MAIL, DAMAGES TO ANY PRIZE(S), RESULTS OF THE CONTEST, THE PRIZE(S) IS/ARE
|
||||
PROVIDED WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR
|
||||
A PARTICULAR PURPOSE. THE PRIZE(S) IS/ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
|
||||
EXPRESSED OR IMPLIED. THE ENTIRE RISK AS TO THE QUALITY AND SERVICEABILITY OF THE PRIZE(S) IS WITH
|
||||
YOU.
|
||||
<P>
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL QUAKEFORGE, NELSON RUSH,
|
||||
OR CONTRIBUTORS TO THE QUAKEFORGE PROJECT BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
|
||||
INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE RECIEVING OF, USE, OR INABILITY TO USE THE
|
||||
PRIZE(S) ISSUED. EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
<P>
|
||||
PRIZE(S) ARE NON-REFUNDABLE, FOR INDIVIDUAL USE ONLY AND NOT FOR RESALE. BY SUBMITTING, THE AUTHOR AGREES
|
||||
THAT IF HE/SHE WINS THEIR WORK WILL BE PLACED IN THE PUBLIC DOMAIN TO BE COPIED, MODIFIED, AND
|
||||
REDISTRIBUTED FREELY. ALLOW SIX TO EIGHT WEEKS FOR SHIPPING OF PRIZE(S) A WEEK AFTER ANNOUNCEMENT OF THE
|
||||
WINNER. BY SUBMITTING YOUR WORK YOU AGREE TO BE BOUND BY THESE TERMS.
|
||||
</DD>
|
||||
<P>
|
||||
<DT>Privacy statement:</DT>
|
||||
<DD>Information recieved from participants will be used only for contest and shipping purposes and will be kept
|
||||
private. The exception to this is name and email address, which will be displayed publically in the gallery.
|
||||
If you do not wish your email address to be revealed, please state so when you submit.
|
||||
</DD>
|
||||
</DL>
|
||||
<P>
|
||||
<BR>
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
?>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN="4">
|
||||
<?php
|
||||
include("parts/copyright.php");
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
105
copyright.php
105
copyright.php
|
@ -1,75 +1,40 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>QuakeForge: Copyright Acknowledgements</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 type="text/css">
|
||||
<!--
|
||||
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>
|
||||
<img src="images/qfcontest.gif" border="0" align="absmiddle"><img src="images/qfproject2small.png" border="0" align="absmiddle">
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td WIDTH="100%" align=center><hr>
|
||||
[ <a href="index.php">about</a> ]
|
||||
[ <a href="news.php">news</a> ]
|
||||
[ <a href="progress.php">progress</a> ]
|
||||
[ <a href="irc.php">irc</a> ]
|
||||
[ <a href="devfiles.php">downloads</a> ]
|
||||
[ <a href="howto.php">howto</a> ]
|
||||
[ <a href="http://sourceforge.net/mail/?group_id=882">mailing lists</a> ]
|
||||
[ <a href="links.php">links</a> ]
|
||||
[ <a href="develop.php">developers</a> ]
|
||||
[ <a href="gallery.php">Logo Gallery</a> ]
|
||||
[ <a href="mailto:palisade@quakeforge.net">comments</a> ]
|
||||
[ <a href="credits.php">Credits</a> ]
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td WIDTH="100%" align="center">
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<hr>
|
||||
<td align="center">
|
||||
<b><font size="+1"><a name="copyrights">Copyright Acknowledgements...</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<font size="+1">
|
||||
<br>Website Copyright (C) 1999,2000 contributors of the QuakeForge Project.
|
||||
<?PHP
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "Copyright Info";
|
||||
require("parts/library.php"); // Load function library
|
||||
include("parts/head.php"); // Load the HEAD and open BODY
|
||||
include("parts/topstrip.php"); // Display top strip
|
||||
include("parts/titletable.php"); // Display main title w/ logos
|
||||
?>
|
||||
<TABLE width="100%" cellspacing=0 cellpadding=0 border=0>
|
||||
<TR valign="top">
|
||||
<?php
|
||||
include("parts/menu.php"); // Import left-side menus
|
||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||
?>
|
||||
<TD width="100%">
|
||||
<?php
|
||||
$focused = "none"; // name of focused icon
|
||||
include( "parts/topmain.php" ); // Display content top table
|
||||
?>
|
||||
<P>
|
||||
Website Copyright (C) 1999,2000 contributors of the QuakeForge Project.
|
||||
<br>Quake(R) and QuakeWorld(R) are registered trademarks of id Software.
|
||||
<br>
|
||||
<br>Quake is Copyright (C) 1996-1997 Id Software, Inc.
|
||||
<br>Portions of QuakeForge are Copyright (C) 1996-1997 Id Software, Inc.
|
||||
<br>Portions of QuakeForge are Copyright (C) 1999,2000 contributors of the QuakeForge project.
|
||||
</font>
|
||||
<br><br>
|
||||
<hr>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">
|
||||
<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>
|
||||
</table>
|
||||
</html>
|
||||
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
?>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN="4">
|
||||
<?php
|
||||
include("parts/copyright.php");
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
|
90
develop.php
90
develop.php
|
@ -1,90 +0,0 @@
|
|||
<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 type="text/css">
|
||||
<!--
|
||||
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>
|
||||
[ <a href="index.php">about</a> ]
|
||||
[ <a href="news.php">news</a> ]
|
||||
[ <a href="progress.php">progress</a> ]
|
||||
[ <a href="irc.php">irc</a> ]
|
||||
[ <a href="devfiles.php">downloads</a> ]
|
||||
[ <a href="howto.php">howto</a> ]
|
||||
[ <a href="http://sourceforge.net/mail/?group_id=882">mailing lists</a> ]
|
||||
[ <a href="links.php">links</a> ]
|
||||
[ developers ]
|
||||
[ <a href="gallery.php">Logo Gallery</a> ]
|
||||
[ <a href="mailto:palisade@quakeforge.net">comments</a> ]
|
||||
[ <a href="credits.php">Credits</a> ]
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td WIDTH="100%" align="left" valign="center">
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<hr>
|
||||
<td align="center">
|
||||
<b><font size="+1"><a name="news">Developer information</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
Download a copy of <a href="http://www.sourcegear.com/">CVS</a> for your respective OS.<br><br>
|
||||
Anonymous cvs access:<br><br>
|
||||
cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/quake login<br>
|
||||
cvs -z3 checkout quakeforge<br><br>
|
||||
The above will login and checkout the quakeforge module which is our main source tree for the QuakeForge engine.<br>Now change into the quakeforge directory and begin your modifications.<br>
|
||||
<br>Make sure to update often so that your tree matches our current tree so that when you supply us your diffs we will be able to apply them. Use the following to update your local copy after logging in:<br><br>
|
||||
cvs -z3 update -dP<br><br>
|
||||
To create a patch:<br><br>
|
||||
cvs diff -u > mypatch.diff<br><br>
|
||||
Then email this to the quake-devel list at: quake-devel@lists.sourceforge.net<br><br>
|
||||
<br>
|
||||
<hr>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="center">
|
||||
<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>
|
159
devfiles.php
159
devfiles.php
|
@ -1,159 +0,0 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>QuakeForge: Development Files</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; CHARSET=iso-8859-1">
|
||||
<meta name="description" content="QuakeForge Project">
|
||||
<meta name="Author" content="Chase Hargraves & Nelson Rush">
|
||||
</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/devfiles.png" border="0" align="absmiddle">
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td WIDTH="100%" align=center><hr>
|
||||
[ <a href="index.php">about</a> ]
|
||||
[ <a href="news.php">news</a> ]
|
||||
[ <a href="progress.php">progress</a> ]
|
||||
[ <a href="irc.php">irc</a> ]
|
||||
[ downloads ]
|
||||
[ <a href="howto.php">howto</a> ]
|
||||
[ <a href="http://sourceforge.net/mail/?group_id=882">mailing lists</a> ]
|
||||
[ <a href="links.php">links</a> ]
|
||||
[ <a href="develop.php">developers</a> ]
|
||||
[ <a href="gallery.php">Logo Gallery</a> ]
|
||||
[ <a href="mailto:palisade@quakeforge.net">comments</a> ]
|
||||
[ <a href="credits.php">Credits</a> ]
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<hr>
|
||||
<br><b><u>QuakeForge 0.1.1 (latest)</u></b>
|
||||
<br><a href="http://download.sourceforge.net/quake/quakeforge-0.1.1.tar.gz">quakeforge-0.1.1.tar.gz (1.3MB)</a>
|
||||
<br><a href="http://download.sourceforge.net/quake/quakeforge-0.1.1.tar.bz2">quakeforge-0.1.1.tar.bz2 (1.1MB)</a>
|
||||
<br><a href="http://download.sourceforge.net/quake/quakeforge-0.1.1.zip">quakeforge-0.1.1.zip (1.6MB)</a>
|
||||
<br><br>
|
||||
<br><b><u>QuakeForge v991221 (Initial Release)</u></b>
|
||||
<br><a href="http://www.sourceforge.net/download.php?fileid=947">q1source.zip (3MB)</a>
|
||||
<br><a href="http://www.sourceforge.net/download.php?fileid=958">q1-991221.tar.gz (2.7MB)</a>
|
||||
<br><a href="http://www.sourceforge.net/download.php?fileid=953">q1-991221.tar.bz2 (2.4MB)</a>
|
||||
|
||||
<br><br><u><b>QuakeForge CVS Snapshots (every 15 mins)</b></u>
|
||||
<br><a href="files/qf-current-snapshot.tar.gz">qf-current-snapshot.tar.gz (~1.3MB)</a>
|
||||
<br><a href="files/qf_current_snapshot.zip">qf_current_snapshot.zip (~1.6MB)</a>
|
||||
|
||||
<br><br><b><u>Quake Shareware files</u></b>
|
||||
<br><a href="files/quake106.zip">Quake v1.06 (8.7MB)</a>
|
||||
<br><a href="files/quake_sw.tar.gz">quake_sw.tar.gz (8.7MB)</a>
|
||||
|
||||
<br><br><b><u>Bug fixes</u></b>
|
||||
<br>This is our GPL'd MD4 replacement for the proprietary code that was accidently left in the Quake1 Source release by id Software. Available in <a href="files/mdfour.tar.gz">tar.gz</a>(2.8KB) or <a href="files/mdfour.zip">zip</a>(3.8KB) formats.
|
||||
|
||||
<br><br><b><u>Miscellanious Files</u></b>
|
||||
<br>Grab Taniwha's pak util replacement <a href="http://www.taniwha.org/">here.</a>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="center">
|
||||
<b><font size="+1"><a name="Linux-BSD-UNIX">Linux / BSD / UNIX</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<li>You can find a version of CVS on Cyclic's <a href="http://download.cyclic.com/pub/">ftp server</a>.
|
||||
<br><li>Grab ssh 1.x so you can access shell1.sourceforge.net. You can get either <a href="http://www.openssh.org">OpenSSH</a> or a less free <a href="ftp://ftp.cs.hut.fi/pub/ssh/">SSH</a>
|
||||
<br><li><a href="http://home.earthlink.net/~nawalker/pharmacy/">Pharmacy</a> is a GUI front-end to CVS in X11, it looks quite useful.
|
||||
<br><li>Get a copy of the latest GCC compiler (latest is GCC v2.95): <a href="ftp://ftp.gnu.org/pub/gnu/gcc">ftp://ftp.gnu.org/pub/gnu/gcc</a>
|
||||
<br><li>The GPL'd Quest Map editor which can edit Quake maps and runs on multiple OSs has a Linux version in the Quest project's CVS tree, <a href="files/quest-linux.tar.gz">this</a> is a tweaked version by Nelson Rush (palisade) which fixes a lot of the problems inherent in the CVS version. You have to edit the quest.cfg before using it. <a href="mailto:palisade@quakeforge.net">Email</a> Palisade for questions or comments.
|
||||
<br><br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="center">
|
||||
<b><font size="+1"><a name="Windows_and_DOS">Windows 95/98/NT and DOS</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<li>For Win95/98/NT users, grab <a href="http://www.midasoft.com/ftp/mkt/mkts.zip">KoalaTerm</a> from <a href="http://www.midasoft.com">Midasoft</a> in zip form. This is a terminal (telnet style) program that allows you to SSH into your shell1.sourceforge.net account. Remember use SSH1 terminal type only when connecting.
|
||||
<br><li>There is a port of unix cvs, ssh and scp to Win9x/NT (console only) <a href="http://bmrc.berkeley.edu/people/chaffee/winntutil.html#sshnt">here</a>.
|
||||
<br><li>Grab my <a href="files/sscp.bat">batch script</a> to make using the unix port of scp with sourceforge easier. (not midasoft)
|
||||
<br><li>Grab my <a href="files/runme.bat">batch script</a> to properly set up the unix port for ssh and cvs. (not wincvs/midasoft)
|
||||
<br><li>You can find WinCVS and MacCVS here: <a href="http://www.wincvs.org">http://www.wincvs.org</a>.
|
||||
<br><li>Some useful gnu tools for Win9x/NT users are here: <a href="ftp://ftp.fe.up.pt/pub/Projectos/em96115/gnu-win32/misc">ftp://ftp.fe.up.pt/pub/Projectos/em96115/gnu-win32/misc</a>.
|
||||
<br><li>Cygnus GNU GCC Environment for Win32 is here: <a href="http://sourceware.cygnus.com/cygwin">http://sourceware.cygnus.com/cygwin</a>.
|
||||
<br><li>DJGPP - 32-bit DOS port of GCC 2.95 compiler can be found <a href="http://www.delorie.com/djgpp">here</a>.
|
||||
<br><br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="center">
|
||||
<b><font size="+1"><a name="BeOS">BeOS</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<li>SSH for BeOS is here: <a href="http://www.be.com/software/beware/network/ssh.html">http://www.be.com/software/beware/network/ssh.html</a>.
|
||||
<br><li>The Egcs/GCC tool set (includes CVS) for BeOS can be found here: <a href="http://www.be.com/software/beware/development/gccegcs.html">http://www.be.com/software/beware/development/gccegcs.html</a>
|
||||
<br><br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="center">
|
||||
<b><font size="+1"><a name="MacOS">MacOS</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<li>You can find MacCVS and WinCVS here: <a href="http://www.wincvs.org">http://www.wincvs.org</a>
|
||||
<br><li>There are currently two different SSH clients for Mac: <a href="http://www.lysator.liu.se/~jonasw/download/niftytelnet-1.1-ssh-r3.hqx">Nifty Telnet SSH</a> and <a href="http://www.DataFellows.com/f-secure/ssh/mac/download.htm">F-Secure SSH Client</a>.
|
||||
<br><br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="center">
|
||||
<b><font size="+1"><a name="OS/2">OS/2</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<li>You can find a ssh program <a href="ftp://ftp.cs.hut.fi/pub/ssh/os2/">here</a>.
|
||||
<br><li>Cyclic has CVS for OS/2 <a href="http://download.cyclic.com/pub/os2/">here</a>.
|
||||
<br><br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="center">
|
||||
<b><font size="+1"><a name="Multiplatform_Tools">Multiplatform Tools</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<li>The Mesa GL Graphics Library: <a href="http://www.mesa3d.org">http://www.mesa3d.org</a>.
|
||||
<br><li>Simple DirectMedia Layer: <a href="http://www.devolution.com/~slouken/SDL">http://www.devolution.com/~slouken/SDL</a>
|
||||
<br><br><br>
|
||||
</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>
|
78
howto.php
78
howto.php
|
@ -1,78 +0,0 @@
|
|||
<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/howto.png" border="0" align=absmiddle>
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td WIDTH="100%" align=center><hr>
|
||||
[ <a href="index.php">about</a> ]
|
||||
[ <a href="news.php">news</a> ]
|
||||
[ <a href="progress.php">progress</a> ]
|
||||
[ <a href="irc.php">irc</a> ]
|
||||
[ <a href="devfiles.php">downloads</a> ]
|
||||
[ howto ]
|
||||
[ <a href="http://sourceforge.net/mail/?group_id=882">mailing lists</a> ]
|
||||
[ <a href="links.php">links</a> ]
|
||||
[ <a href="develop.php">developers</a> ]
|
||||
[ <a href="gallery.php">Logo Gallery</a> ]
|
||||
[ <a href="mailto:palisade@quakeforge.net">comments</a> ]
|
||||
[ <a href="credits.php">Credits</a> ]
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><hr>
|
||||
<br><br><u><b>HowTo CVS</u></b>
|
||||
<br>The GNU Project has an <a href="http://www.gnu.org/manual/cvs/index.html">online manual</a> on CVS.
|
||||
|
||||
<br><br><u><b>HowTo Patch</u></b>
|
||||
<br>The Linux Doc Project (LDP) has a <a href="http://www.linuxdoc.org/LDP/LG/issue32/ayers1.html">"Patches for Beginners"</a> HowTo.
|
||||
|
||||
<br><br><u><b>HowTo Quake</u></b>
|
||||
<br><a href="http://webpages.mr.net/bobz/howto/">Linux Quake HowTo</a>
|
||||
<br><br>
|
||||
</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>
|
76
irc.php
76
irc.php
|
@ -1,76 +0,0 @@
|
|||
<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/ircinfo.png" border="0" align=absmiddle>
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td WIDTH="100%" align=center><hr>
|
||||
[ <a href="index.php">about</a> ]
|
||||
[ <a href="news.php">news</a> ]
|
||||
[ <a href="progress.php">progress</a> ]
|
||||
[ irc ]
|
||||
[ <a href="devfiles.php">downloads</a> ]
|
||||
[ <a href="howto.php">howto</a> ]
|
||||
[ <a href="http://sourceforge.net/mail/?group_id=882">mailing lists</a> ]
|
||||
[ <a href="links.php">links</a> ]
|
||||
[ <a href="develop.php">developers</a> ]
|
||||
[ <a href="gallery.php">Logo Gallery</a> ]
|
||||
[ <a href="mailto:palisade@quakeforge.net">comments</a> ]
|
||||
[ <a href="credits.php">Credits</a> ]
|
||||
<hr>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>
|
||||
<br>The QuakeForge project is using the OpenProjects IRC Network for talks in the #quakeforge channel on irc.quakeforge.net. IrcLogs can be found <a href="ftp://quake.sourceforge.net/pub/quake/irclogs">here</a>. All the logs are gzipped because of the need to conserve space and reduce download size for users who pay for bandwidth. You can get a copy of gzip for your platform at <a href="http://www.gzip.org">http://www.gzip.org</a>.<br>
|
||||
|
||||
<br>If it is not available for your platform, please help GNU <a href="http://www.gnu.org/software/gzip/gzip.html">port</a> gzip to your favorite platform, or get with the times and use <a href="http://www.linux.com/">Linux</a>.
|
||||
<br><br>
|
||||
</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>
|
||||
|
238
links.php
238
links.php
|
@ -1,238 +0,0 @@
|
|||
<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/links.png" border="0" align=absmiddle>
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td WIDTH="100%" align=center><hr>
|
||||
[ <a href="index.php">about</a> ]
|
||||
[ <a href="news.php">news</a> ]
|
||||
[ <a href="progress.php">progress</a> ]
|
||||
[ <a href="irc.php">irc</a> ]
|
||||
[ <a href="devfiles.php">downloads</a> ]
|
||||
[ <a href="howto.php">howto</a> ]
|
||||
[ <a href="http://sourceforge.net/mail/?group_id=882">mailing lists</a> ]
|
||||
[ links ]
|
||||
[ <a href="develop.php">developers</a> ]
|
||||
[ <a href="gallery.php">Logo Gallery</a> ]
|
||||
[ <a href="mailto:palisade@quakeforge.net">comments</a> ]
|
||||
[ <a href="credits.php">Credits</a> ]
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td WIDTH="100%" valign="top"><hr>
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="QuakeForge">QuakeForge Links</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://sourceforge.net/project/?form_grp=882">The QuakeForge project site on SourceForge.net</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="general">General Links</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://www.idsoftware.com">id Software</a><br>
|
||||
<a href="http://www.programmersheaven.com/">Programmer's Heaven</a><br>
|
||||
<a href="http://developer.dungeon-crawl.com/">Game Development Search Engine</a><br>
|
||||
<a href="http://www.mesa3d.org/">Mesa 3D GL Library</a><br>
|
||||
<a href="http://www.devolution.com/~slouken/SDL">SimpleMedia Direct Layer, a cross platform low-level API</a><br>
|
||||
<a href="http://www.fileplanet.com/index.asp?file=36005">Quake3 Quake, a mod for Quake that makes it play like Quake3.</a><br>
|
||||
<a href="http://www.planetquake.com/quake1/hosted/resources.shtml">Quake utilities at planetquake.</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="tools">Coding Tools</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://hermes.terminal.at/intel2gas/">intel2gas</a><br>
|
||||
<a href="http://www.web-sites.co.uk/nasm/">Nasm (Netwide assembler)</a><br>
|
||||
<a href="http://www.svgalib.org/">Svgalib</a><br>
|
||||
<a href="http://www.ggi.org/">GGI</a><br>
|
||||
<a href="files/xlib01.tar.gz">Xlib tutorial</a><br>
|
||||
<a href="http://cygutils.netpedia.net/">Cygwin Utilities</a><br>
|
||||
<a href="http://www.cygnus.com/">Cygnus</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="models">3D Modelling</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://moonlight3d.org/">Moonlight Atelier</a><br>
|
||||
<a href="http://www.blender.nl/">Blender</a><br>
|
||||
<a href="http://www.neptune.net/~bryce/cgi-bin/Bwdb/models.cgi">WorldForge 3D models</a><br>
|
||||
<a href="http://www.planetquake.com/quake1/hosted/models_skins.shtml">PlanetQuake models&skins site.</a><br>
|
||||
<a href="http://www.3dcafe.com/">3DCafe</a><br>
|
||||
<a href="http://www.freshmeat.net/search.php3?query=model">Search result at freshmeat.</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="texture">Free Textures</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
<a href="http://shine.deckpoint.ch/textures/">Garg's textures</a><br>
|
||||
<a href="http://www.grsites.com/textures/">Website texture archive</a><br>
|
||||
<a href="http://www.neptune.net/~bryce/cgi-bin/Bwdb/textures.cgi">WorldForge textures</a><br>
|
||||
|
||||
<br><br>
|
||||
|
||||
</table>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="drivers">Video Drivers</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://www.3dfx.com">3Dfx Drivers</a><br>
|
||||
<a href="http://www.nvidia.com/Marketing/Products/Pages.nsf/pages/NVIDIA_Drivers">NVidia Drivers</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="other_dev">Other Quake Development Projects</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://www.planetquake.com/qer/">Quake Engine Resource</a><br>
|
||||
<a href="http://www.geocities.com/tanepiper/">Quake 2000</a><br>
|
||||
<a href="http://www.inside3d.com/qip/home.shtml">Quake Info Pool</a><br>
|
||||
<a href="http://qwf.challenge-world.com/">QuakeWorld Forever</a><br>
|
||||
<a href="http://sourceforge.net/project/?group_id=1368">Quake Storytelling project.</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="modeling">Quake Modeling Projects</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://www.planetquake.com/qma/">Quake Modeling Association</a><br>
|
||||
<a href="http://www.planetquake.com/simitar/fmp/model.html">The Serpent Lord's Free Models Project</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="texture_skin">Texture/skin projects</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://www.planetquake.com/ikq/">IKQ - levels/mods/textures</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="level">Quake level projects</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://www.planetquake.com/quake1/hosted/maps.shtml">Maps at planetquake.</a><br>
|
||||
<a href="http://www.quake2.com/crash/">Crash's Quake single player levels page. (no longer maintained)</a><br>
|
||||
<a href="http://www.planetquake.com/spq2/quake1/">SPQ Level Heaven</a><br>
|
||||
<a href="http://www.planetquake.com/prefab/">Prefab Warehouse</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="editor">Quake editor projects</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://www.planetquake.com/qped/">QPed</a><br>
|
||||
<a href="http://www.planetquake.com/tread/">Tread</a><br>
|
||||
<a href="http://styx.phy.vanderbilt.edu/~ice/">Ice Quake Map editor for Unix</a><br>
|
||||
<a href="http://www.nuc.net/quest/">Quest Quake Map Editor</a><br>
|
||||
<a href="http://www.informatik.rwth-aachen.de/l6/Colleagues/kanthak/Quest/quest.html">Quest Map Editor for Linux</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="quakec">Quake C Projects</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://www.planetquake.com/shtf/utils/qcbud_main.htm">QC Bud - Quake C tool to help generate QC code.</a><br>
|
||||
<a href="http://www.planetquake.com/botshop/">Mongoose's BotShop</a><br>
|
||||
<br><br>
|
||||
|
||||
<table width="100%" border="0" cellspacing="0" align="center" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td align="left">
|
||||
<b><font size="+1"><a name="other">Other Quake Stuff</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<a href="http://www.planetquake.com/5thd/">5th Dimension Quake info, maps, addons.</a><br>
|
||||
<a href="http://www.planetquake.com/quark/">QuArK - Quake Army Knife</a><br>
|
||||
<a href="http://www.planetquake.com/eclipse/">Solar Eclipse - Solaris Quake Resource center.</a><br>
|
||||
<a href="http://www.planetquake.com/qdevels/">Quake DeveLS - Quake 2 dll development resource, might have useful information when we start using a shared mod system.</a><br>
|
||||
<a href="http://www.planetquake.com/editing/">Quake link site.</a><br>
|
||||
<br>
|
||||
</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>
|
97
main.php
97
main.php
|
@ -1,97 +0,0 @@
|
|||
<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">
|
||||
|
||||
<center>
|
||||
<table border=0 cols=0 cellpadding=0 cellspacing=0 width=768 vspace="5" align=center valign=absmiddle bgcolor=black><tr><td>
|
||||
|
||||
<table BORDER="0" COLS="0" WIDTH="95%" align="center">
|
||||
<tr>
|
||||
<img src="images/qflogosmallblack.png"><img src="images/qfproject2small.png" border="0" align=absmiddle>
|
||||
<br><br><br>
|
||||
</tr>
|
||||
<tr>
|
||||
[ <a href="index.php">about</a> ]
|
||||
[ <a href="news.php">news</a> ]
|
||||
[ <a href="progress.php">progress</a> ]
|
||||
[ <a href="irc.php">irc</a> ]</tr>
|
||||
[ <a href="devfiles.php">downloads</a> ]
|
||||
[ <a href="howto.php">howto</a> ]
|
||||
[ <a href="#list">mailing lists</a> ]
|
||||
[ <a href="links.php">links</a> ]
|
||||
[ <a href="develop.php">developers</a> ]
|
||||
[ <a href="mailto:palisade@quakeforge.net">comments</a> ]
|
||||
[ <a href="files/CREDITS">Credits</a> ]
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td WIDTH="100" valign="top">
|
||||
<table width="100%" border="0" cellspacing="0" align="left" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td>
|
||||
<b><font size="+1"><a name="irc">IRC</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
|
||||
<td valign="top">
|
||||
The QuakeForge project is using the OpenProjects IRC Network for talks in the #quakeforge channel on irc.quakeforge.net. IrcLogs can be found <a href="ftp://quake.sourceforge.net/pub/quake/irclogs">here</a>.
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td WIDTH="100" valign="top">
|
||||
<table width="100%" border="0" cellspacing="0" align="left" bgcolor="#3e4266">
|
||||
<tr>
|
||||
<td>
|
||||
<b><font size="+1"><a name="list">Mailing Lists</a></font></b>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
|
||||
<td valign="top">
|
||||
The QuakeForge project has several lists up, you can browse the archives or subscribe/unsubscribe to them <a href="http://sourceforge.net/mail/?group_id=882">here</a>.
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br>
|
||||
<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>
|
||||
<i>
|
||||
<br>Website Copyright (C) 1999,2000 contributors of the QuakeForge Project.
|
||||
<br>Quake(R) and QuakeWorld(R) are registered trademarks of id Software.
|
||||
<br>
|
||||
<br>Quake is Copyright (C) 1996-1997 Id Software, Inc.
|
||||
<br>Portions of QuakeForge are Copyright (C) 1996-1997 Id Software, Inc.
|
||||
<br>Portions of QuakeForge are Copyright (C) 1999,2000 contributors of the QuakeForge project.
|
||||
</i>
|
||||
<br>
|
||||
</center>
|
||||
|
||||
</td></tr></table>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in a new issue