- fix some bad file permissions

- delist defunct stats site


svn path=/trunk/boinc/; revision=22859
This commit is contained in:
David Anderson 2011-01-02 03:07:14 +00:00
parent c5462e4917
commit 5bbafef4b0
9 changed files with 8885 additions and 8872 deletions

File diff suppressed because it is too large Load Diff

8869
checkin_notes_2010 Normal file

File diff suppressed because it is too large Load Diff

View File

@ -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,

0
clientgui/AsyncRPC.cpp Executable file → Normal file
View File

0
clientgui/DlgItemProperties.cpp Executable file → Normal file
View File

0
clientgui/DlgItemProperties.h Executable file → Normal file
View File

View File

@ -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",

0
samples/example_app/uc2.cpp Executable file → Normal file
View File

View File

@ -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>