15 |
|
|
16 |
import sys |
import sys |
17 |
|
|
18 |
from application import ThubanApplication |
from application import ThubanApplication, show_exception_dialog |
19 |
|
import Thuban.version |
20 |
|
|
21 |
def main(): |
def main(): |
22 |
"""Instantiate the application object and run the application""" |
"""Instantiate the application object and run the application""" |
23 |
app = ThubanApplication(0) |
|
24 |
if len(sys.argv) > 1: |
if verify_versions(): |
25 |
app.OpenSession(sys.argv[1]) |
app = ThubanApplication(0) |
26 |
app.top.ShowSessionTree() |
if len(sys.argv) > 1: |
27 |
app.MainLoop() |
app.OpenSession(sys.argv[1]) |
28 |
|
app.MainLoop() |
29 |
|
# sys.excepthook is set in ThubanApplication.OnInit() |
30 |
|
sys.excepthook = sys.__excepthook__ |
31 |
|
|
32 |
|
def verify_versions(): |
33 |
|
"""Check some library versions. |
34 |
|
|
35 |
|
Print a message containing any libraries which are wrong. |
36 |
|
Return True if everything is OK, otherwise False. |
37 |
|
""" |
38 |
|
|
39 |
|
errors = Thuban.version.verify_versions() |
40 |
|
|
41 |
|
if len(errors) > 0: |
42 |
|
msg = " The following version errors were detected:" |
43 |
|
|
44 |
|
for e in errors: |
45 |
|
msg += "\n " + e |
46 |
|
|
47 |
|
# if use_msg_box: |
48 |
|
# # XXX: use a message box to display the errors |
49 |
|
# pass |
50 |
|
|
51 |
|
print "\n*******************************************************" |
52 |
|
print msg |
53 |
|
print "*******************************************************\n" |
54 |
|
|
55 |
|
return False |
56 |
|
|
57 |
|
return True |