// Preamble
$pageName = "Progress";
$currPage = "progress"; // Name of the page, for the menu
require "parts/preamble.php"; // Load most of document
?>
need ('graph table');
function progressKey() // Display key for progress bar
{
echo ' |
| | ' .
'' .
' | | |
';
}
function progressMeter( $name, $pct, $comments )
{
$result = '';
$result .= '' . $name . ' | | ';
$result .= '';
$result .= barGraph( $pct );
$result .= ' | | ' . $comments . ' |
';
echo $result;
}
tableHeader("100%", 'black');
progressKey();
// Software targets
progressMeter ('SDL', 96, 'Cross-platform software standard');
progressMeter ('SVGAlib', 98, 'Working properly');
progressMeter ('X11', 98, 'Working properly');
// OpenGL targets
progressMeter ('3Dfx', 85, 'Working properly');
progressMeter ('GLX', 98, 'Working well');
progressMeter ('SDL-GL', 96, 'New cross-platform OpenGL standard');
progressKey ();
tableFooter ();
?>