diff options
Diffstat (limited to 'sleekxmpp/stanza')
-rw-r--r-- | sleekxmpp/stanza/atom.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/sleekxmpp/stanza/atom.py b/sleekxmpp/stanza/atom.py new file mode 100644 index 00000000..5e82cb98 --- /dev/null +++ b/sleekxmpp/stanza/atom.py @@ -0,0 +1,11 @@ +from .. xmlstream.stanzabase import ElementBase, ET, JID +from xml.etree import cElementTree as ET + +class AtomEntry(ElementBase): + namespace = 'http://www.w3.org/2005/Atom' + name = 'entry' + plugin_attrib = 'entry' + interfaces = set(('title', 'summary')) + sub_interfaces = set(('title', 'summary')) + plugin_attrib_map = {} + plugin_tag_map = {} |