comparison frontends/src/bridge/DBus.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 3eeb6c865e4d
children 239abc5484c9
comparison
equal deleted inserted replaced
561:97f6a445d6e8 562:0bb2e0d1c878
224 return self.db_plugin_iface.radiocolCreate(room_jid, profile_key) 224 return self.db_plugin_iface.radiocolCreate(room_jid, profile_key)
225 225
226 def radiocolSongAdded(self, room_jid, song_path, profile): 226 def radiocolSongAdded(self, room_jid, song_path, profile):
227 return self.db_plugin_iface.radiocolSongAdded(room_jid, song_path, profile) 227 return self.db_plugin_iface.radiocolSongAdded(room_jid, song_path, profile)
228 228
229 def setAvatar(self, avatar_path, profile):
230 return self.db_plugin_iface.setAvatar(avatar_path, profile)
231
229 def sendFile(self, to, path, data, profile_key): 232 def sendFile(self, to, path, data, profile_key):
230 return self.db_plugin_iface.sendFile(to, path, data, profile_key) 233 return self.db_plugin_iface.sendFile(to, path, data, profile_key)
231 234
232 def pipeOut(self, to, path, data, profile_key): 235 def pipeOut(self, to, path, data, profile_key):
233 return self.db_plugin_iface.pipeOut(to, path, data, profile_key) 236 return self.db_plugin_iface.pipeOut(to, path, data, profile_key)