diff options
Diffstat (limited to 'doc/web/homepage/en/install_0-1-0.inc')
-rw-r--r-- | doc/web/homepage/en/install_0-1-0.inc | 65 |
1 files changed, 25 insertions, 40 deletions
diff --git a/doc/web/homepage/en/install_0-1-0.inc b/doc/web/homepage/en/install_0-1-0.inc index 5702630..6db40f6 100644 --- a/doc/web/homepage/en/install_0-1-0.inc +++ b/doc/web/homepage/en/install_0-1-0.inc @@ -1,53 +1,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">Mindestversion</div></td> - <td><div class="withmargin">Empfohlen</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> - <tr> - <td><div class="withmargin">VDR</td> - <td><div class="withmargin">1.4.3</td> - <td><div class="withmargin"><= 1.5.7</td> - <td><div class="withmargin"><a href="http://www.cadsoft.de/vdr/download.htm">http://www.cadsoft.de/vdr/download.htm</a></div></td> - </tr> - <tr> - <td><div class="withmargin">Tntnet</div></td> - <td><div class="withmargin">1.5.3</div></td> - <td><div class="withmargin">>= 1.5.3</div></td> - <td><div class="withmargin"><a href="http://www.tntnet.org/download.html">http://www.tntnet.org/download.html</a></div></td> - </tr> - <tr> - <td><div class="withmargin">Cxxtools</div></td> - <td><div class="withmargin">1.4.3</div></td> - <td><div class="withmargin">>= 1.4.3</div></td> - <td><div class="withmargin"><a href="http://www.tntnet.org/download.html">http://www.tntnet.org/download.html</a></div></td> - </tr> - <tr> - <td><div class="withmargin">boost</div></td> - <td><div class="withmargin">1.32.0</div></td> - <td><div class="withmargin"></div></td> - <td><div class="withmargin"><a href="http://www.boost.org">http://www.boost.org</a></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">Verwendete VDR Plugins:</div></td> - </tr> - <tr> - <td><div class="withmargin">epgsearch</div></td> - <td><div class="withmargin">0.9.22</div></td> - <td><div class="withmargin">>= 0.9.22</div></td> - <td><div class="withmargin"><a href="http://winni.vdr-developer.org/epgsearch/index.html#download">http://winni.vdr-developer.org/epgsearch/index.html#download</a></div></td> + <td colspan="4"><div class="withmargin">Used VDR Plugins:</div></td> </tr> + <?php + foreach ($LiveSWConfigs[$selectedConfig]->Plugins() as $sc) { + SWConfTableRow($sc); + } + ?> </table> </div> - - Tntnet stellt grundlegende Webserver-Funktionen für LIVE zur - Verfügung. Cxxtools wird von Tntnet benötigt.<br /> - Boost stellt wichtige Datenstrukturen. Gegenwärtig benötigen - wir das Gesamtpaket, demnächst könnte es aber eine - abgespeckte Version, die nur das benötigte bereitstellt, von - uns geben. + <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> |