Beispiel #1
0
class TextMatch(ValuedBaseElement):
    tag = ns("C", "text-match")

    def __init__(self, value, collation="i;octet", negate=False):
        super(TextMatch, self).__init__(value=value)
        self.attributes['collation'] = collation
        if negate:
            self.attributes['negate-condition'] = "yes"
Beispiel #2
0
class TimeRange(BaseElement):
    tag = ns("C", "time-range")

    def __init__(self, start=None, end=None):
        super(TimeRange, self).__init__()
        if start is not None:
            self.attributes['start'] = timeToString(start)
        if end is not None:
            self.attributes['end'] = timeToString(end)
Beispiel #3
0
class Expand(BaseElement):
    tag = ns("C", "expand")

    def __init__(self, start, end=None):
        super(Expand, self).__init__()
        if start is not None:
            self.attributes['start'] = timeToString(start)
        if end is not None:
            self.attributes['end'] = timeToString(end)
Beispiel #4
0
class PropertyUpdate(BaseElement):
    tag = ns("D", "propertyupdate")
Beispiel #5
0
class Mkcol(BaseElement):
    tag = ns("D", "mkcol")
Beispiel #6
0
class CalendarOrder(ValuedBaseElement):
    tag = ns("I", "calendar-order")
Beispiel #7
0
class MaxAttendeesPerInstance(ValuedBaseElement):
    tag = ns("C", "max-attendees-per-instance")
Beispiel #8
0
class Response(BaseElement):
    tag = ns("D", "response")
Beispiel #9
0
class CurrentUserPrincipal(BaseElement):
    tag = ns("D", "current-user-principal")
Beispiel #10
0
class Set(BaseElement):
    tag = ns("D", "set")
Beispiel #11
0
class DisplayName(ValuedBaseElement):
    tag = ns("D", "displayname")
Beispiel #12
0
class FreeBusyQuery(BaseElement):
    tag = ns("C", "free-busy-query")
Beispiel #13
0
class Prop(BaseElement):
    tag = ns("D", "prop")
Beispiel #14
0
class ParamFilter(NamedBaseElement):
    tag = ns("C", "param-filter")
Beispiel #15
0
class PropFilter(NamedBaseElement):
    tag = ns("C", "prop-filter")
Beispiel #16
0
class CompFilter(NamedBaseElement):
    tag = ns("C", "comp-filter")
Beispiel #17
0
class Filter(BaseElement):
    tag = ns("C", "filter")
Beispiel #18
0
class Mkcalendar(BaseElement):
    tag = ns("C", "mkcalendar")
Beispiel #19
0
class Collection(BaseElement):
    tag = ns("D", "collection")
Beispiel #20
0
class NotDefined(BaseElement):
    tag = ns("C", "is-not-defined")
Beispiel #21
0
class ResourceType(BaseElement):
    tag = ns("D", "resourcetype")
Beispiel #22
0
class CalendarData(BaseElement):
    tag = ns("C", "calendar-data")
Beispiel #23
0
class Href(BaseElement):
    tag = ns("D", "href")
Beispiel #24
0
class Comp(NamedBaseElement):
    tag = ns("C", "comp")
Beispiel #25
0
class Status(BaseElement):
    tag = ns("D", "status")
Beispiel #26
0
class CalendarHomeSet(BaseElement):
    tag = ns("C", "calendar-home-set")
Beispiel #27
0
class Propfind(BaseElement):
    tag = ns("D", "propfind")
Beispiel #28
0
class Calendar(BaseElement):
    tag = ns("C", "calendar")
Beispiel #29
0
class CalendarColor(ValuedBaseElement):
    tag = ns("I", "calendar-color")
Beispiel #30
0
class MaxInstances(ValuedBaseElement):
    tag = ns("C", "max-instances")