comparison libervia.tac @ 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 c12c9a1acf2f
children 36927be51481
comparison
equal deleted inserted replaced
322:971e3812903a 323:0b7934e75e76
31 from twisted.python.components import registerAdapter 31 from twisted.python.components import registerAdapter
32 from twisted.python.failure import Failure 32 from twisted.python.failure import Failure
33 from twisted.words.protocols.jabber.jid import JID 33 from twisted.words.protocols.jabber.jid import JID
34 from txjsonrpc.web import jsonrpc 34 from txjsonrpc.web import jsonrpc
35 from txjsonrpc import jsonrpclib 35 from txjsonrpc import jsonrpclib
36 from sat_frontends.bridge.DBus import DBusBridgeFrontend,BridgeExceptionNoService 36
37 from logging import debug, info, warning, error 37 from logging import debug, info, warning, error
38 import re, glob 38 import re, glob
39 import os.path, sys 39 import os.path, sys
40 import tempfile, shutil, uuid 40 import tempfile, shutil, uuid
41 from server_side.blog import MicroBlog
42 from zope.interface import Interface, Attribute, implements 41 from zope.interface import Interface, Attribute, implements
43 from xml.dom import minidom 42 from xml.dom import minidom
43
44 from constants import Const 44 from constants import Const
45 from server_side.blog import MicroBlog
46 from sat_frontends.bridge.DBus import DBusBridgeFrontend, BridgeExceptionNoService
45 from sat.core.i18n import _, D_ 47 from sat.core.i18n import _, D_
46 48
47 49
48 class ISATSession(Interface): 50 class ISATSession(Interface):
49 profile = Attribute("Sat profile") 51 profile = Attribute("Sat profile")