diff frontends/src/primitivus/chat.py @ 510:886754295efe

quick frontend, primitivus, wix: MUC private messages management /!\ not fully finished, backend part is not done yet /!\ - as resources are discarded to manage chat windows lists, a pretty dirty hack is done to work around this: full jid is escaped using a prefix (it becomes invalid and resource is preserved). - new quick_utils module, with helper methods. escapePrivate and unescapePrivate implementations - MUC private messages are not managed in Wix yet
author Goffi <goffi@goffi.org>
date Thu, 11 Oct 2012 00:48:35 +0200
parents f98bef71a918
children 62f7f2403093
line wrap: on
line diff
--- a/frontends/src/primitivus/chat.py	Fri Sep 28 00:48:52 2012 +0200
+++ b/frontends/src/primitivus/chat.py	Thu Oct 11 00:48:35 2012 +0200
@@ -22,9 +22,9 @@
 import urwid
 from urwid_satext import sat_widgets
 from urwid_satext.files_management import FileDialog
-from sat_frontends.quick_frontend.quick_contact_list import QuickContactList
 from sat_frontends.quick_frontend.quick_chat import QuickChat
 from sat_frontends.primitivus.card_game import CardGame
+from sat_frontends.quick_frontend.quick_utils import unescapePrivate
 import time
 from sat.tools.jid  import JID
 
@@ -145,7 +145,7 @@
                 self.__appendPresentPanel()
           
     def __getDecoration(self, widget):
-        return sat_widgets.LabelLine(widget, sat_widgets.SurroundedText(unicode(self.target)))
+        return sat_widgets.LabelLine(widget, sat_widgets.SurroundedText(unicode(unescapePrivate(self.target))))
 
     def showDecoration(self, show=True):
         """Show/Hide the decoration around the chat window"""