. require_once("../inc/db.inc"); require_once("../inc/util.inc"); require_once("../inc/cache.inc"); check_get_args(array()); page_head(tra("Download BOINC add-on software")); echo "

" . tra("You can download applications in several categories.") ."

"; $httpFile = unserialize(get_cached_data(3600)); if (!$httpFile) { $httpFile = @file_get_contents("http://boinc.berkeley.edu/addons.php?strip_header=true"); if ($httpFile) { set_cached_data(3600, serialize($httpFile)); } } echo $httpFile; echo "

"; page_tail(); ?>