2006-09-19 16:55:28 +00:00
|
|
|
<?php
|
|
|
|
require_once("docutil.php");
|
2006-11-06 18:32:04 +00:00
|
|
|
require_once("addon_data.php");
|
2006-10-18 21:53:22 +00:00
|
|
|
|
2006-10-18 23:30:13 +00:00
|
|
|
$strip_header = $_GET['strip_header'];
|
2006-10-18 21:53:22 +00:00
|
|
|
|
2006-10-18 23:30:13 +00:00
|
|
|
if (!$strip_header) {
|
2006-09-19 16:55:28 +00:00
|
|
|
page_head('BOINC add-on software');
|
|
|
|
echo "
|
|
|
|
<p>
|
2006-11-06 18:32:04 +00:00
|
|
|
The following programs complement or enhance BOINC.
|
|
|
|
Note:
|
2006-09-19 16:55:28 +00:00
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
|
|
|
|
These applications are not endorsed by BOINC 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
|
2009-03-24 17:18:09 +00:00
|
|
|
<a href=http://boinc.berkeley.edu/wiki/User_manual>here</a>.
|
2006-09-19 16:55:28 +00:00
|
|
|
<li>
|
2006-11-06 18:32:04 +00:00
|
|
|
To submit an item for inclusion in this list,
|
2011-04-01 21:21:11 +00:00
|
|
|
please email <a href=http://boinc.berkeley.edu/trac/wiki/ProjectPeople>David Anderson</a>.
|
2006-09-19 16:55:28 +00:00
|
|
|
</ul>
|
|
|
|
";
|
|
|
|
|
2006-10-18 21:53:22 +00:00
|
|
|
}
|
|
|
|
|
2006-11-06 18:32:04 +00:00
|
|
|
function show_group($name, $list, $short_name) {
|
2006-09-19 16:55:28 +00:00
|
|
|
echo "
|
|
|
|
<h2>$name</h2>
|
|
|
|
<table border=1 cellpadding=6 width=100%>
|
|
|
|
<tr>
|
2006-11-06 18:32:04 +00:00
|
|
|
<th>Add-on<br><font size=-2>click for info</font></th>
|
2006-09-19 16:55:28 +00:00
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
|
|
|
";
|
|
|
|
shuffle($list);
|
|
|
|
foreach ($list as $item) {
|
|
|
|
$file = $item[0];
|
|
|
|
$itemname = $item[1];
|
|
|
|
$desc = $item[3];
|
2006-11-06 18:32:04 +00:00
|
|
|
$iname = urlencode($file);
|
2006-09-19 16:55:28 +00:00
|
|
|
echo "
|
2006-11-06 23:11:07 +00:00
|
|
|
<tr><td><a href=http://boinc.berkeley.edu/addon_item.php?platform=$short_name&item=$iname>$itemname</a></td>
|
2006-09-19 16:55:28 +00:00
|
|
|
<td>$desc</td>
|
|
|
|
</tr>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
echo "</table>
|
|
|
|
";
|
|
|
|
}
|
|
|
|
|
2006-11-06 18:32:04 +00:00
|
|
|
echo "<a name=windows></a>\n";
|
|
|
|
show_group("Windows", $win, 'win');
|
|
|
|
echo "<a name=linux></a>\n";
|
|
|
|
show_group("Linux", $linux, 'linux');
|
|
|
|
echo "<a name=mac></a>\n";
|
|
|
|
show_group("Mac", $mac, 'mac');
|
|
|
|
echo "<a name=browser></a>\n";
|
|
|
|
show_group("Web browser toolbars and plugins", $browser, 'browser');
|
|
|
|
echo "<a name=web></a>\n";
|
|
|
|
show_group("Web applications", $web, 'web');
|
2006-09-19 16:55:28 +00:00
|
|
|
|
2006-10-18 23:30:13 +00:00
|
|
|
if (!$strip_header) {
|
2006-09-19 16:55:28 +00:00
|
|
|
page_tail();
|
2006-10-18 21:53:22 +00:00
|
|
|
}
|
2006-09-19 16:55:28 +00:00
|
|
|
?>
|