X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=mytest.py;h=d34924beec260b4abfc5a7ce7e5351417a3f7802;hp=253ee16853a54272f7bee28871a6f709e42fa0b4;hb=7b2960a205f3c3e3b421d1664cd38644b3ffb679;hpb=ca4b0f86ca83b25fdbd56942d4576603721dcd29 diff --git a/mytest.py b/mytest.py index 253ee16..d34924b 100755 --- a/mytest.py +++ b/mytest.py @@ -10,7 +10,8 @@ from Tools.Profile import profile, profile_final profile("PYTHON_START") from enigma import runMainloop, eDVBDB, eTimer, quitMainloop, \ - getDesktop, ePythonConfigQuery, eAVSwitch, eServiceEvent + getDesktop, ePythonConfigQuery, eAVSwitch, eServiceEvent, \ + eEPGCache from tools import * profile("LANGUAGE") @@ -55,6 +56,11 @@ config.misc.isNextRecordTimerAfterEventActionAuto = ConfigYesNo(default=False) config.misc.useTransponderTime = ConfigYesNo(default=True) config.misc.startCounter = ConfigInteger(default=0) # number of e2 starts... config.misc.standbyCounter = NoSave(ConfigInteger(default=0)) # number of standby +config.misc.epgcache_filename = ConfigText(default = "/hdd/epg.dat") + +def setEPGCachePath(configElement): + eEPGCache.getInstance().setCacheFile(configElement.value) +config.misc.epgcache_filename.addNotifier(setEPGCachePath) #demo code for use of standby enter leave callbacks #def leaveStandby(): @@ -383,6 +389,8 @@ class PowerKey: menu_screen = self.session.openWithCallback(self.MenuClosed, MainMenu, x) menu_screen.setTitle(_("Standby / Restart")) return + elif action == "standby": + self.standby() def powerdown(self): self.standbyblocked = 0