mirror of https://github.com/BOINC/boinc.git
- fix some bad file permissions
- delist defunct stats site svn path=/trunk/boinc/; revision=22859
This commit is contained in:
parent
c5462e4917
commit
5bbafef4b0
8869
checkin_notes
8869
checkin_notes
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -65,8 +65,13 @@ class RESULT {
|
|||
$this->rpcs = 0;
|
||||
}
|
||||
function write($f) {
|
||||
fprintf($f, "\"%s\" wf %f if %f sv %f m %f r %f\n",
|
||||
$this->name,
|
||||
if (is_numeric($this->name)) {
|
||||
fprintf($f, "%e", $this->name);
|
||||
} else {
|
||||
fprintf($f, "\"%s\"", $this->name);
|
||||
}
|
||||
fprintf($f,
|
||||
" wf %f if %f sv %f m %f r %f\n",
|
||||
$this->wasted_frac,
|
||||
$this->idle_frac,
|
||||
$this->share_violation,
|
||||
|
|
|
@ -37,9 +37,6 @@ $cpid_stats_sites = array(
|
|||
array("The Knights Who Say 'Ni!'",
|
||||
"http://stats.kwsn.net/user.php?proj=all&cpid=%s"
|
||||
),
|
||||
array("Team Starfire World BOINC Stats 'N Stones",
|
||||
"http://statsnstones.tswb.org/userdetail.aspx?cpid=%s"
|
||||
),
|
||||
);
|
||||
|
||||
$stats_sites = array(
|
||||
|
@ -49,11 +46,6 @@ $stats_sites = array(
|
|||
"(Team ranking based on position within projects,
|
||||
as in Formula 1 racing, rather than total points)"
|
||||
),
|
||||
array(
|
||||
"http://statsnstones.tswb.org/",
|
||||
"Team Starfire World BOINC Stats 'N Stones",
|
||||
""
|
||||
),
|
||||
array(
|
||||
"http://www.allprojectstats.com/",
|
||||
"BOINC All Project Stats",
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
// - checkpointing
|
||||
// (at the level of task; or potentially within task)
|
||||
//
|
||||
// See http://boinc.berkeley.edu/wrapper.php for details
|
||||
// See http://boinc.berkeley.edu/trac/wiki/WrapperApp for details
|
||||
// Contributor: Andrew J. Younge (ajy4490@umiacs.umd.edu)
|
||||
|
||||
#include <stdio.h>
|
||||
|
|
Loading…
Reference in New Issue