X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=mytest.py;h=6a96470a238a1677442b3aee3edbecb68781f417;hb=061f02110eeeb6f8b44b2d3229a098c3c270f10c;hp=242f19e56ccfa1f073a32c3cb0981249c1a2cef2;hpb=e1ea45e881637c29c87677ef0cb15fcc600cf502;p=vuplus_dvbapp diff --git a/mytest.py b/mytest.py index 242f19e..6a96470 100644 --- a/mytest.py +++ b/mytest.py @@ -16,8 +16,15 @@ 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 * from Tools.BoundFunction import boundFunction had = dict() @@ -216,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() @@ -233,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