summaryrefslogtreecommitdiff
path: root/django/contrib/staticfiles/storage.py
AgeCommit message (Expand)Author
2018-10-27Fixed #28606 -- Deprecated CachedStaticFilesStorage.Tim Graham
2018-10-05Refs #27795 -- Removed force_bytes() usage in contrib/staticfiles/storage.py.Jon Dufresne
2018-01-12Fixed #28996 -- Simplified some boolean constructs and removed trivial contin...Дилян Палаузов
2018-01-03Fixed #28982 -- Simplified code with and/or.Дилян Палаузов
2017-09-25Refs #27857 -- Replaced json.loads() ValueError exception catching with JSOND...Tim Graham
2017-05-27Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne
2017-03-04Refs #27795 -- Removed unneeded force_text callsClaude Paroz
2017-02-23Refs #23919 -- Used yield from.Vytis Banaitis
2017-02-09Refs #23919 -- Removed default 'utf-8' argument for str.encode()/decode().Tim Graham
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-11Fixed #24452 -- Fixed HashedFilesMixin correctness with nested paths.David Sanders
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-07-12Fixed #26671 -- Made HashedFilesMixin ignore the 'chrome' scheme.Andrew Nester
2016-03-30Fixed #19670 -- Applied CachedFilesMixin patterns to specific extensionsClaude Paroz
2016-02-23Prevented static file corruption when URL fragment contains '..'.Aymeric Augustin
2016-02-23Fixed #26249 -- Fixed collectstatic crash for files in STATIC_ROOT referenced...Aymeric Augustin
2016-01-25Fixed #26125 -- Fixed E731 flake warnings.userimack
2015-11-12Fixed #25283 -- Fixed collectstatic crash if a URL contains a fragment with a...msaelices
2015-05-13Removed unnecessary arguments in .get method callsPiotr Jakimiak
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2014-10-08Fixed typos in comments.Tim Graham
2014-05-20Fixed #22557 -- ManifestStaticFilesStorage did not cleanup deleted files.Denis Cornehl
2014-03-25Fixed #22315 -- str/bytes mismatch in staticfilesDavid Evans
2014-01-24Fixed #21867 -- Removed AppStaticStorage; app paths are now AppConfig's job.Carl Meyer
2014-01-20Added ManifestStaticFilesStorage to staticfiles contrib app.Jannis Leidel
2014-01-11Fixed #21750 -- Fixed regression introduced by 4befb30.Loic Bistuer
2013-12-31Fixed #21581 -- Fixed a number of issues with collectstatic.Loic Bistuer
2013-11-23Fixed #21012 -- New API to access cache backends.Curtis Maloney
2013-09-05Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
2013-08-04Deprecated SortedDict (replaced with collections.OrderedDict)Curtis Maloney
2013-07-29Deprecated django.utils.importlibClaude Paroz
2013-07-25Fixed #20679 -- Corrected CachedFilesMixin.post_process docstring.Tim Graham
2013-04-28Fixed #18986 -- Improved error message for missing filesAymeric Augustin
2013-02-23Fixed #19526Aleksandra Sendecka
2012-12-08Fixed #19357 -- Allow non-ASCII chars in filesystem pathsClaude Paroz
2012-08-29Replaced many smart_bytes by force_bytesClaude Paroz
2012-08-15Final explicit closing for staticfiles, they now pass on python3 with -Wall a...Alex Gaynor
2012-08-14[py3] Fixed staticfiles testsClaude Paroz
2012-08-11Fixed #18754 -- cache keys created by post_processKaren Tracey
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-07-22[py3] Updated urllib/urllib2/urlparse imports.Aymeric Augustin
2012-07-08Fixed #18487 -- Made sure that protocol-relative URLs aren't processed by the...Jannis Leidel
2012-07-08Fixed #18050 -- Fixed a rather glaring bug in the handling of @import stateme...Jannis Leidel
2012-07-08Fixed #18430 -- Use the FILE_CHARSET setting when reading from a file during ...Jannis Leidel
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-16Fixed #17896 -- Added file_hash method to CachedStaticFilesStorage to be able...Jannis Leidel
2012-05-10Set the post process cache when finished instead of one by one.Jannis Leidel