r7974 - in /vdr/vdr-plugin-live/trunk/debian: changelog patches/00list patches/02_timers_colon.dpatch
timo-guest at users.alioth.debian.org
timo-guest at users.alioth.debian.org
Sun Oct 25 17:38:03 UTC 2009
Author: timo-guest
Date: Sun Oct 25 17:38:03 2009
New Revision: 7974
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/?sc=1&rev=7974
Log:
* Added 02_timers_colon to prevent cutting off timer titles after first
colon (Closes: #538605).
Added:
vdr/vdr-plugin-live/trunk/debian/patches/02_timers_colon.dpatch
Modified:
vdr/vdr-plugin-live/trunk/debian/changelog
vdr/vdr-plugin-live/trunk/debian/patches/00list
Modified: vdr/vdr-plugin-live/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-live/trunk/debian/changelog?rev=7974&op=diff
==============================================================================
--- vdr/vdr-plugin-live/trunk/debian/changelog (original)
+++ vdr/vdr-plugin-live/trunk/debian/changelog Sun Oct 25 17:38:03 2009
@@ -1,3 +1,10 @@
+vdr-plugin-live (0.2.0-6) unstable; urgency=low
+
+ * Added 02_timers_colon to prevent cutting off timer titles after first
+ colon (Closes: #538605).
+
+ -- Timo Weingärtner <timo at tiwe.de> Sun, 25 Oct 2009 18:08:22 +0100
+
vdr-plugin-live (0.2.0-5) unstable; urgency=low
[ Thomas Günther ]
Modified: vdr/vdr-plugin-live/trunk/debian/patches/00list
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-live/trunk/debian/patches/00list?rev=7974&op=diff
==============================================================================
--- vdr/vdr-plugin-live/trunk/debian/patches/00list (original)
+++ vdr/vdr-plugin-live/trunk/debian/patches/00list Sun Oct 25 17:38:03 2009
@@ -1,1 +1,2 @@
01_ipv6
+02_timers_colon
Added: vdr/vdr-plugin-live/trunk/debian/patches/02_timers_colon.dpatch
URL: http://svn.debian.org/wsvn/pkg-vdr-dvb/vdr/vdr-plugin-live/trunk/debian/patches/02_timers_colon.dpatch?rev=7974&op=file
==============================================================================
--- vdr/vdr-plugin-live/trunk/debian/patches/02_timers_colon.dpatch (added)
+++ vdr/vdr-plugin-live/trunk/debian/patches/02_timers_colon.dpatch Sun Oct 25 17:38:03 2009
@@ -1,0 +1,18 @@
+#! /bin/sh /usr/share/dpatch/dpatch-run
+## 02_timers_colon.dpatch by Timo Weingärtner <timo at tiwe.de>
+##
+## All lines beginning with `## DP:' are a description of the patch.
+## DP: colons have to be replaced by pipes in timer titles.
+
+ at DPATCH@
+--- vdr-plugin-live-0.2.0/timers.cpp 2008-04-10 22:06:05.000000000 +0200
++++ vdr-plugin-live-0.2.0.new/timers.cpp 2009-07-25 23:39:02.000000000 +0200
+@@ -138,7 +138,7 @@
+ ostringstream builder;
+ builder << flags << ":" << channel << ":" << ( weekdays != "-------" ? weekdays : "" )
+ << ( weekdays == "-------" || day.empty() ? "" : "@" ) << day << ":" << start << ":" << stop << ":"
+- << priority << ":" << lifetime << ":" << title << ":" << aux;
++ << priority << ":" << lifetime << ":" << StringReplace(title, ":", "|") << ":" << aux;
+ // dsyslog("%s", builder.str().c_str());
+
+ TimerPair timerData( timer, builder.str() );
More information about the pkg-vdr-dvb-changes
mailing list