mirror of https://github.com/BOINC/boinc.git
36 lines
1.1 KiB
PHP
36 lines
1.1 KiB
PHP
<?php
|
|
|
|
require_once("util_ops.inc");
|
|
|
|
$cgi_url = parse_config("<cgi_url>");
|
|
|
|
$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> |
|
|
<a href=show_log.php>Show/Grep all logs</a> |
|
|
<a href=show_log.php?f=mysql*.log&l=-20>Tail MySQL logs</a>
|
|
";
|
|
|
|
// TODO: Add functionality to list the number of recommends / rejects received
|
|
// by each profiled user.
|
|
|
|
?>
|