X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/e75a3982be89898b54bf2b6bf91d36170d4c4409..5acb8fc9d204c63e0da84142c570c5ca41424cae:/mytest.py diff --git a/mytest.py b/mytest.py index 206802e7..cb1bc907 100644 --- a/mytest.py +++ b/mytest.py @@ -16,8 +16,12 @@ from Navigation import Navigation from skin import readSkin, applyAllAttributes from Components.config import configfile -from Screens.Wizard import listActiveWizards +from Screens.Wizard import wizardManager +from Screens.StartWizard import * +from Screens.TutorialWizard import * from Tools.BoundFunction import boundFunction +from Tools.Directories import InitFallbackFiles +InitFallbackFiles() had = dict() @@ -74,8 +78,6 @@ class Session: if self.currentDialog.isTmp: self.currentDialog.doClose() - - del self.currentDialog.instance # dump(self.currentDialog) del self.currentDialog else: @@ -120,6 +122,9 @@ class Session: quitMainloop(5) print '-'*60 + if dlg is None: + return + # read skin data readSkin(dlg, None, dlg.skinName, self.desktop) @@ -177,7 +182,7 @@ def runScreenTest(): session.nav = Navigation() - screensToRun = listActiveWizards() + screensToRun = wizardManager.getWizards() screensToRun.append(Screens.InfoBar.InfoBar) def runNextScreen(session, screensToRun, *result): @@ -214,6 +219,9 @@ Components.InputDevice.InitInputDevices() import Components.AVSwitch Components.AVSwitch.InitAVSwitch() +import Components.RecordingConfig +Components.RecordingConfig.InitRecordingConfig() + import Components.Network Components.Network.InitNetwork()