2003-10-31 21:26:12 +00:00
|
|
|
<?php
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once('../inc/db.inc');
|
|
|
|
require_once('../inc/util.inc');
|
2003-10-31 21:26:12 +00:00
|
|
|
db_init();
|
2003-11-24 21:08:36 +00:00
|
|
|
page_head('Project statistics');
|
2003-10-31 21:26:12 +00:00
|
|
|
|
|
|
|
echo "
|
2003-11-24 21:08:36 +00:00
|
|
|
<h2>Project statistics</h2>
|
|
|
|
<p>
|
2003-12-11 19:05:52 +00:00
|
|
|
<b>Leader boards</b> (showing which
|
|
|
|
users, teams, and computers have done the most work)
|
|
|
|
are not directly available on this web site.
|
2003-11-24 21:08:36 +00:00
|
|
|
Instead, the raw data is available as compressed XML files.
|
|
|
|
The format is described
|
|
|
|
<a href=http://boinc.berkeley.edu/db_dump.php>here</a>,
|
|
|
|
and the files are
|
|
|
|
<a href=stats/>here</a>.
|
|
|
|
|
|
|
|
<p>
|
|
|
|
This data can be summarized and represented as Web pages.
|
2004-02-16 08:10:19 +00:00
|
|
|
Examples:
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href=http://www.boinc.dk/index.php?page=statistics>http://www.boinc.dk</a>,
|
|
|
|
developed by <a href=mailto:stats@boinc.dk>Janus Kristensen</a>.
|
|
|
|
<li>
|
|
|
|
<a href=http://www.saschapfalz.de/boincstats/boinc-stats.php>boincstats</a>,
|
|
|
|
developed by Sascha Pfalz.
|
2004-04-09 23:33:50 +00:00
|
|
|
<li>
|
|
|
|
<a href=http://stats.boincbzh.net/BZHwds/index.php>BOINC Alliance Francophone</a>,
|
|
|
|
developed by Vincent Mary (vincent.mary at univ-rennes1.fr).
|
|
|
|
Supports competition between 'mini-teams'.
|
2004-02-16 08:10:19 +00:00
|
|
|
</ul>
|
2004-04-09 23:33:50 +00:00
|
|
|
These systems are implemented using PHP,
|
|
|
|
and the source code may be available.
|
|
|
|
If you are interested in running your own site or
|
|
|
|
participating in the development efforts,
|
|
|
|
please contact the people listed above.
|
2003-10-31 21:26:12 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
page_tail();
|
|
|
|
?>
|