summaryrefslogtreecommitdiff
path: root/sleekxmpp/plugins/xep_0203
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2012-09-26 01:47:45 -0700
committerLance Stout <lancestout@gmail.com>2012-09-26 01:47:45 -0700
commitee9c4abd08db06fd6dc808d48c43cd6d57bd1aa1 (patch)
tree694a686ed8199ec26bb063c124993adb0327ca6f /sleekxmpp/plugins/xep_0203
parentb5b1c932c7efd2cdf5b4731bde6c8145873da25f (diff)
downloadslixmpp-ee9c4abd08db06fd6dc808d48c43cd6d57bd1aa1.tar.gz
slixmpp-ee9c4abd08db06fd6dc808d48c43cd6d57bd1aa1.tar.bz2
slixmpp-ee9c4abd08db06fd6dc808d48c43cd6d57bd1aa1.tar.xz
slixmpp-ee9c4abd08db06fd6dc808d48c43cd6d57bd1aa1.zip
Add support for XEP-0091: Legacy Delayed Delivery
Diffstat (limited to 'sleekxmpp/plugins/xep_0203')
-rw-r--r--sleekxmpp/plugins/xep_0203/stanza.py9
1 files changed, 6 insertions, 3 deletions
diff --git a/sleekxmpp/plugins/xep_0203/stanza.py b/sleekxmpp/plugins/xep_0203/stanza.py
index baae4cd3..9a11cae9 100644
--- a/sleekxmpp/plugins/xep_0203/stanza.py
+++ b/sleekxmpp/plugins/xep_0203/stanza.py
@@ -14,14 +14,17 @@ from sleekxmpp.plugins import xep_0082
class Delay(ElementBase):
- """
- """
-
name = 'delay'
namespace = 'urn:xmpp:delay'
plugin_attrib = 'delay'
interfaces = set(('from', 'stamp', 'text'))
+ def get_from(self):
+ return JID(self._get_attr('from'))
+
+ def set_from(self, value):
+ self._set_attr('from', str(value))
+
def get_stamp(self):
timestamp = self._get_attr('stamp')
return xep_0082.parse(timestamp)