.
require_once("../inc/db.inc");
require_once("../inc/util.inc");
require_once("../inc/cache.inc");
start_cache(3600);
page_head(tra("Download BOINC add-on software"));
echo "
" .
tra("You can download applications in several categories.") ."
- ".
tra("These applications are not endorsed by %1 and you use them at your own risk.", PROJECT) ."
- " .
tra("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.").
tra("Instructions for installing and running BOINC are %1here%2.", "", "")
. "
- " .
tra("This list is managed centrally at %1the BOINC website%2.", "", "") ."
";
$httpFile = @fopen("http://boinc.berkeley.edu/addons.php?strip_header=true", "rb");
if (!$httpFile){
echo "";
} else {
fpassthru($httpFile);
fclose($httpFile);
}
echo "
";
page_tail();
end_cache(3600);
?>