Re: Problem with contrib.syndication

2008-03-02 Thread Brian Luft
In your urlpatterns, you are passing a string for the value of feed_dict ("feeds"). You need to pass the actual dictionary object that you setup for yourself: ...{ 'feed_dict' : feeds } Cheers -Brian On Mar 2, 10:39 am, Florian Lindner <[EMAIL PROTECTED]> wrote: > Hello, > I try to create an RS

Problem with contrib.syndication

2008-03-02 Thread Florian Lindner
Hello, I try to create an RSS feed for my blog. I have in my application urls.py: from feeds import * feeds = { 'latest' : LatestEntries, } urlpatterns = patterns("", [...], (r'^feeds/(?P.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict':'feeds'}) ) in feeds.py: from djan