From a679fab1ced4402944665611ff62eda2f0f3f829 Mon Sep 17 00:00:00 2001 From: Yann Leboulanger Date: Sun, 1 Jan 2006 19:12:36 +0000 Subject: [PATCH] 0.9.1-2 in debian that solve the group bug (commit [4924]) --- debian/changelog | 6 ++++++ debian/patches/00_debian-group_bugfix.patch | 13 +++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 debian/patches/00_debian-group_bugfix.patch diff --git a/debian/changelog b/debian/changelog index 942dcd1e7..30ef72d23 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +gajim (0.9.1-2) unstable; urgency=low + + * fix group bug Closes: #345306 + + -- Yann Le Boulanger Fri, 30 Dec 2005 13:09:55 +0100 + gajim (0.9.1-1) unstable; urgency=low * new upstream release diff --git a/debian/patches/00_debian-group_bugfix.patch b/debian/patches/00_debian-group_bugfix.patch new file mode 100644 index 000000000..0a5ab2190 --- /dev/null +++ b/debian/patches/00_debian-group_bugfix.patch @@ -0,0 +1,13 @@ +Index: src/roster_window.py +=================================================================== +--- src/roster_window.py (revision 4923) ++++ src/roster_window.py (working copy) +@@ -87,6 +87,8 @@ + model = self.tree.get_model() + root = self.get_account_iter(account) + group_iter = model.iter_children(root) ++ # C_NAME column contacts the pango escaped group name ++ name = gtkgui_helpers.escape_for_pango_markup(name) + while group_iter: + group_name = model[group_iter][C_NAME].decode('utf-8') + if name == group_name: