diff src/bridge/bridge_constructor/dbus_frontend_template.py @ 709:648511e42a69

bridge: removed plugin method definitions from the old static system
author souliane <souliane@mailoo.org>
date Sun, 17 Nov 2013 16:11:55 +0100
parents d207c2186519
children f02e2c277f0c
line wrap: on
line diff
--- a/src/bridge/bridge_constructor/dbus_frontend_template.py	Fri Nov 15 15:27:03 2013 +0100
+++ b/src/bridge/bridge_constructor/dbus_frontend_template.py	Sun Nov 17 16:11:55 2013 +0100
@@ -94,16 +94,3 @@
                 return method(*args, **kwargs)
 
             return getPluginMethod
-##METHODS_PART##
-
-#methods from plugins
-
-    def joinMUC(self, room_jid, nick, options, profile_key):
-        if options is None:
-            options = [('', '')]  # XXX: we have to do this awful hack because python dbus need to guess the signature
-        return self.db_plugin_iface.joinMUC(room_jid, nick, options, profile_key)
-
-    def gatewayRegister(self, action, target, data, profile_key):
-        if data is None:
-            data = [('', '')]  # XXX: we have to do this awful hack because python dbus need to guess the signature
-        return self.db_plugin_iface.gatewayRegister(action, target, data, profile_key)