blob: 5e82cb98eb7a9afa027528c2c855155424e85bd7 (
plain)
1
2
3
4
5
6
7
8
9
10
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 = {}
|