blob: 6db40f6c3c8b34ea09c676bdfcbf42c68d0cdfc8 (
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
|
<?php
require_once ("../live-sw-configs.php");
$selectedConfig = '0.1.0';
?>
<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">minimal version</div></td>
<td><div class="withmargin">recommended</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">Used VDR Plugins:</div></td>
</tr>
<?php
foreach ($LiveSWConfigs[$selectedConfig]->Plugins() as $sc) {
SWConfTableRow($sc);
}
?>
</table>
</div>
<p>
Tntnet provides the basic web server function for LIVE.
Cxxtools is needed for Tntnet.<br /> *) Boost provides
important data structures. Currently the complete package is
needed. In the future a stripped down version might be part
of the LIVE distribution.
</p>
|