summaryrefslogtreecommitdiff
path: root/schedule.ecpp
diff options
context:
space:
mode:
authorDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-01-03 18:22:47 +0000
committerDieter Hametner <dh (plus) vdr (at) gekrumbel (dot) de>2007-01-03 18:22:47 +0000
commitf290227150bb13c72c87012e20a9ff7959f31a5f (patch)
treeb327aa93f52d5b373702eebb5e2d7e1882f7923a /schedule.ecpp
parente086df75301b2d17a3f6caacfa735d4c705b878b (diff)
downloadvdr-plugin-live-f290227150bb13c72c87012e20a9ff7959f31a5f.tar.gz
vdr-plugin-live-f290227150bb13c72c87012e20a9ff7959f31a5f.tar.bz2
Moved *.ecpp to pages and *.css to css subdir, added images dir
Diffstat (limited to 'schedule.ecpp')
-rw-r--r--schedule.ecpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/schedule.ecpp b/schedule.ecpp
deleted file mode 100644
index 76659b4..0000000
--- a/schedule.ecpp
+++ /dev/null
@@ -1,45 +0,0 @@
-<%pre>
-#include <vdr/plugin.h>
-#include <vdr/channels.h>
-#include <vdr/epg.h>
-#include <vdr/config.h>
-
-</%pre>
-<%args>
-int channel;
-</%args>
-<html>
- <head>
- <title>ecpp-application testproject</title>
- </head>
- <body>
-
- Programm für Channel Nummer <$ channel $><br/>
-
-<{
- cSchedulesLock schedulesLock;
- const cSchedules* schedules = cSchedules::Schedules(schedulesLock);
-
- cChannel* Channel = Channels.GetByNumber(channel);
- if (Channel) {
- const cSchedule *Schedule = schedules->GetSchedule(Channel);
- if (Schedule) {
- for (const cEvent *ev = Schedule->Events()->First(); ev; ev = Schedule->Events()->Next(ev)) {
-}>
- <$ ev->Title() $><br/>
-
-<{
- }
- } else {
-}>
- Kein Schedule für Channel <$ Channel->Number() $>
-<{
- }
- } else {
-}>
- Kein Channel mit der Nummer <$ channel $>
-<{
- }
-}>
- </body>
-</html>