X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/ade662a8e015bcecdc58512f915e4f56d16a56ed..5d2c22628bbba4eb7ea12a1f5e11bdcc6c866e03:/sommitrealweird/urls.py diff --git a/sommitrealweird/urls.py b/sommitrealweird/urls.py index 2aaf73d..6c9c006 100644 --- a/sommitrealweird/urls.py +++ b/sommitrealweird/urls.py @@ -1,4 +1,5 @@ -from django.conf.urls.defaults import * +from django.conf.urls import include, url +from django.conf.urls.static import static from settings import MEDIA_ROOT, MEDIA_URL from blog.feeds import LatestBlogEntries, LatestBlogEntriesRss from django.contrib import admin @@ -15,20 +16,20 @@ rssfeeds_dict = { admin.autodiscover() -urlpatterns = patterns('', +urlpatterns = [ # 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(admin.site.urls)), - (r'^blog/', include('blog.urls')), - (r'^photo/', include('photo.urls')), - (r'^photos/', include('photo.urls')), - (r'^css-doc/(?P.*)$', 'bpcms.views.css_view'), - (r'^feeds/rss/blog/', LatestBlogEntriesRss()), - (r'^feeds/blog/', LatestBlogEntries()), - (r'^comments/', include('django.contrib.comments.urls')), - (r'^(?:content/|)', include('bpcms.urls')) -) + url(r'^$', 'bpcms.views.document_view', {'slug': 'index'}), + url(r'^media/(?P.*)$', 'django.views.static.serve', {'document_root': MEDIA_ROOT, 'show_indexes': True}), + url(r'^admin/', include(admin.site.urls)), + url(r'^blog/', include('blog.urls')), + url(r'^photo/', include('photo.urls')), + #url(r'^photos/', include('photo.urls')), + url(r'^css-doc/(?P.*)$', 'bpcms.views.css_view'), + url(r'^feeds/rss/blog/', LatestBlogEntriesRss()), + url(r'^feeds/blog/', LatestBlogEntries()), + url(r'^comments/', include('django.contrib.comments.urls')), + url(r'^', include('bpcms.urls')) +] + static(MEDIA_URL, MEDIA_ROOT)