From cfc19f84def07fb950ae8789ed0655eae4f66a92 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Wed, 20 Oct 2010 01:33:24 +0000 Subject: Fixed #12323 and #11582 -- Extended the ability to handle static files. Thanks to all for helping with the original app, the patch, documentation and general support. git-svn-id: http://code.djangoproject.com/svn/django/trunk@14293 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- tests/urls.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tests/urls.py') diff --git a/tests/urls.py b/tests/urls.py index 01d6408c5a..573a0aafb7 100644 --- a/tests/urls.py +++ b/tests/urls.py @@ -41,4 +41,7 @@ urlpatterns = patterns('', # special headers views (r'special_headers/', include('regressiontests.special_headers.urls')), + + # static files handling + (r'^', include('regressiontests.staticfiles_tests.urls.default')), ) -- cgit v1.3