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