diff options
Diffstat (limited to 'doc/web/homepage/en/install_0-2-0.inc')
-rw-r--r-- | doc/web/homepage/en/install_0-2-0.inc | 98 |
1 files changed, 42 insertions, 56 deletions
diff --git a/doc/web/homepage/en/install_0-2-0.inc b/doc/web/homepage/en/install_0-2-0.inc index f270bac..c3c1b53 100644 --- a/doc/web/homepage/en/install_0-2-0.inc +++ b/doc/web/homepage/en/install_0-2-0.inc @@ -1,63 +1,49 @@ - <div class="tab"> +<?php + require_once ("../live-sw-configs.php"); + + $selectedConfig = '0.2.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">URL</div></td> - </tr> - <tr> - <td><div class="withmargin">VDR</td> - <td><div class="withmargin">1.4.0</td> - <td><div class="withmargin">>= 1.4.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.6.1</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.7</div></td> - <td><div class="withmargin"><a href="http://www.tntnet.org/download.html">http://www.tntnet.org/download.html</a></div></td> - </tr> + <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> + <td colspan="4"></td> + </tr> <tr class="description"> - <td colspan="4"><div class="withmargin">Optional:</div></td> - </tr> - <tr> - <td><div class="withmargin">boost</div></td> - <td><div class="withmargin">1.32.0</div></td> - <td><div class="withmargin">nur für GCC < 4.1</div></td> - <td><div class="withmargin"><a href="http://www.boost.org">http://www.boost.org</a></div></td> - </tr> + <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> + <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.24</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> - </tr> - <tr> - <td><div class="withmargin">streamdev</div></td> - <td><div class="withmargin">0.3.3</div></td> - <td><div class="withmargin">>= 0.3.4</div></td> - <td><div class="withmargin"><a href="http://streamdev.vdr-developer.org/">http://streamdev.vdr-developer.org</a></div></td> - </tr> + <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 TR1 C++-Erweiterungen bereit und wird nur von GCC - < 4.1 benötigt. + </div> + <p> + Tntnet provides the basic web server function for LIVE. + Cxxtools is needed for Tntnet.<br />*) Boost provides the + TR1 C++ extensions. These are only needed when compiled with + GCC < 4.1. Later GCC versions provide the TR1 extensions + natively. + </p> |