summaryrefslogtreecommitdiff
path: root/django/contrib/staticfiles
AgeCommit message (Expand)Author
2012-03-13Fixed #17857 -- Stopped CachedStaticFilesStorage from creating absolute URLs ...Jannis Leidel
2012-03-13Fixed #17865 -- Strip whitespaces from the paths when using the CachedStaticF...Jannis Leidel
2012-03-12Fixed #17861 -- Took care of special characters when creating the staticfiles...Jannis Leidel
2012-03-02Fixed #17806 -- Fixed off-by-n error in the CachedStaticFilesStorage that pre...Jannis Leidel
2012-03-01Fixed #17737 -- Stopped the collectstatic management command from copying the...Jannis Leidel
2012-02-16Fixed #17689 -- Stopped the CachedStaticFilesStorage from trying to hash path...Jannis Leidel
2012-02-14Stopped the collectstatic management from being wastful with file handlers. R...Jannis Leidel
2012-02-13Minor bugfixing of the staticfiles app following upstream development in djan...Jannis Leidel
2012-02-12Fixed #17656 -- Stopped the collectstatic management command from running the...Jannis Leidel
2011-12-27Fixed #17455 -- Extended `CachedStaticFilesStorage` slightly to handle some U...Jannis Leidel
2011-12-25Fixed #17462: Adjusted staticfiles CachedFilesMixin code so its tests pass on...Karen Tracey
2011-11-03Fixed #16966 -- Stopped CachedStaticFilesStorage from choking on querystrings...Jannis Leidel
2011-11-02Fixed #16967 -- Made sure CachedStaticFilesStorage repopulates its cache if t...Jannis Leidel
2011-10-22Fixed #16360 -- Added WSGI entrypoint to startproject layout, and enabled int...Carl Meyer
2011-09-21Fixed #16703 -- Raise an exception if the storage location of the DefaultStor...Jannis Leidel
2011-09-21Fixed the relative static file resolution of the CachedStaticFilesStorage bac...Jannis Leidel
2011-08-15Fixed #16631 -- Fixed embarrassing typo introduced in r16617. Thanks, Andi Al...Jannis Leidel
2011-08-14Fixed #16629 -- Relaxed check for STATIC_ROOT and STATIC_URL settings slightl...Jannis Leidel
2011-08-12Added with_statement Python 2.5 compatibility import missed in [16594]. Thank...Ramiro Morales
2011-08-11Fixed #15252 -- Added static template tag and CachedStaticFilesStorage to sta...Jannis Leidel
2011-07-26Fixed #16518 -- Fixed collectstatic management command to run on Jython. Than...Jannis Leidel
2011-07-08Explicitly close a file in the collectstatic management command.Alex Gaynor
2011-07-06Fixed #16424 -- Fixed regression in collect static management command introdu...Jannis Leidel
2011-07-04Fixed #16161 -- Added `--clear` option to `collectstatic` management command ...Jannis Leidel
2011-07-04Fixed #15765 -- Stopped showing an odd error message when using the staticfil...Jannis Leidel
2011-06-30Fixed #16050 -- BACKWARDS-INCOMPATIBLE CHANGE: Moved static files of the admi...Jannis Leidel
2011-03-18Refined exception message to make sure we don't confuse users.Jannis Leidel
2011-03-09Modified collectstatic management command to not include STATIC_ROOT in the u...Jannis Leidel
2011-03-07Fix the docstring of contrib.staticfiles BaseFinder so it's not misleading.Chris Beaven
2011-02-14Modified the staticfiles serve view to return a 404 early in the stack.Jannis Leidel
2011-02-14Fixed the staticfiles management commands collectstatic and findstatic to not...Jannis Leidel
2011-02-14Fixes #15270 -- Moved back the serve view to django.views.static due to depen...Jannis Leidel
2011-02-01Fixed a few test docstrings and removed an unused import in staticfiles.Carl Meyer
2011-02-01Preserve order of STATICFILES_DIRS locations in FileSystemFinder.Jannis Leidel
2011-02-01Fixed #15190 -- Refactored the collectstatic command to improve the symlink m...Jannis Leidel
2011-02-01Fixed #15094 - Added check for forgetting trailing comma in STATICFILES_DIRS ...Carl Meyer
2011-02-01Fixed some documentation and default-settings.py comments that were misleadin...Carl Meyer
2011-01-30Added check to the staticfiles app to make sure the STATIC_ROOT setting isn't...Jannis Leidel
2011-01-30Uses a SortedDict for memoization of staticfiles finder instances to preserve...Jannis Leidel
2011-01-19Call superclass init in collectstatic command, otherwise printing error messa...Karen Tracey
2011-01-15Stopped staticfiles app from requiring a models module when looking for stati...Jannis Leidel
2011-01-08Fixed #15035 -- Fixed collectstatic management command to work with non-local...Jannis Leidel
2011-01-05Fixed a few docstrings and other helper texts in the staticfiles app.Jannis Leidel
2011-01-02Fixed #14998 -- Made use of os.path.join to make sure this works on all platf...Jannis Leidel
2011-01-02Safely join paths in staticfiles finder.Jannis Leidel
2010-12-31Fixed #14961 -- Revised staticfiles's prefix handling to make sure it runs on...Jannis Leidel
2010-12-02Added an additional check for the availability of the STATIC_* settings to ma...Jannis Leidel
2010-11-30Fixed #14812 -- Made parsing of the If-Modified-Since HTTP header more robust...Ramiro Morales
2010-11-17Fixed #14693, #14709 -- Backwards incompatible change to rectify the confusio...Jannis Leidel
2010-11-13Refactored runserver command and moved code related to staticfiles to a subcl...Jannis Leidel