From 65e3122f52cbc5e4c908d9527b1604cdf9ed6729 Mon Sep 17 00:00:00 2001 From: Lance Stout Date: Fri, 27 Sep 2013 00:37:02 -0700 Subject: Update XEP-0319 plugin to track namespace change. --- sleekxmpp/plugins/xep_0319/idle.py | 4 ++-- sleekxmpp/plugins/xep_0319/stanza.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sleekxmpp/plugins/xep_0319/idle.py b/sleekxmpp/plugins/xep_0319/idle.py index e541e0ad..90456f9f 100644 --- a/sleekxmpp/plugins/xep_0319/idle.py +++ b/sleekxmpp/plugins/xep_0319/idle.py @@ -38,10 +38,10 @@ class XEP_0319(BasePlugin): self.xmpp.add_filter('out', self._stamp_idle_presence) def session_bind(self, jid): - self.xmpp['xep_0030'].add_feature('urn:xmpp:idle:0') + self.xmpp['xep_0030'].add_feature('urn:xmpp:idle:1') def plugin_end(self): - self.xmpp['xep_0030'].del_feature(feature='urn:xmpp:idle:0') + self.xmpp['xep_0030'].del_feature(feature='urn:xmpp:idle:1') self.xmpp.del_filter('out', self._stamp_idle_presence) self.xmpp.remove_handler('Idle Presence') diff --git a/sleekxmpp/plugins/xep_0319/stanza.py b/sleekxmpp/plugins/xep_0319/stanza.py index a0bb7272..abfb4f41 100644 --- a/sleekxmpp/plugins/xep_0319/stanza.py +++ b/sleekxmpp/plugins/xep_0319/stanza.py @@ -14,7 +14,7 @@ from sleekxmpp.plugins import xep_0082 class Idle(ElementBase): name = 'idle' - namespace = 'urn:xmpp:idle:0' + namespace = 'urn:xmpp:idle:1' plugin_attrib = 'idle' interfaces = set(['since']) -- cgit v1.2.3