summaryrefslogtreecommitdiff
path: root/doc/web/homepage/live-sw-configs.php
diff options
context:
space:
mode:
Diffstat (limited to 'doc/web/homepage/live-sw-configs.php')
-rw-r--r--doc/web/homepage/live-sw-configs.php65
1 files changed, 0 insertions, 65 deletions
diff --git a/doc/web/homepage/live-sw-configs.php b/doc/web/homepage/live-sw-configs.php
deleted file mode 100644
index b34cd7d..0000000
--- a/doc/web/homepage/live-sw-configs.php
+++ /dev/null
@@ -1,65 +0,0 @@
-<?php
-$LiveSWConfigs = array(
-/*
- * devel currently same as '0.3.0'. See below!
- 'devel' => new LiveSWConfig(
- array(),
- array(),
- array()
- ),
-*/
- '0.3.0' => new LiveSWConfig(
- array(
- new SoftwareComponent('VDR', '1.4.0', '&gt;= 1.7.36', 'http://www.tvdr.de/download.htm'),
- new SoftwareComponent('Tntnet', '1.6.3', '&gt;= 2.0', 'http://www.tntnet.org/download.html'),
- new SoftwareComponent('Cxxtools', '1.4.8', '&gt;= 2.0', 'http://www.tntnet.org/download.html'),
- new SoftwareComponent('PCRE', '7.6', '&gt;= 8.02', 'http://www.pcre.org/')
- ),
- array(
- new SoftwareComponent('boost', '1.32.0', 'GCC &lt; 4.1<sup><small>*</small></sup>', 'http://www.boost.org')
- ),
- array(
- new SoftwareComponent('epgsearch', '0.9.22', '&gt;= 0.9.25', 'http://winni.vdr-developer.org/epgsearch/index.html#download'),
- new SoftwareComponent('streamdev', '0.3.3', '&gt;= 0.3.4', 'http://streamdev.vdr-developer.org/')
- )
- ),
- '0.2.0' => new LiveSWConfig(
- array(
- new SoftwareComponent('VDR', '1.4.0', '&gt;= 1.4.7', 'http://www.tvdr.de/download.htm'),
- new SoftwareComponent('Tntnet', '1.5.3', '&gt;= 1.6.1', 'http://www.tntnet.org/download.html'),
- new SoftwareComponent('Cxxtools', '1.4.3', '&gt;= 1.4.7', 'http://www.tntnet.org/download.html')
- ),
- array(
- new SoftwareComponent('boost', '1.32.0', 'GCC &lt; 4.1<sup><small>*</small></sup>', 'http://www.boost.org')
- ),
- array(
- new SoftwareComponent('epgsearch', '0.9.22', '&gt;= 0.9.24', 'http://winni.vdr-developer.org/epgsearch/index.html#download'),
- new SoftwareComponent('streamdev', '0.3.3', '&gt;= 0.3.4', 'http://streamdev.vdr-developer.org/')
- )
- ),
- '0.1.0' => new LiveSWConfig(
- array(
- new SoftwareComponent('VDR', '1.4.0', '&lt;= 1.5.7', 'http://www.tvdr.de/download.htm'),
- new SoftwareComponent('Tntnet', '1.5.3', '&gt;= 1.5.3', 'http://www.tntnet.org/download.html'),
- new SoftwareComponent('Cxxtools', '1.4.3', '&gt;= 1.4.3', 'http://www.tntnet.org/download.html'),
- new SoftwareComponent('boost<sup><small>*</small></sup>', '1.32.0', '', 'http://www.boost.org')
- ),
- array(),
- array(
- new SoftwareComponent('epgsearch', '0.9.22', '&gt;= 0.9.22', 'http://winni.vdr-developer.org/epgsearch/index.html#download')
- )
- )
- );
-
-$LiveSWConfigs['devel'] = $LiveSWConfigs['0.3.0'];
-
-function SWConfTableRow($sc)
-{
- echo "<tr>\n";
- echo " <td><div class=\"withmargin\">" . $sc->Name() . "</div></td>\n";
- echo " <td><div class=\"withmargin\">" . $sc->MinVersion() . "</div></td>\n";
- echo " <td><div class=\"withmargin\">" . $sc->RecommendedVersion() . "</div></td>\n";
- echo " <td><div class=\"withmargin\"><a href=\"" . $sc->Homepage() . "\">" . $sc->Homepage() . "</a></div></td>\n";
- echo "</tr>\n";
-}
-?>