X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/a2883504e45a556b06e76f023395e879e01ae03c..01976a496f04b06941b601cdef55dd37870d452f:/sommitrealweird/urls.py diff --git a/sommitrealweird/urls.py b/sommitrealweird/urls.py index 3cdfc7f..23c848c 100644 --- a/sommitrealweird/urls.py +++ b/sommitrealweird/urls.py @@ -1,16 +1,31 @@ from django.conf.urls.defaults import * from settings import MEDIA_ROOT, MEDIA_URL +from blog.feeds import LatestBlogEntries, LatestBlogEntriesRss +from django.contrib import admin handler404 = 'generic.views.render_404' +feeds_dict = { + 'blog': LatestBlogEntries, + } + +rssfeeds_dict = { + 'blog': LatestBlogEntriesRss, + } + +admin.autodiscover() + 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/(.*)$', admin.site.root), + (r'^blog/', include('blog.urls')), + (r'^photo/', include('photo.urls')), + (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'^(?:content/|)', include('bpcms.urls')) )