diff options
author | Andreas Brugger <brougs78@gmx.net> | 2005-10-22 12:00:00 +0200 |
---|---|---|
committer | Thomas Günther <tom@toms-cafe.de> | 2009-06-03 00:54:05 +0200 |
commit | 71023584dc849dc3705c6db303878fd27e8704c7 (patch) | |
tree | df6f44ec265c3e19b28c624a8d1ea737e6b80c75 /xml | |
parent | 9ed162fa14e348bf9660f393d24b36d0a8492a67 (diff) | |
download | vdr-plugin-text2skin-71023584dc849dc3705c6db303878fd27e8704c7.tar.gz vdr-plugin-text2skin-71023584dc849dc3705c6db303878fd27e8704c7.tar.bz2 |
2005-10-22: Version 1.1-cvs_ext-0.1 (vdr-text2skin-1.1-cvs_ext-0.1.diff)
- added several tokens:
NextTimerName, NextTimerStart, NextTimerChannel, TimerConflict,
CurrentRecordingsCount, using the service "CheckTimerConflict-v1.0" to
check timer conflicts. A patch for the timeline-plugin is included in
Enigma-0.4pre2 (timeline_CheckTimerConflictService-0.1.diff)
Diffstat (limited to 'xml')
-rw-r--r-- | xml/string.c | 2 | ||||
-rw-r--r-- | xml/string.h | 5 |
2 files changed, 6 insertions, 1 deletions
diff --git a/xml/string.c b/xml/string.c index afc0c7a..845b766 100644 --- a/xml/string.c +++ b/xml/string.c @@ -10,7 +10,7 @@ static const char *Tokens[__COUNT_TOKEN__] = { // Channel Display "ChannelNumber", "ChannelName", "ChannelShortName", "ChannelBouquet", "ChannelPortal", - "ChannelSource", "ChannelID", "PresentStartDateTime", "PresentVPSDateTime", + "ChannelSource", "ChannelID", "NextTimerName", "NextTimerStart", "NextTimerChannel", "TimerConflict", "CurrentRecordingsCount", "PresentStartDateTime", "PresentVPSDateTime", "PresentEndDateTime", "PresentDuration", "PresentProgress", "PresentRemaining", "PresentTitle", "PresentShortText", "PresentDescription", "FollowingStartDateTime", "FollowingVPSDateTime", "FollowingEndDateTime", "FollowingDuration", diff --git a/xml/string.h b/xml/string.h index 7c3f30f..6c78373 100644 --- a/xml/string.h +++ b/xml/string.h @@ -24,6 +24,11 @@ enum exToken { tChannelSource, tTChannelID, // (name clash) // next 9 also in Menu + tNextTimerName, + tNextTimerStart, + tNextTimerChannel, + tTimerConflict, + tCurrentRecordingsCount, tPresentStartDateTime, tPresentVPSDateTime, tPresentEndDateTime, |