X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/a377b6ea97e78df6256d23fc128c17c680574d44..d1df9c9abf767fff6cfb073ef560d5b89b93610c:/mytest.py diff --git a/mytest.py b/mytest.py index 571747c9..6a96470a 100644 --- a/mytest.py +++ b/mytest.py @@ -16,6 +16,12 @@ from Navigation import Navigation from skin import readSkin, applyAllAttributes from Components.config import configfile +from Tools.Directories import InitFallbackFiles +InitFallbackFiles() +eDVBDB.getInstance().reloadBouquets() +# initialize autorun plugins and plugin menu entries +from Components.PluginComponent import plugins +plugins.getPluginList(runAutostartPlugins=True) from Screens.Wizard import wizardManager from Screens.StartWizard import * from Screens.TutorialWizard import * @@ -217,6 +223,12 @@ Components.InputDevice.InitInputDevices() import Components.AVSwitch Components.AVSwitch.InitAVSwitch() +import Components.RecordingConfig +Components.RecordingConfig.InitRecordingConfig() + +import Components.UsageConfig +Components.UsageConfig.InitUsageConfig() + import Components.Network Components.Network.InitNetwork() @@ -234,6 +246,7 @@ import Components.NimManager # first, setup a screen try: runScreenTest() + plugins.getPluginList(runAutoendPlugins=True) except: print 'EXCEPTION IN PYTHON STARTUP CODE:' print '-'*60