diff options
author | Andreas Mair <amair.sob@googlemail.com> | 2006-06-23 12:00:58 +0200 |
---|---|---|
committer | Andreas Mair <amair.sob@googlemail.com> | 2006-06-23 12:00:58 +0200 |
commit | fea04122f6f8b7e4f4ca4c59dc43be6567290d03 (patch) | |
tree | b4b632a66d38a4d7f14b9e78b1802a9c60e3f331 /contrib | |
parent | 9e8fe7b8ec42e928db062413ee824b7b4ec13132 (diff) | |
download | vdradmin-am-3.4.6beta3.tar.gz vdradmin-am-3.4.6beta3.tar.bz2 |
2006-06-23: 3.4.6beta3v3.4.6beta3
- Fixed: Crash in prog_detail if invalid EPG-ID (Bug #0000077, Reported by Reiner Buehl).
- Fixed: Bug #0000034 (Reported by The Unknown).
- Added: error page on internal vdradmind.pl errors.
- Changed: access_log.
- Removed: unused stuff in templates.
- Fixed: quote special characters in "find repeatings" URL (Reported by Hans-Joachim Gurt).
- Reworked: prog_timeline again (Fixes Bug #0000009, Reported by Georgius, Patch submitted by Torsten Herz).
- Fixed: correct sorting in prog_list2 selectbox at the end of a month (Reported by sirtobi).
- Changed: dates in prog_list2 selectbox now shows day and month (Requested by sirtobi).
- Changed: Removed tabs in configuration menu.
- Fixed: "Divide by 0" bug in prog_summary list view (Bug #0000072, Reported by djdagobert).
- Changed: Place folders in rec_list at the top (Patch submitted by Frank Jepsen).
- Fixed: Remember sorting after returning fom rec_rename (Bug #0000037, Reported by martind).
- Fixed: Canceling rec_rename does no longer rename the recording (Bug #0000036, Reported by martind).
- Fixed: VDRAdmin-AM didn't start if PID file was empty (Reported and fixed by Hirmke Michael).
- Fixed: In prog_list2 starting time also works for other days.
- Added: Icons to find repeatings and IMDb lookup in prog_list and prog_list2.
- Added: Each AutoTimer can have its own start/stop margins (Requested by many people at vdrportal.de). NOTE: vdradmind.at format changed!
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/README.vdr-aio21_svdrprename.patch | 3 | ||||
-rw-r--r-- | contrib/vdr-1.2.0-recordings-length.diff | 15 | ||||
-rwxr-xr-x | contrib/vdr-aio21_svdrprename.patch | 65 |
3 files changed, 0 insertions, 83 deletions
diff --git a/contrib/README.vdr-aio21_svdrprename.patch b/contrib/README.vdr-aio21_svdrprename.patch deleted file mode 100644 index f42a4b6..0000000 --- a/contrib/README.vdr-aio21_svdrprename.patch +++ /dev/null @@ -1,3 +0,0 @@ -Don't know the patch's author at the moment, found the patch at www.vdr-portal.de. - -This patch applies from vdr 1.3.19 - 1.3.22 even without enAIO patch (even if the patch's name suggests it). diff --git a/contrib/vdr-1.2.0-recordings-length.diff b/contrib/vdr-1.2.0-recordings-length.diff deleted file mode 100644 index a403e8e..0000000 --- a/contrib/vdr-1.2.0-recordings-length.diff +++ /dev/null @@ -1,15 +0,0 @@ -diff -uHr vdr-1.2.0.patched/svdrp.c vdr-1.2.0/svdrp.c ---- vdr-1.2.0.patched/svdrp.c 2003-04-27 16:21:07.000000000 +0200 -+++ vdr-1.2.0/svdrp.c 2003-06-06 21:34:03.000000000 +0200 -@@ -726,7 +726,10 @@ - else if (recordings) { - cRecording *recording = Recordings.First(); - while (recording) { -- Reply(recording == Recordings.Last() ? 250 : -250, "%d %s", recording->Index() + 1, recording->Title(' ', true)); -+ cIndexFile *oIndex = new cIndexFile(recording->FileName(), false); -+ const char *sTime = IndexToHMSF(oIndex->Last()); -+ Reply(recording == Recordings.Last() ? 250 : -250, "%d %s\t<%s>", recording->Index() + 1, recording->Title(' ', true), sTime); -+ delete oIndex; - recording = Recordings.Next(recording); - } - } diff --git a/contrib/vdr-aio21_svdrprename.patch b/contrib/vdr-aio21_svdrprename.patch deleted file mode 100755 index e279615..0000000 --- a/contrib/vdr-aio21_svdrprename.patch +++ /dev/null @@ -1,65 +0,0 @@ -diff -Nru vdr-1.3.11/svdrp.c vdr-1.3.11.patch/svdrp.c ---- vdr-1.3.11/svdrp.c Sun Jun 13 15:38:38 2004 -+++ vdr-1.3.11.patch/svdrp.c Thu Aug 26 14:41:54 2004 -@@ -256,6 +256,8 @@ - " format defined in vdr(5) for the 'epg.data' file. A '.' on a line\n" - " by itself terminates the input and starts processing of the data (all\n" - " entered data is buffered until the terminating '.' is seen).", -+ "RENR <number> <new name>\n" -+ " Rename recording. Number must be the Number as returned by LSTR command.", - "SCAN\n" - " Forces an EPG scan. If this is a single DVB device system, the scan\n" - " will be done on the primary device unless it is currently recording.", -@@ -1025,7 +1027,33 @@ - EITScanner.ForceScan(); - Reply(250, "EPG scan triggered"); - } -+void cSVDRP::CmdRENR(const char *Option) -+{ -+ bool recordings = Recordings.Load(); -+ if (recordings) { -+ if (*Option) { -+ char *tail; -+ int n = strtol(Option, &tail, 10); -+ cRecording *recording = Recordings.Get(n - 1); -+ if (recording && tail && tail != Option) { -+ tail = skipspace(tail); -+ int priority=recording->priority; -+ int lifetime=recording->lifetime; -+ recording->Rename(tail,&priority,&lifetime); -+ Reply (250,"Renamed \"%s\" to \"%s\"",recording->Name(),tail); -+ // Reply (200,"New Name: %s",tail); -+ } -+ else -+ Reply(501, "Recording not found or wrong syntax"); -+ } -+ else -+ Reply(501, "Missing Input settings"); -+ } -+ else -+ Reply(550, "No recordings available"); -+} - -+ - void cSVDRP::CmdSTAT(const char *Option) - { - if (*Option) { -@@ -1133,6 +1161,7 @@ - else if (CMD("NEWT")) CmdNEWT(s); - else if (CMD("NEXT")) CmdNEXT(s); - else if (CMD("PUTE")) CmdPUTE(s); -+ else if (CMD("RENR")) CmdRENR(s); - else if (CMD("SCAN")) CmdSCAN(s); - else if (CMD("STAT")) CmdSTAT(s); - else if (CMD("UPDT")) CmdUPDT(s); -diff -Nru vdr-1.3.11/svdrp.h vdr-1.3.11.patch/svdrp.h ---- vdr-1.3.11/svdrp.h Sat Jan 17 14:30:52 2004 -+++ vdr-1.3.11.patch/svdrp.h Thu Aug 26 14:41:54 2004 -@@ -73,6 +73,7 @@ - void CmdNEWT(const char *Option); - void CmdNEXT(const char *Option); - void CmdPUTE(const char *Option); -+ void CmdRENR(const char *Option); - void CmdSCAN(const char *Option); - void CmdSTAT(const char *Option); - void CmdUPDT(const char *Option); |