Skip to content

Commit

Permalink
Fixed #9555: respect the feed_url feed parameter. Thanks, sedden.
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10432 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jacobian committed Apr 7, 2009
1 parent 752cc49 commit 710dfea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion django/contrib/syndication/feeds.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@ class Feed(object):
item_pubdate = None
item_enclosure_url = None
feed_type = feedgenerator.DefaultFeed
feed_url = None
title_template = None
description_template = None

def __init__(self, slug, request):
self.slug = slug
self.request = request
self.feed_url = request.path
self.feed_url = self.feed_url or request.path
self.title_template_name = self.title_template or ('feeds/%s_title.html' % slug)
self.description_template_name = self.description_template or ('feeds/%s_description.html' % slug)

Expand Down

0 comments on commit 710dfea

Please sign in to comment.