2006-10-18 21:53:22 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/cache.inc");
|
|
|
|
|
|
|
|
|
|
|
|
start_cache(3600);
|
|
|
|
page_head("Download BOINC add-on software");
|
|
|
|
echo "
|
|
|
|
<p>
|
|
|
|
You can download applications in several categories.
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
These applications are not endorsed by ".PROJECT." and
|
|
|
|
you use them at your own risk.
|
|
|
|
<li>
|
|
|
|
We do not provide instructions for installing these applications.
|
|
|
|
However, the author may have provided some help on installing or
|
|
|
|
uninstalling the application.
|
|
|
|
If this is not enough you should contact the author.
|
|
|
|
Instructions for installing and running BOINC are
|
|
|
|
<a href=http://boinc.berkeley.edu/participate.php>here</a>.
|
|
|
|
<li>
|
2006-12-05 03:50:36 +00:00
|
|
|
This list is managed centrally at <a href='http://boinc.berkeley.edu/addons.php'>the BOINC website</a>.
|
2006-10-18 21:53:22 +00:00
|
|
|
</ul>
|
|
|
|
";
|
|
|
|
|
|
|
|
$httpFile = @fopen("http://boinc.berkeley.edu/addons.php?strip_header=true", "rb");
|
|
|
|
if (!$httpFile){
|
|
|
|
echo "";
|
|
|
|
} else {
|
|
|
|
fpassthru($httpFile);
|
|
|
|
fclose($httpFile);
|
|
|
|
}
|
|
|
|
|
|
|
|
echo "
|
|
|
|
<p><p>
|
|
|
|
";
|
|
|
|
page_tail();
|
2006-10-18 21:59:17 +00:00
|
|
|
end_cache(3600);
|
2006-10-18 21:53:22 +00:00
|
|
|
?>
|