X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/dd2f75a38c17459f1a3d46cf529a6b4fe3f7e3f2..6b59a3472e24f35fcaac669a167b1a4fae207556:/mytest.py diff --git a/mytest.py b/mytest.py index a3cfb5a2..d34924be 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():