mirror of https://github.com/BOINC/boinc.git
97 lines
2.8 KiB
PHP
97 lines
2.8 KiB
PHP
<?php
|
|
require_once("../inc/util_ops.inc");
|
|
require_once("../inc/db_ops.inc");
|
|
echo "<!--\$Id$ -->\n";
|
|
|
|
db_init();
|
|
|
|
parse_str(getenv("QUERY_STRING"));
|
|
|
|
function print_detail_field() {
|
|
echo "<tr><td align=right>Detail level</td><td>";
|
|
echo "<select name=detail>
|
|
<option value=low>low
|
|
<option value=high>high
|
|
</select>
|
|
</td></tr>
|
|
";
|
|
}
|
|
function print_query_field() {
|
|
$currenttime=time();
|
|
$hourago=$currenttime-3600;
|
|
$dayago=$currenttime-24*3600;
|
|
$weekago=$currenttime-7*24*3600;
|
|
echo "
|
|
<tr>
|
|
<td align=right>Additional clauses</td>
|
|
<td><input name=clauses size=100></td>
|
|
</tr><tr>
|
|
<td align=right>Unix times</td>
|
|
<td>Now:<b> $currenttime</b> Hour ago: $hourago Day ago: $dayago Week ago: $weekago</td>
|
|
</tr>
|
|
";
|
|
}
|
|
|
|
$first = 1;
|
|
|
|
$title = table_title($table);
|
|
page_head($title);
|
|
echo "<h2>Query $table table</h2>\n";
|
|
echo "<form method=get action=db_action.php>\n";
|
|
echo "<p>\n";
|
|
echo "<input type=hidden name=table value=$table>\n";
|
|
|
|
start_table();
|
|
if ($table=="platform") {
|
|
} else if ($table=="app") {
|
|
} else if ($table=="app_version") {
|
|
print_detail_field();
|
|
print_query_field();
|
|
} else if ($table=="host") {
|
|
print_checkbox("Show Aggregate Information", "show_aggregate", $show_aggregate);
|
|
print_detail_field();
|
|
print_query_field();
|
|
} else if ($table=="workunit") {
|
|
print_detail_field();
|
|
print_query_field();
|
|
echo "<input type=hidden name=sort_by value=id>\n";
|
|
} else if ($table=="result") {
|
|
echo "<tr><td align=right>Server state</td><td> ";
|
|
server_state_select();
|
|
echo "</td></tr>\n";
|
|
//print_text_field( "Batch number:", "batch", $batch );
|
|
echo "<tr><td align=right>Outcome</td><td>";
|
|
outcome_select();
|
|
echo "</td></tr>\n";
|
|
echo "<tr><td align=right>Client state</td><td>";
|
|
client_state_select();
|
|
echo "</td></tr>\n";
|
|
echo "<tr><td align=right>Validate state</td><td>";
|
|
validate_state_select();
|
|
echo "</td></tr>\n";
|
|
echo "<tr><td align=right>Sort by</td><td>";
|
|
result_sort_select();
|
|
echo "</td></tr>\n";
|
|
print_detail_field();
|
|
print_query_field();
|
|
|
|
} else if ($table=="team") {
|
|
print_query_field();
|
|
} else if ($table=="user") {
|
|
print_query_field();
|
|
} else {
|
|
echo "Unknown table name\n";
|
|
exit();
|
|
}
|
|
|
|
row2("Number of entries to show", "<input name=nresults value='20'>");
|
|
|
|
row2("", "<input type=submit value=\"OK\">\n");
|
|
end_table();
|
|
echo "</form>\n";
|
|
|
|
print_describe_table($table, 4);
|
|
|
|
page_tail();
|
|
?>
|