mirror of
https://github.com/correl/SleekXMPP.git
synced 2024-11-24 03:00:15 +00:00
added very, very, very basic atom stanza
This commit is contained in:
parent
18e27d65ce
commit
a38735cb2a
1 changed files with 11 additions and 0 deletions
11
sleekxmpp/stanza/atom.py
Normal file
11
sleekxmpp/stanza/atom.py
Normal file
|
@ -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 = {}
|
Loading…
Reference in a new issue