2006-08-04 21:39:03 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// show information about downloadable BOINC client software
|
|
|
|
//
|
|
|
|
// URL options:
|
|
|
|
// xml=1 Show results as XML (other options are ignored)
|
|
|
|
// dev=1 Show "development" versions
|
|
|
|
// min_version=x show no versions earlier than x
|
|
|
|
// max_version=x show no versions later than x
|
|
|
|
// version=x show version x
|
|
|
|
// platform=x show only versions for platform x (win/mac/linux/solaris)
|
|
|
|
|
|
|
|
require_once("docutil.php");
|
|
|
|
|
|
|
|
$xml = $_GET["xml"];
|
|
|
|
$dev = $_GET["dev"];
|
2006-10-28 18:25:35 +00:00
|
|
|
if (!$xml) $dev=1;
|
2006-08-04 21:39:03 +00:00
|
|
|
$pname = $_GET["platform"];
|
|
|
|
$min_version = $_GET["min_version"];
|
|
|
|
$max_version = $_GET["max_version"];
|
|
|
|
$version = $_GET["version"];
|
|
|
|
$type_name = $_GET["type"];
|
|
|
|
|
|
|
|
require_once("versions.inc");
|
|
|
|
|
|
|
|
function dl_item($x, $y) {
|
2008-10-22 15:49:01 +00:00
|
|
|
echo "<tr><td valign=top align=right width=\"30%\">$x</td>
|
2006-08-04 21:39:03 +00:00
|
|
|
<td>$y</td></tr>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
2007-07-27 18:30:10 +00:00
|
|
|
function version_url($v) {
|
2006-08-04 21:39:03 +00:00
|
|
|
global $url_base;
|
2007-07-27 18:30:10 +00:00
|
|
|
$file = $v["file"];
|
|
|
|
if (is_dev($v)) {
|
|
|
|
return "http://boinc.berkeley.edu/dl/$file";
|
|
|
|
} else {
|
|
|
|
return $url_base.$file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_detail($v) {
|
2006-08-04 21:39:03 +00:00
|
|
|
$num = $v["num"];
|
|
|
|
$file = $v["file"];
|
|
|
|
$status = $v["status"];
|
|
|
|
$path = "dl/$file";
|
2007-07-27 18:30:10 +00:00
|
|
|
$url = version_url($v);
|
2006-08-04 21:39:03 +00:00
|
|
|
$dlink = "<a href=$url>$file</a>";
|
|
|
|
$s = number_format(filesize($path)/1000000, 2);
|
|
|
|
$date = $v["date"];
|
|
|
|
$type = type_text($v["type"]);
|
|
|
|
|
|
|
|
list_start();
|
|
|
|
dl_item("File (click to download)", "$dlink ($s MB)");
|
|
|
|
dl_item("Version number", $num);
|
|
|
|
dl_item("Release date", $date);
|
|
|
|
list_end();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function show_version_xml($v, $p) {
|
|
|
|
$name = $p["name"];
|
|
|
|
$dbname = $p["dbname"];
|
|
|
|
$num = $v["num"];
|
|
|
|
$file = $v["file"];
|
|
|
|
$status = $v["status"];
|
|
|
|
$path = "dl/$file";
|
2007-07-27 18:30:10 +00:00
|
|
|
$url = version_url($v);
|
2006-08-04 21:39:03 +00:00
|
|
|
$dlink = "<a href=$url>$file</a>";
|
|
|
|
$s = number_format(filesize($path)/1000000, 2);
|
|
|
|
$date = $v["date"];
|
|
|
|
$type = type_text($v["type"]);
|
|
|
|
echo "
|
|
|
|
<version>
|
|
|
|
<platform>$name</platform>
|
|
|
|
<dbplatform>$dbname</dbplatform>
|
|
|
|
<description>$status</description>
|
|
|
|
<date>$date</date>
|
|
|
|
<version_num>$num</version_num>
|
|
|
|
<url>$url</url>
|
|
|
|
<filename>$file</filename>
|
|
|
|
<size_mb>$s</size_mb>
|
|
|
|
<installer>$type</installer>
|
|
|
|
</version>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_version($pname, $i, $v) {
|
|
|
|
$num = $v["num"];
|
|
|
|
$file = $v["file"];
|
|
|
|
$status = $v["status"];
|
|
|
|
if (is_dev($v)) {
|
|
|
|
$status = $status."
|
2008-10-22 15:49:01 +00:00
|
|
|
<br><span class=dev>
|
2006-08-04 21:39:03 +00:00
|
|
|
(MAY BE UNSTABLE - USE ONLY FOR TESTING)
|
2008-10-22 15:49:01 +00:00
|
|
|
</span>
|
2006-08-04 21:39:03 +00:00
|
|
|
";
|
|
|
|
}
|
|
|
|
$path = "dl/$file";
|
|
|
|
$s = number_format(filesize($path)/1000000, 2);
|
2007-09-17 16:19:58 +00:00
|
|
|
$date = $v["date"];
|
2006-08-04 21:39:03 +00:00
|
|
|
$type = $v["type"];
|
|
|
|
$type_text = type_text($type);
|
2007-07-27 18:30:10 +00:00
|
|
|
$url = version_url($v);
|
2008-10-22 04:29:19 +00:00
|
|
|
echo "<tr>
|
2008-12-16 21:33:33 +00:00
|
|
|
<td class=rowlineleft>$num</td>
|
|
|
|
<td class=rowline>$status</td>
|
|
|
|
<td class=rowline><a href=\"$url\"><b>Download</b></a> ($s MB)</td>
|
|
|
|
<td class=rowlineright>$date</td>
|
2006-08-04 21:39:03 +00:00
|
|
|
</tr>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_platform($short_name, $p, $dev) {
|
|
|
|
global $min_version;
|
|
|
|
global $max_version;
|
|
|
|
$long_name = $p["name"];
|
2008-01-28 15:48:09 +00:00
|
|
|
$description = $p["description"];
|
2006-08-04 21:39:03 +00:00
|
|
|
if ($p["url"]) {
|
|
|
|
$url = $p["url"];
|
2008-10-22 04:29:19 +00:00
|
|
|
$long_name .= " <a href=$url><span class=description>details</span></a>";
|
2006-08-04 21:39:03 +00:00
|
|
|
}
|
2008-01-28 15:48:09 +00:00
|
|
|
list_bar($long_name, $description);
|
2006-08-04 21:39:03 +00:00
|
|
|
foreach ($p["versions"] as $i=>$v) {
|
2008-01-07 23:33:48 +00:00
|
|
|
if ($min_version && version_compare($v['num'], $min_version, "<")) continue;
|
|
|
|
if ($max_version && version_compare($v['num'], $max_version, ">")) continue;
|
2006-08-04 21:39:03 +00:00
|
|
|
if (!$dev && is_dev($v)) continue;
|
|
|
|
show_version($short_name, $i, $v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function show_platform_xml($short_name, $p, $dev) {
|
|
|
|
foreach ($p["versions"] as $i=>$v) {
|
|
|
|
if (!$dev && is_dev($v)) continue;
|
2008-09-30 16:57:07 +00:00
|
|
|
// show only those builds that have been around for over three days.
|
|
|
|
// Gives us time to address any showstoppers
|
2008-08-24 16:19:28 +00:00
|
|
|
// found by the early adopters
|
2008-09-30 16:57:07 +00:00
|
|
|
if (!$dev && ((time() - strtotime($v["date"])) <= 86400*3)) continue;
|
2006-08-04 21:39:03 +00:00
|
|
|
show_version_xml($v, $p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// show details on a version if URL indicates
|
|
|
|
//
|
|
|
|
if ($pname && $version) {
|
|
|
|
$p = $platforms[$pname];
|
|
|
|
if (!$p) {
|
|
|
|
error_page("platform not found");
|
|
|
|
}
|
|
|
|
$long_name = $p["name"];
|
|
|
|
$va = $p["versions"];
|
|
|
|
foreach ($va as $v) {
|
|
|
|
if ($v['num'] == $version && $type_name==$v['type']) {
|
|
|
|
page_head("BOINC version $version for $long_name");
|
|
|
|
show_detail($v);
|
|
|
|
page_tail();
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
error_page( "version not found\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($xml) {
|
|
|
|
header('Content-type: text/xml');
|
2008-08-24 16:20:52 +00:00
|
|
|
echo "<?xml version=\"1.0\" encoding=\"ISO-8859-1\" ?>\n
|
|
|
|
<versions>\n
|
2006-08-04 21:39:03 +00:00
|
|
|
";
|
|
|
|
foreach($platforms as $short_name=>$p) {
|
|
|
|
show_platform_xml($short_name, $p, $dev);
|
|
|
|
}
|
2008-08-24 16:20:52 +00:00
|
|
|
echo "
|
|
|
|
</versions>\n
|
|
|
|
";
|
2006-08-04 21:39:03 +00:00
|
|
|
} else {
|
|
|
|
if ($pname) {
|
|
|
|
$p = $platforms[$pname];
|
|
|
|
$name = $p['name'];
|
|
|
|
page_head("Download BOINC client software for $name");
|
2008-10-22 15:49:01 +00:00
|
|
|
echo "<table width=\"100%\" cellpadding=4 >";
|
2006-08-04 21:39:03 +00:00
|
|
|
show_platform($pname, $p, $dev);
|
|
|
|
list_end();
|
|
|
|
} else {
|
|
|
|
page_head("Download BOINC client software");
|
|
|
|
echo "
|
2008-10-22 15:49:01 +00:00
|
|
|
<table width=\"100%\" cellpadding=4 >
|
2006-08-04 21:39:03 +00:00
|
|
|
";
|
|
|
|
foreach($platforms as $short_name=>$p) {
|
|
|
|
show_platform($short_name, $p, $dev);
|
|
|
|
}
|
|
|
|
list_end();
|
|
|
|
echo "
|
2008-12-16 21:33:33 +00:00
|
|
|
<h3>GPU computing</h3>
|
|
|
|
If your computer is equipped with an NVIDIA
|
|
|
|
Graphics Processing Unit (GPU),
|
|
|
|
you may be able to
|
|
|
|
<a href=cuda.php>use it to compute faster</a>.
|
2008-04-01 15:08:47 +00:00
|
|
|
<h3>Other platforms</h3>
|
2006-08-04 21:39:03 +00:00
|
|
|
If your computer is not of one of these types, you can
|
|
|
|
<ul>
|
2008-10-22 15:49:01 +00:00
|
|
|
<li> <a href=\"trac/wiki/AnonymousPlatform\">make your own client software</a> or
|
|
|
|
<li> <a href=\"trac/wiki/DownloadOther\">download executables from a third-party site</a>
|
2006-08-04 21:39:03 +00:00
|
|
|
(available for Solaris/Opteron, Linux/Opteron, Linux/PPC, HP-UX, and FreeBSD, and others).
|
|
|
|
</ul>
|
2008-04-01 15:08:47 +00:00
|
|
|
|
2008-05-27 08:45:21 +00:00
|
|
|
<h3>Linux info</h3>
|
2006-08-04 21:39:03 +00:00
|
|
|
";
|
2008-04-01 15:08:47 +00:00
|
|
|
show_linux_info();
|
2006-08-04 21:39:03 +00:00
|
|
|
}
|
|
|
|
echo "
|
2009-01-28 04:58:01 +00:00
|
|
|
<h3>Ubuntu image for USB/diskless/CD-ROM install</h3>
|
|
|
|
<a href=http://www.dotsch.de/boinc/Dotsch_UX.html>Dotsch/UX</a>
|
|
|
|
is an ISO-format Linux distribution, based on Ubuntu Linux,
|
|
|
|
with the 6.2.15 BOINC client pre-installed.
|
|
|
|
It lets you easily install and boot from a USB stick, hard disk and
|
|
|
|
from diskless clients,
|
|
|
|
and it also has some interfaces to set up the diskless server
|
|
|
|
and the clients automatically.
|
|
|
|
<a href=boincdl.ssl.berkeley.edu/dl/dotsch_ux-10.iso>Download</a>
|
|
|
|
the image (515 MB).
|
|
|
|
|
2008-04-01 15:08:47 +00:00
|
|
|
<h3>Customizing this page</h3>
|
|
|
|
The information on this page can be
|
2008-10-22 15:49:01 +00:00
|
|
|
<a href=\"trac/wiki/DownloadInfo\">
|
2008-04-01 15:08:47 +00:00
|
|
|
restricted by platform and/or version number,
|
|
|
|
or presented in XML format</a>.
|
2006-08-04 21:39:03 +00:00
|
|
|
";
|
|
|
|
page_tail();
|
|
|
|
}
|
|
|
|
|
2008-10-22 04:29:19 +00:00
|
|
|
?>
|