Mercurial > libervia-backend
comparison src/bridge/bridge_constructor/dbus_frontend_template.py @ 401:b2caa2615c4c
jp roster name manegement + Pipe transfer
- added experimental pipe transfer protocol (based on xep-0096)
- jp now manage roster name to jid conversion (if an argument correspond to a roster name, it replace it with the corresponding jid)
- jp now add last known resource of when a resource is needed but we have a bare jid (e.g. for file or pipe transfer)
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 07 Oct 2011 00:25:15 +0200 |
parents | e66d300c5d42 |
children | 10b4f577d0c0 |
comparison
equal
deleted
inserted
replaced
400:22788653ae8d | 401:b2caa2615c4c |
---|---|
96 return self.db_plugin_iface.quizGameAnswer(player, referee, answer, profile_key) | 96 return self.db_plugin_iface.quizGameAnswer(player, referee, answer, profile_key) |
97 | 97 |
98 def sendFile(self, to, path, data, profile_key='@DEFAULT@'): | 98 def sendFile(self, to, path, data, profile_key='@DEFAULT@'): |
99 return self.db_plugin_iface.sendFile(to, path, data, profile_key) | 99 return self.db_plugin_iface.sendFile(to, path, data, profile_key) |
100 | 100 |
101 def pipeOut(self, to, path, data, profile_key='@DEFAULT@'): | |
102 return self.db_plugin_iface.pipeOut(to, path, data, profile_key) | |
103 | |
101 def findGateways(self, target, profile_key='@DEFAULT@'): | 104 def findGateways(self, target, profile_key='@DEFAULT@'): |
102 return self.db_plugin_iface.findGateways(target, profile_key) | 105 return self.db_plugin_iface.findGateways(target, profile_key) |
103 | 106 |
104 def getCard(self, target, profile_key='@DEFAULT@'): | 107 def getCard(self, target, profile_key='@DEFAULT@'): |
105 return self.db_plugin_iface.getCard(target, profile_key) | 108 return self.db_plugin_iface.getCard(target, profile_key) |