63
57
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)
66
68
def isoformat_to_datetime(iso):
67
69
"Parse an ISO 8601 date string to a datetime.datetime()"
277
279
message = "Approval in {0}. (d)eny?"
279
281
message = "Denial in {0}. (a)pprove?"
280
message = message.format(str(timer).rsplit(".", 1)[0])
282
message = message.format(unicode(timer).rsplit(".", 1)[0])
281
283
self.using_timer(True)
282
284
elif self.properties["LastCheckerStatus"] != 0:
283
285
# When checker has failed, show timer until client expires
380
382
def property_changed(self, property=None, **kwargs):
381
383
"""Call self.update() if old value is not new value.
382
384
This overrides the method from MandosClientPropertyCache"""
383
property_name = str(property)
385
property_name = unicode(property)
384
386
old_value = self.properties.get(property_name)
385
387
super(MandosClientWidget, self).property_changed(
386
388
property=property, **kwargs)
414
416
"default", "default", None),
416
"bold", "default", "bold"),
418
"default", "default", "bold"),
417
419
("underline-blink",
418
"underline,blink", "default", "underline,blink"),
420
"default", "default", "underline"),
420
"standout", "default", "standout"),
422
"default", "default", "standout"),
421
423
("bold-underline-blink",
422
"bold,underline,blink", "default", "bold,underline,blink"),
424
"default", "default", ("bold", "underline")),
423
425
("bold-standout",
424
"bold,standout", "default", "bold,standout"),
426
"default", "default", ("bold", "standout")),
425
427
("underline-blink-standout",
426
"underline,blink,standout", "default",
427
"underline,blink,standout"),
428
"default", "default", ("underline", "standout")),
428
429
("bold-underline-blink-standout",
429
"bold,underline,blink,standout", "default",
430
"bold,underline,blink,standout"),
430
"default", "default", ("bold", "underline",
433
434
if urwid.supports_unicode():
580
585
mandos_clients = (self.mandos_serv
581
586
.GetAllClientsWithProperties())
582
if not mandos_clients:
583
self.log_message_raw(("bold", "Note: Server has no clients."))
584
587
except dbus.exceptions.DBusException:
585
self.log_message_raw(("bold", "Note: No Mandos server running."))
586
588
mandos_clients = dbus.Dictionary()
588
590
(self.mandos_serv
600
602
self.client_not_found,
601
603
dbus_interface=server_interface,
602
604
byte_arrays=True))
603
for path, client in mandos_clients.items():
605
for path, client in mandos_clients.iteritems():
604
606
client_proxy_object = self.bus.get_object(self.busname,
606
608
self.add_client(MandosClientWidget(server_proxy_object