diff options
author | Lance Stout <lancestout@gmail.com> | 2011-01-27 18:05:05 -0500 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2011-01-27 18:05:05 -0500 |
commit | bd9bf3f1c7c17606f455ce0cf9c4d0b6b237a7fe (patch) | |
tree | 944aeaa34849e7fb6d822e9d3ff98b6db3a65546 /sleekxmpp/basexmpp.py | |
parent | cd800d636aa683dc562047bc517be7d1a9bb25c2 (diff) | |
download | slixmpp-bd9bf3f1c7c17606f455ce0cf9c4d0b6b237a7fe.tar.gz slixmpp-bd9bf3f1c7c17606f455ce0cf9c4d0b6b237a7fe.tar.bz2 slixmpp-bd9bf3f1c7c17606f455ce0cf9c4d0b6b237a7fe.tar.xz slixmpp-bd9bf3f1c7c17606f455ce0cf9c4d0b6b237a7fe.zip |
Update tostring methods.
Will now always show top-level namespace, unless it is the same
as the stream's default namespace. Also added the XMPP stream
namespace to the namespace map as 'stream'.
Diffstat (limited to 'sleekxmpp/basexmpp.py')
-rw-r--r-- | sleekxmpp/basexmpp.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sleekxmpp/basexmpp.py b/sleekxmpp/basexmpp.py index 3cf949a7..a490510a 100644 --- a/sleekxmpp/basexmpp.py +++ b/sleekxmpp/basexmpp.py @@ -106,6 +106,7 @@ class BaseXMPP(XMLStream): self.default_ns = default_ns self.stream_ns = 'http://etherx.jabber.org/streams' + self.namespace_map[self.stream_ns] = 'stream' self.boundjid = JID("") @@ -119,6 +120,8 @@ class BaseXMPP(XMLStream): self.sentpresence = False + self.stanza = sleekxmpp.stanza + self.register_handler( Callback('IM', MatchXPath('{%s}message/{%s}body' % (self.default_ns, |