summaryrefslogtreecommitdiff
path: root/sleekxmpp/stanza
diff options
context:
space:
mode:
authorLance Stout <lancestout@gmail.com>2010-07-19 04:02:28 -0400
committerLance Stout <lancestout@gmail.com>2010-07-19 04:02:28 -0400
commit1ef112966bd591e5cd075cb2287724c7ae4bc05e (patch)
tree77f3c28b164d7c17af114797ad6598f38c6772d7 /sleekxmpp/stanza
parent35212c7991312b26e813afde3bf0bbe002058c11 (diff)
parent078c71ed3fd550812461795149f6ffca35397871 (diff)
downloadslixmpp-1ef112966bd591e5cd075cb2287724c7ae4bc05e.tar.gz
slixmpp-1ef112966bd591e5cd075cb2287724c7ae4bc05e.tar.bz2
slixmpp-1ef112966bd591e5cd075cb2287724c7ae4bc05e.tar.xz
slixmpp-1ef112966bd591e5cd075cb2287724c7ae4bc05e.zip
Merge branch 'develop' of git://github.com/fritzy/SleekXMPP into develop
Diffstat (limited to 'sleekxmpp/stanza')
-rw-r--r--sleekxmpp/stanza/atom.py11
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 = {}