Mercurial > libervia-backend
comparison frontends/src/bridge/DBus.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 | 3ed53803b3b3 |
children | 10b4f577d0c0 |
comparison
equal
deleted
inserted
replaced
400:22788653ae8d | 401:b2caa2615c4c |
---|---|
197 return self.db_plugin_iface.quizGameAnswer(player, referee, answer, profile_key) | 197 return self.db_plugin_iface.quizGameAnswer(player, referee, answer, profile_key) |
198 | 198 |
199 def sendFile(self, to, path, data, profile_key='@DEFAULT@'): | 199 def sendFile(self, to, path, data, profile_key='@DEFAULT@'): |
200 return self.db_plugin_iface.sendFile(to, path, data, profile_key) | 200 return self.db_plugin_iface.sendFile(to, path, data, profile_key) |
201 | 201 |
202 def pipeOut(self, to, path, data, profile_key='@DEFAULT@'): | |
203 return self.db_plugin_iface.pipeOut(to, path, data, profile_key) | |
204 | |
202 def findGateways(self, target, profile_key='@DEFAULT@'): | 205 def findGateways(self, target, profile_key='@DEFAULT@'): |
203 return self.db_plugin_iface.findGateways(target, profile_key) | 206 return self.db_plugin_iface.findGateways(target, profile_key) |
204 | 207 |
205 def getCard(self, target, profile_key='@DEFAULT@'): | 208 def getCard(self, target, profile_key='@DEFAULT@'): |
206 return self.db_plugin_iface.getCard(target, profile_key) | 209 return self.db_plugin_iface.getCard(target, profile_key) |