コード例 #1
0
ファイル: form.py プロジェクト: mathieui/slixmpp
 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
0
ファイル: form.py プロジェクト: isabella232/slixmpp
 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
コード例 #3
0
ファイル: pubsub.py プロジェクト: yikuide/slixmpp
 def __init__(self, *args, **kwargs):
     ElementBase.__init__(self, *args, **kwargs)
コード例 #4
0
ファイル: control.py プロジェクト: yikuide/slixmpp
 def __init__(self, xml=None, parent=None):
     ElementBase.__init__(self, xml, parent)
     self._nodes = set()
     self._datas = set()
コード例 #5
0
 def __init__(self, xml=None, parent=None):
     ElementBase.__init__(self, xml, parent)
     self._timestamps = set()
コード例 #6
0
ファイル: control.py プロジェクト: mathieui/slixmpp
 def __init__(self, xml=None, parent=None):
     ElementBase.__init__(self, xml, parent)
     self._nodes = set()
     self._datas = set()
コード例 #7
0
ファイル: pubsub.py プロジェクト: mathieui/slixmpp
 def __init__(self, *args, **kwargs):
     ElementBase.__init__(self, *args, **kwargs)
コード例 #8
0
ファイル: sensordata.py プロジェクト: mathieui/slixmpp
 def __init__(self, xml=None, parent=None):
     ElementBase.__init__(self, xml, parent)
     self._timestamps = set()