def __init__(self, uri, version, full_state, cid=None, items=[]):
     XMLListElement.__init__(self)
     self.uri = uri
     self.version = version
     self.full_state = full_state
     self.cid = cid
     self.update(items)
Beispiel #2
0
 def __init__(self, id, notes=[], status=None, contact=None, timestamp=None):
     XMLListElement.__init__(self)
     self.id = id
     self.status = status
     self.contact = contact
     self.timestamp = timestamp
     self.notes.update(notes)
 def __init__(self, auid, entries=[], error_code=None):
     if error_code is not None and entries:
         raise ValueError("Cannot set both an error code and add entries at the same time")
     XMLListElement.__init__(self)
     self.auid = auid
     self.error_code = error_code
     self.update(entries)
Beispiel #4
0
 def __init__(self, uri, version, full_state, cid=None, items=[]):
     XMLListElement.__init__(self)
     self.uri = uri
     self.version = version
     self.full_state = full_state
     self.cid = cid
     self.update(items)
Beispiel #5
0
 def __init__(self, id=None, since=None, until=None, notes=[], placetypes=[]):
     XMLListElement.__init__(self)
     self.id = id
     self.since = since
     self.until = until
     for note in notes:
         self.notes.add(note)
     self[0:0] = placetypes
 def __init__(self, entity, state='full', display_text=None, associated_aors=None, roles=None, languages=None, cascaded_focus=None, endpoints=[]):
     XMLListElement.__init__(self)
     self.entity = entity
     self.state = state
     self.display_text = display_text
     self.associated_aors = associated_aors
     self.roles = roles
     self.languages = languages
     self.cascaded_focus = cascaded_focus
     self.update(endpoints)
 def __init__(self, entity, state='full', display_text=None, associated_aors=None, roles=None, languages=None, cascaded_focus=None, endpoints=[]):
     XMLListElement.__init__(self)
     self.entity = entity
     self.state = state
     self.display_text = display_text
     self.associated_aors = associated_aors
     self.roles = roles
     self.languages = languages
     self.cascaded_focus = cascaded_focus
     self[0:0] = endpoints
Beispiel #8
0
 def __init__(self, id=None, since=None, until=None, notes=[], audio=False, text=False, video=False, privacy=[]):
     XMLListElement.__init__(self)
     self.id = id
     self.since = since
     self.until = until
     for note in notes:
         self.notes.add(note)
     self.audio = audio
     self.text = text
     self.video = video
     self[0:0] = privacy
Beispiel #9
0
 def __init__(self,
              id,
              notes=[],
              status=None,
              contact=None,
              timestamp=None):
     XMLListElement.__init__(self)
     self.id = id
     self.status = status
     self.contact = contact
     self.timestamp = timestamp
     self.notes.update(notes)
 def __init__(self, entity, state='full', display_text=None, referred=None, status=None, joining_method=None, joining_info=None, disconnection_method=None, disconnection_info=None, call_info=None, media=[]):
     XMLListElement.__init__(self)
     self.entity = entity
     self.state = state
     self.display_text = display_text
     self.referred = referred
     self.status = status
     self.joining_method = joining_method
     self.joining_info = joining_info
     self.disconnection_method = disconnection_method
     self.disconnection_info = disconnection_info
     self.call_info = call_info
     self.update(media)
 def __init__(self,
              id=None,
              since=None,
              until=None,
              notes=[],
              placetypes=[]):
     XMLListElement.__init__(self)
     self.id = id
     self.since = since
     self.until = until
     for note in notes:
         self.notes.add(note)
     self[0:0] = placetypes
Beispiel #12
0
 def __init__(self, entity, state='full', display_text=None, referred=None, status=None, joining_method=None, joining_info=None, disconnection_method=None, disconnection_info=None, call_info=None, media=[]):
     XMLListElement.__init__(self)
     self.entity = entity
     self.state = state
     self.display_text = display_text
     self.referred = referred
     self.status = status
     self.joining_method = joining_method
     self.joining_info = joining_info
     self.disconnection_method = disconnection_method
     self.disconnection_info = disconnection_info
     self.call_info = call_info
     self.update(media)
 def __init__(self,
              id=None,
              since=None,
              until=None,
              notes=[],
              audio=False,
              text=False,
              video=False,
              privacy=[]):
     XMLListElement.__init__(self)
     self.id = id
     self.since = since
     self.until = until
     for note in notes:
         self.notes.add(note)
     self.audio = audio
     self.text = text
     self.video = video
     self[0:0] = privacy
 def __init__(self,
              audio=None,
              application=None,
              data=None,
              control=None,
              video=None,
              text=None,
              message=None,
              mime_type=None,
              automata=None,
              communication_class=None,
              duplex=None,
              event_packages=None,
              priority=None,
              methods=None,
              extensions=None,
              schemes=None,
              actor=None,
              is_focus=None,
              languages=None,
              descriptions=[]):
     XMLListElement.__init__(self)
     self.audio = audio
     self.application = application
     self.data = data
     self.control = control
     self.video = video
     self.text = text
     self.message = message
     self.mime_type = mime_type
     self.automata = automata
     self.communication_class = communication_class
     self.duplex = duplex
     self.event_packages = event_packages
     self.priority = priority
     self.methods = methods
     self.extensions = extensions
     self.schemes = schemes
     self.actor = actor
     self.is_focus = is_focus
     self.languages = languages
     self[0:0] = descriptions
