2016-03-07 | Paul Boddie | file changeset files shortlog | Added further parameterisation of database-resident free/busy collections so that tables may contain other columns such as user-specific details. Fixed removal of affected periods in database-resident collections. | freebusy-collections |
paul@57 | 1 | #!/usr/bin/env python |
paul@57 | 2 | |
paul@57 | 3 | from imiptools import Processor |
paul@57 | 4 | from imiptools.handlers import person |
paul@85 | 5 | from imiptools.mail import Messenger |
paul@57 | 6 | |
paul@127 | 7 | Processor(person.handlers)() |
paul@57 | 8 | |
paul@57 | 9 | # vim: tabstop=4 expandtab shiftwidth=4 |