summaryrefslogtreecommitdiff
path: root/django/contrib/staticfiles/finders.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #34233 -- Used @functools.cache.Nick Pope2023-01-181-1/+1
* Refs #34233 -- Used str.removeprefix()/removesuffix().Mariusz Felisiak2023-01-181-1/+1
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-45/+68
* Fixed #27854 -- Added system check for nonexistent directories in STATICFILES...Jacob Walls2021-03-031-4/+12
* Refs #27854 -- Skipped subsequent checks if STATICFILES_DIRS is not a list or...Jacob Walls2021-03-031-0/+1
* Made small readability improvements.Martin Thoma2020-10-281-6/+5
* Fixed #30159 -- Removed unneeded use of OrderedDict.Nick Pope2019-02-061-3/+2
* Fixed #29796 -- Added system check for STATICFILES_DIRS prefix ending with a ...Paweł Kołodziej2018-09-271-1/+7
* Fixed #28776 -- Fixed a/an/and typos in docs and comments.Дилян Палаузов2017-11-061-1/+1
* Refs #27656 -- Updated django.contrib docstring verb style according to PEP 257.Anton Samarchyan2017-02-041-14/+10
* Fixed #27661 -- Moved FileSystemFinder's ImproperlyConfigured exceptions to s...Ling-Xiao Yang2017-02-011-8/+25
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-4/+4
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Stopped using django.utils.lru_cache().Aymeric Augustin2017-01-181-2/+2
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-181-2/+2
* Removed unnecessary arguments in .get method callsPiotr Jakimiak2015-05-131-1/+1
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-7/+8
* Fixed #19879 -- Have 'findstatic' says on which directories it searched the r...Vajrasky Kok2014-02-091-0/+12
* Fixed #21674 -- Deprecated the import_by_path() function in favor of import_s...Berker Peksag2014-02-081-2/+2
* Fixed #21867 -- Removed AppStaticStorage; app paths are now AppConfig's job.Carl Meyer2014-01-241-16/+13
* Fixed #21750 -- Fixed regression introduced by 4befb30.Loic Bistuer2014-01-111-1/+1
* Renamed AppCache to Apps.Aymeric Augustin2013-12-241-7/+7
* Moved apps back in the toplevel django namespace.Aymeric Augustin2013-12-221-1/+1
* Stopped iterating on INSTALLED_APPS.Aymeric Augustin2013-12-221-2/+4
* Fixed #21351 -- Replaced memoize with Python's lru_cache.Bouke Haarsma2013-11-111-6/+4
* Fixed #20841 -- Added messages to NotImplementedErrorsGregor MacGregor2013-09-101-2/+2
* Deprecated SortedDict (replaced with collections.OrderedDict)Curtis Maloney2013-08-041-4/+5
* Replaced `and...or...` constructs with PEP 308 conditional expressions.Ramiro Morales2013-05-261-1/+1
* Fixed #17061 -- Factored out importing object from a dotted pathClaude Paroz2013-02-041-12/+2
* [py3] Fixed access to dict keys/values/items.Aymeric Augustin2012-08-071-1/+2
* Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz2012-04-291-1/+1
* Fixed #16703 -- Raise an exception if the storage location of the DefaultStor...Jannis Leidel2011-09-211-2/+13
* Fixed #15252 -- Added static template tag and CachedStaticFilesStorage to sta...Jannis Leidel2011-08-111-1/+1
* Fix the docstring of contrib.staticfiles BaseFinder so it's not misleading.Chris Beaven2011-03-071-1/+2
* Preserve order of STATICFILES_DIRS locations in FileSystemFinder.Jannis Leidel2011-02-011-5/+4
* Fixed #15094 - Added check for forgetting trailing comma in STATICFILES_DIRS ...Carl Meyer2011-02-011-0/+8
* Fixed some documentation and default-settings.py comments that were misleadin...Carl Meyer2011-02-011-1/+0
* Uses a SortedDict for memoization of staticfiles finder instances to preserve...Jannis Leidel2011-01-301-1/+1
* Stopped staticfiles app from requiring a models module when looking for stati...Jannis Leidel2011-01-151-28/+33
* Fixed a few docstrings and other helper texts in the staticfiles app.Jannis Leidel2011-01-051-15/+9
* Safely join paths in staticfiles finder.Jannis Leidel2011-01-021-1/+2
* Fixed #14961 -- Revised staticfiles's prefix handling to make sure it runs on...Jannis Leidel2010-12-311-2/+2
* Fixing a few cosmetic bugs. Thanks for the hint, Alex Gaynor.Jannis Leidel2010-10-211-4/+7
* Fixed #12323 and #11582 -- Extended the ability to handle static files. Thank...Jannis Leidel2010-10-201-0/+254