Beispiel #15
0
 def __init__(self, audio=None, application=None, data=None, control=None, video=None, text=None, message=None, mime_type=None, automata=None, communication_class=None, duplex=None, event_packages=None, priority=None, methods=None, extensions=None, schemes=None, actor=None, is_focus=None, languages=None, descriptions=[]):
     XMLListElement.__init__(self)
     self.audio = audio
     self.application = application
     self.data = data
     self.control = control
     self.video = video
     self.text = text
     self.message = message
     self.mime_type = mime_type
     self.automata = automata
     self.communication_class = communication_class
     self.duplex = duplex
     self.event_packages = event_packages
     self.priority = priority
     self.methods = methods
     self.extensions = extensions
     self.schemes = schemes
     self.actor = actor
     self.is_focus = is_focus
     self.languages = languages
     self.update(descriptions)
Beispiel #16
0
 def __init__(self, uris=[], default=None):
     XMLListElement.__init__(self)
     self.update(uris)
     self.default = default
Beispiel #17
0
 def __init__(self, actions=[]):
     XMLListElement.__init__(self)
     self[0:0] = actions
Beispiel #18
0
 def __init__(self, children=[]):
     XMLListElement.__init__(self)
     self.update(children)
Beispiel #19
0
 def __init__(self, actions=[]):
     XMLListElement.__init__(self)
     self.update(actions)
Beispiel #20
0
 def __init__(self, files=[]):
     XMLListElement.__init__(self)
     self.update(files)
Beispiel #21
0
 def __init__(self, domain=None, exceptions=[]):
     XMLListElement.__init__(self)
     self.domain = domain
     self.update(exceptions)
Beispiel #22
0
 def __init__(self, entries=[], name=None, display_name=None):
     XMLListElement.__init__(self)
     self.name = name
     self.display_name = display_name
     self.update(entries)
Beispiel #23
0
 def __init__(self, entries=[]):
     XMLListElement.__init__(self)
     self.update(entries)
Beispiel #24
0
 def __init__(self, resource, package, watchers=[]):
     XMLListElement.__init__(self)
     self.resource = resource
     self.package = package
     self._watchers = {}
     self[:] = watchers
 def __init__(self, packages=[]):
     XMLListElement.__init__(self)
     self.update(packages)
 def __init__(self, entries=[]):
     XMLListElement.__init__(self)
     self[0:0] = entries
 def __init__(self, packages=[]):
     XMLListElement.__init__(self)
     self.update(packages)
 def __init__(self, all=False, provides=[]):
     XMLListElement.__init__(self)
     self.all = all
     self[0:0] = provides
Beispiel #29
0
 def __init__(self, transformations=[]):
     XMLListElement.__init__(self)
     self[0:0] = transformations
Beispiel #30
0
 def __init__(self, roles=[]):
     XMLListElement.__init__(self)
     self.update(roles)
Beispiel #31
0
 def __init__(self, state='full', users=[]):
     XMLListElement.__init__(self)
     self.state = state
     self.update(users)
Beispiel #32
0
 def __init__(self, resource, package, watchers=[]):
     XMLListElement.__init__(self)
     self.resource = resource
     self.package = package
     self.update(watchers)
Beispiel #33
0
 def __init__(self, state='full', entries=[]):
     XMLListElement.__init__(self)
     self.state = state
     self.update(entries)
 def __init__(self, uris=[], default=None):
     XMLListElement.__init__(self)
     self.update(uris)
     self.default = default
Beispiel #35
0
 def __init__(self, auid, folder=[]):
     XMLListElement.__init__(self)
     self.auid = auid
     self[0:0] = folder
Beispiel #36
0
 def __init__(self, state='full', entries=[]):
     XMLListElement.__init__(self)
     self.state = state
     self[0:0] = entries
Beispiel #37
0
 def __init__(self, identities=[]):
     XMLListElement.__init__(self)
     self.update(identities)
 def __init__(self, roles=[]):
     XMLListElement.__init__(self)
     self[0:0] = roles
Beispiel #39
0
 def __init__(self, conditions=[]):
     XMLListElement.__init__(self)
     self.update(conditions)
 def __init__(self, state='full', entries=[]):
     XMLListElement.__init__(self)
     self.state = state
     self[0:0] = entries
Beispiel #41
0
 def __init__(self, transformations=[]):
     XMLListElement.__init__(self)
     self.update(transformations)
Beispiel #42
0
 def __init__(self, contacts=[]):
     XMLListElement.__init__(self)
     self.update(contacts)
 def __init__(self, entries=[]):
     XMLListElement.__init__(self)
     self[0:0] = entries
 def __init__(self, mobility=None, descriptions=[]):
     XMLListElement.__init__(self)
     self.mobility = mobility
     self[0:0] = descriptions
Beispiel #45
0
 def __init__(self, roles=[]):
     XMLListElement.__init__(self)
     self[0:0] = roles
 def __init__(self, supported=[]):
     XMLListElement.__init__(self)
     self[0:0] = supported
Beispiel #47
0
 def __init__(self, state='full', users=[]):
     XMLListElement.__init__(self)
     self.state = state
     self.update(users)
Beispiel #48
0
 def __init__(self, conditions=[]):
     XMLListElement.__init__(self)
     self[0:0] = conditions
 def __init__(self, resource, package, watchers=[]):
     XMLListElement.__init__(self)
     self.resource = resource
     self.package = package
     self.update(watchers)
Beispiel #50
0
 def __init__(self, state='full', entries=[]):
     XMLListElement.__init__(self)
     self.state = state
     self.update(entries)
 def __init__(self, contacts=[]):
     XMLListElement.__init__(self)
     self.update(contacts)
Beispiel #52
0
 def __init__(self, children=[]):
     XMLListElement.__init__(self)
     self[:] = children