2003-07-23 23:44:25 +00:00
|
|
|
<?php
|
|
|
|
|
2004-07-08 19:20:19 +00:00
|
|
|
require_once("../inc/cache.inc");
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/util.inc");
|
2004-07-08 19:20:19 +00:00
|
|
|
|
2004-07-22 23:42:50 +00:00
|
|
|
start_cache(DOWNLOAD_PAGE_TTL);
|
2004-07-08 19:20:19 +00:00
|
|
|
|
|
|
|
require_once("../inc/db.inc");
|
2004-02-02 23:34:39 +00:00
|
|
|
require_once("../inc/download.inc");
|
2003-07-23 23:44:25 +00:00
|
|
|
|
2004-07-08 19:20:19 +00:00
|
|
|
|
2003-07-23 23:44:25 +00:00
|
|
|
db_init();
|
|
|
|
|
|
|
|
page_head("Download BOINC software");
|
2004-02-02 23:34:39 +00:00
|
|
|
echo "
|
2004-11-01 23:42:29 +00:00
|
|
|
<font color=ff0000>
|
|
|
|
<b>First-time ".PROJECT." participants</b>:
|
|
|
|
<br>Don't download BOINC software now.
|
|
|
|
<a href=create_account_form.php>Create an account</a> first.
|
|
|
|
</font>
|
|
|
|
<p>
|
2004-02-02 23:34:39 +00:00
|
|
|
";
|
2003-07-23 23:44:25 +00:00
|
|
|
print_download_links();
|
|
|
|
echo "
|
2003-12-18 00:22:25 +00:00
|
|
|
<p>
|
|
|
|
Instructions for installing and running BOINC are
|
2004-05-24 03:40:38 +00:00
|
|
|
<a href=http://boinc.berkeley.edu/participate.php>here</a>.
|
2003-07-23 23:44:25 +00:00
|
|
|
<p>
|
2004-02-02 23:34:39 +00:00
|
|
|
If your computer is not one of the above types,
|
|
|
|
you can
|
2004-07-15 18:54:17 +00:00
|
|
|
<ul>
|
|
|
|
<li> <a href=http://boinc.berkeley.edu/anonymous_platform.php>download and compile the BOINC software yourself</a> or
|
|
|
|
<li> <a href=download_other.php>download from a third-party site</a>.
|
|
|
|
</ul>
|
2004-02-02 23:34:39 +00:00
|
|
|
<p>
|
2004-01-05 23:38:13 +00:00
|
|
|
BOINC can be customized for
|
|
|
|
<a href=http://boinc.berkeley.edu/language.php>languages other than English</a>
|
|
|
|
<p>
|
2003-07-23 23:44:25 +00:00
|
|
|
<font size=-1>
|
2003-11-29 02:41:28 +00:00
|
|
|
<a href=http://boinc.berkeley.edu>BOINC</a>
|
|
|
|
is distributed computing software
|
2003-07-23 23:44:25 +00:00
|
|
|
developed at the University of California by
|
|
|
|
the SETI@home project.
|
|
|
|
</font>
|
|
|
|
";
|
|
|
|
page_tail();
|
2004-07-23 04:04:21 +00:00
|
|
|
end_cache(DOWNLOAD_PAGE_TTL);
|
2003-07-23 23:44:25 +00:00
|
|
|
?>
|