mirror of https://github.com/BOINC/boinc.git
310 lines
11 KiB
PHP
310 lines
11 KiB
PHP
<?php
|
||
|
||
$host = $_SERVER["SERVER_NAME"];
|
||
if ($host == "bossa.berkeley.edu") {
|
||
Header("Location: http://boinc.berkeley.edu/trac/wiki/BossaIntro");
|
||
exit();
|
||
|
||
}
|
||
if ($host == "bolt.berkeley.edu") {
|
||
Header("Location: http://boinc.berkeley.edu/trac/wiki/BoltIntro");
|
||
exit();
|
||
}
|
||
|
||
require_once("docutil.php");
|
||
require_once("../html/inc/translation.inc");
|
||
|
||
function show_participant() {
|
||
$i = rand(0, 99);
|
||
$j = $i+1;
|
||
echo "<table cellpadding=8 cellspacing=0 width=100%>
|
||
<tr><td class=heading_right>
|
||
<center>
|
||
<span class=section_title>".tra("Computing power")."</span>
|
||
<br>
|
||
<a class=heading href=chart_list.php><b>".tra("Top 100 volunteers")."</b></a>
|
||
· <a class=heading href=\"links.php#stats\"><b>".tra("Statistics")."</b></a>
|
||
</center>
|
||
</td></tr>
|
||
<tr><td>
|
||
";
|
||
show_totals();
|
||
include("piecharts/$i.html");
|
||
echo "</td></tr></table>";
|
||
}
|
||
|
||
function show_totals() {
|
||
$fn = "boinc_state.xml";
|
||
if (!file_exists($fn) || filemtime($fn) < time()-86400) {
|
||
$uid = time();
|
||
$x = file_get_contents("http://boincstats.com/en/xml/boincState?uid=$uid");
|
||
if ($x) {
|
||
$f = fopen($fn, "w");
|
||
fwrite($f, $x);
|
||
} else return;
|
||
}
|
||
$x = file_get_contents($fn);
|
||
$users = parse_element($x, "<participants_active>");
|
||
$hosts = parse_element($x, "<hosts_active>");
|
||
$credit_day = parse_element($x, "<credit_day>");
|
||
$users = number_format($users);
|
||
$hosts = number_format($hosts);
|
||
|
||
$petaflops = number_format($credit_day/200000000, 3);
|
||
echo tra("Active:")." $users ".tra("volunteers,")." $hosts ".tra("computers.
|
||
")." <br>".tra("24-hour average:")." $petaflops ".tra("PetaFLOPS.")."
|
||
<hr size=1 width=\"80%\">
|
||
";
|
||
}
|
||
|
||
function show_news_items() {
|
||
require_once("../html/inc/news.inc");
|
||
require_once("../html/inc/forum.inc");
|
||
echo "
|
||
<table border=0 cellpadding=8>
|
||
<tr><td class=heading_right>
|
||
<center>
|
||
<span class=section_title>".tra("News")."</span>
|
||
</center>
|
||
";
|
||
show_news(0, 5);
|
||
echo "
|
||
</td></tr></table>
|
||
";
|
||
}
|
||
|
||
function show_participate() {
|
||
echo "
|
||
<tr><td class=heading_left>
|
||
<a href=http://www.facebook.com/pages/BOINC/32672338584><img width=36 src=images/facebook_logo.jpg align=left title='BOINC on Facebook'></a>
|
||
<a href=https://plus.google.com/117150698502685192946/posts><img width=36 src=images/google_plus_logo.jpg align=left title='BOINC on Google+'></a>
|
||
<center>
|
||
<span class=section_title>".tra("Volunteer")."</span>
|
||
<br>
|
||
<a class=heading href=download.php><b>".tra("Download")."</b></a>
|
||
· <a class=heading href=\"/wiki/BOINC_Help\"><b>".tra("Help")."</b></a>
|
||
· <a class=heading href=\"wiki/User_manual\"><b><span class=nobr>".tra("Documentation")."</span></b></a>
|
||
· <a class=heading href=addons.php><b><span class=nobr>".tra("Add-ons")."</span></b></a>
|
||
· <a class=heading href=links.php><b><span class=nobr>".tra("Links")."</span></b></a>
|
||
</center>
|
||
</td></tr>
|
||
<tr><td>
|
||
<p>
|
||
".sprintf(
|
||
tra(" Use the idle time on your computer (Windows, Mac, or Linux) to cure diseases, study global warming, discover pulsars, and do many other types of scientific research. It's safe, secure, and easy: %sChoose%s projects %sDownload%s and run BOINC software %sEnter%s an email address and password. "),
|
||
"<ol> <li> <a href=projects.php><b>",
|
||
"</b></a>",
|
||
"<li> <a href=download.php><b>",
|
||
"</b></a>",
|
||
"<li> <b>",
|
||
"</b>"
|
||
)."
|
||
</ol>
|
||
<p>
|
||
".sprintf(
|
||
tra("Or, if you run several projects, try an %saccount manager%s such as %sGridRepublic%s or %sBAM!%s. "),
|
||
"<a href=\"wiki/Account_managers\">",
|
||
"</a>",
|
||
"<a href=\"http://www.gridrepublic.org\">",
|
||
"</a>",
|
||
"<a href=\"http://bam.boincstats.com/\">",
|
||
"</a>"
|
||
)."
|
||
</td></tr>
|
||
";
|
||
}
|
||
|
||
function show_create() {
|
||
echo "
|
||
<tr><td class=heading_left>
|
||
<center>
|
||
<span class=section_title>".tra("Compute with BOINC")."</span>
|
||
<br>
|
||
<b><a class=heading href=\"trac/wiki/ProjectMain\">".tra("Documentation")."</a></b>
|
||
· <b><a class=heading href=\"trac/wiki/ServerUpdates\">".tra("Software updates")."</a></b>
|
||
</center>
|
||
</td></tr>
|
||
<tr><td>
|
||
<ul>
|
||
<li>
|
||
",
|
||
tra("%1Scientists%2: use BOINC to create a %3volunteer computing project%4 giving you the computing power of thousands of CPUs.",
|
||
"<b>", "</b>", "<a href=volunteer.php>", "</a>"
|
||
),
|
||
"<li>",
|
||
tra("%1Universities%2: use BOINC to create a %3Virtual Campus Supercomputing Center%4.",
|
||
"<b>", "</b>",
|
||
"<a href=\"trac/wiki/VirtualCampusSupercomputerCenter\">", "</a>"
|
||
),
|
||
"<li>",
|
||
tra("%1Companies%2: use BOINC for %3desktop Grid computing%4.",
|
||
"<b>", "</b>", "<a href=dg.php>", "</a>"
|
||
),
|
||
" </ul>
|
||
</td></tr>
|
||
";
|
||
}
|
||
|
||
function show_other() {
|
||
echo "
|
||
<tr><td class=heading_left>
|
||
<center>
|
||
<span class=section_title>".tra("The BOINC project")."</span>
|
||
</center>
|
||
</td></tr>
|
||
<tr><td>
|
||
<table width=100%><tr><td width=50% valign=top>
|
||
<ul>
|
||
<li> <a href=\"dev/\">".tra("Message boards")."</a>
|
||
<li> <a href=email_lists.php>".tra("Email lists")."</a>
|
||
<li> <a href=\"trac/wiki/ProjectPeople\">".tra("Personnel and contributors")."</a>
|
||
<li> <a href=\"trac/wiki/BoincEvents\">".tra("Events")."</a>
|
||
<li> <a href=\"trac/wiki/BoincPapers\">".tra("Papers and talks")."</a>
|
||
<li> <a href=\"trac/wiki/ResearchProjects\">".tra("Research projects")."</a>
|
||
<li> <a href=logo.php>".tra("Logos and graphics")."</a>
|
||
<li> <a href=\"http://bolt.berkeley.edu/\">Bolt</a> ",tra("and"), " <a href=\"http://bossa.berkeley.edu/\">Bossa</a>
|
||
</ul>
|
||
</td><td valign=top>
|
||
<ul>
|
||
<li> ".tra("Help wanted")."
|
||
<ul>
|
||
<li> <a href=\"trac/wiki/DevProjects\">".tra("Programming")."</a>
|
||
<li> <a href=\"trac/wiki/TranslateIntro\">".tra("Translation")."</a>
|
||
<li> <a href=\"trac/wiki/AlphaInstructions\">".tra("Testing")."</a>
|
||
<li> <a href=\"trac/wiki/WikiMeta\">".tra("Documentation")."</a>
|
||
<li> <a href=\"http://boinc.berkeley.edu/wiki/Publicizing_BOINC\">".tra("Publicity")."</a>
|
||
</ul>
|
||
<li> <a href=\"trac/wiki/SoftwareDevelopment\">".tra("Software development")."</a>
|
||
<li> <a href=\"trac/wiki/SoftwareAddon\">".tra("APIs for add-on software")."</a>
|
||
</ul>
|
||
</td></tr></table>
|
||
<br>
|
||
</td></tr>
|
||
";
|
||
}
|
||
|
||
function show_nsf() {
|
||
echo "
|
||
<tr><td>
|
||
<img align=left hspace=8 src=nsf.gif alt=\"NSF logo\">
|
||
BOINC is supported by the
|
||
<a href=\"http://nsf.gov\">National Science Foundation</a>
|
||
through awards SCI-0221529, SCI-0438443, SCI-0506411,
|
||
PHY/0555655, and OCI-0721124.
|
||
<span class=note>
|
||
Any opinions, findings, and conclusions or recommendations expressed in
|
||
this material are those of the author(s)
|
||
and do not necessarily reflect the views of the National Science Foundation.
|
||
</span>
|
||
</td></tr>
|
||
";
|
||
}
|
||
|
||
// how to add language names:
|
||
// paste into notepad++, select ANSI format,
|
||
// then copy/paste into here
|
||
function language_form() {
|
||
echo "
|
||
<table><tr><td>
|
||
<form name=language method=get action=set_language.php>
|
||
<select class=selectbox name=lang onchange=\"javascript: submit()\">
|
||
<option value=auto selected=\"selected\">-- language --
|
||
<option value=auto>".tra("Browser default")
|
||
//."<option value=ar>العربية (Arabic)"
|
||
//."<option value=be>Беларускі (Belarusian)"
|
||
//."<option value=bg>Българск<D181> (Bulgarian)"
|
||
."<option value=ca>Català(Catalan)"
|
||
."<option value=cs>Čeština (Czech)"
|
||
."<option value=de>Deutsch (German)"
|
||
."<option value=en>English"
|
||
."<option value=es>Español (Spanish)"
|
||
."<option value=fi>Suomi (Finnish)"
|
||
."<option value=fr>Français (French)"
|
||
."<option value=el>Ελληνικά (Greek)"
|
||
."<option value=he>Hebrew (עִבְרִית)"
|
||
."<option value=hu>Magyar (Hungarian)"
|
||
."<option value=it>Italiano (Italian)"
|
||
."<option value=ja>日本語 (Japanese)"
|
||
."<option value=ko>한국어 (Korean)"
|
||
."<option value=lt>Lietuvių (Lithuanian)"
|
||
."<option value=nl>Nederlands (Dutch)"
|
||
//."<option value=pl>Polski (Polish)"
|
||
."<option value=pt_PT>Português (Portuguese)"
|
||
//."<option value=pt_BR>Português - Brasil (Portuguese - Brazil)"
|
||
."<option value=ru>Русский (Russian)"
|
||
//."<option value=sk>Slovenčina (Slovakian)"
|
||
."<option value=sl> Slovenščina (Slovenian)"
|
||
."<option value=tr>Türkçe (Turkish)"
|
||
."<option value=zh_CN>简体中文 (Chinese)"
|
||
."</select>
|
||
</form>
|
||
<script type=\"text/javascript\">
|
||
document.language.lang.selectedIndex=0;
|
||
</script>
|
||
</td></tr></table>
|
||
";
|
||
}
|
||
|
||
header("Content-type: text/html; charset=utf-8");
|
||
|
||
html_tag();
|
||
echo "
|
||
<head>
|
||
<link rel=\"shortcut icon\" href=\"logo/favicon.gif\">
|
||
<link rel=\"stylesheet\" type=\"text/css\" href=\"white.css\">
|
||
<link href=\"https://plus.google.com/117150698502685192946\" rel=\"publisher\" />
|
||
<title>BOINC</title>
|
||
<meta name=description content=\"BOINC is an open-source software platform for computing using volunteered resources\">
|
||
<meta name=keywords content=\"distributed scientific computing supercomputing grid SETI@home public computing volunteer computing \">
|
||
</head>
|
||
<body>
|
||
<table width=\"100%\" border=0><tr><td valign=top>
|
||
<img hspace=20 vspace=6 align=left src=\"logo/www_logo.gif\" alt=\"BOINC logo\">
|
||
</td><td align=center>
|
||
<span class=\"subtitle\">
|
||
".sprintf(tra("Open-source software for %svolunteer computing%s and %sgrid computing%s."), '<a href=volunteer.php><span class=nobr>', '</span></a>', '<a href=dg.php><span class=nobr>', '</span></a>')."
|
||
</span><br><br>
|
||
<table><tr><td>
|
||
";
|
||
language_form();
|
||
echo "</td><td>";
|
||
search_form();
|
||
echo "
|
||
</td></tr></table>
|
||
</td>
|
||
<td>
|
||
<center>
|
||
<a href=http://www.berkeley.edu>
|
||
<img src=images/uc_logo.jpg width=107 height=105 title=\"".tra("BOINC is based at The University of California, Berkeley")."\" alt=\"The University of California logo\">
|
||
</a>
|
||
</span>
|
||
</center>
|
||
</td>
|
||
</tr></table>
|
||
<table width=\"100%\" border=0 cellspacing=0 cellpadding=4>
|
||
<tr>
|
||
<td valign=top>
|
||
<table width=\"100%\" border=0 cellspacing=0 cellpadding=8>
|
||
";
|
||
show_participate();
|
||
show_create();
|
||
show_other();
|
||
show_nsf();
|
||
echo "
|
||
</table>
|
||
</td>
|
||
";
|
||
echo " <td valign=top width=390>
|
||
";
|
||
|
||
show_participant();
|
||
show_news_items();
|
||
|
||
echo "
|
||
</td></tr>
|
||
</table>
|
||
";
|
||
|
||
page_tail(true, true);
|
||
?>
|