From 0faaf890684ad29e7babc4c79d0527d41cc3c732 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Tue, 16 Jun 2009 17:15:55 +0000 Subject: [PATCH] - web: change "CPU time" to "run time" svn path=/trunk/boinc/; revision=18426 --- checkin_notes | 6 ++++++ html/inc/result.inc | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/checkin_notes b/checkin_notes index 3c63c991a7..52f3c42565 100644 --- a/checkin_notes +++ b/checkin_notes @@ -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 diff --git a/html/inc/result.inc b/html/inc/result.inc index 570c3f77dd..01ee2fab0b 100644 --- a/html/inc/result.inc +++ b/html/inc/result.inc @@ -250,7 +250,7 @@ function result_table_start($show_wu_link, $show_host_link, $info) {
explain Status - CPU time (sec) + Run time (sec) claimed credit granted credit @@ -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", "
".htmlspecialchars($result->stderr_out)."
"); row2("Validate state", validate_state_str($result)); row2("Claimed credit", $result->claimed_credit);