index
:
chango.git
devmain
fix-31295
initial-branch
main
stable/5.2.x
stable/6.0.x
django
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
contrib
/
staticfiles
/
finders.py
Age
Commit message (
Expand
)
Author
2025-09-17
Refs #22712 -- Removed all parameter from django.contrib.staticfiles.finders....
Jacob Walls
2024-08-28
Refs #22712 -- Adjusted deprecation warning stacklevel in staticfiles finders.
Simon Charette
2024-06-28
Refs #22712 -- Corrected deprecation of "all" argument in django.contrib.stat...
Mariusz Felisiak
2024-06-27
Fixed #22712 -- Avoided name shadowing of "all" in django.contrib.staticfiles...
Andreu Vallbona
2023-01-18
Refs #34233 -- Used @functools.cache.
Nick Pope
2023-01-18
Refs #34233 -- Used str.removeprefix()/removesuffix().
Mariusz Felisiak
2022-02-07
Refs #33476 -- Reformatted code with Black.
django-bot
2021-03-03
Fixed #27854 -- Added system check for nonexistent directories in STATICFILES...
Jacob Walls
2021-03-03
Refs #27854 -- Skipped subsequent checks if STATICFILES_DIRS is not a list or...
Jacob Walls
2020-10-28
Made small readability improvements.
Martin Thoma
2019-02-06
Fixed #30159 -- Removed unneeded use of OrderedDict.
Nick Pope
2018-09-27
Fixed #29796 -- Added system check for STATICFILES_DIRS prefix ending with a ...
Paweł Kołodziej
2017-11-06
Fixed #28776 -- Fixed a/an/and typos in docs and comments.
Дилян Палаузов
2017-02-04
Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.
Anton Samarchyan
2017-02-01
Fixed #27661 -- Moved FileSystemFinder's ImproperlyConfigured exceptions to s...
Ling-Xiao Yang
2017-01-25
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-19
Refs #23919 -- Stopped inheriting from object to define new style classes.
Simon Charette
2017-01-18
Refs #23919 -- Stopped using django.utils.lru_cache().
Aymeric Augustin
2017-01-18
Refs #23919 -- Removed most of remaining six usage
Claude Paroz
2015-05-13
Removed unnecessary arguments in .get method calls
Piotr Jakimiak
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2014-02-09
Fixed #19879 -- Have 'findstatic' says on which directories it searched the r...
Vajrasky Kok
2014-02-08
Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...
Berker Peksag
2014-01-24
Fixed #21867 -- Removed AppStaticStorage; app paths are now AppConfig's job.
Carl Meyer
2014-01-11
Fixed #21750 -- Fixed regression introduced by 4befb30.
Loic Bistuer
2013-12-24
Renamed AppCache to Apps.
Aymeric Augustin
2013-12-22
Moved apps back in the toplevel django namespace.
Aymeric Augustin
2013-12-22
Stopped iterating on INSTALLED_APPS.
Aymeric Augustin
2013-11-11
Fixed #21351 -- Replaced memoize with Python's lru_cache.
Bouke Haarsma
2013-09-10
Fixed #20841 -- Added messages to NotImplementedErrors
Gregor MacGregor
2013-08-04
Deprecated SortedDict (replaced with collections.OrderedDict)
Curtis Maloney
2013-05-26
Replaced `and...or...` constructs with PEP 308 conditional expressions.
Ramiro Morales
2013-02-04
Fixed #17061 -- Factored out importing object from a dotted path
Claude Paroz
2012-08-07
[py3] Fixed access to dict keys/values/items.
Aymeric Augustin
2012-04-29
Fixed #18013 -- Use the new 'as' syntax for exceptions.
Claude Paroz
2011-09-21
Fixed #16703 -- Raise an exception if the storage location of the DefaultStor...
Jannis Leidel
2011-08-11
Fixed #15252 -- Added static template tag and CachedStaticFilesStorage to sta...
Jannis Leidel
2011-03-07
Fix the docstring of contrib.staticfiles BaseFinder so it's not misleading.
Chris Beaven
2011-02-01
Preserve order of STATICFILES_DIRS locations in FileSystemFinder.
Jannis Leidel
2011-02-01
Fixed #15094 - Added check for forgetting trailing comma in STATICFILES_DIRS ...
Carl Meyer
2011-02-01
Fixed some documentation and default-settings.py comments that were misleadin...
Carl Meyer
2011-01-30
Uses a SortedDict for memoization of staticfiles finder instances to preserve...
Jannis Leidel
2011-01-15
Stopped staticfiles app from requiring a models module when looking for stati...
Jannis Leidel
2011-01-05
Fixed a few docstrings and other helper texts in the staticfiles app.
Jannis Leidel
2011-01-02
Safely join paths in staticfiles finder.
Jannis Leidel
2010-12-31
Fixed #14961 -- Revised staticfiles's prefix handling to make sure it runs on...
Jannis Leidel
2010-10-21
Fixing a few cosmetic bugs. Thanks for the hint, Alex Gaynor.
Jannis Leidel
2010-10-20
Fixed #12323 and #11582 -- Extended the ability to handle static files. Thank...
Jannis Leidel