2016-12-09 07:11:23 +01:00
|
|
|
# pylint: disable=C0111,R0903
|
|
|
|
|
2016-12-10 19:30:25 +01:00
|
|
|
"""Displays the current date and time.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
* datetime.format: strftime()-compatible formatting string
|
|
|
|
* date.format : alias for datetime.format
|
|
|
|
* time.format : alias for datetime.format
|
2017-08-06 20:29:41 +02:00
|
|
|
* datetime.locale: locale to use rather than the system default
|
|
|
|
* date.locale : alias for datetime.locale
|
|
|
|
* time.locale : alias for datetime.locale
|
2016-12-10 19:30:25 +01:00
|
|
|
"""
|
2016-12-09 07:11:23 +01:00
|
|
|
|
|
|
|
from __future__ import absolute_import
|
|
|
|
import datetime
|
2017-07-27 16:01:56 +02:00
|
|
|
import locale
|
2016-12-09 07:11:23 +01:00
|
|
|
import bumblebee.engine
|
|
|
|
|
2017-10-13 17:06:18 +02:00
|
|
|
ALIASES = ["date", "time"]
|
2016-12-11 07:18:06 +01:00
|
|
|
|
2016-12-09 07:11:23 +01:00
|
|
|
def default_format(module):
|
|
|
|
default = "%x %X"
|
|
|
|
if module == "date":
|
|
|
|
default = "%x"
|
|
|
|
if module == "time":
|
|
|
|
default = "%X"
|
|
|
|
return default
|
|
|
|
|
|
|
|
class Module(bumblebee.engine.Module):
|
2016-12-09 08:23:53 +01:00
|
|
|
def __init__(self, engine, config):
|
|
|
|
super(Module, self).__init__(engine, config,
|
2017-08-06 20:29:41 +02:00
|
|
|
bumblebee.output.Widget(full_text=self.get_time))
|
2016-12-11 07:18:06 +01:00
|
|
|
self._fmt = self.parameter("format", default_format(self.name))
|
2018-01-21 08:55:42 +01:00
|
|
|
l = locale.getdefaultlocale()
|
2018-05-31 13:12:39 +02:00
|
|
|
if not l or l == (None, None):
|
2018-01-21 08:55:42 +01:00
|
|
|
l = ('en_US', 'UTF-8')
|
|
|
|
lcl = self.parameter("locale", ".".join(l))
|
2018-10-01 19:30:44 +02:00
|
|
|
try:
|
|
|
|
locale.setlocale(locale.LC_TIME, lcl.split("."))
|
|
|
|
except Exception as e:
|
|
|
|
locale.setlocale(locale.LC_TIME, lcl.split("en_US.UTF-8"))
|
2016-12-09 07:11:23 +01:00
|
|
|
|
2016-12-11 11:37:24 +01:00
|
|
|
def get_time(self, widget):
|
2017-08-12 16:44:17 +02:00
|
|
|
enc = locale.getpreferredencoding()
|
2017-08-12 17:13:02 +02:00
|
|
|
retval = datetime.datetime.now().strftime(self._fmt)
|
|
|
|
if hasattr(retval, "decode"):
|
|
|
|
return retval.decode(enc)
|
|
|
|
return retval
|
2016-12-09 07:11:23 +01:00
|
|
|
|
|
|
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|