website/progress.php

60 lines
1.8 KiB
PHP
Raw Normal View History

<?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('Linux GLX', 50, 'No comments.');
progressBar('Linux SVGA', 50, 'No comments.');
progressBar('Linux 3Dfx', 50, 'No comments.');
progressBar('Linux GGI', 50, 'No comments.');
progressBar('Linux SDL', 50, 'No comments.');
progressBar('Windows OpenGL', 50, 'No comments.');
progressBar('Windows Software', 50, 'No comments.');
progressKey();
tableFooter();
tableBoxFooter();
?>
</TD>
</TR>
</TABLE>
&nbsp;<BR>
</TD>
<?php
tableSpacer( 1, 9, 1, "black");
?>
</TR>
<TR>
<TD COLSPAN="4">
<?php
include("parts/copyright.php");
?>
</TD>
</TR>
</TABLE>