. 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.") ."

"; $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); ?>