コード例 #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")