diff options
author | Thomas Bruederli <bruederli@kolabsys.com> | 2015-03-26 10:35:51 +0100 |
---|---|---|
committer | Thomas Bruederli <bruederli@kolabsys.com> | 2015-03-26 10:35:51 +0100 |
commit | 85974d137dd2b37a7d78bffc1d8980cb775f1386 (patch) | |
tree | 5c9c7e6139fff60c46fd38f34854137399304463 /pykolab/xml/__init__.py | |
parent | 035978ff20b1336ec2db06e3f73a4449ea9ddb72 (diff) | |
download | pykolab-85974d137dd2b37a7d78bffc1d8980cb775f1386.tar.gz |
Add wrapper class for kolabformat.Note (#4908)
Diffstat (limited to 'pykolab/xml/__init__.py')
-rw-r--r-- | pykolab/xml/__init__.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/pykolab/xml/__init__.py b/pykolab/xml/__init__.py index 00edf06..20e4763 100644 --- a/pykolab/xml/__init__.py +++ b/pykolab/xml/__init__.py @@ -20,6 +20,11 @@ from todo import todo_from_ical from todo import todo_from_string from todo import todo_from_message +from note import Note +from note import NoteIntegrityError +from note import note_from_string +from note import note_from_message + from utils import property_label from utils import property_to_string from utils import compute_diff @@ -31,6 +36,7 @@ __all__ = [ "ContactReference", "Event", "Todo", + "Note", "RecurrenceRule", "event_from_ical", "event_from_string", @@ -38,6 +44,8 @@ __all__ = [ "todo_from_ical", "todo_from_string", "todo_from_message", + "note_from_string", + "note_from_message", "property_label", "property_to_string", "compute_diff", @@ -49,6 +57,7 @@ errors = [ "InvalidEventDateError", "InvalidAttendeeParticipantStatusError", "TodoIntegrityError", + "NoteIntegrityError", ] __all__.extend(errors) |