");
$users = number_format($users);
$hosts = number_format($hosts);
$teraflops = number_format($credit_day/100000, 2);
echo "Active: $users volunteers, $hosts computers.
24-hour average: $teraflops TeraFLOPS.
";
}
function show_news_items() {
require_once("boinc_news.php");
require_once("../html/inc/news.inc");
echo "
News
";
$nnews_items = 6;
show_news($project_news, $nnews_items);
if (count($project_news) > $nnews_items) {
echo "... more \n";
}
echo "
News is available as an
RSS feed
";
}
function show_participate() {
echo "
".tr(HOME_HEADING1)."
".tr(HOME_DOWNLOAD)."
· Help
· Documentation
".sprintf(tr(HOME_P1), "
", " ", " ", " ", " ", " ")."
".sprintf(tr(HOME_P2), "", " ", "", " ", "", " ")."
";
}
function show_create() {
echo "
Compute with BOINC
Documentation
· Updates
· Conferences
Scientists :
use BOINC to create a
volunteer computing project ,
giving you the computing power of thousands of CPUs.
Universities : use BOINC to create a
Virtual Campus Supercomputing Center .
Companies :
use BOINC for desktop Grid computing .
And check out:
Bolt : software for web-based education and training
Bossa : software for distributed thinking projects
";
}
function show_other() {
echo "
The BOINC project
";
}
function show_nsf() {
echo "
BOINC is supported by the
National Science Foundation
through awards SCI-0221529, SCI-0438443, SCI-0506411,
PHY/0555655, and OCI-0721124.
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.
";
}
// how to add language names:
// paste into notepad++, select ANSI format,
// then copy/paste into here
function language_form() {
echo "
";
}
if (defined("CHARSET")) {
header("Content-type: text/html; charset=".tr(CHARSET));
}
echo "
";
html_tag();
echo "
BOINC
".sprintf(tr(HOME_BOINC_DESC), '', ' ', '', ' ')."
";
language_form();
echo " ";
search_form();
echo "
";
show_participate();
show_create();
show_other();
show_nsf();
echo "
";
echo "
";
show_participant();
show_news_items();
echo "
";
page_tail(true, true);
?>