+ id>$inst->id |
+ $inst->state |
+
+";
+ $i = 0;
+ foreach ($inst->outfiles as $outfile) {
+ $req->instance_name = $inst->name;
+ $req->file_num = $i;
+ $url = boinc_get_output_file($req);
+ echo "$outfile->size bytes";
+ $i++;
+ }
+ echo " |
\n";
+ }
+ end_table();
+ page_tail();
+}
+
$action = get_str('action', true);
switch ($action) {
@@ -194,6 +236,9 @@ case 'create_action':
case 'query_batch':
handle_query_batch();
break;
+case 'query_job':
+ handle_query_job();
+ break;
default:
error_page('no such action');
}