2003-10-31 21:26:12 +00:00
|
|
|
<?php
|
|
|
|
require_once('db.inc');
|
|
|
|
require_once('util.inc');
|
|
|
|
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>
|
|
|
|
<b>Leader boards</b> (information about work done,
|
|
|
|
both in total and broken down by user, team, and computer)
|
|
|
|
is not directly available on this web site.
|
|
|
|
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.
|
2003-11-25 19:40:54 +00:00
|
|
|
An example (in Danish) is at
|
|
|
|
<a href=http://www.boinc.dk/index.php?page=statistics>http://www.boinc.dk</a>.
|
2003-10-31 21:26:12 +00:00
|
|
|
";
|
|
|
|
|
|
|
|
page_tail();
|
|
|
|
?>
|