Unable to activate RSS Feeds    
  I missed probably one step to activate the RSS Feeds and no doc about this part of the configuration.
Hi,
In urls.py I add:
1) According to feed.py :
 from askbot.feed import RssLastestQuestionsFeed, RssIndividualQuestionFeed
2) The feeds dictionnary : 
 feeds = {
    'rss': RssLastestQuestionsFeed,
    'question':RssIndividualQuestionFeed
}
3) The pattern : 
 url(
        r'^feeds/(?P<url>.*)/$',
        'django.contrib.syndication.views.feed',
        {'feed_dict': feeds},
        name='feeds'
    ),
After restarting apache, the RSS link is always /feeds/rss/? and the feeds are inactives.
Any idea ?
Comments