tags:

views:

17

answers:

1

I have a Django Feed spitting out RSS. The problem is the model that i am using has extra fields that dont get included in the default RSS that I need to use on the receiving end of RSS. I found documentation on "add_item_elements" method that sounds like I want to do. Yet I cant seem to get it to work. Method implementation is below.

    def add_item_elements(self, handler, item):
        super(Rss, self).add_item_elements(handler, item)
        handler.addQuickElement('thumbnail', item['thumbnail'])
A: 

http://stackoverflow.com/questions/660836/django-way-of-specifying-channel-image-in-rss-feed

Sean
This answers what i was looking for.
Sean