57
63
client_interface = domain + '.Mandos.Client'
60
# Always run in monochrome mode
61
urwid.curses_display.curses.has_colors = lambda : False
63
# Urwid doesn't support blinking, but we want it. Since we have no
64
# use for underline on its own, we make underline also always blink.
65
urwid.curses_display.curses.A_UNDERLINE |= (
66
urwid.curses_display.curses.A_BLINK)
68
66
def isoformat_to_datetime(iso):
69
67
"Parse an ISO 8601 date string to a datetime.datetime()"
279
277
message = "Approval in {0}. (d)eny?"
281
279
message = "Denial in {0}. (a)pprove?"
282
message = message.format(unicode(timer).rsplit(".", 1)[0])
280
message = message.format(str(timer).rsplit(".", 1)[0])
283
281
self.using_timer(True)
284
282
elif self.properties["LastCheckerStatus"] != 0:
285
283
# When checker has failed, show timer until client expires
382
380
def property_changed(self, property=None, **kwargs):
383
381
"""Call self.update() if old value is not new value.
384
382
This overrides the method from MandosClientPropertyCache"""
385
property_name = unicode(property)
383
property_name = str(property)
386
384
old_value = self.properties.get(property_name)
387
385
super(MandosClientWidget, self).property_changed(
388
386
property=property, **kwargs)
416
414
"default", "default", None),
418
"default", "default", "bold"),
416
"bold", "default", "bold"),
419
417
("underline-blink",
420
"default", "default", "underline"),
418
"underline,blink", "default", "underline,blink"),
422
"default", "default", "standout"),
420
"standout", "default", "standout"),
423
421
("bold-underline-blink",
424
"default", "default", ("bold", "underline")),
422
"bold,underline,blink", "default", "bold,underline,blink"),
425
423
("bold-standout",
426
"default", "default", ("bold", "standout")),
424
"bold,standout", "default", "bold,standout"),
427
425
("underline-blink-standout",
428
"default", "default", ("underline", "standout")),
426
"underline,blink,standout", "default",
427
"underline,blink,standout"),
429
428
("bold-underline-blink-standout",
430
"default", "default", ("bold", "underline",
429
"bold,underline,blink,standout", "default",
430
"bold,underline,blink,standout"),
434
433
if urwid.supports_unicode():
606
600
self.client_not_found,
607
601
dbus_interface=server_interface,
608
602
byte_arrays=True))
609
for path, client in mandos_clients.iteritems():
603
for path, client in mandos_clients.items():
610
604
client_proxy_object = self.bus.get_object(self.busname,
612
606
self.add_client(MandosClientWidget(server_proxy_object