a | b | |
---|
| 0 | + | """ |
---|
| 0 | + | <iq type='set' to= 'roomname@conference.chat.oonair.net' id='id1'> |
---|
| 0 | + | <oo xmlns='http://oonair.com/muc#share'> |
---|
| 0 | + | <item name='Falda tubo' thumbnail='http://webpage.info/falda_tn.jpg' id='itemid1' action='add' url='http://webpage.info/falda.htmlâ> |
---|
| 0 | + | <metadata path=' ' /> |
---|
| 0 | + | </item> |
---|
| 0 | + | </oo> |
---|
| 0 | + | </iq> |
---|
| 0 | + | """ |
---|
| 0 | + | class Item(ElementBase): |
---|
| 0 | + | name = 'item' |
---|
| 0 | + | namespace = 'http://oonair.com/muc#share' |
---|
| 0 | + | plugin_attrib = 'item' |
---|
| 0 | + | interfaces = set(('name', 'thumbnail', 'id', 'action', 'url', 'metadata')) |
---|
| 0 | + | sub_interfaces = set(('metadata')) |
---|
| 0 | + | |
---|
| 0 | + | class OO(ElementBase): |
---|
| 0 | + | name = 'oo' |
---|
| 0 | + | namespace = 'http://oonair.com/muc#share' |
---|
| 0 | + | plugin_attrib = 'oo_muc_share' |
---|
| 0 | + | interfaces = set(('item')) |
---|
| 0 | + | sub_interfaces = interfaces |
---|
| 0 | + | subitem = (Item,) |
---|
| 0 | + | |
---|
| 0 | + | register_stanza_plugin(Iq, OO, Item) |
---|
... | |
---|