[Python-apps-commits] r8584 - in packages/retext/trunk/debian (4 files)

mitya57-guest at users.alioth.debian.org mitya57-guest at users.alioth.debian.org
Wed May 2 17:33:57 UTC 2012


    Date: Wednesday, May 2, 2012 @ 17:33:55
  Author: mitya57-guest
Revision: 8584

* Add debian/patches/git_fix_insert_chars.patch from upstream Git
* Releasing 3.0.3-1

Added:
  packages/retext/trunk/debian/patches/
  packages/retext/trunk/debian/patches/git_fix_insert_chars.patch
  packages/retext/trunk/debian/patches/series
Modified:
  packages/retext/trunk/debian/changelog

Modified: packages/retext/trunk/debian/changelog
===================================================================
--- packages/retext/trunk/debian/changelog	2012-05-02 11:05:34 UTC (rev 8583)
+++ packages/retext/trunk/debian/changelog	2012-05-02 17:33:55 UTC (rev 8584)
@@ -1,10 +1,13 @@
-retext (3.0.3-1) UNRELEASED; urgency=low
+retext (3.0.3-1) unstable; urgency=low
 
   * New upstream release
+    - Now HTML export works correctly
   * Set DM-Upload-Allowed to yes
+  * debian/patches/git_fix_insert_chars.patch:
+    - Fix typo in insertChars() function (taken from upstream Git)
   * Add Czech, Danish and Polish translations for retext.desktop
 
- -- Dmitry Shachnev <mitya57 at gmail.com>  Fri, 27 Apr 2012 18:19:11 +0400
+ -- Dmitry Shachnev <mitya57 at gmail.com>  Wed, 02 May 2012 21:29:35 +0400
 
 retext (3.0.2-1) unstable; urgency=low
 

Added: packages/retext/trunk/debian/patches/git_fix_insert_chars.patch
===================================================================
--- packages/retext/trunk/debian/patches/git_fix_insert_chars.patch	                        (rev 0)
+++ packages/retext/trunk/debian/patches/git_fix_insert_chars.patch	2012-05-02 17:33:55 UTC (rev 8584)
@@ -0,0 +1,13 @@
+diff --git a/retext.py b/retext.py
+index f39f9df..e88bf76 100755
+--- a/retext.py
++++ b/retext.py
+@@ -1285,7 +1285,7 @@ class ReTextWindow(QMainWindow):
+ 	
+ 	def insertChars(self, chars):
+ 		tc = self.editBoxes[self.ind].textCursor()
+-		if tc.hasSelection:
++		if tc.hasSelection():
+ 			tc.insertText(chars+tc.selectedText()+chars)
+ 		else:
+ 			tc.insertText(chars)

Added: packages/retext/trunk/debian/patches/series
===================================================================
--- packages/retext/trunk/debian/patches/series	                        (rev 0)
+++ packages/retext/trunk/debian/patches/series	2012-05-02 17:33:55 UTC (rev 8584)
@@ -0,0 +1 @@
+git_fix_insert_chars.patch




More information about the Python-apps-commits mailing list