mirror of https://github.com/BOINC/boinc.git
86 lines
2.7 KiB
PHP
86 lines
2.7 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/>.
|
|
|
|
// show summary of a workunit
|
|
|
|
require_once("../inc/util.inc");
|
|
require_once("../inc/boinc_db.inc");
|
|
require_once("../inc/result.inc");
|
|
|
|
check_get_args(array("wuid"));
|
|
|
|
BoincDb::get(true);
|
|
|
|
$wuid = get_int("wuid");
|
|
$wu = BoincWorkunit::lookup_id($wuid);
|
|
if (!$wu) {
|
|
error_page(tra("can't find workunit"));
|
|
}
|
|
|
|
page_head(tra("Workunit %1", $wuid));
|
|
$app = BoincApp::lookup_id($wu->appid);
|
|
|
|
start_table();
|
|
row2(tra("name"), $wu->name);
|
|
row2(tra("application"), $app->user_friendly_name);
|
|
row2(tra("created"), time_str($wu->create_time));
|
|
if ($wu->canonical_resultid) {
|
|
row2(tra("canonical result"),
|
|
"<a href=result.php?resultid=$wu->canonical_resultid>$wu->canonical_resultid</a>"
|
|
);
|
|
row2(tra("granted credit"), format_credit($wu->canonical_credit));
|
|
}
|
|
|
|
// if app is using adaptive replication and no canonical result yet,
|
|
// don't show anything more
|
|
// (so that bad guys can't tell if they have an unreplicated job)
|
|
|
|
$config = get_config();
|
|
if ($app->target_nresults>0 && !$wu->canonical_resultid && !$wu->error_mask && !parse_bool($config, "dont_suppress_pending")) {
|
|
row2(tra("Tasks in progress"), tra("suppressed pending completion"));
|
|
end_table();
|
|
} else {
|
|
row2(tra("minimum quorum"), $wu->min_quorum);
|
|
row2(tra("initial replication"), $wu->target_nresults);
|
|
row2(tra("max # of error/total/success tasks"),
|
|
"$wu->max_error_results, $wu->max_total_results, $wu->max_success_results"
|
|
);
|
|
if ($wu->error_mask) {
|
|
row2(tra("errors"), wu_error_mask_str($wu->error_mask));
|
|
}
|
|
if ($wu->need_validate) {
|
|
row2(tra("validation"), tra("Pending"));
|
|
}
|
|
if (function_exists('project_workunit')) {
|
|
project_workunit($wu);
|
|
}
|
|
end_table();
|
|
|
|
result_table_start(false, true, null);
|
|
$results = BoincResult::enum("workunitid=$wuid");
|
|
$i = 0;
|
|
foreach ($results as $result) {
|
|
show_result_row($result, false, true, false, $i++);
|
|
}
|
|
echo "</table>\n";
|
|
}
|
|
|
|
page_tail();
|
|
|
|
?>
|