summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Keil <tkeil (at) datacrystal (dot) de>2007-01-03 15:18:04 +0000
committerThomas Keil <tkeil (at) datacrystal (dot) de>2007-01-03 15:18:04 +0000
commit32b1bb04be607b1416bc7f3b0d0366df2318afb3 (patch)
treec1aef8d0733bcca8abfce8489c04a415b98fb9d4
parent0eb76f4fb787fdcc78c8b934204058613489f22a (diff)
downloadvdr-plugin-live-32b1bb04be607b1416bc7f3b0d0366df2318afb3.tar.gz
vdr-plugin-live-32b1bb04be607b1416bc7f3b0d0366df2318afb3.tar.bz2
Zwischen-commit
-rw-r--r--Makefile4
-rw-r--r--channels.ecpp24
2 files changed, 14 insertions, 14 deletions
diff --git a/Makefile b/Makefile
index 4688998..13a69c4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id: Makefile,v 1.6 2007/01/02 21:30:58 lordjaxom Exp $
+# $Id: Makefile,v 1.7 2007/01/03 15:18:04 thomas Exp $
# The official name of this plugin.
# This name will be used in the '-P...' option of VDR to load the plugin.
@@ -56,7 +56,7 @@ SUBDIRS = httpd
OBJS = $(PLUGIN).o thread.o tntconfig.o setup.o
-WEBS = channels.o schedule.o
+WEBS = styles.o menu.o channels.o schedule.o whats_on_now.o
### Default rules:
diff --git a/channels.ecpp b/channels.ecpp
index dd9fef4..aa48f03 100644
--- a/channels.ecpp
+++ b/channels.ecpp
@@ -3,27 +3,27 @@
#include <vdr/plugin.h>
#include <vdr/channels.h>
</%pre>
-<%args>
-vorname;
-nachname;
-alter;
-</%args>
<html>
- <head>
- <title>ecpp-application testproject</title>
- </head>
- <body>
+ <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()) {
}>
- <$ channel->Name() $><a href="schedule.html?channel=<$ channel->Number() $>">Programm</a><br/>
+ <div class="channel">
+ <a href="schedule.html?channel=<$ channel->Number() $>"><$ channel->Name() $></a>
+ </div>
<{
}
}
-
+
}>
- </body>
+ </div>
+ </body>
</html>