Added more robust processing to parameterised syndication feeds for the case
when all the "extra" URL bits are accidentally omitted. Patch from Niran Babalola <niran@niran.org>. Fixed #5855. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7295 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
9b52f35f35
commit
f0dec08c3a
1
AUTHORS
1
AUTHORS
|
@ -59,6 +59,7 @@ answer newbie questions, and generally made Django that much better:
|
|||
Arthur <avandorp@gmail.com>
|
||||
David Avsajanishvili <avsd05@gmail.com>
|
||||
axiak@mit.edu
|
||||
Niran Babalola <niran@niran.org>
|
||||
Morten Bagai <m@bagai.com>
|
||||
Mikaël Barbero <mikael.barbero nospam at nospam free.fr>
|
||||
Jiri Barton
|
||||
|
|
|
@ -55,18 +55,23 @@ class Feed(object):
|
|||
return attr()
|
||||
return attr
|
||||
|
||||
def get_object(self, bits):
|
||||
return None
|
||||
|
||||
def get_feed(self, url=None):
|
||||
"""
|
||||
Returns a feedgenerator.DefaultFeed object, fully populated, for
|
||||
this feed. Raises FeedDoesNotExist for invalid parameters.
|
||||
"""
|
||||
if url:
|
||||
try:
|
||||
obj = self.get_object(url.split('/'))
|
||||
except (AttributeError, ObjectDoesNotExist):
|
||||
raise FeedDoesNotExist
|
||||
bits = url.split('/')
|
||||
else:
|
||||
obj = None
|
||||
bits = []
|
||||
|
||||
try:
|
||||
obj = self.get_object(bits)
|
||||
except ObjectDoesNotExist:
|
||||
raise FeedDoesNotExist
|
||||
|
||||
if Site._meta.installed:
|
||||
current_site = Site.objects.get_current()
|
||||
|
|
Loading…
Reference in New Issue