imip-agent

Change of imiptools/handlers/person_outgoing.py

686:b5bdf9dcad0f
imiptools/handlers/person_outgoing.py
     1.1 --- a/imiptools/handlers/person_outgoing.py	Fri Sep 04 23:25:50 2015 +0200
     1.2 +++ b/imiptools/handlers/person_outgoing.py	Fri Sep 04 23:26:14 2015 +0200
     1.3 @@ -186,27 +186,51 @@
     1.4      "An event handler."
     1.5  
     1.6      def add(self):
     1.7 +
     1.8 +        "Record the addition of a recurrence to an event."
     1.9 +
    1.10          self._add()
    1.11  
    1.12      def cancel(self):
    1.13 +
    1.14 +        "Remove an event or a recurrence."
    1.15 +
    1.16          self._remove(True)
    1.17  
    1.18      def counter(self):
    1.19 +
    1.20 +        "Counter-proposals are tentative and do not change events."
    1.21 +
    1.22          pass
    1.23  
    1.24      def declinecounter(self):
    1.25 +
    1.26 +        "Declined counter-proposals are advisory and do not change events."
    1.27 +
    1.28          pass
    1.29  
    1.30      def publish(self):
    1.31 +
    1.32 +        "Published events are recorded."
    1.33 +
    1.34          self._record(True)
    1.35  
    1.36      def refresh(self):
    1.37 +
    1.38 +        "Requests to refresh events do not provide event information."
    1.39 +
    1.40          pass
    1.41  
    1.42      def reply(self):
    1.43 +
    1.44 +        "Replies to requests are inspected for attendee information."
    1.45 +
    1.46          self._record(False)
    1.47  
    1.48      def request(self):
    1.49 +
    1.50 +        "Record events sent for potential scheduling."
    1.51 +
    1.52          self._record(True)
    1.53  
    1.54  # Handler registry.