2010-07-19 17:58:53 +00:00
|
|
|
from .. xmlstream.stanzabase import registerStanzaPlugin, ElementBase, ET, JID
|
2010-06-02 22:54:44 +00:00
|
|
|
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 = {}
|