mirror of https://github.com/BOINC/boinc.git
107 lines
3.0 KiB
PHP
107 lines
3.0 KiB
PHP
<?php
|
|
// This file is part of BOINC.
|
|
// http://boinc.berkeley.edu
|
|
// Copyright (C) 2008 University of California
|
|
//
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License
|
|
// as published by the Free Software Foundation,
|
|
// either version 3 of the License, or (at your option) any later version.
|
|
//
|
|
// BOINC is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
// See the GNU Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
require_once("../inc/util_ops.inc");
|
|
require_once("../inc/db_ops.inc");
|
|
|
|
db_init();
|
|
|
|
$show_aggregate = false;
|
|
$table = get_str("table");
|
|
|
|
$title = table_title($table);
|
|
admin_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();
|
|
|
|
switch($table){
|
|
case "platform":
|
|
break;
|
|
case "app":
|
|
break;
|
|
case "app_version":
|
|
print_detail_field();
|
|
print_query_field();
|
|
break;
|
|
case "host":
|
|
echo "
|
|
<tr>
|
|
<td align=\"right\">Show Aggregate Information</td>
|
|
<td>
|
|
";
|
|
print_checkbox("", "show_aggregate", $show_aggregate);
|
|
echo "
|
|
</td>
|
|
</tr>
|
|
";
|
|
print_detail_field();
|
|
print_query_field();
|
|
break;
|
|
case "workunit":
|
|
print_detail_field();
|
|
print_query_field();
|
|
echo "<input type=\"hidden\" name=\"sort_by\" value=\"id\">\n";
|
|
break;
|
|
case "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();
|
|
sort_order_select();
|
|
echo "</td></tr>\n";
|
|
print_detail_field();
|
|
print_query_field();
|
|
break;
|
|
case "team":
|
|
print_query_field();
|
|
break;
|
|
case "user":
|
|
print_query_field();
|
|
break;
|
|
default:
|
|
echo "Unknown table name\n";
|
|
exit();
|
|
}
|
|
|
|
row2("Number of entries to show", "<input name=\"nresults\" value=\"20\">");
|
|
row2("", "<input class=\"btn btn-default\" type=\"submit\" value=\"OK\">\n");
|
|
end_table();
|
|
echo "</form>\n";
|
|
|
|
print_describe_table($table, 4);
|
|
|
|
admin_page_tail();
|
|
$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit
|
|
?>
|