diff options
author | Lance Stout <lancestout@gmail.com> | 2012-10-14 17:35:37 -0700 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-10-14 17:35:37 -0700 |
commit | 7c485c6a8b25b97c7faa4abda6e82200bd09bcae (patch) | |
tree | a1f09f31f4bdd2cf8c5bc438fefcc1b3f37a861c /sleekxmpp/plugins/xep_0280/stanza.py | |
parent | fc07e23ff8f2eb7c67a1dfeae0db67b182144fca (diff) | |
parent | e2e8c4b5dcca3dddfda6e60850a6754018e8f60d (diff) | |
download | slixmpp-7c485c6a8b25b97c7faa4abda6e82200bd09bcae.tar.gz slixmpp-7c485c6a8b25b97c7faa4abda6e82200bd09bcae.tar.bz2 slixmpp-7c485c6a8b25b97c7faa4abda6e82200bd09bcae.tar.xz slixmpp-7c485c6a8b25b97c7faa4abda6e82200bd09bcae.zip |
Merge branch 'master' into develop
Diffstat (limited to 'sleekxmpp/plugins/xep_0280/stanza.py')
-rw-r--r-- | sleekxmpp/plugins/xep_0280/stanza.py | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/sleekxmpp/plugins/xep_0280/stanza.py b/sleekxmpp/plugins/xep_0280/stanza.py index 94b37823..2f3aad86 100644 --- a/sleekxmpp/plugins/xep_0280/stanza.py +++ b/sleekxmpp/plugins/xep_0280/stanza.py @@ -11,54 +11,54 @@ from sleekxmpp.xmlstream import ElementBase class ReceivedCarbon(ElementBase): name = 'received' - namespace = 'urn:xmpp:carbons:1' + namespace = 'urn:xmpp:carbons:2' plugin_attrib = 'carbon_received' interfaces = set(['carbon_received']) is_extension = True def get_carbon_received(self): - return self.parent()['forwarded']['stanza'] + return self['forwarded']['stanza'] def del_carbon_received(self): - del self.parent()['forwarded']['stanza'] + del self['forwarded']['stanza'] def set_carbon_received(self, stanza): - self.parent()['forwarded']['stanza'] = stanza + self['forwarded']['stanza'] = stanza class SentCarbon(ElementBase): name = 'sent' - namespace = 'urn:xmpp:carbons:1' + namespace = 'urn:xmpp:carbons:2' plugin_attrib = 'carbon_sent' interfaces = set(['carbon_sent']) is_extension = True def get_carbon_sent(self): - return self.parent()['forwarded']['stanza'] + return self['forwarded']['stanza'] def del_carbon_sent(self): - del self.parent()['forwarded']['stanza'] + del self['forwarded']['stanza'] def set_carbon_sent(self, stanza): - self.parent()['forwarded']['stanza'] = stanza + self['forwarded']['stanza'] = stanza class PrivateCarbon(ElementBase): name = 'private' - namespace = 'urn:xmpp:carbons:1' + namespace = 'urn:xmpp:carbons:2' plugin_attrib = 'carbon_private' interfaces = set() class CarbonEnable(ElementBase): name = 'enable' - namespace = 'urn:xmpp:carbons:1' + namespace = 'urn:xmpp:carbons:2' plugin_attrib = 'carbon_enable' interfaces = set() class CarbonDisable(ElementBase): name = 'disable' - namespace = 'urn:xmpp:carbons:1' + namespace = 'urn:xmpp:carbons:2' plugin_attrib = 'carbon_disable' interfaces = set() |