diff frontends/src/quick_frontend/quick_app.py @ 2128:aa94f33fd2ad

plugin otr: various improvments: - messageSend trigger now use pre_xml_treatments so it doesn't block other triggers of higher priority - text commands now use a very high priority, as it is local command and should not be blocked in most of cases - new otrState signal, to send state change to frontends - history is not skipped anymore, a future option may change this behaviour - OTR trigger are skipped on groupchat messages - context_manager is now in client instead of being global to plugin - removed fixPotr as it is fixed upstream note triggers should be improved for encryption methods, as skipping an encrypter may break security, but putting it in top priority may break nice features. fix bug 170
author Goffi <goffi@goffi.org>
date Wed, 01 Feb 2017 21:44:24 +0100
parents 2f264f3df280
children 4e67d6ffea66
line wrap: on
line diff
--- a/frontends/src/quick_frontend/quick_app.py	Tue Jan 31 22:35:59 2017 +0100
+++ b/frontends/src/quick_frontend/quick_app.py	Wed Feb 01 21:44:24 2017 +0100
@@ -323,6 +323,7 @@
         @param iface (str): interface of the bridge to use ('core' or 'plugin')
         @param with_profile (boolean): True if the signal concerns a specific profile, in that case the profile name has to be passed by the caller
         """
+        log.debug(u"registering signal {name}".format(name = function_name))
         if handler is None:
             handler = getattr(self, "{}{}".format(function_name, 'Handler'))
         if not with_profile:
@@ -493,6 +494,8 @@
     def newWidget(self, widget):
         raise NotImplementedError
 
+    # bridge signals hanlers
+
     def connectedHandler(self, profile, jid_s):
         """Called when the connection is made.