Part of elisa.plugins.rss.models View In Hierarchy
| Instance Variables | uri | uri of the feed.
(type: elisa.core.media_uri.MediaUri
) |
| name | user defined name of the feed
(type: unicode or str
) | |
| items | items of the feed
(type: list of elisa.plugins.rss.RssItemModel
) |
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 84 | Method | __init__ | Undocumented |
| 91 | Method | load | Fetch and parse the RSS feed. |
| 188 | Method | fill_item_hook | Hook for implementing further parsing of one item. |
| 107 | Method | _parse_data | Parse the RSS feed. |
| 124 | Method | _fill_item | Parse one RSS item. |
Inherited from Bindable (via Model):
| Line # | Kind | Name | Docs |
|---|---|---|---|
| 34 | Method | bind | Bind a local attribute to
destination_attribute of |
| 73 | Method | unbind | Remove the binding of attribute to
destination_attribute of |
| 104 | Method | unbind_object | Remove all the bindings you have for a certain
destination_object. |
| 118 | Method | __setattr__ | Undocumented |
| 136 | Method | __delattr__ | Undocumented |
| Returns | a deferred telling whether the loading went well
(type: twisted.internet.defer.Deferred
) | |
| Parameters | item | the rss item to fill
(type: RssItemModel
) |
| element | xml 'item' element to parse (type: ElementTree ) |