Mercurial > libervia-web
annotate libervia.py @ 43:a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
author | Goffi <goffi@goffi.org> |
---|---|
date | Wed, 25 May 2011 14:21:48 +0200 |
parents | 7782a786b2f0 |
children | 72c51a4839cc |
rev | line source |
---|---|
0 | 1 #!/usr/bin/python |
2 # -*- coding: utf-8 -*- | |
3 | |
4 """ | |
5 Libervia: a Salut à Toi frontend | |
6 Copyright (C) 2011 Jérôme Poisson (goffi@goffi.org) | |
7 | |
8 This program is free software: you can redistribute it and/or modify | |
9 it under the terms of the GNU Affero General Public License as published by | |
10 the Free Software Foundation, either version 3 of the License, or | |
11 (at your option) any later version. | |
12 | |
13 This program is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU Affero General Public License for more details. | |
17 | |
18 You should have received a copy of the GNU Affero General Public License | |
19 along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 """ | |
21 | |
22 import pyjd # this is dummy in pyjs | |
23 from pyjamas.ui.RootPanel import RootPanel | |
21
77c2e48efa29
browser side: a warning message now show who will receive the message entered in UniBox, with a color depending on how many people will be able to see it
Goffi <goffi@goffi.org>
parents:
20
diff
changeset
|
24 from pyjamas.ui.HTML import HTML |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
25 from pyjamas.ui.KeyboardListener import KEY_ESCAPE |
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
26 from pyjamas import Window, DOM |
0 | 27 from pyjamas.JSONService import JSONProxy |
17
c725b702e927
register.py and contact.py moved to new directory browser_side
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
28 from browser_side.register import RegisterPanel, RegisterBox |
c725b702e927
register.py and contact.py moved to new directory browser_side
Goffi <goffi@goffi.org>
parents:
16
diff
changeset
|
29 from browser_side.contact import ContactPanel |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
30 from browser_side import panels |
19 | 31 from browser_side.jid import JID |
0 | 32 |
33 class LiberviaJsonProxy(JSONProxy): | |
34 def __init__(self, *args, **kwargs): | |
35 JSONProxy.__init__(self, *args, **kwargs) | |
36 self.handler=self | |
37 self.cb={} | |
38 | |
39 def call(self, method, cb, *args): | |
33 | 40 id = self.callMethod(method,args) |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
41 if cb: |
33 | 42 self.cb[id] = cb |
0 | 43 |
44 def onRemoteResponse(self, response, request_info): | |
33 | 45 if self.cb.has_key(request_info.id): |
46 self.cb[request_info.id](response) | |
47 del self.cb[request_info.id] | |
0 | 48 |
49 def onRemoteError(self, code, errobj, request_info): | |
50 if code != 0: | |
51 Window.alert("Internal server error") | |
52 else: | |
53 if isinstance(errobj['message'],dict): | |
54 Window.alert("Error %s: %s" % (errobj['message']['faultCode'], errobj['message']['faultString'])) | |
55 else: | |
56 Window.alert("Error: %s" % errobj['message']) | |
57 | |
58 class RegisterCall(LiberviaJsonProxy): | |
59 def __init__(self): | |
60 LiberviaJsonProxy.__init__(self, "/register_api", | |
61 ["isRegistered","isConnected","connect"]) | |
62 self.handler=self | |
63 self.cb={} | |
64 | |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
65 class BridgeCall(LiberviaJsonProxy): |
0 | 66 def __init__(self): |
67 LiberviaJsonProxy.__init__(self, "/json_api", | |
33 | 68 ["getContacts", "sendMessage", "sendMblog", "getMblogNodes", "getProfileJid", "getHistory", |
39
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
69 "getPresenceStatus", "getRoomJoined", "launchTarotGame", "getTarotCardsPaths", "tarotGameReady", "tarotGameContratChoosed", |
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
70 "tarotGamePlayCards"]) |
0 | 71 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
72 class BridgeSignals(LiberviaJsonProxy): |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
73 def __init__(self): |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
74 LiberviaJsonProxy.__init__(self, "/json_signal_api", |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
75 ["getSignals"]) |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
76 |
0 | 77 class SatWebFrontend: |
78 def onModuleLoad(self): | |
19 | 79 self.whoami = None |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
80 self.bridge = BridgeCall() |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
81 self.bridge_signals = BridgeSignals() |
19 | 82 self.selected = None |
33 | 83 self.uni_box = None |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
84 self.status_panel = panels.StatusPanel(self) |
28 | 85 self.contact_panel = ContactPanel(self) |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
86 self.panel = panels.MainPanel(self) |
23 | 87 self.discuss_panel = self.panel.discuss_panel |
88 self.tab_panel = self.panel.tab_panel | |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
89 self.mpanels = [panels.EmptyPanel(self), panels.MicroblogPanel(self, accept_all=True), panels.EmptyPanel(self)] |
33 | 90 self.other_panels = [] #panels not on the main tab #FIXME: temporary, need to be changed |
91 self.room_list = set() #set of rooms | |
23 | 92 self.discuss_panel.changePanel(0,self.mpanels[0]) |
93 self.discuss_panel.changePanel(1,self.mpanels[1]) | |
94 self.discuss_panel.changePanel(2,self.mpanels[2]) | |
0 | 95 self._dialog = None |
96 RootPanel().add(self.panel) | |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
97 DOM.addEventPreview(self) |
33 | 98 self.resize() |
0 | 99 self._register = RegisterCall() |
1 | 100 self._register.call('isRegistered',self._isRegisteredCB) |
0 | 101 |
33 | 102 def resize(self): |
103 """Resize elements""" | |
104 Window.onResize() | |
105 | |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
106 def onEventPreview(self, event): |
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
107 if event.type in ["keydown", "keypress", "keyup"] and event.keyCode == KEY_ESCAPE: |
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
108 #needed to prevent request cancellation in Firefox |
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
109 event.preventDefault() |
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
110 return True |
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
111 |
33 | 112 def setUniBox(self, unibox): |
113 """register the unibox widget""" | |
114 self.uni_box = unibox | |
115 self.uni_box.addKey("@@: ") | |
116 | |
19 | 117 def select(self, widget): |
118 """Define the selected widget""" | |
119 if self.selected: | |
38
7bea2ae0c4fb
Tarot game: center_panel layout + chien can now be showed + fixed click event inheritance + card selection first draft
Goffi <goffi@goffi.org>
parents:
37
diff
changeset
|
120 if self.selected == widget: |
7bea2ae0c4fb
Tarot game: center_panel layout + chien can now be showed + fixed click event inheritance + card selection first draft
Goffi <goffi@goffi.org>
parents:
37
diff
changeset
|
121 return |
19 | 122 self.selected.removeStyleName('selected_widget') |
123 self.selected = widget | |
124 if widget: | |
125 self.selected.addStyleName('selected_widget') | |
126 | |
33 | 127 def addTab(self, panel, label): |
128 """Add a panel in a tab | |
129 @param panel: panel to add | |
130 @param label: label of the tab""" | |
131 self.tab_panel.add(panel, label) | |
132 self.other_panels.append(panel) | |
133 | |
1 | 134 def _isRegisteredCB(self, registered): |
0 | 135 if not registered: |
136 self._dialog = RegisterBox(self.logged,centered=True) | |
137 self._dialog.show() | |
138 else: | |
1 | 139 self._register.call('isConnected', self._isConnectedCB) |
0 | 140 |
1 | 141 def _isConnectedCB(self, connected): |
0 | 142 if not connected: |
143 self._register.call('connect',self.logged) | |
144 else: | |
145 self.logged() | |
146 | |
147 def logged(self): | |
148 if self._dialog: | |
149 self._dialog.hide() | |
150 del self._dialog # don't work if self._dialog is None | |
1 | 151 |
152 #it's time to fill the page | |
11
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
153 self.bridge.call('getContacts', self._getContactsCB) |
331c093e4eb3
magicBox is now able to send global microblog
Goffi <goffi@goffi.org>
parents:
9
diff
changeset
|
154 self.bridge_signals.call('getSignals', self._getSignalsCB) |
19 | 155 #We want to know our own jid |
156 self.bridge.call('getProfileJid', self._getProfileJidCB) | |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
157 |
1 | 158 def _getContactsCB(self, contacts_data): |
159 for contact in contacts_data: | |
160 jid, attributes, groups = contact | |
28 | 161 self.contact_panel.addContact(jid, attributes, groups) |
0 | 162 |
2
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
163 def _getSignalsCB(self, signal_data): |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
164 bridge_signals = BridgeSignals() |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
165 bridge_signals.call('getSignals', self._getSignalsCB) |
669c531a857e
signals handling and first draft of microblogging
Goffi <goffi@goffi.org>
parents:
1
diff
changeset
|
166 print('Got signal ==> name: %s, params: %s' % (signal_data[0],signal_data[1])) |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
167 name,args = signal_data |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
168 if name == 'personalEvent': |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
169 self._personalEventCb(*args) |
19 | 170 elif name == 'newMessage': |
171 self._newMessageCb(*args) | |
20 | 172 elif name == 'presenceUpdate': |
173 self._presenceUpdateCb(*args) | |
28 | 174 elif name == 'roomJoined': |
175 self._roomJoinedCb(*args) | |
33 | 176 elif name == 'roomUserJoined': |
177 self._roomUserJoinedCb(*args) | |
178 elif name == 'roomUserLeft': | |
179 self._roomUserLeftCb(*args) | |
36 | 180 elif name == 'tarotGameStarted': |
181 self._tarotGameStartedCb(*args) | |
37
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
182 elif name == 'tarotGameNew' or \ |
38
7bea2ae0c4fb
Tarot game: center_panel layout + chien can now be showed + fixed click event inheritance + card selection first draft
Goffi <goffi@goffi.org>
parents:
37
diff
changeset
|
183 name == 'tarotGameChooseContrat' or \ |
39
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
184 name == 'tarotGameShowCards' or \ |
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
185 name == 'tarotGameInvalidCards' or \ |
305e81c7a32c
Tarot game: a game can now be finished
Goffi <goffi@goffi.org>
parents:
38
diff
changeset
|
186 name == 'tarotGameCardsPlayed' or \ |
41
7782a786b2f0
Tarot game: score is now shown (need to use XMLUI later)
Goffi <goffi@goffi.org>
parents:
39
diff
changeset
|
187 name == 'tarotGameYourTurn' or \ |
7782a786b2f0
Tarot game: score is now shown (need to use XMLUI later)
Goffi <goffi@goffi.org>
parents:
39
diff
changeset
|
188 name == 'tarotGameScore': |
37
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
189 self._tarotGameGenericCb(name, args[0], args[1:]) |
19 | 190 |
191 def _getProfileJidCB(self, jid): | |
192 self.whoami = JID(jid) | |
20 | 193 #we can now ask our status |
194 self.bridge.call('getPresenceStatus', self._getPresenceStatusCB) | |
33 | 195 #and the rooms where we are |
196 self.bridge.call('getRoomJoined', self._getRoomJoinedCB) | |
20 | 197 |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
198 ## Signals callbacks ## |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
199 |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
200 def _personalEventCb(self, sender, event_type, data, profile): |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
201 if event_type == "MICROBLOG": |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
202 if not data.has_key('content'): |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
203 print ("WARNING: No content found in microblog data") |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
204 return |
16
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
205 if data.has_key('groups'): |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
206 _groups = set(data['groups'].split() if data['groups'] else []) |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
207 else: |
099c05a0dcab
browser side: microblog panel improvments
Goffi <goffi@goffi.org>
parents:
14
diff
changeset
|
208 _groups=None |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
209 for panel in self.mpanels: |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
210 if isinstance(panel,panels.MicroblogPanel) and (panel.isJidAccepted(sender) or _groups == None or _groups.intersection(panel.accepted_groups)): #TODO: check this |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
211 content = data['content'] |
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
212 author = data.get('author') |
9 | 213 timestamp = float(data.get('timestamp',0)) #XXX: int doesn't work here |
4
7325e787c22b
personalEvent management signal first draft, microblogs are now put in a central grid
Goffi <goffi@goffi.org>
parents:
2
diff
changeset
|
214 panel.addEntry(content, author, timestamp) |
0 | 215 |
19 | 216 def _newMessageCb(self, from_jid, msg, msg_type, to_jid): |
217 _from = JID(from_jid) | |
218 _to = JID(to_jid) | |
33 | 219 for panel in self.mpanels + self.other_panels: |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
220 if isinstance(panel,panels.ChatPanel) and (panel.target.bare == _from.bare or panel.target.bare == _to.bare): |
19 | 221 panel.printMessage(_from, msg) |
222 | |
20 | 223 def _presenceUpdateCb(self, entity, show, priority, statuses): |
224 _entity = JID(entity) | |
28 | 225 #XXX: QnD way to get our status |
20 | 226 if self.whoami and self.whoami.bare == _entity.bare and statuses: |
28 | 227 self.status_panel.changeStatus(statuses.values()[0]) |
33 | 228 if (not self.whoami or self.whoami.bare != _entity.bare): |
28 | 229 self.contact_panel.setConnected(_entity.bare, _entity.resource, show, priority, statuses) |
230 | |
33 | 231 def _roomJoinedCb(self, room_id, room_service, room_nicks, user_nick): |
28 | 232 _target = JID("%s@%s" % (room_id,room_service)) |
33 | 233 self.room_list.add(_target) |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
234 chat_panel = panels.ChatPanel(self, _target, type='group') |
33 | 235 chat_panel.setUserNick(user_nick) |
28 | 236 if room_id.startswith('sat_tarot_'): #XXX: it's not really beautiful, but it works :) |
33 | 237 self.addTab(chat_panel, "Tarot") |
28 | 238 else: |
33 | 239 self.addTab(chat_panel, str(_target)) |
240 chat_panel.setPresents(room_nicks) | |
241 chat_panel.historyPrint() | |
242 | |
35 | 243 def _roomUserJoinedCb(self, room_id, room_service, user_nick, user_data): |
244 for panel in self.mpanels + self.other_panels: | |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
245 if isinstance(panel,panels.ChatPanel) and panel.type == 'group' and panel.target.bare == "%s@%s" % (room_id, room_service): |
35 | 246 panel.userJoined(user_nick, user_data) |
33 | 247 |
35 | 248 def _roomUserLeftCb(self, room_id, room_service, user_nick, user_data): |
249 for panel in self.mpanels + self.other_panels: | |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
250 if isinstance(panel,panels.ChatPanel) and panel.type == 'group' and panel.target.bare == "%s@%s" % (room_id, room_service): |
35 | 251 panel.userLeft(user_nick, user_data) |
36 | 252 |
253 def _tarotGameStartedCb(self, room_jid, referee, players): | |
254 print ("Tarot Game Started \o/") | |
255 for panel in self.mpanels + self.other_panels: | |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
256 if isinstance(panel,panels.ChatPanel) and panel.type == 'group' and panel.target.bare == room_jid: |
36 | 257 panel.startGame("Tarot", referee, players) |
258 | |
37
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
259 def _tarotGameGenericCb(self, event_name, room_jid, args): |
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
260 for panel in self.mpanels + self.other_panels: |
43
a7ff1e6f1229
browser_side: prevent default for escape key (cancel HTTPRequest in FF)
Goffi <goffi@goffi.org>
parents:
41
diff
changeset
|
261 if isinstance(panel,panels.ChatPanel) and panel.type == 'group' and panel.target.bare == room_jid: |
37
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
262 getattr(panel.getGame("Tarot"), event_name)(*args) |
b306aa090438
Tarot game: game launching (first hand showed), and contract selection
Goffi <goffi@goffi.org>
parents:
36
diff
changeset
|
263 |
20 | 264 def _getPresenceStatusCB(self, presence_data): |
28 | 265 for entity in presence_data: |
266 for resource in presence_data[entity]: | |
267 args = presence_data[entity][resource] | |
268 self._presenceUpdateCb("%s/%s" % (entity, resource), *args) | |
20 | 269 |
33 | 270 def _getRoomJoinedCB(self, room_data): |
271 for room in room_data: | |
272 self._roomJoinedCb(*room) | |
273 | |
0 | 274 if __name__ == '__main__': |
1 | 275 pyjd.setup("http://localhost:8080/libervia.html") |
0 | 276 app = SatWebFrontend() |
277 app.onModuleLoad() | |
278 pyjd.run() | |
279 |