summaryrefslogtreecommitdiff
path: root/django/template/loaders/cached.py
Commit message (Expand)AuthorAgeFilesLines
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-6/+9
* Refs #25791 -- Added get_dirs() method to cached template loader.Tom Forbes2020-11-051-0/+5
* Removed template_cache attribute from cached template loader.Tom Forbes2019-01-181-2/+0
* Fixed #30107 -- Removed unused dirs variable from cache template loader keys.Tim Graham2019-01-181-3/+2
* Refs #27795 -- Removed force_bytes() usage in django/template/loaders/cached.py.Jon Dufresne2018-02-101-2/+1
* Replaced some map() and filter() calls with generators.Tom2017-05-271-1/+1
* Refs #23919 -- Used yield from.Vytis Banaitis2017-02-231-2/+1
* Refs #27795 -- Removed force_text from the template layerClaude Paroz2017-02-071-2/+2
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-2/+2
* Refs #15053 -- Removed support for non-recursive template loading.Tim Graham2017-01-171-84/+7
* Fixed #26603 -- Forced lazy template names to text when computing cache key.Simon Charette2016-05-101-2/+2
* Fixed #26536 -- Preserved leading dashes of the cached template loader keys.Simon Charette2016-04-241-1/+1
* Fixed #26306 -- Fixed memory leak in cached template loader.Alex Hill2016-03-161-3/+24
* Fixed #26280 -- Fixed cached template loader crash when loading nonexistent t...Ivan Tsouvarev2016-02-261-1/+1
* Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham2015-06-241-7/+7
* Fixed #24979 -- Removed usage of inspect.getargspec().Tim Graham2015-06-151-2/+2
* Moved engine-related exceptions to django.template.exceptions.Preston Timmons2015-05-061-1/+1
* Fixed #15053 -- Enabled recursive template loading.Preston Timmons2015-04-221-10/+86
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-0/+1
* Fixed #24235 -- Removed is_usable attribute from template loaders.Preston Timmons2015-02-041-1/+0
* Removed extraneous arguments in Engine.from_string.Aymeric Augustin2014-12-281-2/+2
* Removed some uses of global APIs from django.template.loader.Aymeric Augustin2014-12-281-2/+1
* Moved make_origin into the Engine class.Aymeric Augustin2014-11-231-2/+3
* Moved template loaders management in Engine.Aymeric Augustin2014-11-231-5/+3
* Removed unused API get_template_loaders.Aymeric Augustin2014-11-231-2/+2
* Used get_template_loaders in the cached loader.Aymeric Augustin2014-11-161-15/+4
* Refactored getting the list of template loaders.Aymeric Augustin2014-11-161-1/+2
* Moved all template loaders under django.template.loaders.Aymeric Augustin2014-11-161-1/+3
* Fixed #21460 -- Reenabled proper template precedence in find_templatePablo Martín2013-11-221-0/+1
* Fixed the remaining E302 violations int eh django packageAlex Gaynor2013-11-021-0/+1
* Added further fixes, tests for #19949/f33db5a09a.Ramiro Morales2013-08-261-1/+5
* Fixed 19949 -- Cached template loader now caches TemplateDoesNotExistSusanTan2013-08-241-6/+8
* Fixed #20806 -- Cached loader caches find_templateGavin Wahl2013-07-301-12/+27
* Fixed #19510 -- Race condition in template loading.Aymeric Augustin2013-03-171-2/+4
* [py3] Always fed hashlib with bytes.Łukasz Langa2013-02-271-1/+2
* Fixed #17303 -- Ensured the list of template loaders is fully loaded before i...Aymeric Augustin2011-12-301-1/+5
* Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel2011-07-131-2/+0
* Removed a bunch more Python 2.4 workarounds now that we don't support that ve...Adrian Holovaty2011-03-281-2/+2
* Fixed #12248 -- Refactored django.template to get code out of __init__.py, to...Russell Keith-Magee2010-11-271-1/+1
* Refs #13573 -- Modified the key technique added in r13295 to be more robust a...Russell Keith-Magee2010-05-211-3/+6
* Fixed #13573 -- Corrected problem with template caching when template directo...Russell Keith-Magee2010-05-211-6/+9
* Fixed #12787: Correctly identify the template that does not exist when a temp...Karen Tracey2010-03-161-1/+8
* Fixed #12992: Adjusted the new template loader code so that the templateKaren Tracey2010-03-011-2/+2
* Changed a whole bunch of places to raise exception instances instead of old-s...Adrian Holovaty2010-01-101-1/+1
* Fixed #6262 -- Added a cached template loader, and modified existing template...Russell Keith-Magee2009-12-141-0/+46