X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=mytest.py;h=745c47c0c6ed2b3dc40ae18f1e9bdd4d903caa1f;hb=7725f7f3f752fce60f4a5dff7ef68e59557ad613;hp=9e9971899765456069c6014250b95df2d62d774d;hpb=878c28f3ac56f6dce9647993278e36cacb994bcc;p=vuplus_dvbapp diff --git a/mytest.py b/mytest.py index 9e99718..745c47c 100644 --- a/mytest.py +++ b/mytest.py @@ -1,6 +1,8 @@ from enigma import * from tools import * +from Components.Language import language + import traceback import Screens.InfoBar @@ -13,6 +15,8 @@ from Navigation import Navigation from skin import readSkin, applyAllAttributes +from Components.config import configfile + had = dict() def dump(dir, p = ""): @@ -88,7 +92,11 @@ class Session: def create(self, screen, arguments): # creates an instance of 'screen' (which is a class) - return screen(self, *arguments) + try: + return screen(self, *arguments) + except TypeError, x: + errstr = "Screen %s(%s): %s" % (str(screen), str(arguments), str(x)) + raise TypeError(errstr) def instantiateDialog(self, screen, *arguments): # create dialog @@ -99,7 +107,7 @@ class Session: print 'EXCEPTION IN DIALOG INIT CODE, ABORTING:' print '-'*60 traceback.print_exc(file=sys.stdout) - quitMainloop() + quitMainloop(5) print '-'*60 # read skin data @@ -163,6 +171,8 @@ def runScreenTest(): runMainloop() + configfile.save() + session.nav.shutdown() return 0 @@ -199,24 +209,5 @@ except: print 'EXCEPTION IN PYTHON STARTUP CODE:' print '-'*60 traceback.print_exc(file=sys.stdout) - quitMainloop() + quitMainloop(5) print '-'*60 - -# now, run the mainloop - -#pt = eDebugClassPtr() -#eDebugClass.getDebug(pt, 12) -#p = pt.__deref__() -#print pt.x -#print p.x -#print "removing ptr..." -#pt = 0 -#print "now" -#print "p is " + str(p) -#print p.x -#p = 0 -# -#bla = eDebugClass() -#bla = eDebugClass(2) -# -