Mercurial > libervia-backend
diff frontends/src/wix/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 | 2c4016921403 |
line wrap: on
line diff
--- a/frontends/src/wix/chat.py Fri Sep 28 00:48:52 2012 +0200 +++ b/frontends/src/wix/chat.py Thu Oct 11 00:48:35 2012 +0200 @@ -201,7 +201,7 @@ def onEnterPressed(self, event): """Behaviour when enter pressed in send line.""" - self.host.bridge.sendMessage(self.target.short if self.type=='group' else self.target, + self.host.sendMessage(self.target.short if self.type=='group' else self.target, event.GetString(), mess_type = "groupchat" if self.type=='group' else "chat", profile_key=self.host.profile)