diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2001-02-11 11:29:22 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2001-02-11 11:29:22 +0100 |
commit | c0ed9649a3f32b4510eddb47dfd82bcc860eac70 (patch) | |
tree | 1302204c7951816cad401e604d1ba3a8c42cb6ae | |
parent | 535e755278ef51b923a71299204ec86da4229d02 (diff) | |
download | vdr-c0ed9649a3f32b4510eddb47dfd82bcc860eac70.tar.gz vdr-c0ed9649a3f32b4510eddb47dfd82bcc860eac70.tar.bz2 |
Fixed handling ':' in timer filenames and '\n' in timer summaries
-rw-r--r-- | FORMATS | 6 | ||||
-rw-r--r-- | HISTORY | 1 | ||||
-rw-r--r-- | config.c | 8 | ||||
-rw-r--r-- | tools.c | 4 |
4 files changed, 14 insertions, 5 deletions
@@ -56,8 +56,10 @@ Video Disk Recorder File Formats - End time (first two digits for the hour, second two digits for the minutes) - Priority (from 00 to 99, 00 = lowest prioity, 99 = highest priority) - Guaranteed lifetime of recording (in days) - - Name of timer (will be used to name the recording) - - Summary + - Name of timer (will be used to name the recording); if the name contains + any ':' characters, these have to be replaced with '|' + - Summary (any newline characters in the summary have to be replaced with '|'; + the summary may contain ':' characters) * setup.conf @@ -388,3 +388,4 @@ Video Disk Recorder Revision History restore the list when switching between them. - The "Green" button in the "Recordings" menu can now be used to rewind a recording and play it from the very beginning. +- Fixed handling ':' in timer filenames and '\n' in timer summaries (see FORMATS). @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: config.c 1.40 2001/02/03 16:19:42 kls Exp $ + * $Id: config.c 1.41 2001/02/11 11:22:48 kls Exp $ */ #include "config.h" @@ -368,7 +368,11 @@ cTimer& cTimer::operator= (const cTimer &Timer) const char *cTimer::ToText(cTimer *Timer) { delete buffer; + strreplace(Timer->file, ':', '|'); + strreplace(Timer->summary, '\n', '|'); asprintf(&buffer, "%d:%d:%s:%04d:%04d:%d:%d:%s:%s\n", Timer->active, Timer->channel, PrintDay(Timer->day), Timer->start, Timer->stop, Timer->priority, Timer->lifetime, Timer->file, Timer->summary ? Timer->summary : ""); + strreplace(Timer->summary, '|', '\n'); + strreplace(Timer->file, '|', ':'); return buffer; } @@ -457,6 +461,8 @@ bool cTimer::Parse(const char *s) //TODO add more plausibility checks day = ParseDay(buffer1); strn0cpy(file, buffer2, MaxFileName); + strreplace(file, '|', ':'); + strreplace(summary, '|', '\n'); delete buffer1; delete buffer2; delete s2; @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: tools.c 1.28 2001/02/04 11:27:49 kls Exp $ + * $Id: tools.c 1.29 2001/02/11 11:18:45 kls Exp $ */ #define _GNU_SOURCE @@ -51,7 +51,7 @@ char *strreplace(char *s, char c1, char c2) { char *p = s; - while (*p) { + while (p && *p) { if (*p == c1) *p = c2; p++; |