mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
6417f5247b
Thanks, Andy Gayton. Fixed #4720. Refs #5855. git-svn-id: http://code.djangoproject.com/svn/django/trunk@7328 bcc190cf-cafb-0310-a4f2-bffc1f526a37
19 lines
474 B
Python
19 lines
474 B
Python
from django.conf.urls.defaults import patterns
|
|
from django.core.exceptions import ObjectDoesNotExist
|
|
from django.contrib.syndication import feeds
|
|
|
|
|
|
class ComplexFeed(feeds.Feed):
|
|
def get_object(self, bits):
|
|
if len(bits) != 1:
|
|
raise ObjectDoesNotExist
|
|
return None
|
|
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^feeds/(?P<url>.*)/$', 'django.contrib.syndication.views.feed', {
|
|
'feed_dict': dict(
|
|
complex = ComplexFeed,
|
|
)}),
|
|
)
|