X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/a2883504e45a556b06e76f023395e879e01ae03c..bb8272178c6c35fcb92bc5a08342faf40d3fab1b:/sommitrealweird/urls.py diff --git a/sommitrealweird/urls.py b/sommitrealweird/urls.py index 3cdfc7f..b709acc 100644 --- a/sommitrealweird/urls.py +++ b/sommitrealweird/urls.py @@ -1,16 +1,23 @@ from django.conf.urls.defaults import * from settings import MEDIA_ROOT, MEDIA_URL +from blog.feeds import LatestBlogEntries handler404 = 'generic.views.render_404' +feeds_dict = { + 'blog': LatestBlogEntries, + } + urlpatterns = patterns('', # Example: # (r'^sommitrealweird/', include('sommitrealweird.foo.urls')), # Uncomment this for admin: - (r'^$', 'content.views.document_view', {'slug': 'index'}), - (r'^admin/', include('django.contrib.admin.urls')), - (r'^(?:content/|)(?P[^/]+)/$', 'content.views.document_view'), - (r'^(?:content/|)(?P.*)/(?P[^/]+)/$', 'content.views.document_view'), + (r'^$', 'bpcms.views.document_view', {'slug': 'index'}), (r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': MEDIA_ROOT, 'show_indexes': True}), + (r'^admin/', include('django.contrib.admin.urls')), + (r'^blog/', include('blog.urls')), + (r'^feeds/(?P.*)/', 'django.contrib.syndication.views.feed', {'feed_dict': feeds_dict}), + (r'^(?:content/|)(?P[^/]+)/$', 'bpcms.views.document_view'), + (r'^(?:content/|)(?P.*)/(?P[^/]+)/$', 'bpcms.views.document_view'), )