mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-24 03:00:15 +00:00
A few cleanups to make things simpler.
This commit is contained in:
parent
3749c1b88c
commit
aebd115ba2
2 changed files with 4 additions and 7 deletions
|
@ -41,7 +41,7 @@ class Waiter(BaseHandler):
|
|||
matcher -- A matcher object to detect the desired stanza.
|
||||
stream -- Optional XMLStream instance to monitor.
|
||||
"""
|
||||
BaseHandler.__init__(self, name, matcher)
|
||||
BaseHandler.__init__(self, name, matcher, stream=stream)
|
||||
self._payload = queue.Queue()
|
||||
|
||||
def prerun(self, payload):
|
||||
|
|
|
@ -594,8 +594,8 @@ class ElementBase(object):
|
|||
tag = components[0]
|
||||
attributes = components[1:]
|
||||
|
||||
if tag not in (self.name, "{%s}%s" % (self.namespace, self.name),
|
||||
self.plugins, self.plugin_attrib):
|
||||
if tag not in (self.name, "{%s}%s" % (self.namespace, self.name)) and \
|
||||
tag not in self.plugins and tag not in self.plugin_attrib:
|
||||
# The requested tag is not in this stanza, so no match.
|
||||
return False
|
||||
|
||||
|
@ -786,14 +786,11 @@ class ElementBase(object):
|
|||
# that do not have namespaces.
|
||||
namespace = ns_block.split('}')[0]
|
||||
elements = ns_block.split('}')[1].split('/')
|
||||
elif propagate_ns:
|
||||
else:
|
||||
# Apply the stanza's namespace to the following
|
||||
# elements since no namespace was provided.
|
||||
namespace = self.namespace
|
||||
elements = ns_block.split('/')
|
||||
else:
|
||||
# We don't want to propagate namespaces.
|
||||
elements = ns_block.split('/')
|
||||
|
||||
for element in elements:
|
||||
if element:
|
||||
|
|
Loading…
Reference in a new issue