本文整理汇总了Python中sleekxmpp.xmlstream.ElementBase类的典型用法代码示例。如果您正苦于以下问题:Python ElementBase类的具体用法?Python ElementBase怎么用?Python ElementBase使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了ElementBase类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
def __init__(self, *args, **kwargs):
title = None
if 'title' in kwargs:
title = kwargs['title']
del kwargs['title']
ElementBase.__init__(self, *args, **kwargs)
if title is not None:
self['title'] = title
示例2: setup
def setup(self, xml=None):
"""
Populate the stanza object using an optional XML object.
Overrides ElementBase.setup
Caches item information.
Arguments:
xml -- Use an existing XML object for the stanza's values.
"""
ElementBase.setup(self, xml)
self._datas = set([data['name'] for data in self['datas']])
示例3: setup
def setup(self, xml=None):
"""
Populate the stanza object using an optional XML object.
Overrides ElementBase.setup
Caches identity and feature information.
Arguments:
xml -- Use an existing XML object for the stanza's values.
"""
ElementBase.setup(self, xml)
self._identities = set([id[0:3] for id in self['identities']])
self._features = self['features']
示例4: __init__
def __init__(self, param=None, *args, **kwargs):
'''
Class constructor that builds the manually
the XML of the stanza. This procedure is needed
at the moment to be able to include text into
the stanza root elements, as the default
functionality does not seem to allow that.
After defining the XML body of the stanza,
ElementBase is initiated passing the body of the
stanza as an argument for the `xml` parameter
of the ElementBase class.
'''
ET.register_namespace('', 'intamac:intamacdeviceinfo')
root = ET.Element('{intamac:intamacdeviceinfo}intamacdeviceinfo')
root.text = param
ElementBase.__init__(self, xml=root)
示例5: setup
def setup(self, xml=None):
"""
Populate the stanza object using an optional XML object.
Overrides ElementBase.setup.
Sets a default error type and condition, and changes the
parent stanza's type to 'error'.
Arguments:
xml -- Use an existing XML object for the stanza's values.
"""
# To comply with PEP8, method names now use underscores.
# Deprecated method names are re-mapped for backwards compatibility.
self.getCondition = self.get_condition
self.setCondition = self.set_condition
self.delCondition = self.del_condition
self.getText = self.get_text
self.setText = self.set_text
self.delText = self.del_text
if ElementBase.setup(self, xml):
#If we had to generate XML then set default values.
self['type'] = 'cancel'
self['condition'] = 'feature-not-implemented'
if self.parent is not None:
self.parent()['type'] = 'error'
示例6: __init__
def __init__(self, *args, **kwargs):
"""
"""
ElementBase.__init__(self, *args, **kwargs)
self.field = OrderedDict()
self.addField = self.add_field
self.addReported = self.add_reported
self.addItem = self.add_item
self.setItems = self.set_items
self.delItems = self.del_items
self.getItems = self.get_items
self.getInstructions = self.get_instructions
self.setInstructions = self.set_instructions
self.delInstructions = self.del_instructions
self.getFields = self.get_fields
self.setFields = self.set_fields
self.delFields = self.del_fields
self.getValues = self.get_values
self.setValues = self.set_values
self.getReported = self.get_reported
self.setReported = self.set_reported
self.delReported = self.del_reported
示例7: setup
def setup(self, xml=None):
"""
Populate the stanza object using an optional XML object.
Overrides StanzaBase.setup.
Arguments:
xml -- Use an existing XML object for the stanza's values.
"""
# To comply with PEP8, method names now use underscores.
# Deprecated method names are re-mapped for backwards compatibility.
self.setItems = self.set_items
self.getItems = self.get_items
self.delItems = self.del_items
return ElementBase.setup(self, xml)
示例8: setup
def setup(self, xml=None):
"""
Populate the stanza object using an optional XML object.
Overrides ElementBase.setup.
Sets a default error type and condition, and changes the
parent stanza's type to 'error'.
Arguments:
xml -- Use an existing XML object for the stanza's values.
"""
if ElementBase.setup(self, xml):
#If we had to generate XML then set default values.
self['type'] = 'cancel'
self['condition'] = 'feature-not-implemented'
if self.parent is not None:
self.parent()['type'] = 'error'
示例9: setup
def setup(self, xml=None):
ElementBase.setup(self, xml)
self._results = []
示例10: __init__
def __init__(self, xml=None, parent=None):
ElementBase.__init__(self, xml, parent);
self._timestamps = set()
示例11: setup
def setup(self, xml=None):
if ElementBase.setup(self, xml):
self._type = None
else:
self._type = self['type']
示例12: setup
def setup(self, xml=None):
ElementBase.setup(self, xml)
示例13: __init__
def __init__(self, xml=None, parent=None):
ElementBase.__init__(self, xml, parent)
self._includes = set()
self._excludes = set()
self._privileges = set()
示例14: setup
def setup(self, xml=None):
ElementBase.setup(self, xml)
self._credentials = set([credential['type']
for credential in self['credentials']])
示例15: __init__
def __init__(self, xml=None, parent=None):
ElementBase.__init__(self, xml, parent);
self._nodes = set()
self._datas = set()