mirror of https://github.com/BOINC/boinc.git
svn path=/trunk/boinc/; revision=26081
This commit is contained in:
parent
77f44e521c
commit
5a7f63db93
|
@ -12,6 +12,29 @@ array(
|
|||
'unix date'
|
||||
);
|
||||
|
||||
$mobile = array(
|
||||
array(
|
||||
'http://code.google.com/p/androboinc/',
|
||||
'AndroBOINC',
|
||||
'beta',
|
||||
'BOINC graphical interface for Android devices',
|
||||
'http://code.google.com/p/androboinc/',
|
||||
'Android',
|
||||
'AndroBOINC lets you monitor and control a BOINC client from an Android device.',
|
||||
1347081659
|
||||
),
|
||||
array(
|
||||
'http://www.efmer.eu/boinc/boinc_tasks/mobile.html',
|
||||
'BoincTasks Mobile',
|
||||
'',
|
||||
'BOINC graphical interface for mobile devices (Android, iPhone, iPad)',
|
||||
'http://www.efmer.eu/boinc/boinc_tasks/mobile.html',
|
||||
'Android, iOS',
|
||||
'BoincTasks Mobile lets you monitor and control BOINC clients from a mobile device. Requires BoincTasks to be running on a desktop computer.',
|
||||
1347081659
|
||||
),
|
||||
);
|
||||
|
||||
$win = array(
|
||||
array(
|
||||
'http://www.myfavoritegadgets.info/monitors/BOINCMonitor/BOINCMonitor.html',
|
||||
|
|
|
@ -53,6 +53,8 @@ if ($platform == 'win') {
|
|||
$x = $browser;
|
||||
} else if ($platform == 'web') {
|
||||
$x = $web;
|
||||
} else if ($platform == 'mobile') {
|
||||
$x = $mobile;
|
||||
} else {
|
||||
boinc_error_page('bad name');
|
||||
}
|
||||
|
|
|
@ -61,6 +61,8 @@ 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=mobile></a>\n";
|
||||
show_group("Mobile", $mobile, 'mobile');
|
||||
echo "<a name=browser></a>\n";
|
||||
show_group("Web browser toolbars and plugins", $browser, 'browser');
|
||||
echo "<a name=web></a>\n";
|
||||
|
|
|
@ -83,6 +83,8 @@ function show_participate() {
|
|||
<a class=heading href=download.php><b>".tra("Download")."</b></a>
|
||||
· <a class=heading href=\"/wiki/BOINC_Help\"><b>".tra("Help")."</b></a>
|
||||
· <a class=heading href=\"wiki/User_manual\"><b><span class=nobr>".tra("Documentation")."</span></b></a>
|
||||
· <a class=heading href=addons.php><b><span class=nobr>".tra("Add-ons")."</span></b></a>
|
||||
· <a class=heading href=links.php><b><span class=nobr>".tra("Links")."</span></b></a>
|
||||
</center>
|
||||
</td></tr>
|
||||
<tr><td>
|
||||
|
|
Loading…
Reference in New Issue