diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-26 15:06:18 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-04-26 15:06:18 +0000 |
| commit | 7466abeda3437afb71ce9ab8c0917cd8ea14482c (patch) | |
| tree | 2223e131b6728c19a464f46ff7ff4ca3131d5e7c /lib/python/Components | |
| parent | 747171602db43ec70d198ea092f5c18f70504855 (diff) | |
| download | enigma2-7466abeda3437afb71ce9ab8c0917cd8ea14482c.tar.gz enigma2-7466abeda3437afb71ce9ab8c0917cd8ea14482c.zip | |
add ability to list all events for a specific start time/date (press Dream/Menu)
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/EpgList.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Components/EpgList.py b/lib/python/Components/EpgList.py index 861063a3..82367ecc 100644 --- a/lib/python/Components/EpgList.py +++ b/lib/python/Components/EpgList.py @@ -234,11 +234,11 @@ class EPGList(HTMLComponent, GUIComponent): return self.epgcache.lookupEvent(list) return [ ] - def fillMultiEPG(self, services): + def fillMultiEPG(self, services, stime=-1): t = time() test = [ '0RIBDTCN' ] for service in services: - tuple = ( service.ref.toString(), 0 ) + tuple = (service.ref.toString(), 0, stime) test.append( tuple ) self.list = self.queryEPG(test) self.l.setList(self.list) |
