# HG changeset patch # User Paul Boddie # Date 1441401974 -7200 # Node ID b5bdf9dcad0f9fda7c6a5df941607720a5637d56 # Parent 4b4475ea6b6a5a83f29cc0ec2afa80431dae861a Added docstrings. diff -r 4b4475ea6b6a -r b5bdf9dcad0f imiptools/handlers/person_outgoing.py --- a/imiptools/handlers/person_outgoing.py Fri Sep 04 23:25:50 2015 +0200 +++ b/imiptools/handlers/person_outgoing.py Fri Sep 04 23:26:14 2015 +0200 @@ -186,27 +186,51 @@ "An event handler." def add(self): + + "Record the addition of a recurrence to an event." + self._add() def cancel(self): + + "Remove an event or a recurrence." + self._remove(True) def counter(self): + + "Counter-proposals are tentative and do not change events." + pass def declinecounter(self): + + "Declined counter-proposals are advisory and do not change events." + pass def publish(self): + + "Published events are recorded." + self._record(True) def refresh(self): + + "Requests to refresh events do not provide event information." + pass def reply(self): + + "Replies to requests are inspected for attendee information." + self._record(False) def request(self): + + "Record events sent for potential scheduling." + self._record(True) # Handler registry.