summaryrefslogtreecommitdiff
path: root/channels.ecpp
diff options
context:
space:
mode:
authorThomas Keil <tkeil (at) datacrystal (dot) de>2007-01-02 19:37:57 +0000
committerThomas Keil <tkeil (at) datacrystal (dot) de>2007-01-02 19:37:57 +0000
commit6e6955d282944c5f2e73ab454cfcc374414986c6 (patch)
treea5cdc40d12f1d94d5be93cbf5b46574f66f11552 /channels.ecpp
parent48c46dfdd986ad4a7a0692d05992f7882bef6a88 (diff)
downloadvdr-plugin-live-6e6955d282944c5f2e73ab454cfcc374414986c6.tar.gz
vdr-plugin-live-6e6955d282944c5f2e73ab454cfcc374414986c6.tar.bz2
*** empty log message ***
Diffstat (limited to 'channels.ecpp')
-rw-r--r--channels.ecpp15
1 files changed, 11 insertions, 4 deletions
diff --git a/channels.ecpp b/channels.ecpp
index 6458f5b..dd9fef4 100644
--- a/channels.ecpp
+++ b/channels.ecpp
@@ -1,6 +1,13 @@
<%pre>
+#include <boost/lexical_cast.hpp>
+#include <vdr/plugin.h>
#include <vdr/channels.h>
</%pre>
+<%args>
+vorname;
+nachname;
+alter;
+</%args>
<html>
<head>
<title>ecpp-application testproject</title>
@@ -8,14 +15,14 @@
<body>
<{
- for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel)) {
- if (!channel->GroupSep() && *channel->Name()) {
+ for (cChannel *channel = Channels.First(); channel; channel = Channels.Next(channel)) {
+ if (!channel->GroupSep() && *channel->Name()) {
}>
- <$ channel->Name() $>
+ <$ channel->Name() $><a href="schedule.html?channel=<$ channel->Number() $>">Programm</a><br/>
<{
}
}
-
+
}>
</body>