moved resources.php to research/index.php, added news, added item to menu

This commit is contained in:
Nelson Rush 2000-04-26 19:55:59 +00:00
parent 31ee0f04e9
commit e0ba4d8320
3 changed files with 3 additions and 81 deletions

View File

@ -1,4 +1,6 @@
<?
$newsItem = '<P>QuakeForge is planning to integrate <a href="http://www.openal.org/">OpenAL</a> support as optional for those who want it. I've asked John Carmack to consider releasing some of the Quake tools under the GPL. Most of the development crew at QuakeForge consider the quake-devel mailing list the official medium of discussion. Subscribing to this list will get you more in touch with QuakeForge and what we're up to, developers should use quake-devel and not the web forums. The research center is now officially up, you can enter it on the side-bar menu or go <a href="research/index.php">here.</a>';
newsItem('26 Apr 2000', 'Palisade', $newsItem);
$newsItem = '<P>A lot of people prefer web forums to mailing lists. SourceForge offers them, but they\'re not very friendly to use. Red Fox, the guy running the <A HREF="http://www.netfrag.com/megaboard">Netfrag Zap UBB board</A> has graciously offered us a forum which is much easier to use. The URL is a long CGI script, so there\'s a shortcut at <A HREF="http://quakeforge.net/board/">http://quakeforge.net/board/</A> to save typing.';
newsItem('25 Apr 2000', 'Knghtbrd', $newsItem);

View File

@ -49,7 +49,7 @@
menuItemLink( "/devtools.php", "Developer Tools" );
menuItemLink( "/progress.php", "Progress" );
menuItemLink( "/sotc.php", "State of the Code" );
menuItemLink( "/resources.php", "Research Center" );
menuItemLink( "/research/index.php", "Research Center" );
menuItemLink( "http://sourceforge.net/patch/?group_id=882", "Patch Manager" );
menuItemLink( "http://sourceforge.net/support/?group_id=882", "Support Manager" );
menuItemLink( "http://sourceforge.net/pm/?group_id=882", "Task Manager" );

View File

@ -1,80 +0,0 @@
<?PHP
$sitename = "The QuakeForge Project";
$pagename = "Research Resource";
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>
<center><font size="+2">Welcome to the QuakeForge Research Resource</font><hr>
<br>In the future, this space will provide 3D programming resources chosen by our developers as interesting or essential
for work on enhancing the QuakeForge engine. Bookmark this page. There a smidgen of content at the moment but it's growing.
<br><br>
<table width="90%" cellspacing="0" cellpadding="0" bgcolor="#000000" border="0">
<tr align="center">
<td><font size="1">
<a href="research/api.php">
<font size="2"><b>API</b></font></a>
<br>Open specifications, libraries, etc.<br></font>
</td><td><font size="1">
<a href="research/diagrams.php">
<font size="2"><b>Diagrams</b></font></a>
<br>3D concepts, audio concepts, networking concepts, etc.<br></font>
</td></tr>
<tr align="center">
<td><font size="1">
<a href="research/books.php">
<font size="2"><b>Relevant Books</b></font></a>
<br>OpenGL, Mathematics, Theory, Game programming, etc.<br></font>
</td><td><font size="1">
<a href="research/engines.php">
<font size="2"><b>Rendering engines and/or concepts</b></font></a>
<br>Complete 3D engines, partial 3D engines, portal engines, BSP maps, model and texture implementations, steps/explainations for implementing, etc.<br></font>
</td></tr>
<tr align="center">
<td><font size="1">
<a href="research/mathalgo.php">
<font size="2"><b>Mathematical Algorithms</b></font></a>
<br>Surface Subdivison, Illumination, Reflections, Shadows, Shaders, Polygons, Vector Space, Affine Arithmetic, Bezier Curves, B-Spline Curves, Compression & Encryption, etc.<br></font>
</td><td><font size="1">
<a href="research/soundbytes.php">
<font size="2"><b>Sound Bytes</b></font></a>
<br>Speeches, Lectures, Events, etc.<br></font>
</td></tr>
<tr align="center">
<td><font size="1">
<a href="research/tut.php">
<font size="2"><b>Tutorials</b></font></a>
<br>Explainations of 3D engine development, networking, Quake specific archiecture, engine features, etc.<br></font>
</td><td><font size="1">
<a href="research/misc.php">
<font size="2"><b>Misc. Texts</b></font></a>
<br>Interviews, philosophy, theories, etc.<br></font>
</td></tr></table>
<br><br>
<hr>Page last updated: April, 19th 2000<br>
</TD>
<?php
tableSpacer( 1, 9, 1, "black");
?>
</TR>
<TR>
<TD COLSPAN="4">
<?php
include("parts/copyright.php");
?>
</TD>
</TR>
</TABLE>