2004-06-09 19:09:16 +00:00
|
|
|
<?php
|
2005-03-23 06:26:19 +00:00
|
|
|
require_once("docutil.php");
|
2006-12-29 21:42:14 +00:00
|
|
|
require_once("../html/inc/translation.inc");
|
|
|
|
|
2005-03-22 05:30:32 +00:00
|
|
|
|
2006-07-17 16:38:53 +00:00
|
|
|
function show_participant() {
|
|
|
|
global $light_blue;
|
|
|
|
$i = rand(0, 99);
|
|
|
|
$j = $i+1;
|
|
|
|
echo "
|
2006-08-29 20:39:44 +00:00
|
|
|
<tr><td bgcolor=$light_blue>
|
|
|
|
<font size=4> Featured volunteer</font>
|
|
|
|
</td></tr>
|
2006-08-16 19:45:43 +00:00
|
|
|
<tr><td>
|
|
|
|
<center>
|
2006-08-29 20:39:44 +00:00
|
|
|
<table border=0 cellpadding=6><tr><td>
|
2006-07-17 16:38:53 +00:00
|
|
|
";
|
|
|
|
include("piecharts/$i.html");
|
|
|
|
echo "
|
|
|
|
<br>
|
|
|
|
<center>
|
|
|
|
<a href=chart_list.php><b>Top 100</a> |
|
2006-11-08 00:35:25 +00:00
|
|
|
<a href=http://boinc.netsoft-online.com/rankings.php?list=rac_p1c1><b>Single-computer</a> |
|
2006-07-17 16:38:53 +00:00
|
|
|
<a href=http://boinc.netsoft-online.com/rankings.php><b>Other lists</a>
|
|
|
|
</center>
|
2006-08-16 19:45:43 +00:00
|
|
|
</td></tr></table>
|
2006-07-17 16:38:53 +00:00
|
|
|
</td></tr>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_news_items() {
|
|
|
|
global $light_blue;
|
2006-12-01 00:38:36 +00:00
|
|
|
require_once("boinc_news.php");
|
2006-07-17 16:38:53 +00:00
|
|
|
require_once("../html/inc/news.inc");
|
|
|
|
echo "
|
|
|
|
<table border=2 cellpadding=8><tr><td bgcolor=$light_blue>
|
|
|
|
<font size=4>News</font>
|
|
|
|
<br>
|
|
|
|
";
|
|
|
|
$nnews_items = 8;
|
|
|
|
show_news($project_news, $nnews_items);
|
|
|
|
if (count($project_news) > $nnews_items) {
|
|
|
|
echo "<a href=old_news.php>... more</a>\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "
|
|
|
|
<p><font size=-2>News is available as an
|
|
|
|
<a href=rss_main.php>RSS feed</a> <img src=xml.gif></font>
|
2007-04-16 22:01:52 +00:00
|
|
|
<br>
|
|
|
|
<font size=-2>You can help
|
|
|
|
<a href=wwl.php>translate these news items to other languages</a>.
|
2006-07-17 16:38:53 +00:00
|
|
|
</td></tr></table>
|
|
|
|
<p>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_participate() {
|
|
|
|
global $light_blue;
|
|
|
|
echo "
|
|
|
|
<tr><td bgcolor=$light_blue>
|
2006-12-29 21:42:14 +00:00
|
|
|
<font size=4> ".tr(HOME_HEADING1)."</font>
|
2006-07-17 16:38:53 +00:00
|
|
|
</td></tr>
|
|
|
|
<tr><td>
|
|
|
|
<p>
|
2006-12-29 21:42:14 +00:00
|
|
|
".sprintf(tr(HOME_P1), "<ol> <li> <a href=projects.php><font size=+1>", "</font></a>", "<li> <a href=download.php><font size=+1>", "</font></a>", "<li> <font size=+1>", "</font>")."
|
2006-07-17 16:38:53 +00:00
|
|
|
</ol>
|
2006-08-29 20:39:44 +00:00
|
|
|
<p>
|
2006-12-29 21:42:14 +00:00
|
|
|
".sprintf(tr(HOME_P2), "<a href=acct_mgrs.php>", "</a>", "<a href=http://gridrepublic.org>", "</a>", "<a href=http://bam.boincstats.com/>", "</a>")."
|
2006-12-05 03:50:36 +00:00
|
|
|
<p>
|
2006-12-29 21:42:14 +00:00
|
|
|
".sprintf(tr(HOME_P3), "<a href=help.php>", "</a>")."
|
2006-07-17 16:38:53 +00:00
|
|
|
<center>
|
2007-02-05 03:37:17 +00:00
|
|
|
<a href=download.php><b>".tr(HOME_DOWNLOAD)."</b></a>
|
|
|
|
| <a href=participate.php><b><nobr>".tr(HOME_MORE_INFO)."</nobr></b></a>
|
2006-12-29 21:42:14 +00:00
|
|
|
| <a href=links.php><b><nobr>".tr(HOME_WEB_SITES)."</nobr></b></a>
|
|
|
|
| <a href=addons.php><b>".tr(HOME_ADD_ONS)."</b></a>
|
|
|
|
| <a href=poll.php><b><nobr>".tr(HOME_SURVEY)."</nobr></b></a>
|
2006-07-17 16:38:53 +00:00
|
|
|
</center>
|
|
|
|
</td></tr>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_create() {
|
|
|
|
global $light_blue;
|
|
|
|
echo "
|
2006-08-16 19:45:43 +00:00
|
|
|
<tr><td bgcolor=$light_blue><font size=4>Compute with BOINC</font></td></tr>
|
2006-07-17 16:38:53 +00:00
|
|
|
<tr><td>
|
|
|
|
A BOINC project with a single Linux server
|
|
|
|
can provide computing power equivalent
|
|
|
|
to a cluster with tens of thousands of CPUs.
|
2006-09-06 15:51:26 +00:00
|
|
|
Learn how to <a href=create_project.php>create
|
|
|
|
and operate a BOINC project</a>.
|
2006-08-16 19:45:43 +00:00
|
|
|
<ul>
|
|
|
|
<li> <b>Scientists</b>: if your group has moderate
|
|
|
|
programming, web, sysadmin, and hardware resources,
|
|
|
|
you can create your own BOINC project.
|
|
|
|
Otherwise, organizations such as World Community Grid may be able
|
2006-11-08 22:40:03 +00:00
|
|
|
to host your project
|
|
|
|
(please <a href=contact.php>contact us</a> for information).
|
|
|
|
<li> <b>Universities</b>: use BOINC to create a
|
|
|
|
<a href=vcsc.php>Virtual Campus Supercomputing Center</a>.
|
2006-08-16 19:45:43 +00:00
|
|
|
<li> <b>Companies</b>:
|
|
|
|
use BOINC for <a href=dg.php>Desktop Grid Computing</a>.
|
|
|
|
</ul>
|
2006-07-17 16:38:53 +00:00
|
|
|
</td></tr>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_other() {
|
|
|
|
global $light_blue;
|
|
|
|
echo "
|
|
|
|
<tr><td bgcolor=$light_blue><font size=4>Other info</font></td></tr>
|
|
|
|
<tr><td>
|
|
|
|
<ul>
|
2006-11-08 22:40:03 +00:00
|
|
|
<li> <a href=intro.php>Overview</a>
|
2006-07-17 16:38:53 +00:00
|
|
|
<li> <a href=boinc_dev.php>Software development</a>
|
2006-08-08 16:38:28 +00:00
|
|
|
<li> <a href=translation.php>Translation</a> of web and GUI text
|
2006-07-17 16:38:53 +00:00
|
|
|
<li> <a href=contact.php>Personnel and contributors</a>
|
|
|
|
<li> BOINC <a href=email_lists.php>email lists</a>
|
|
|
|
<li> BOINC <a href=dev/>message boards</a>
|
2007-04-05 18:17:15 +00:00
|
|
|
<li> <a href=papers.php>Papers and talks</a> about BOINC
|
2006-07-17 16:38:53 +00:00
|
|
|
<li> <a href=logo.php>Logos and graphics</a>
|
2006-11-08 22:40:03 +00:00
|
|
|
<li> <a href=events.php>Events</a>
|
2006-07-17 16:38:53 +00:00
|
|
|
</ul>
|
|
|
|
<br>
|
|
|
|
</td></tr>
|
|
|
|
";
|
|
|
|
}
|
2006-05-15 00:27:15 +00:00
|
|
|
|
2006-07-17 16:38:53 +00:00
|
|
|
function show_nsf() {
|
|
|
|
echo "
|
|
|
|
<tr><td>
|
|
|
|
<img align=left src=nsf.gif>
|
|
|
|
BOINC is supported by the
|
|
|
|
<a href=http://nsf.gov>National Science Foundation</a>
|
|
|
|
through awards SCI/0221529, SCI/0438443 and SCI/0506411.
|
|
|
|
<font size=-2>
|
|
|
|
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.
|
|
|
|
</font>
|
|
|
|
</td></tr>
|
|
|
|
";
|
|
|
|
}
|
2006-03-06 05:43:12 +00:00
|
|
|
|
2007-02-21 16:26:51 +00:00
|
|
|
html_tag();
|
2004-05-31 18:13:01 +00:00
|
|
|
echo "
|
|
|
|
<head>
|
|
|
|
<link rel=\"shortcut icon\" href=\"iconsmall.ico\">
|
|
|
|
<link rel=\"stylesheet\" type=text/css href=white.css>
|
2006-04-14 22:25:55 +00:00
|
|
|
<title>BOINC</title>
|
|
|
|
<meta name=description content=\"BOINC is an open-source software platform for computing using volunteered resources\">
|
2005-03-21 19:57:44 +00:00
|
|
|
<meta name=keywords content=\"distributed scientific computing supercomputing grid SETI@home public computing volunteer computing \">
|
2004-05-31 18:13:01 +00:00
|
|
|
</head>
|
2006-04-14 22:25:55 +00:00
|
|
|
<body bgcolor=#ffffff>
|
2005-10-23 07:19:03 +00:00
|
|
|
<img hspace=30 vspace=10 align=left src=logo/logo_small.png>
|
2006-05-15 00:27:15 +00:00
|
|
|
<h1>
|
|
|
|
Berkeley Open Infrastructure for Network Computing
|
|
|
|
</h1>
|
2006-08-29 20:39:44 +00:00
|
|
|
<font size=+1>
|
2006-08-16 19:45:43 +00:00
|
|
|
Open-source software for
|
2006-08-29 20:39:44 +00:00
|
|
|
<a href=volunteer.php>volunteer computing</a> and <a href=dg.php>desktop grid computing</a>.</font>
|
2006-06-01 19:03:00 +00:00
|
|
|
<p>
|
2006-04-14 22:25:55 +00:00
|
|
|
";
|
|
|
|
search_form();
|
|
|
|
echo "
|
2004-05-31 18:13:01 +00:00
|
|
|
<br clear=all>
|
|
|
|
|
2005-03-22 05:30:32 +00:00
|
|
|
<table width=100% border=0 cellspacing=0 cellpadding=4>
|
|
|
|
<tr>
|
2005-11-04 19:36:50 +00:00
|
|
|
<td valign=top>
|
2005-03-22 05:30:32 +00:00
|
|
|
<table width=100% border=0 cellspacing=0 cellpadding=8>
|
2006-03-06 05:43:12 +00:00
|
|
|
";
|
2006-07-17 16:38:53 +00:00
|
|
|
show_participate();
|
|
|
|
show_participant();
|
|
|
|
show_create();
|
|
|
|
show_other();
|
2006-11-14 17:30:59 +00:00
|
|
|
show_nsf();
|
2006-03-06 05:43:12 +00:00
|
|
|
echo "
|
2005-03-22 05:30:32 +00:00
|
|
|
</table>
|
|
|
|
</td>
|
2005-11-04 19:36:50 +00:00
|
|
|
";
|
2006-07-17 16:38:53 +00:00
|
|
|
echo " <td valign=top width=390>
|
2005-11-04 19:36:50 +00:00
|
|
|
";
|
2006-07-17 16:38:53 +00:00
|
|
|
|
|
|
|
show_news_items();
|
|
|
|
echo "<table>";
|
|
|
|
echo "</table>";
|
2004-05-31 18:13:01 +00:00
|
|
|
|
|
|
|
echo "
|
2005-03-22 05:30:32 +00:00
|
|
|
</td></tr>
|
2004-05-31 18:13:01 +00:00
|
|
|
</table>
|
|
|
|
";
|
2007-02-16 05:04:08 +00:00
|
|
|
|
|
|
|
page_tail(true, true);
|
2006-05-15 00:27:15 +00:00
|
|
|
echo "
|
|
|
|
<script language=\"JavaScript\" type=\"text/javascript\" src=\"wz_tooltip.js\"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
";
|
2004-05-31 18:13:01 +00:00
|
|
|
?>
|