comparison src/bridge/bridge_constructor/dbus_frontend_template.py @ 450:afe9cfd2ddbb

plugins: radio collective first draft
author Goffi <goffi@goffi.org>
date Thu, 05 Jan 2012 00:21:30 +0100
parents 961543b20806
children 72522263cbc9
comparison
equal deleted inserted replaced
449:961543b20806 450:afe9cfd2ddbb
96 return self.db_plugin_iface.quizGameReady(player, referee, profile_key) 96 return self.db_plugin_iface.quizGameReady(player, referee, profile_key)
97 97
98 def quizGameAnswer(self, player, referee, answer, profile_key): 98 def quizGameAnswer(self, player, referee, answer, profile_key):
99 return self.db_plugin_iface.quizGameAnswer(player, referee, answer, profile_key) 99 return self.db_plugin_iface.quizGameAnswer(player, referee, answer, profile_key)
100 100
101 def radiocolLaunch(self, players, profile_key):
102 return self.db_plugin_iface.radiocolLaunch(players, profile_key)
103
104 def radiocolCreate(self, room_jid, profile_key):
105 return self.db_plugin_iface.radiocolCreate(room_jid, profile_key)
106
101 def sendFile(self, to, path, data, profile_key): 107 def sendFile(self, to, path, data, profile_key):
102 return self.db_plugin_iface.sendFile(to, path, data, profile_key) 108 return self.db_plugin_iface.sendFile(to, path, data, profile_key)
103 109
104 def pipeOut(self, to, path, data, profile_key): 110 def pipeOut(self, to, path, data, profile_key):
105 return self.db_plugin_iface.pipeOut(to, path, data, profile_key) 111 return self.db_plugin_iface.pipeOut(to, path, data, profile_key)