X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/98c4b5bb004e9297bffa8e1c3572572741fda933..c87f1f3b8eb5dec60131976cc092bd5ed6e66acf:/mytest.py diff --git a/mytest.py b/mytest.py index 01db6e65..53054d9a 100644 --- a/mytest.py +++ b/mytest.py @@ -1,6 +1,7 @@ from enigma import * from tools import * +import traceback import Screens.InfoBar import sys @@ -12,6 +13,7 @@ from Navigation import Navigation from skin import readSkin, applyAllAttributes + # A screen is a function which instanciates all components of a screen into a temporary component. # Thus, the global stuff is a screen, too. # In a screen, components can either be instanciated from the class-tree, cloned (copied) or @@ -94,7 +96,15 @@ class Session: def instantiateDialog(self, screen, *arguments): # create dialog - dlg = self.create(screen, arguments) + + try: + dlg = self.create(screen, arguments) + except: + print 'EXCEPTION IN DIALOG INIT CODE, ABORTING:' + print '-'*60 + traceback.print_exc(file=sys.stdout) + quitMainloop() + print '-'*60 # read skin data readSkin(dlg, None, dlg.skinName, self.desktop) @@ -159,8 +169,24 @@ keymapparser.readKeymap() import skin skin.loadSkin(getDesktop()) +import Components.InputDevice +Components.InputDevice.InitInputDevices() + +import Components.AVSwitch +Components.AVSwitch.InitAVSwitch() + +import Components.SetupDevices +Components.SetupDevices.InitSetupDevices() + # first, setup a screen -runScreenTest() +try: + runScreenTest() +except: + print 'EXCEPTION IN PYTHON STARTUP CODE:' + print '-'*60 + traceback.print_exc(file=sys.stdout) + quitMainloop() + print '-'*60 # now, run the mainloop