django1/django/contrib/staticfiles
Jannis Leidel 38a2444277 Fixed #16050 -- BACKWARDS-INCOMPATIBLE CHANGE: Moved static files of the admin to conventional file system location.
This also removes the need for ADMIN_MEDIA_PREFIX and replaces it with the convention to find admin's static files at STATIC_URL + 'admin/'.

Thanks to Jacob for the review and general help.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@16487 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-06-30 09:06:19 +00:00
..
management Modified collectstatic management command to not include STATIC_ROOT in the user prompt since it's misleading when using a non-local storage backend. 2011-03-09 12:34:17 +00:00
__init__.py 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. 2010-10-20 01:33:24 +00:00
finders.py Fix the docstring of contrib.staticfiles BaseFinder so it's not misleading. 2011-03-07 22:54:55 +00:00
handlers.py Fixed a few test docstrings and removed an unused import in staticfiles. 2011-02-01 20:39:40 +00:00
models.py 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. 2010-10-20 01:33:24 +00:00
storage.py Fixed #16050 -- BACKWARDS-INCOMPATIBLE CHANGE: Moved static files of the admin to conventional file system location. 2011-06-30 09:06:19 +00:00
urls.py Fixes #15270 -- Moved back the serve view to django.views.static due to dependency conflicts with the contrib app staticfiles (reverts parts of r14293). Added a helper function that generates URL patterns for serving static and media files during development. Thanks to Carl for reviewing the patch. 2011-02-14 01:42:26 +00:00
utils.py Fixed #15094 - Added check for forgetting trailing comma in STATICFILES_DIRS tuple. Also reorganized staticfiles settings-checks for better consistency. 2011-02-01 14:57:10 +00:00
views.py Modified the staticfiles serve view to return a 404 early in the stack. 2011-02-14 23:45:41 +00:00