2003-08-07 21:40:17 +00:00
|
|
|
<?php
|
2007-11-12 22:28:17 +00:00
|
|
|
|
2005-02-19 08:06:53 +00:00
|
|
|
// show summary of a workunit
|
2003-08-07 21:40:17 +00:00
|
|
|
|
2007-11-12 22:28:17 +00:00
|
|
|
require_once("../inc/boinc_db.inc");
|
2005-02-19 08:06:53 +00:00
|
|
|
require_once("../inc/result.inc");
|
2003-08-07 21:40:17 +00:00
|
|
|
|
2005-02-19 08:06:53 +00:00
|
|
|
$wuid = get_int("wuid");
|
2007-11-12 22:28:17 +00:00
|
|
|
$wu = BoincWorkunit::lookup_id($wuid);
|
2005-02-19 08:06:53 +00:00
|
|
|
if (!$wu) {
|
2005-03-04 10:09:25 +00:00
|
|
|
error_page("can't find workunit");
|
2005-02-19 08:06:53 +00:00
|
|
|
}
|
2003-12-12 21:10:39 +00:00
|
|
|
|
2007-10-04 17:30:28 +00:00
|
|
|
page_head("Workunit details");
|
2007-11-12 22:28:17 +00:00
|
|
|
$app = BoincApp::lookup_id($wu->appid);
|
2003-08-07 21:40:17 +00:00
|
|
|
|
2005-02-19 08:06:53 +00:00
|
|
|
start_table();
|
|
|
|
row2("application", $app->user_friendly_name);
|
|
|
|
row2("created", time_str($wu->create_time));
|
|
|
|
row2("name", $wu->name);
|
|
|
|
if ($wu->canonical_resultid) {
|
|
|
|
row2("canonical result", "<a href=result.php?resultid=$wu->canonical_resultid>$wu->canonical_resultid</a>");
|
|
|
|
row2("granted credit", format_credit($wu->canonical_credit));
|
|
|
|
}
|
2005-10-07 23:19:20 +00:00
|
|
|
row2("minimum quorum", $wu->min_quorum);
|
|
|
|
row2("initial replication", $wu->target_nresults);
|
2007-10-04 17:30:28 +00:00
|
|
|
row2("max # of error/total/success tasks",
|
2005-10-07 23:19:20 +00:00
|
|
|
"$wu->max_error_results, $wu->max_total_results, $wu->max_success_results"
|
|
|
|
);
|
2005-02-19 08:06:53 +00:00
|
|
|
if ($wu->error_mask) {
|
|
|
|
row2("errors", wu_error_mask_str($wu->error_mask));
|
|
|
|
}
|
2005-03-09 01:02:36 +00:00
|
|
|
if ($wu->need_validate) {
|
|
|
|
row2("validation", "Pending");
|
|
|
|
}
|
|
|
|
end_table();
|
|
|
|
project_workunit($wu);
|
2005-02-19 08:06:53 +00:00
|
|
|
|
|
|
|
result_table_start(false, true, true);
|
2007-11-12 22:28:17 +00:00
|
|
|
$results = BoincResult::enum("workunitid=$wuid");
|
|
|
|
foreach ($results as $result) {
|
2007-11-12 22:39:56 +00:00
|
|
|
show_result_row($result, false, true, true);
|
2005-02-19 08:06:53 +00:00
|
|
|
}
|
|
|
|
echo "</table>\n";
|
|
|
|
page_tail();
|
2003-08-07 21:40:17 +00:00
|
|
|
|
|
|
|
?>
|