/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos-monitor

  • Committer: teddy at recompile
  • Date: 2020-07-04 13:39:36 UTC
  • mfrom: (237.4.132 release)
  • Revision ID: teddy@recompile.se-20200704133936-lfk4sy1d48m53iqu
Merge from release branch

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
import dbus
48
48
 
49
49
if sys.version_info.major == 2:
 
50
    __metaclass__ = type
50
51
    str = unicode
51
52
 
52
53
log = logging.getLogger(os.path.basename(sys.argv[0]))
63
64
domain = "se.recompile"
64
65
server_interface = domain + ".Mandos"
65
66
client_interface = domain + ".Mandos.Client"
66
 
version = "1.8.9"
 
67
version = "1.8.12"
67
68
 
68
69
try:
69
70
    dbus.OBJECT_MANAGER_IFACE
88
89
                             int(fraction*1000000))  # Microseconds
89
90
 
90
91
 
91
 
class MandosClientPropertyCache(object):
 
92
class MandosClientPropertyCache:
92
93
    """This wraps a Mandos Client D-Bus proxy object, caches the
93
94
    properties and calls a hook function when any of them are
94
95
    changed.
406
407
        return ret
407
408
 
408
409
 
409
 
class UserInterface(object):
 
410
class UserInterface:
410
411
    """This is the entire user interface - the whole screen
411
412
    with boxes, lists of client widgets, etc.
412
413
    """