1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
<?php
/**
*/
$locale = explode('/', $_SERVER['REQUEST_URI']);
$locale = $locale[1];
include 'downloads_locales.php';
if (!array_key_exists($locale, $_t))
$locale = 'en';
$_t = $_t[$locale];
$prods = parse_ini_file('downloads.ini', true);
$countries = array(
'CH' => 'Switzerland',
'CN' => 'China',
'CZ' => 'Czechia',
'DE' => 'Deutschland (Germany)',
'FR' => 'France',
'GR' => 'Greece',
'NC' => 'New Caledonia',
'NL' => 'Nederlands',
'UK' => 'the UK',
'US' => 'the USA',
);
$tmpl = <<<T
<tr%s>
<td class="name">%s</td>
<td class="lang">%s</td>
<td class="size">%s</td>
<td class="link"><a href="%s" rel="nofollow">%s</a></td>
<td class="link"><a href="%s" rel="nofollow">%s</a></td>
</tr>
T;
//<td class="pop"><span class="pop_%s">%s</span></td>
$s = '';
$glob = array_shift($prods);
$i = 0;
foreach ($prods as $k => $p) {
$iso = sprintf('%s-%s', $glob['prefix'], $k);
$dl_link = sprintf('/%s/downloads/dl.php?product=%s', $locale, $iso);
$bt_link = isset($p['torrent']) ?
sprintf('/%s/downloads/dl.php?product=%s&torrent=1', $locale, $iso) :
null;
$pop = rand(0,5);
$s .= sprintf($tmpl,
'', //($i == 0) ? ' class="reco"' : '',
$p['name'], $_t[$p['lang']], $p['size'],
//$pop, $pop,
$dl_link, $_t['download'],
$bt_link, !is_null($bt_link) ? $_t['download'] : '');
$i++;
}
$dl_table = <<<T
<table class="dlt2">
<thead>
<tr>
<th>{$_t['flavour']}</th>
<th>{$_t['language']}</th>
<th class="size">{$_t['size']}</th>
<th>{$_t['link']}</th>
<th>BitTorrent</th>
</tr>
</thead>
<tbody>
{$s}
</tbody>
</table>
<p class="dlinfo"><strong>Live CDs will be released as soon as ready.</strong></p>
<p class="dlinfo">{$_t['all_languages']}</p>
<p class="dlinfo">{$_t['limited_languages']}</p>
<!--
<p class="dlinfo">{$_t['euro_languages']}</p>
-->
T;
|