comparison src/bridge/bridge_constructor/dbus_frontend_template.py @ 455:72522263cbc9

plugin RadioCol: basic functionnality working approximately
author Goffi <goffi@goffi.org>
date Mon, 23 Jan 2012 00:14:33 +0100
parents afe9cfd2ddbb
children cf005701624b
comparison
equal deleted inserted replaced
454:60a9086b35c5 455:72522263cbc9
102 return self.db_plugin_iface.radiocolLaunch(players, profile_key) 102 return self.db_plugin_iface.radiocolLaunch(players, profile_key)
103 103
104 def radiocolCreate(self, room_jid, profile_key): 104 def radiocolCreate(self, room_jid, profile_key):
105 return self.db_plugin_iface.radiocolCreate(room_jid, profile_key) 105 return self.db_plugin_iface.radiocolCreate(room_jid, profile_key)
106 106
107 def radiocolSongAdded(self, room_jid, song_path, profile):
108 return self.db_plugin_iface.radiocolSongAdded(room_jid, song_path, profile)
109
107 def sendFile(self, to, path, data, profile_key): 110 def sendFile(self, to, path, data, profile_key):
108 return self.db_plugin_iface.sendFile(to, path, data, profile_key) 111 return self.db_plugin_iface.sendFile(to, path, data, profile_key)
109 112
110 def pipeOut(self, to, path, data, profile_key): 113 def pipeOut(self, to, path, data, profile_key):
111 return self.db_plugin_iface.pipeOut(to, path, data, profile_key) 114 return self.db_plugin_iface.pipeOut(to, path, data, profile_key)