Repository URL to install this package:
#!/usr/bin/python
# encoding: utf-8
#
# Copyright (C) 2018-2023 dream-alpha
#
# In case of reuse of this source code please do not remove this copyright.
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# For more information on the GNU General Public License see:
# <http://www.gnu.org/licenses/>.
from time import localtime, strftime, gmtime
from Plugins.SystemPlugins.ComponentsCockpit.__init__ import _
from Components.Converter.ClockToText import ClockToText
from Components.Element import cached
from Components.config import config
class COCClockToText(ClockToText):
def __init__(self, atype):
ClockToText.__init__(self, atype)
@cached
def getText(self):
text = ""
time = self.source.time
if time is not None:
if self.type == self.IN_MINUTES:
text = ""
if time > -1:
mins = time / 60
if time % 60 >= 30:
mins += 1
text = "%d " % mins + _("min")
elif self.type == self.AS_LENGTH:
text = "%d:%02d" % (time / 60, time % 60)
elif self.type == self.TIMESTAMP:
text = str(time)
else:
if time > (31 * 24 * 60 * 60):
# No Recording should be longer than 1 month
t = localtime(time)
else:
t = gmtime(time)
if self.type == self.WITH_SECONDS:
text = "%2d:%02d:%02d" % (t.tm_hour, t.tm_min, t.tm_sec)
elif self.type == self.DEFAULT:
text = "%02d:%02d" % (t.tm_hour, t.tm_min)
elif self.type == self.DATE:
if config.osd.language.value == "de_DE":
text = strftime("%A, %d. %B %Y", t)
else:
text = strftime("%A %B %d, %Y", t)
elif self.type == self.FORMAT:
spos = self.fmt_string.find("%")
if spos > -1:
s1 = self.fmt_string[:spos]
s2 = strftime(self.fmt_string[spos:], t)
text = str(s1 + s2)
else:
text = strftime(self.fmt_string, t)
return text
text = property(getText)