X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/daaf4b6ba8fbddd81553e0076385220ef1a7f327..259b27b6f2d5457569b6639d625f5da255a73413:/mytest.py diff --git a/mytest.py b/mytest.py index dda2c87a..4b6062aa 100644 --- a/mytest.py +++ b/mytest.py @@ -17,30 +17,32 @@ from Navigation import Navigation from skin import readSkin, applyAllAttributes from Components.config import configfile -from Tools.Directories import InitFallbackFiles +from Tools.Directories import InitFallbackFiles, resolveFilename, SCOPE_PLUGINS InitFallbackFiles() eDVBDB.getInstance().reloadBouquets() try: - from twisted.internet import e2reactor + import e2reactor e2reactor.install() from twisted.internet import reactor def runReactor(): reactor.run() -except: +except ImportError: + print "twisted not available" def runReactor(): runMainloop() # initialize autorun plugins and plugin menu entries from Components.PluginComponent import plugins -plugins.readPluginList(runAutostartPlugins=True) +plugins.readPluginList(resolveFilename(SCOPE_PLUGINS)) from Screens.Wizard import wizardManager from Screens.StartWizard import * from Screens.TutorialWizard import * from Tools.BoundFunction import boundFunction +from Plugins.Plugin import PluginDescriptor had = dict() @@ -269,12 +271,19 @@ def runScreenTest(): session.nav = Navigation() - screensToRun = wizardManager.getWizards() + screensToRun = [ ] + + for p in plugins.getPlugins(PluginDescriptor.WHERE_WIZARD): + screensToRun.append(p.__call__) + + screensToRun += wizardManager.getWizards() + screensToRun.append(Screens.InfoBar.InfoBar) def runNextScreen(session, screensToRun, *result): if result: - quitMainloop(result) + quitMainloop(*result) + return screen = screensToRun[0] @@ -331,7 +340,7 @@ import Components.NimManager # first, setup a screen try: runScreenTest() -# plugins.getPluginList(runAutoendPlugins=True) + plugins.shutdown() except: print 'EXCEPTION IN PYTHON STARTUP CODE:' print '-'*60