2002-11-12 17:01:16 +00:00
|
|
|
<?php
|
|
|
|
|
2003-07-17 23:52:25 +00:00
|
|
|
require_once("util_ops.inc");
|
2002-11-12 17:01:16 +00:00
|
|
|
|
|
|
|
$cgi_url = parse_config("<cgi_url>");
|
|
|
|
|
2003-07-01 18:28:33 +00:00
|
|
|
$w = 7*86400;
|
|
|
|
echo "
|
|
|
|
<title>BOINC Project Management</title>
|
|
|
|
<h2>BOINC Project Management</h2>
|
|
|
|
<p>
|
|
|
|
Browse database:
|
|
|
|
<ul>
|
|
|
|
<li><a href=db_action.php?table=platform>Platforms</a>
|
|
|
|
<li><a href=db_form.php?table=app>Applications</a>
|
|
|
|
<li><a href=db_form.php?table=app_version>Application versions</a>
|
|
|
|
<li><a href=db_form.php?table=user>Users</a>
|
|
|
|
<li><a href=db_form.php?table=team>Teams</a>
|
|
|
|
<li><a href=db_form.php?table=host&detail=low>Hosts</a>
|
|
|
|
<li><a href=db_form.php?table=workunit>Workunits</a>
|
|
|
|
<li><a href=db_form.php?table=result&detail=low>Results</a>
|
|
|
|
</ul>
|
|
|
|
Result summary:
|
|
|
|
<a href=result_summary.php?nsecs=86400>last 24 hours</a>
|
|
|
|
<a href=result_summary.php?nsecs=$w>last week</a>
|
|
|
|
<br>
|
|
|
|
<a href=$cgi_url/stripchart.cgi>Stripcharts</a>
|
|
|
|
";
|
2002-11-12 17:01:16 +00:00
|
|
|
|
2003-07-18 20:58:42 +00:00
|
|
|
// TODO: Add functionality to list the number of recommends / rejects received
|
|
|
|
// by each profiled user.
|
|
|
|
|
2002-11-12 17:01:16 +00:00
|
|
|
?>
|