X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/6f194a22305954381bb66ef8d15c62223ec36380..bb8272178c6c35fcb92bc5a08342faf40d3fab1b:/sommitrealweird/urls.py diff --git a/sommitrealweird/urls.py b/sommitrealweird/urls.py index 39adc87..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'^$', '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'), - (r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': MEDIA_ROOT, 'show_indexes': True}), )