summaryrefslogtreecommitdiff
path: root/channels.ecpp
diff options
context:
space:
mode:
Diffstat (limited to 'channels.ecpp')
-rw-r--r--channels.ecpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/channels.ecpp b/channels.ecpp
deleted file mode 100644
index aa48f03..0000000
--- a/channels.ecpp
+++ /dev/null
@@ -1,29 +0,0 @@
-<%pre>
-#include <boost/lexical_cast.hpp>
-#include <vdr/plugin.h>
-#include <vdr/channels.h>
-</%pre>
-<html>
- <head>
- <title><$ tr("channels") $></title>
- </head>
- <body>
-
- <div id="inhalt">
-<{
-
- for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel)) {
- if (!channel->GroupSep() && *channel->Name()) {
-}>
- <div class="channel">
- <a href="schedule.html?channel=<$ channel->Number() $>"><$ channel->Name() $></a>
- </div>
-<{
- }
- }
-
-
-}>
- </div>
- </body>
-</html>