X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/6f8143cfb9188e2e6c1869a74dd6df9a66460fd4..cb6f2f10ddd3e2410f6c9cc3536ec83dd50c862d:/sommitrealweird/urls.py diff --git a/sommitrealweird/urls.py b/sommitrealweird/urls.py index 6450746..2aaf73d 100644 --- a/sommitrealweird/urls.py +++ b/sommitrealweird/urls.py @@ -27,8 +27,8 @@ urlpatterns = patterns('', (r'^photo/', include('photo.urls')), (r'^photos/', include('photo.urls')), (r'^css-doc/(?P.*)$', 'bpcms.views.css_view'), - (r'^feeds/rss/(?P.*)/', 'django.contrib.syndication.views.feed', {'feed_dict': rssfeeds_dict}), - (r'^feeds/(?P.*)/', 'django.contrib.syndication.views.feed', {'feed_dict': feeds_dict}), + (r'^feeds/rss/blog/', LatestBlogEntriesRss()), + (r'^feeds/blog/', LatestBlogEntries()), (r'^comments/', include('django.contrib.comments.urls')), (r'^(?:content/|)', include('bpcms.urls')) )