imip-agent

imip_person_outgoing.py

498:54c8876a02c4
2015-04-06 Paul Boddie Introduced abstractions for form dates and periods, making the recurrence period details specified in the form separate from the stored details, and providing conversions from and to a suitable representation for updating the storage.
     1 #!/usr/bin/env python     2      3 from imiptools import Processor     4 from imiptools.handlers import person_outgoing     5 from imiptools.mail import Messenger     6      7 Processor(person_outgoing.handlers)()     8      9 # vim: tabstop=4 expandtab shiftwidth=4