X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/63fd3a60724b9c03a70ce847955f2aa9facb423f..6dbbf2167e1a8ca25dd2cd8e20bef82686b28f61:/lib/python/Components/TimerList.py diff --git a/lib/python/Components/TimerList.py b/lib/python/Components/TimerList.py index 43a55fde..b1e8bf45 100644 --- a/lib/python/Components/TimerList.py +++ b/lib/python/Components/TimerList.py @@ -2,6 +2,7 @@ from HTMLComponent import * from GUIComponent import * from Tools.FuzzyDate import FuzzyTime +import time from enigma import eListboxPythonMultiContent, eListbox, gFont from timer import TimerEntry @@ -25,9 +26,25 @@ RT_WRAP = 32 def TimerEntryComponent(timer, processed): res = [ timer ] - + print time.strftime("%c", time.localtime(timer.begin)) + print time.strftime("%c", time.localtime(timer.end)) + 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 + 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))