2002-11-12 17:01:16 +00:00
|
|
|
<?php
|
|
|
|
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/db_ops.inc");
|
|
|
|
require_once("../inc/util_ops.inc");
|
2002-11-12 17:01:16 +00:00
|
|
|
|
|
|
|
$cgi_url = parse_config("<cgi_url>");
|
2003-11-25 19:09:46 +00:00
|
|
|
$stripchart_cgi_url = parse_config("<stripchart_cgi_url>");
|
2002-11-12 17:01:16 +00:00
|
|
|
|
2003-11-11 20:49:07 +00:00
|
|
|
db_init();
|
|
|
|
|
2003-07-01 18:28:33 +00:00
|
|
|
$w = 7*86400;
|
|
|
|
echo "
|
2003-11-11 20:49:07 +00:00
|
|
|
<title>BOINC project management for ".PROJECT."</title>
|
|
|
|
<h2>BOINC project management for ".PROJECT."</h2>
|
2003-07-01 18:28:33 +00:00
|
|
|
<p>
|
|
|
|
Browse database:
|
|
|
|
<ul>
|
|
|
|
<li><a href=db_action.php?table=platform>Platforms</a>
|
2003-11-07 00:54:53 +00:00
|
|
|
<li><a href=db_action.php?table=app>Applications</a>
|
2003-07-01 18:28:33 +00:00
|
|
|
<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>
|
2003-08-08 01:00:56 +00:00
|
|
|
</p>
|
|
|
|
<p>
|
|
|
|
Browse / Rate user profiles:
|
|
|
|
<ul>
|
|
|
|
<li><a href=profile_ops.php?set=unrated&num=0>Unrated profiles</a>
|
2003-08-08 01:04:11 +00:00
|
|
|
<li><a href=profile_ops.php?set=approved&num=0>Approved profiles</a>
|
|
|
|
<li><a href=profile_ops.php?set=rejected&num=0>Rejected profiles</a>
|
|
|
|
<li><a href=profile_ops.php?set=uotd&num=0>Past Users of the Day</a>
|
|
|
|
<li><a href=profile_ops.php?set=all&num=0>All profiles</a>
|
2003-08-08 01:00:56 +00:00
|
|
|
</ul>
|
|
|
|
</p>
|
2003-11-11 20:49:07 +00:00
|
|
|
";
|
|
|
|
$result = mysql_query("select * from app");
|
|
|
|
while ($app = mysql_fetch_object($result)) {
|
|
|
|
echo "<br>Result summary for $app->name:
|
|
|
|
<ul>
|
|
|
|
<li><a href=result_summary.php?appid=$app->id&nsecs=86400>last 24 hours</a>
|
|
|
|
<li><a href=result_summary.php?appid=$app->id&nsecs=$w>last week</a>
|
|
|
|
</ul>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
mysql_free_result($result);
|
|
|
|
echo "
|
2003-11-25 19:05:32 +00:00
|
|
|
<a href=$stripchart_cgi_url/stripchart.cgi>Stripcharts</a>
|
2003-11-11 20:49:07 +00:00
|
|
|
| <a href=show_log.php>Show/Grep all logs</a>
|
|
|
|
| <a href=show_log.php?f=mysql*.log&l=-20>Tail MySQL logs</a>
|
|
|
|
| <a href=create_account_form.php>Create account</a>
|
2003-07-01 18:28:33 +00:00
|
|
|
";
|
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
|
|
|
?>
|