Mercurial > libervia-backend
comparison src/plugins/plugin_xep_0234.py @ 1529:a151f3a5a2d0
plugin XEP-0234: removed forgotten debugging bridge method
author | Goffi <goffi@goffi.org> |
---|---|
date | Sat, 26 Sep 2015 14:24:33 +0200 |
parents | 1c71d7335d02 |
children | cbfbe028d099 |
comparison
equal
deleted
inserted
replaced
1528:1c71d7335d02 | 1529:a151f3a5a2d0 |
---|---|
61 log.info(_("plugin Jingle File Transfer initialization")) | 61 log.info(_("plugin Jingle File Transfer initialization")) |
62 self.host = host | 62 self.host = host |
63 self._j = host.plugins["XEP-0166"] # shortcut to access jingle | 63 self._j = host.plugins["XEP-0166"] # shortcut to access jingle |
64 self._j.registerApplication(NS_JINGLE_FT, self) | 64 self._j.registerApplication(NS_JINGLE_FT, self) |
65 self._f = host.plugins["FILE"] | 65 self._f = host.plugins["FILE"] |
66 host.bridge.addMethod("__test", ".plugin", in_sign='', out_sign='', method=self.__test) | |
67 host.bridge.addMethod("fileJingleSend", ".plugin", in_sign='sssss', out_sign='', method=self._fileJingleSend) | 66 host.bridge.addMethod("fileJingleSend", ".plugin", in_sign='sssss', out_sign='', method=self._fileJingleSend) |
68 | 67 |
69 def getHandler(self, profile): | 68 def getHandler(self, profile): |
70 return XEP_0234_handler() | 69 return XEP_0234_handler() |
71 | 70 |