- web: change "CPU time" to "run time"

svn path=/trunk/boinc/; revision=18426
This commit is contained in:
David Anderson 2009-06-16 17:15:55 +00:00
parent 9a94db0bbb
commit 0faaf89068
2 changed files with 8 additions and 2 deletions

View File

@ -5688,3 +5688,9 @@ David 15 June 2009
samples/wrapper/
wrapper.cpp
David 16 June 2009
- web: change "CPU time" to "run time"
html/inc/
result.inc

View File

@ -250,7 +250,7 @@ function result_table_start($show_wu_link, $show_host_link, $info) {
<br><span class=\"smalltext\"><a href=\"explain_state.php?field=result_time\">explain</a></span>
</th>
<th>Status</th>
<th>CPU time (sec)</th>
<th>Run time (sec)</th>
<th>claimed credit</th>
<th>granted credit</th>
</tr>
@ -350,7 +350,7 @@ function show_result($result) {
row2("Exit status", exit_status_string($result));
row2("Computer ID", host_link($result->hostid));
row2("Report deadline", time_str($result->report_deadline));
row2("CPU time", $result->cpu_time);
row2("Run time", $result->cpu_time);
row2("stderr out", "<pre>".htmlspecialchars($result->stderr_out)."</pre>");
row2("Validate state", validate_state_str($result));
row2("Claimed credit", $result->claimed_credit);