# -*- coding: utf-8 -*- # Copyright (c) 2013 by Pablo Martín # # This software is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This software is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with this software. If not, see . from django import VERSION from django.conf import settings from django.views.static import serve try: from django.conf.urls import include, url # Compatibility for Django > 1.8 def patterns(prefix, *args): if VERSION < (1, 9): from django.conf.urls import patterns as django_patterns return django_patterns(prefix, *args) elif prefix != '': raise NotImplementedError("You need to update your URLConf for " "Django 1.10, or tweak it to remove the " "prefix parameter") else: return list(args) except ImportError: # Django < 1.4 if VERSION < (1, 4): from django.conf.urls.defaults import include, patterns, url else: from django.urls import include, url js_info_dict = { 'packages': ('django.conf',), } if VERSION < (1, 11): urlpatterns = patterns( '', url(r'^', include('app.urls')), ) urlpatterns += patterns( '', url(r'^%s(?P.*)$' % settings.MEDIA_URL[1:]), ) else: urlpatterns = [ url(r'^', include('app.urls')), url( r'^%s(?P.*)$' % settings.MEDIA_URL[1:], serve, { 'document_root': settings.MEDIA_ROOT, 'show_indexes': True, }, ), ]