process_form_items(); if (strlen($nresults)) { $entries_to_show = $nresults; } else { $entries_to_show = 10; } $page_entries_to_show = $entries_to_show; if (strlen($last_pos)) { $start_at = $last_pos; } else { $start_at = 0; } admin_page_head($table); $count = $q->count(); if ($count < $start_at + $entries_to_show) { $entries_to_show = $count - $start_at; } $last = $start_at + $entries_to_show; $main_query = $q->get_select_query($entries_to_show, $start_at); echo "

Query: $main_query

\n"; $start_1_offset = $start_at + 1; echo "

$count records match the query. Displaying $start_1_offset to $last.

"; $url = $q->get_url("db_action.php"); if ($detail) { $url .= "&detail=$detail"; } //echo "


$url

\n"; if ($start_at || $last < $count) { echo "
"; if ($start_at) { $prev_pos = $start_at - $page_entries_to_show; if ($prev_pos < 0) { $prev_pos = 0; } echo " Previous $page_entries_to_show
"; } echo "
"; if ($last < $count) { echo " Next $entries_to_show
"; } echo "
"; } if ($table == "result") { $url = $q->get_url("result_summary.php"); echo "Summary |"; } if ($detail == "high") { $url = $q->get_url("db_action.php")."&detail=low"; echo " Less detail "; } if ($detail == "low") { $url = $q->get_url("db_action.php")."&detail=high"; echo " More detail "; } echo " | Return to main admin page\n"; echo "

\n"; if ($table == "host") { if ($show_aggregate) { $result = mysql_query("select sum(d_total) as tot_sum, sum(d_free) as free_sum, " . "sum(m_nbytes) as tot_mem from host" . $query); $disk_info = mysql_fetch_object($result); $dt = $disk_info->tot_sum/(1024*1024*1024); $df = $disk_info->free_sum/(1024*1024*1024); $mt = $disk_info->tot_mem/(1024*1024); echo "

\n Sum of total disk space on these hosts: $dt GB

Sum of available disk space on these hosts: $df GB

Sum of memory on these hosts: $mt MB

"; } } $result = mysql_query($main_query); if ($result) { if ($detail == "low") { start_table(); switch($table) { case "result": result_short_header(); break; case "host": host_short_header(); break; case "app_version": app_version_short_header(); break; case "workunit": workunit_short_header(); break; } } while ($res = mysql_fetch_object($result)) { if ($detail == "low") { switch ($table) { case "result": show_result_short($res); break; case "host": show_host_short($res); break; case "app_version": show_app_version_short($res); break; case "workunit": show_workunit_short($res); break; } } else { switch ($table) { case "platform": show_platform($res); break; case "app": show_app($res); break; case "app_version": show_app_version($res); break; case "host": show_host($res); break; case "workunit": show_workunit($res); break; case "result": show_result($res); break; case "team": show_team($res); break; case "user": show_user($res); break; } } } if ($detail == "low") { end_table(); } } else { echo "

No results found

"; } admin_page_tail(); ?>