blob: c57889e829d91576040d1b2c6a9159e949085ab8 (
plain)
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
|
<?php
require_once ("../live-sw-configs.php");
$selectedConfig = 'devel';
?>
<div class="tab">
<table class="listing" style="margin-bottom: 15px; width: 100%" cellspacing="0" cellpadding="0">
<tr class="description">
<td><div class="withmargin">Software</div></td>
<td><div class="withmargin">Mindestversion</div></td>
<td><div class="withmargin">Empfohlen</div></td>
<td><div class="withmargin">URL</div></td>
</tr>
<?php
foreach ($LiveSWConfigs[$selectedConfig]->Required() as $sc) {
SWConfTableRow($sc);
}
?>
<tr class="spacer">
<td colspan="4"></td>
</tr>
<tr class="description">
<td colspan="4"><div class="withmargin">Optional:</div></td>
</tr>
<?php
foreach ($LiveSWConfigs[$selectedConfig]->Optional() as $sc) {
SWConfTableRow($sc);
}
?>
<tr class="spacer">
<td colspan="4"></td>
</tr>
<tr class="description">
<td colspan="4"><div class="withmargin">Verwendete VDR Plugins:</div></td>
</tr>
<?php
foreach ($LiveSWConfigs[$selectedConfig]->Plugins() as $sc) {
SWConfTableRow($sc);
}
?>
</table>
</div>
<p>
Tntnet stellt grundlegende Webserver-Funktionen für LIVE zur
Verfügung. Cxxtools wird von Tntnet benötigt.<br />*) Boost
stellt TR1 C++-Erweiterungen bereit und wird nur von GCC
< 4.1 benötigt.
</p>
|