mirror of https://github.com/BOINC/boinc.git
23 lines
483 B
PHP
23 lines
483 B
PHP
<?php
|
|
|
|
require_once("docutil.php");
|
|
|
|
page_head("Web sites for BOINC statistics");
|
|
echo "
|
|
<p>
|
|
The following web sites show statistics for one or more BOINC projects:
|
|
";
|
|
stats_sites();
|
|
echo "
|
|
These sites use XML-format data exported by BOINC projects.
|
|
The format is described
|
|
<a href=http://boinc.berkeley.edu/db_dump.php>here</a>.
|
|
If you are interested in running your own site or
|
|
participating in the development efforts,
|
|
please contact the people listed above.
|
|
";
|
|
|
|
page_tail();
|
|
|
|
?>
|