Fix up for django 1.10
[sommitrealweird.git] / sommitrealweird / urls.py
index 6c9c00621bbc13a04da8bc5581d79bb6c1e2b5ac..0a4b5f3a2c36d9d27e9eb3b446b3812f8a7b7550 100644 (file)
@@ -1,6 +1,8 @@
 from django.conf.urls import include, url
 from django.conf.urls.static import static
-from settings import MEDIA_ROOT, MEDIA_URL
+import bpcms.views
+import django.views.static
+from settings import MEDIA_ROOT, MEDIA_URL, STATIC_URL
 from blog.feeds import LatestBlogEntries, LatestBlogEntriesRss
 from django.contrib import admin
 
@@ -21,15 +23,14 @@ urlpatterns = [
     # (r'^sommitrealweird/', include('sommitrealweird.foo.urls')),
 
     # Uncomment this for admin:
-    url(r'^$', 'bpcms.views.document_view', {'slug': 'index'}),
-    url(r'^media/(?P<path>.*)$', 'django.views.static.serve', {'document_root': MEDIA_ROOT, 'show_indexes': True}),
+    url(r'^$', bpcms.views.document_view, {'slug': 'index'}),
+    url(r'^media/(?P<path>.*)$', 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<slug>.*)$', 'bpcms.views.css_view'),
+    url(r'^css-doc/(?P<slug>.*)$', 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)
+] + static(STATIC_URL, document_root=MEDIA_ROOT)