comparison browser_side/contact.py @ 323:0b7934e75e76

misc: reorganization of the file panels.py + clean the modules import: - some existing modules were not found during JS runtime (panels.py was too large?) - the *Panel classes of panels.py that do not reference "host" have been moved to base_panels.py - cleaned the import in various files
author souliane <souliane@mailoo.org>
date Sat, 04 Jan 2014 00:17:46 +0100
parents 05e264e96a1c
children 2067d6241927
comparison
equal deleted inserted replaced
322:971e3812903a 323:0b7934e75e76
28 from pyjamas.ui.HTML import HTML 28 from pyjamas.ui.HTML import HTML
29 from jid import JID 29 from jid import JID
30 from pyjamas import Window 30 from pyjamas import Window
31 from pyjamas import DOM 31 from pyjamas import DOM
32 32
33 from browser_side.panels import ChatPanel, MicroblogPanel, PopupMenuPanel, WebPanel, UniBoxPanel 33 from browser_side.base_panels import PopupMenuPanel
34 from browser_side.panels import ChatPanel, MicroblogPanel, WebPanel, UniBoxPanel
34 from browser_side.tools import DragLabel, html_sanitize, setPresenceStyle 35 from browser_side.tools import DragLabel, html_sanitize, setPresenceStyle
35 from __pyjamas__ import doc 36 from __pyjamas__ import doc
36 37
37 38
38 class GroupLabel(DragLabel, Label, ClickHandler): 39 class GroupLabel(DragLabel, Label, ClickHandler):