Пример #1
0
$info_sites = array(array("http://www.pkcarlisle.com/smboinc.html", "Running BOINC over a Samba Server", "(in English)"), array("http://www.overclock.net/f/365/overclock-net-boinc-team", "Overclock.net", "(in English)"), array("http://projekty.czechnationalteam.cz/", "BOINC projects", "(in Czech)"), array("http://www.hyper.net/dc-howto.html", "How to participate in grid computing projects that benefit humanity", "(survey of volunteer computing, including non-BOINC projects)"), array("http://www.rechenkraft.net/wiki/", "Rechenkraft.net wiki", "(German, English, Portuguese)"), array("http://www.kd-web.info/#%21/boinc", "Flash-based BOINC tutorials", "(in Czech, English, and Slovak)"), array("http://boincfaq.mundayweb.com/", "The BOINC FAQ Service", "(English, German, Dutch, Spanish and French)"), array("http://www.seti-argentina.com.ar/instrucciones-boinc-manager", "BOINC Argentina", "(in Spanish)"), array("http://www.angelfire.com/jkoulouris-boinc/", "The Big BOINC! Projects and Chronology Page", "(by John Koulouris)"));
page_head("Web resources for BOINC participants");
echo "\n<h3>Contents</h3>\n<ul>\n<li> <a href=#info>Help and Information</a>\n<li> <a href=#stats>Credit statistics</a>\n<li> <a href=#sigs>Signature images</a>\n<li> <a href=#team_stats>Team statistics</a>\n";
//<li> <a href=#status>Project status</a>
echo "\n<li> <a href=#misc>Miscellaneous</a>\n<li> <a href=#skins>Skins for the BOINC Manager</a>\n<li> <a href=#sites>Other BOINC-related sites</a>\n(Information, message boards, and teams)\n<li> <a href=#video>BOINC-related videos</a>\n</ul>\n<a name=info></a>\n<h3>Help and Information</h3>\nSites with information and documentation about BOINC.\n";
shuffle($info_sites);
site_list($info_sites);
echo "\n<a name=stats></a>\n<h3>Credit statistics</h3>\n<p>\nThe following web sites show statistics for one or more BOINC projects.\nThese sites use XML-format data exported by BOINC projects,\nas described\n<a href=http://boinc.berkeley.edu/trac/wiki/CreditStats>here</a>.\nIf you're interested in running your own site or\nparticipating in the development efforts,\nplease contact the people listed below.\n";
shuffle($stats_sites);
site_list($stats_sites);
echo "\n<a name=sigs></a>\n<h3>Signature images</h3>\n<p>\nThe following sites offer dynamically-generated\nimages showing your statistics in BOINC projects,\nand/or news from projects.\nUse these in your email or message-board signature.\n";
shuffle($sig_sites);
site_list($sig_sites);
echo "\n<a name=team_stats></a>\n<h3>Team statistics</h3>\n";
shuffle($team_stats_sites);
site_list($team_stats_sites);
if (0) {
    echo "\n        <a name=status></a>\n        <h3>Project status sites</h3>\n        Show if the servers of various projects are up or down.\n        <ul>\n    ";
    //<li> <a href=http://www.esea.dk/esea/bos.asp>BOS (BOINC Online Schedulers></a>
    echo "\n        <li> <a href=http://boincprojectstatus.ath.cx/>BOINC Project Status</a>\n        </ul>\n    ";
}
echo "\n<a name=misc></a>\n<h3>Miscellaneous</h3>\n";
$misc_sites = array(array("http://www.linkedin.com/groups?gid=678497", "BOINC group on LinkedIn"), array("http://www.facebook.com/#!/pages/BOINC/109465765746025?ref=ts", "BOINC on Facebook"));
echo "<ul>";
foreach ($misc_sites as $m) {
    $u = $m[0];
    $t1 = $m[1];
    $t2 = $m[2];
    echo "<li> <a href={$u}>{$t1}</a> {$t2}\n    ";
}
echo "\n</ul>\n<a name=skins></a>\n<h3>Skins for the BOINC Manager</h3>\n<ul>\n<li> <a href=http://www.crunching-family.at/download-center/>Crunching Family Skin Download</a>\n<li> <a href=http://www.czechnationalteam.cz/view.php?cisloclanku=2007040003>Czech National Team skin</a> (in Czech)\n<li> <a href=http://www.grid-france.fr/tutos/boinc-personnaliser-aux-couleurs-equipe >Skin for Equipe France (WCG)</a>\n";
Пример #2
0
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// See the GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with BOINC.  If not, see <http://www.gnu.org/licenses/>.
require_once '../inc/util.inc';
require_once '../inc/stats_sites.inc';
page_head(tra('Statistics and leaderboards'));
check_get_args(array());
$credit_by_app = parse_bool(get_config(), "credit_by_app");
start_table();
echo "\n    <tr><td>" . tra("Statistics for %1", PROJECT) . ":\n    <ul>\n    <li><a href=\"top_users.php\">" . tra("Top participants") . "</a>\n";
if ($credit_by_app) {
    echo "<ul><li><a href=per_app_list.php>Per application</a></ul>\n";
}
if (!DISABLE_TEAMS) {
    echo "\n        <li><a href=\"top_teams.php\">" . tra("Top teams") . "</a>\n    ";
    if ($credit_by_app) {
        echo "<ul><li><a href=per_app_list.php?is_team=1>Per application</a></ul>\n";
    }
}
echo "\n<li><a href=\"top_hosts.php\">" . tra("Top computers") . "</a>\n<li><a href=\"gpu_list.php\">" . tra("GPU models") . "</a>\n<li><a href=\"cpu_list.php\">" . tra("CPU models") . "</a>\n</ul>\n\n<p>" . tra("More detailed statistics for %1 and other BOINC-based projects are available at several web sites:", PROJECT);
shuffle($stats_sites);
site_list($stats_sites);
echo tra("You can also get your current statistics in the form of a \"signature image\":");
shuffle($sig_sites);
site_list($sig_sites);
echo tra("Additionally you can get your individual statistics summed across all BOINC projects from several sites; see your %1home page%2.", "<a href=\"home.php\">", "</a>");
echo "</td></tr>";
end_table();
page_tail();