Mercurial > libervia-backend
comparison src/bridge/bridge_constructor/dbus_frontend_template.py @ 562:0bb2e0d1c878
core, plugin XEP-0054: avatar upload:
- plugin XEP-0054: new setAvatar bridge method
- new "presence_available" trigger
- new DataError
author | Goffi <goffi@goffi.org> |
---|---|
date | Fri, 28 Dec 2012 01:00:31 +0100 |
parents | 790be337cc41 |
children | 239abc5484c9 |
comparison
equal
deleted
inserted
replaced
561:97f6a445d6e8 | 562:0bb2e0d1c878 |
---|---|
108 return self.db_plugin_iface.radiocolCreate(room_jid, profile_key) | 108 return self.db_plugin_iface.radiocolCreate(room_jid, profile_key) |
109 | 109 |
110 def radiocolSongAdded(self, room_jid, song_path, profile): | 110 def radiocolSongAdded(self, room_jid, song_path, profile): |
111 return self.db_plugin_iface.radiocolSongAdded(room_jid, song_path, profile) | 111 return self.db_plugin_iface.radiocolSongAdded(room_jid, song_path, profile) |
112 | 112 |
113 def setAvatar(self, avatar_path, profile): | |
114 return self.db_plugin_iface.setAvatar(avatar_path, profile) | |
115 | |
113 def sendFile(self, to, path, data, profile_key): | 116 def sendFile(self, to, path, data, profile_key): |
114 return self.db_plugin_iface.sendFile(to, path, data, profile_key) | 117 return self.db_plugin_iface.sendFile(to, path, data, profile_key) |
115 | 118 |
116 def pipeOut(self, to, path, data, profile_key): | 119 def pipeOut(self, to, path, data, profile_key): |
117 return self.db_plugin_iface.pipeOut(to, path, data, profile_key) | 120 return self.db_plugin_iface.pipeOut(to, path, data, profile_key) |