diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2002-12-22 14:07:51 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2002-12-22 14:07:51 +0100 |
commit | 3b88ba1cd2d44b47c619e1a49275377fcd9af7a3 (patch) | |
tree | 089ba3b2fdee064ccf29e23e72cdd0d3e79a9394 | |
parent | de1366fc7ed67cd5b1952b5fef3269753f52dea6 (diff) | |
download | vdr-3b88ba1cd2d44b47c619e1a49275377fcd9af7a3.tar.gz vdr-3b88ba1cd2d44b47c619e1a49275377fcd9af7a3.tar.bz2 |
The SVDRP command CHAN now also accepts channel IDs
-rw-r--r-- | HISTORY | 6 | ||||
-rw-r--r-- | svdrp.c | 26 |
2 files changed, 16 insertions, 16 deletions
@@ -1901,11 +1901,7 @@ Video Disk Recorder Revision History 2002-12-22: Version 1.1.21 -- The 'C' record in the 'epg.data' file now also contains the channel numbers (see - man vdr(5)). This does mean some redundancy, but it helps applications that don't - want to parse the channel definitions in order to work with the channel numbers. - When reading the 'epg.data' file VDR only interprets the channel IDs, everyting - else is optional and has no meaning to VDR. - Fixed the 'channels.conf' entries for "Studio Universal" and "Disney Channel". - Fixed handling channels in the "Channels" menu in case there are ':@nnn' group separators without names (thanks to Guy Roussin for reporting this one). +- The SVDRP command CHAN now also accepts channel IDs. @@ -10,7 +10,7 @@ * and interact with the Video Disk Recorder - or write a full featured * graphical interface that sits on top of an SVDRP connection. * - * $Id: svdrp.c 1.49 2002/11/10 12:09:56 kls Exp $ + * $Id: svdrp.c 1.50 2002/12/22 14:04:08 kls Exp $ */ #include "svdrp.h" @@ -174,8 +174,8 @@ bool cPUTEhandler::Process(const char *s) #define MAXHELPTOPIC 10 const char *HelpPages[] = { - "CHAN [ + | - | <number> | <name> ]\n" - " Switch channel up, down or to the given channel number or name.\n" + "CHAN [ + | - | <number> | <name> | <id> ]\n" + " Switch channel up, down or to the given channel number, name or id.\n" " Without option (or after successfully switching to the channel)\n" " it returns the current channel number and name.", "CLRE\n" @@ -412,15 +412,19 @@ void cSVDRP::CmdCHAN(const char *Option) } } else { - int i = 1; - cChannel *channel; - while ((channel = Channels.GetByNumber(i, 1)) != NULL) { - if (strcasecmp(channel->Name(), Option) == 0) { - n = i; - break; + cChannel *channel = Channels.GetByChannelID(tChannelID::FromString(Option)); + if (channel) + n = channel->Number(); + else { + int i = 1; + while ((channel = Channels.GetByNumber(i, 1)) != NULL) { + if (strcasecmp(channel->Name(), Option) == 0) { + n = channel->Number(); + break; + } + i = channel->Number() + 1; } - i = channel->Number() + 1; - } + } } if (n < 0) { Reply(501, "Undefined channel \"%s\"", Option); |