Tagged Questions
The django-syndication tag has no wiki summary.
4
votes
1answer
146 views
How to reverse django feed url?
I've been searching for hours to try and figure this out, and it seems like no one has ever put an example online - I've just created a Django 1.2 rss feed view object and attached it to a url. When I ...
1
vote
1answer
156 views
Django syndication framework: How do I use the new class-based feed views?
Django 1.2 has brought in some changes in the syndication framework. According to this, I should now be able to do something like:
from django.conf.urls.defaults import *
from myproject.feeds import ...
1
vote
2answers
312 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 ...
0
votes
1answer
62 views
How to return model and models related to this model with many-to-many relationships
I have two models. Comment and his "Subcomments":
class Comment(models.Model):
....
author = models.CharField(max_length=80)
published = models.DateTimeField(auto_now_add=True)
email ...
0
votes
1answer
56 views
Django double-escaping titles in podcasts
I'm using Django 1.2, and am having trouble generating good XML for a podcast. Any titles containing single-quotes, double-quotes or ampersands appear to be double-escaped, looking like this:
...
0
votes
1answer
626 views
Django simple syndication example gives: ImportError, cannot import name Feed
I'm trying to set up the simple syndication example from the Django docs, in a working project. But I'm getting an ImportError, even though I'm sure I've copied the example exactly.
Here's what I ...
0
votes
1answer
77 views
Access User object when generating a feed in Django
I'm working on a website that keeps track of upcoming homework assignments. I'd like to provide an RSS/Atom Feed that shows their upcoming assignments. However, I have no idea how I'm going to limit ...
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 ...