changeset b8403fe39fce in /home/hg/repos/gajim

branches: gtk3
details:http://hg.gajim.org/gajim?cmd=changeset;node=b8403fe39fce
description: apply tags to puny encoded urls. Fixes #7391

diffstat:

 src/conversation_textview.py |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (16 lines):

diff -r cc60f9107c06 -r b8403fe39fce src/conversation_textview.py
--- a/src/conversation_textview.py      Wed Jul 24 10:06:58 2013 +0200
+++ b/src/conversation_textview.py      Wed Jul 24 12:39:07 2013 +0200
@@ -1249,7 +1249,11 @@
             if 'url' in tags:
                 puny_text = puny_encode(special_text).decode('utf-8')
                 if not puny_text.endswith('-'):
-                    buffer_.insert(end_iter, " (%s)" % puny_text)
+                    puny_tags = []
+                    if use_other_tags:
+                        puny_tags += other_tags
+                    puny_tags = [(ttt.lookup(t) if isinstance(t, str) else t) 
for t in puny_tags]
+                    buffer_.insert_with_tags(end_iter, " (%s)" % puny_text, 
*puny_tags)
 
     def print_empty_line(self):
         buffer_ = self.tv.get_buffer()
_______________________________________________
Commits mailing list
[email protected]
http://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to