X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/cb6f2f10ddd3e2410f6c9cc3536ec83dd50c862d..e1b491186d911fcdc98b18b4c0031ed65d43fdae:/sommitrealweird/urls.py?ds=inline diff --git a/sommitrealweird/urls.py b/sommitrealweird/urls.py index 2aaf73d..bcfc7f0 100644 --- a/sommitrealweird/urls.py +++ b/sommitrealweird/urls.py @@ -1,5 +1,8 @@ -from django.conf.urls.defaults import * -from settings import MEDIA_ROOT, MEDIA_URL +from django.urls import include, re_path +from django.conf.urls.static import static +import bpcms.views +import django.views.static +from settings import MEDIA_ROOT, MEDIA_URL, STATIC_ROOT, STATIC_URL from blog.feeds import LatestBlogEntries, LatestBlogEntriesRss from django.contrib import admin @@ -15,20 +18,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')) -) + re_path(r'^$', bpcms.views.document_view, {'path': 'index'}), + re_path(r'^media/(?P.*)$', django.views.static.serve, {'document_root': MEDIA_ROOT, 'show_indexes': True}), + re_path(r'^static/(?P.*)$', django.views.static.serve, {'document_root': STATIC_ROOT, 'show_indexes': True}), + re_path(r'^admin/', admin.site.urls), + re_path(r'^blog/', include('blog.urls')), + re_path(r'^photo/', include('photo.urls')), + #url(r'^photos/', include('photo.urls')), + re_path(r'^css-doc/(?P.*)$', bpcms.views.css_view), + re_path(r'^feeds/rss/blog/', LatestBlogEntriesRss()), + re_path(r'^feeds/blog/', LatestBlogEntries()), + re_path(r'^', include('bpcms.urls')) +]