mirror of
https://git.code.sf.net/p/quake/website
synced 2024-11-10 15:22:13 +00:00
305ca5628e
progress meter.
61 lines
2 KiB
PHP
61 lines
2 KiB
PHP
<?PHP
|
|
$sitename = "The QuakeForge Project";
|
|
$pagename = "State of the Code";
|
|
include("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
|
|
echo '<P><A href="#ProgressMeter">See the latest progress graphs</A>';
|
|
include( "state.html" ); // Include Knightbird's SotC
|
|
?>
|
|
<P>
|
|
<TABLE width="100%" cellSpacing="0" cellPadding="0" border="0">
|
|
<TR vAlign=top>
|
|
<TD colSpan="2">
|
|
<A name="ProgressMeter"></A>
|
|
<?php
|
|
tableBoxHeader("Progress", 3, 'white', '#737b9c', 'black');
|
|
echo '<TR><TD colSpan="3">';
|
|
tableHeader(3, 'white', 'black');
|
|
progressKey();
|
|
progressBar('3Dfx MiniGL', 85, 'Being replaced by Mesa where possible');
|
|
progressBar('DOS', 15, 'Working on DJGPP cross-compilation');
|
|
progressBar('GGI', 90, 'new cross-platform software standard?');
|
|
progressBar('GLX', 80, 'X11 context handling has problems');
|
|
progressBar('MGL', 60, 'No comments');
|
|
progressBar('SDL', 90, 'new cross-platform software standard?');
|
|
progressBar('SVGAlib', 85, 'No comments');
|
|
progressBar('WGL', 65, 'No comments');
|
|
progressBar('X11', 90, 'X11 context handling has problems');
|
|
progressKey();
|
|
tableFooter();
|
|
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>
|