Tagged Questions
The django-rss tag has no wiki summary.
3
votes
2answers
421 views
Django DRY Feeds
I'm using the Django Feeds Framework and it's really nice, very intuitive and easy to use. But, I think there is a problem when creating links to feeds in HTML.
For example:
<link rel="alternate" ...
2
votes
1answer
41 views
Django RSS feed 500 error
I'm working on setting up an RSS feed for my Django-based blog. I'm getting 500 errors when I try and access the URL:
$ curl -I http://172.16.91.140:8000/blogg/feeds/latest/
HTTP/1.0 500 INTERNAL ...
1
vote
2answers
291 views
Django Generating RSS feed with description
I am trying to generate a full rss feed, however when loading the feed in Mail, it just shows the title, with a read more link at the bottom. I have tried several different options. But none seem to ...
1
vote
1answer
126 views
how to make RSS feeds where the /rss/ is at the end of the URL, not at the beginning?
http://docs.djangoproject.com/en/dev/ref/contrib/syndication/ describes the way to use the Feeds class, and it works well for me, but it requires the URL to be like ...
1
vote
2answers
313 views
Django syndication: How do I avoid description escaping?
I'm trying to make a webcomic RSS feed with Django, but I can't put an image in the description field, because the html code gets escaped, even if it's in an {% autoescape off %} block.
Here is my ...
1
vote
2answers
500 views
Django RSS Feed Problems
I'm working on a blogging application, and trying to made just a simple RSS feed system function. However, I'm running into an odd bug that doesn't make a lot of sense to me. I understand what's ...
0
votes
1answer
83 views
Reusing a Django RSS Feed for different Date Ranges
What would be a way to have date range based rss feeds in Django. For instance if I had the following type of django rss feed model.
from django.contrib.syndication.feeds import Feed
from ...
0
votes
1answer
108 views
Django Feeds/Syndication - The functions item_title and item_description do not effect whats displayed?
Ive defined a a class that inherits from django.contrib.syndication.feeds.Feed
class Rss(Feed):
...
def item_title(self, item):
return "Hello"
def item_description(self, item):
...
0
votes
4answers
1k views
Django: RSS and ATOM feeds Content-Type header?
I followed along this tutorial for django's RSS and ATOM feeds and I got it to work.
However the test development server keeps making the browser download the feeds as a file instead of the browser ...