aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-17 04:25:02 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-17 04:25:02 +0000
commitcd1a9f92f96bd60924795c88429acb7aba12e184 (patch)
tree7ac4d6dea16a23abb1412f15ea72fa7da5811d81 /lib/python
parent80069b70a6b69e8e0ef0aeef5dbd8a1655a5e713 (diff)
downloadenigma2-cd1a9f92f96bd60924795c88429acb7aba12e184.tar.gz
enigma2-cd1a9f92f96bd60924795c88429acb7aba12e184.zip
show repeated timers in TimerEntryComponent
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/TimerList.py18
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py
index 43a55fde..81501ca8 100644
--- a/lib/python/Components/TimerList.py
+++ b/lib/python/Components/TimerList.py
@@ -27,7 +27,23 @@ def TimerEntryComponent(timer, processed):
res.append((0, 0, 400, 30, 0, RT_HALIGN_LEFT, timer.service_ref.getServiceName()))
- res.append((0, 30, 200, 20, 1, RT_HALIGN_LEFT, "%s, %s ... %s" % (FuzzyTime(timer.begin) + FuzzyTime(timer.end)[1:])))
+ repeatedtext = ""
+ days = [ "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun" ]
+ if (timer.repeated != 0):
+ flags = timer.repeated
+ count = 0
+ for x in range(0, 7):
+ if (flags & 1 == 1):
+ if (count != 0):
+ repeatedtext += ", "
+ repeatedtext += days[x]
+ count += 1
+ flags = flags >> 1
+ print [FuzzyTime(timer.begin)[1], FuzzyTime(timer.end)[1]]
+ print (FuzzyTime(timer.begin) + FuzzyTime(timer.end)[1:])
+ res.append((0, 30, 200, 20, 1, RT_HALIGN_LEFT, repeatedtext + (" %s ... %s" % (FuzzyTime(timer.begin)[1], FuzzyTime(timer.end)[1]))))
+ else:
+ res.append((0, 30, 200, 20, 1, RT_HALIGN_LEFT, repeatedtext + ("%s, %s ... %s" % (FuzzyTime(timer.begin) + FuzzyTime(timer.end)[1:]))))
res.append((300, 0, 200, 20, 1, RT_HALIGN_RIGHT, timer.description))