mirror of
https://git.code.sf.net/p/quake/website
synced 2025-03-22 00:50:59 +00:00
splitting SotC and Progress
This commit is contained in:
parent
89d57d9319
commit
2ce78a407b
4 changed files with 76 additions and 31 deletions
|
@ -89,6 +89,7 @@ print ("(". round($size) ."KB)"); ?></a>
|
|||
<br><li>Simple DirectMedia Layer: <a href="http://www.devolution.com/~slouken/SDL">http://www.devolution.com/~slouken/SDL</a>
|
||||
<br><li>The latest SciTech MGL library can be found
|
||||
<a href=" http://www.scitechsoft.com/dp_mgl.html">here</a>.
|
||||
<br>
|
||||
</TD>
|
||||
<?php
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
|
|
|
@ -47,7 +47,8 @@
|
|||
menuSectionHeader( "Developers", 'white', $menuHeadColor, $menuBgColor );
|
||||
menuItemLink( "http://sourceforge.net/cvs/?group_id=882", "CVS Access" );
|
||||
menuItemLink( "/devtools.php", "Developer Tools" );
|
||||
menuItemLink( "/progress.php", "State of the Code" );
|
||||
menuItemLink( "/progress.php", "Progress" );
|
||||
menuItemLink( "/sotc.php", "State of the Code" );
|
||||
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" );
|
||||
|
|
40
progress.php
40
progress.php
|
@ -1,6 +1,6 @@
|
|||
<?
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "State of the Code";
|
||||
$pagename = "Progress";
|
||||
require("parts/library.php"); // Load function library
|
||||
include("parts/head.php"); // Load the HEAD and open BODY
|
||||
include("parts/topstrip.php"); // Display top strip
|
||||
|
@ -16,26 +16,6 @@
|
|||
<?
|
||||
$focused = "none"; // name of focused icon
|
||||
include( "parts/topmain.php" ); // Display content top table
|
||||
echo '<P><A href="#ProgressMeter">See the latest progress graphs</A>';
|
||||
?>
|
||||
<P>The State of the Code address is a not-frequently-enough updated
|
||||
article written by <a href="mailto:knghtbrd@debian.org">Knghtbrd</a>
|
||||
primarily for QuakeForge developers and other people who consider
|
||||
themselves to be knee deep in the code, whether they happen to be
|
||||
writing it or just testing it. What you won't find here is a lot of
|
||||
the fluff news that tells the casual onlooker that the project is
|
||||
actually doing stuff without really telling you what the state of
|
||||
things are.
|
||||
|
||||
<P>No attempt will be made to soften technical issues so anyone can
|
||||
understand them. If you want to really know what's going on, you
|
||||
probably don't want details left out because they might not make a
|
||||
whole lot of sense to a non-coder. Feedback is always welcome. So
|
||||
are corrections if they're necessary - contrary to popular (with him)
|
||||
belief, Knghtbrd has in fact been known to be wrong sometimes. He
|
||||
isn't afraid to admit it either (most of the time..)
|
||||
<?
|
||||
include( "state.html" ); // Include Knightbird's SotC
|
||||
?>
|
||||
<P>
|
||||
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
|
||||
|
@ -54,7 +34,7 @@
|
|||
{
|
||||
$result = '';
|
||||
$result .= '<TR><TD class="progress" align="right">' . $name . '</TD><TH> </TH>';
|
||||
$result .= '<TD align="center" vAlign="top"><IMG src="/img/blank.gif" height="1" width="1" alt="' . $pct . '% Complete">';
|
||||
$result .= '<TD align="center" vAlign="center"><IMG src="/img/blank.gif" height="1" width="1" alt="' . $pct . '% Complete">';
|
||||
$result .= barGraph( $pct );
|
||||
$result .= '</TD><TH> </TH><TD class="progress" align="left">' . $comments . '</TD></TR>';
|
||||
echo $result;
|
||||
|
@ -67,15 +47,15 @@
|
|||
tableHeader(3, 'black');
|
||||
progressKey();
|
||||
progressMeter('3Dfx MiniGL', 85, 'Being replaced by Mesa where possible');
|
||||
progressMeter('DOS', 15, 'Working on DJGPP cross-compilation');
|
||||
progressMeter('GGI', 90, 'new cross-platform software standard?');
|
||||
progressMeter('GLX', 80, 'X11 context handling has problems');
|
||||
progressMeter('MGL', 60, 'No comments');
|
||||
progressMeter('SDL', 90, 'new cross-platform software standard?');
|
||||
progressMeter('Sun XIL', 10, 'Unknown status');
|
||||
progressMeter('DOS', 65, 'Working on DJGPP cross-compilation');
|
||||
progressMeter('GGI', 90, 'New cross-platform software standard?');
|
||||
progressMeter('GLX', 95, 'Working properly');
|
||||
progressMeter('MGL', 80, 'No comments');
|
||||
progressMeter('SDL', 90, 'New cross-platform software standard?');
|
||||
progressMeter('Sun XIL', 50, 'Unknown status');
|
||||
progressMeter('SVGAlib', 85, 'No comments');
|
||||
progressMeter('WGL', 65, 'No comments');
|
||||
progressMeter('X11', 90, 'X11 context handling has problems');
|
||||
progressMeter('WGL', 70, 'No comments');
|
||||
progressMeter('X11', 95, 'Working properly');
|
||||
progressKey();
|
||||
tableFooter();
|
||||
tableBoxFooter();
|
||||
|
|
63
sotc.php
Normal file
63
sotc.php
Normal file
|
@ -0,0 +1,63 @@
|
|||
<?
|
||||
$sitename = "The QuakeForge Project";
|
||||
$pagename = "State of the Code";
|
||||
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">
|
||||
<?
|
||||
include("parts/menu.php"); // Import left-side menus
|
||||
tableSpacer( 1, 9, 1, "black"); // Separate content from menus
|
||||
?>
|
||||
<TD width="100%">
|
||||
<?
|
||||
$focused = "none"; // name of focused icon
|
||||
include( "parts/topmain.php" ); // Display content top table
|
||||
?>
|
||||
<P>The State of the Code address is a not-frequently-enough updated
|
||||
article written by <a href="mailto:knghtbrd@debian.org">Knghtbrd</a>
|
||||
primarily for QuakeForge developers and other people who consider
|
||||
themselves to be knee deep in the code, whether they happen to be
|
||||
writing it or just testing it. What you won't find here is a lot of
|
||||
the fluff news that tells the casual onlooker that the project is
|
||||
actually doing stuff without really telling you what the state of
|
||||
things are.
|
||||
|
||||
<P>No attempt will be made to soften technical issues so anyone can
|
||||
understand them. If you want to really know what's going on, you
|
||||
probably don't want details left out because they might not make a
|
||||
whole lot of sense to a non-coder. Feedback is always welcome. So
|
||||
are corrections if they're necessary - contrary to popular (with him)
|
||||
belief, Knghtbrd has in fact been known to be wrong sometimes. He
|
||||
isn't afraid to admit it either (most of the time..)
|
||||
<?
|
||||
include( "state.html" ); // Include Knightbird's SotC
|
||||
?>
|
||||
<p>
|
||||
<?
|
||||
tableBoxHeader ('black', $tableHeadColor );
|
||||
tableTitle ('Archived SotC Updates',3,$tableHeadColor);
|
||||
echo '<TR><TD colSpan="3">';
|
||||
tableHeader(3, 'black');
|
||||
<p> Check back soon!
|
||||
<bR>
|
||||
tableFooter();
|
||||
tableBoxFooter();
|
||||
?>
|
||||
<br>
|
||||
</TD>
|
||||
<?
|
||||
tableSpacer( 1, 9, 1, "black");
|
||||
?>
|
||||
</TR>
|
||||
<TR>
|
||||
<TD COLSPAN="4">
|
||||
<?
|
||||
include("parts/copyright.php");
|
||||
?>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
Loading…
Reference in a new issue