I have a feeds dictionary prepared like this in my urls.py feeds = { 'latestdocuments': LatestDocuments, 'latestevents': LatestEvents, 'latestnews': LatestNews, 'latestnotices': LatestNotices, 'latestpages': LatestPages, 'latestphotos': LatestPhotos, 'latestjobs': LatestJobs, }
and one urlpattern that describes feeds like this urlpatterns += patterns('', (r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', {'feed_dict': feeds}), ) I have a news application, in it the definition of Post, a single item, returns this. def __unicode__(self): return self.title I have a feeds.py file in the application that looks like this class LatestNews(Feed): feed_type = Rss201rev2Feed title = "Inform News" link = "/news/" description = "News from Inform as it happens" def items(self): return Post.objects.filter(approved=1).order_by('-created_at')[:5] So when I go to my link, which is http://reinform.isd.glam.ac.uk/feeds/latestnews/ I get my rss2 feed. But in the news feed, the item description in the xml is being filled with the body of the single Post item. If you look at the raw xml output you'll see what I mean. Now this is what I want. In all the other applications though, I've used the same code in their respective feeds files, but the other apps show the title of the item in the item description node of the raw xml ouput. Has anyone got any ideas why this is happening? All the apps have body fields in them and are using this return in their models file. def __unicode__(self): return self.title Any help would be greatly appreciated. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---