2003-07-23 23:44:25 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("db.inc");
|
|
|
|
require_once("util.inc");
|
|
|
|
require_once("download.inc");
|
|
|
|
|
|
|
|
init_session();
|
|
|
|
db_init();
|
|
|
|
|
|
|
|
page_head("Download BOINC software");
|
|
|
|
echo "
|
|
|
|
<h3>Download BOINC software</h3>
|
|
|
|
<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>
|
|
|
|
before you download.
|
|
|
|
</font>
|
|
|
|
<p>
|
|
|
|
If you're a returning ".PROJECT." user,
|
|
|
|
click on your computer type:
|
|
|
|
<p>
|
|
|
|
";
|
|
|
|
print_download_links();
|
|
|
|
echo "
|
2003-12-18 00:22:25 +00:00
|
|
|
<p>
|
|
|
|
Instructions for installing and running BOINC are
|
|
|
|
<a href=http://boinc.berkeley.edu/client.php>here</a>.
|
2003-07-23 23:44:25 +00:00
|
|
|
<p>
|
|
|
|
<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();
|
|
|
|
?>
|