imip-agent

Annotated imiptools/freebusy/__init__.py

1309:644b7e259059
2017-10-14 Paul Boddie Support BCC sending suppression so that routines requesting it can still be used with senders that will not support it, usually because there are no outgoing routing destinations for those senders.
paul@1230 1
#!/usr/bin/env python
paul@1230 2
paul@1230 3
"""
paul@1230 4
Managing free/busy periods.
paul@1230 5
paul@1234 6
Copyright (C) 2017 Paul Boddie <paul@boddie.org.uk>
paul@1230 7
paul@1230 8
This program is free software; you can redistribute it and/or modify it under
paul@1230 9
the terms of the GNU General Public License as published by the Free Software
paul@1230 10
Foundation; either version 3 of the License, or (at your option) any later
paul@1230 11
version.
paul@1230 12
paul@1230 13
This program is distributed in the hope that it will be useful, but WITHOUT
paul@1230 14
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
paul@1230 15
FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
paul@1230 16
details.
paul@1230 17
paul@1230 18
You should have received a copy of the GNU General Public License along with
paul@1230 19
this program.  If not, see <http://www.gnu.org/licenses/>.
paul@1230 20
"""
paul@1230 21
paul@1234 22
from imiptools.freebusy.common import FreeBusyPeriod, \
paul@1234 23
                                      FreeBusyGroupPeriod, \
paul@1234 24
                                      FreeBusyOfferPeriod, \
paul@1234 25
                                      FreeBusyCollection, \
paul@1234 26
                                      FreeBusyGroupCollection, \
paul@1234 27
                                      FreeBusyOffersCollection, \
paul@1236 28
                                      SupportAttendee, SupportExpires, \
paul@1236 29
                                      period_from_tuple, period_to_tuple
paul@1230 30
paul@1230 31
# vim: tabstop=4 expandtab shiftwidth=4