boinc/doc/addon_item.php

73 lines
1.4 KiB
PHP
Raw Normal View History

<?php
require_once("docutil.php");
require_once("addon_data.php");
$platform = $_GET['platform'];
$item = $_GET['item'];
function show_item($y) {
$d = gmdate("g:i A \U\T\C, F d Y", $y[7]);
$file = $y[0];
if (strstr($file, 'http://')) {
$url = $file;
} else {
$url = "http://boinc.berkeley.edu/addons/$file";
}
page_head($y[1]);
list_start();
list_item(
"Name<br><font size=-2>Click to download</font>",
"<a href=$url>".$y[1].'</a>');
if ($y[2]) {
list_item("Version", $y[2]);
}
if ($y[3]) {
list_item("Summary", $y[3]);
}
if ($y[4]) {
list_item("Origin",
'<a href='.$y[4].'>'.$y[4].'</a>'
);
}
if ($y[5]) {
list_item("Platform", $y[5]);
}
if ($y[6]) {
list_item("Description", $y[6]);
}
list_item("Date", $d);
list_end();
page_tail();
}
if ($platform == 'win') {
$x = $win;
} else if ($platform == 'mac') {
$x = $mac;
} else if ($platform == 'linux') {
$x = $linux;
} else if ($platform == 'browser') {
$x = $browser;
} else if ($platform == 'web') {
$x = $web;
} else {
error_page('bad name');
}
$found = false;
foreach ($x as $y) {
if ($y[0] == $item) {
show_item($y);
$found = true;
break;
}
}
if (!$found) {
error_page('bad item');
}
?>