Mercurial > libervia-backend
comparison frontends/sat_bridge_frontend/DBus.py @ 90:4020931569b8
Tarot Game: session initialization
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 23 May 2010 16:39:05 +0930 |
parents | fc7583282d40 |
children | 39c672544593 |
comparison
equal
deleted
inserted
replaced
89:23caf1051099 | 90:4020931569b8 |
---|---|
117 return self.db_comm_iface.getRoomSubjects(profile_key) | 117 return self.db_comm_iface.getRoomSubjects(profile_key) |
118 | 118 |
119 def joinMUC(self, service, roomId, nick, profile_key='@DEFAULT@'): | 119 def joinMUC(self, service, roomId, nick, profile_key='@DEFAULT@'): |
120 return self.db_comm_iface.joinMUC(service, roomId, nick, profile_key) | 120 return self.db_comm_iface.joinMUC(service, roomId, nick, profile_key) |
121 | 121 |
122 def createTarotGame(self, room_jid, players, profile_key='@DEFAULT@'): | 122 def tarotGameCreate(self, room_jid, players, profile_key='@DEFAULT@'): |
123 return self.db_comm_iface.createTarotGame(room_jid, players, profile_key) | 123 return self.db_comm_iface.tarotGameCreate(room_jid, players, profile_key) |
124 | |
125 def tarotGameReady(self, user, referee, profile_key='@DEFAULT@'): | |
126 return self.db_comm_iface.tarotGameReady(user, referee, profile_key) | |
124 | 127 |
125 def sendFile(self, to, path, profile_key='@DEFAULT@'): | 128 def sendFile(self, to, path, profile_key='@DEFAULT@'): |
126 return self.db_comm_iface.sendFile(to, path, profile_key) | 129 return self.db_comm_iface.sendFile(to, path, profile_key) |
127 | 130 |
128 def findGateways(self, target, profile_key='@DEFAULT@'): | 131 def findGateways(self, target, profile_key='@DEFAULT@'): |