imip-agent

imiptools/handlers/scheduling/manifest.py

1028:7f4bd7d4236a
2016-01-29 Paul Boddie Added support for additional scheduling modules, moving the existing functionality into the freebusy module, providing initial functionality for an access-based module, and introducing a mechanism to update the registry of modules explicitly. Added a test of combining scheduling functions.
     1 scheduling_functions = {}     2 from imiptools.handlers.scheduling.freebusy import scheduling_functions as l     3 scheduling_functions.update(l)     4 from imiptools.handlers.scheduling.access import scheduling_functions as l     5 scheduling_functions.update(l)