boinc/html/user/stats.php

30 lines
803 B
PHP
Raw Normal View History

<?php
require_once('db.inc');
require_once('util.inc');
db_init();
page_head('Project statistics');
echo "
<h2>Project statistics</h2>
<p>
<b>Leader boards</b> (showing which
users, teams, and computers have done the most work)
are 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.
An example (implemented using PHP) is at
<a href=http://www.boinc.dk/index.php?page=statistics>http://www.boinc.dk</a>.
If you are interested in using or contributing to this code,
please contact the developer,
<a href=mailto:stats@boinc.dk>Janus Kristensen</a>.
";
page_tail();
?>