*** empty log message ***

svn path=/trunk/boinc/; revision=1970
This commit is contained in:
Karl Chen 2003-08-04 23:24:45 +00:00
parent 7906478771
commit 58defdd9e5
3 changed files with 8 additions and 4 deletions

View File

@ -328,6 +328,7 @@ function result_short_header() {
<th>outcome</th>
<th>client state</th>
<th>host</th>
<th>client version</th>
<th>received</th>
</tr>
";
@ -354,6 +355,8 @@ function show_result_short($result) {
} else {
echo "<td>---</td>\n";
}
$version = sprintf("%.2f", $result->client_version_num/100);
echo "<td>$version</td>";
echo "<td>$received</td>";
echo "
</tr>

View File

@ -44,7 +44,7 @@
if ($server_state[$ss] == 0) {
$x = "0";
} else {
$x = "<a href=db_action.php?table=result&received_time=$y&result_server_state=$ss&detail=low>".$server_state[$ss]."</a>";
$x = "<a href=db_action.php?table=result&received_time=$y&result_server_state=$ss&sortby=received_time&detail=low>".$server_state[$ss]."</a>";
}
row2(result_server_state_string($ss), $x);
}
@ -56,7 +56,7 @@
if ($outcome[$ro] == 0) {
$x = "0";
} else {
$x = "<a href=db_action.php?table=result&received_time=$y&result_outcome=$ro&detail=low>".$outcome[$ro]."</a>";
$x = "<a href=db_action.php?table=result&received_time=$y&result_outcome=$ro&sortby=received_time&detail=low>".$outcome[$ro]."</a>";
}
row2(result_outcome_string($ro), $x);
}
@ -68,7 +68,7 @@
if ($client_state[$cs] == 0) {
$x = "0";
} else {
$x = "<a href=db_action.php?table=result&received_time=$y&result_client_state=$cs&detail=low>".$client_state[$cs]."</a>";
$x = "<a href=db_action.php?table=result&received_time=$y&result_client_state=$cs&sortby=received_time&detail=low>".$client_state[$cs]."</a>";
}
row2(result_client_state_string($cs), $x);
}

View File

@ -64,7 +64,8 @@ function time_str($x) {
}
function start_table() {
echo "<table border=2 cellpadding=4 width=700>\n";
// echo "<table border=2 cellpadding=4 width=700>\n";
echo "<table border=2 cellpadding=4 width=100%>\n";
}
function end_table() {