diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | pages/Makefile | 16 | ||||
-rw-r--r-- | pages/channels.ecpp | 39 |
3 files changed, 8 insertions, 49 deletions
@@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile,v 1.55 2007/12/17 21:24:33 tadi Exp $ +# $Id: Makefile,v 1.56 2007/12/17 21:57:29 tadi Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. diff --git a/pages/Makefile b/pages/Makefile index 53deb99..11b7ebe 100644 --- a/pages/Makefile +++ b/pages/Makefile @@ -15,15 +15,13 @@ VDRDIR ?= ../../../.. ### The object files (add further files here): -OBJS = menu.o channels.o recordings.o schedule.o \ - screenshot.o timers.o whats_on.o switch_channel.o \ - keypress.o remote.o channels_widget.o edit_timer.o \ - error.o pageelems.o tooltip.o vlc.o \ - searchtimers.o edit_searchtimer.o searchresults.o \ - searchepg.o login.o ibox.o xmlresponse.o \ - play_recording.o pause_recording.o stop_recording.o \ - ffw_recording.o rwd_recording.o setup.o content.o \ - epginfo.o +OBJS = menu.o recordings.o schedule.o screenshot.o timers.o \ + whats_on.o switch_channel.o keypress.o remote.o \ + channels_widget.o edit_timer.o error.o pageelems.o tooltip.o \ + vlc.o searchtimers.o edit_searchtimer.o searchresults.o \ + searchepg.o login.o ibox.o xmlresponse.o play_recording.o \ + pause_recording.o stop_recording.o ffw_recording.o \ + rwd_recording.o setup.o content.o epginfo.o ### Default rules: diff --git a/pages/channels.ecpp b/pages/channels.ecpp deleted file mode 100644 index 0dedcb9..0000000 --- a/pages/channels.ecpp +++ /dev/null @@ -1,39 +0,0 @@ -<%pre> -#include <vdr/plugin.h> -#include <vdr/channels.h> -#include "setup.h" -#include "tools.h" - -using namespace vdrlive; - -</%pre> -<html> - <head> - <title><$ tr("channels") $></title> - </head> - <body> - <div id="inhalt"> -<{ - - ReadLock channelsLock( Channels ); - if (channelsLock) { - for (cChannel *channel = Channels.First(); channel && channel->Number() <= LiveSetup().GetLastChannel(); channel = Channels.Next(channel)) { - if (!channel->GroupSep() && *channel->Name()) { -}> - <div class="channel"> - <a href="schedule.html?channel=<$ channel->Number() $>"><$ channel->Name() $></a> - </div> -<{ - } - } - } else { -}> - <div class="error"> - Zugriff auf Kanäle temporär nicht möglich. Bitte später versuchen. - </div> -<{ - } -}> - </div> - </body> -</html> |