index
:
delta/python-packages/django.git
1.8
15667
16682
24046
24215
24525
26176
3.2-man-page
4.0/make-zoneinfo-default-timezone-implementation-squashed
alex-patch-1
attic/boulder-oracle-sprint
attic/full-history
attic/generic-auth
attic/gis
attic/i18n
attic/magic-removal
attic/multi-auth
attic/multiple-db-support
attic/new-admin
attic/newforms-admin
attic/per-object-permissions
attic/queryset-refactor
attic/schema-evolution
attic/schema-evolution-ng
attic/search-api
attic/sqlalchemy
attic/unicode
c/29988-allow-f-strings
c/32409-async-tests-cannot-call-orm
c/append-slash-opt-out
c/replace-utcnow
c/use-bpo-extlink
dep0005
dep5
fix-cache-test
fix/remove-stray-file
issue/31570
link-to-code-of-conduct
main
make-zoneinfo-default-timezone-implementation
master
remove-unnecesary-if-wrap
selenium-updates
sir-sigurd-patch-1
soc2009/admin-ui
soc2009/http-wsgi-improvements
soc2009/i18n-improvements
soc2009/model-validation
soc2009/multidb
soc2009/test-improvements
soc2010/app-loading
soc2010/query-refactor
soc2010/test-refactor
stable/0.90.x
stable/0.91.x
stable/0.95.x
stable/0.96.x
stable/1.0.x
stable/1.1.x
stable/1.10.x
stable/1.11.x
stable/1.2.x
stable/1.3.x
stable/1.4.x
stable/1.5.x
stable/1.6.x
stable/1.7.x
stable/1.8.x
stable/1.9.x
stable/2.0.x
stable/2.1.x
stable/2.2.x
stable/3.0.x
stable/3.1.x
stable/3.2.x
stable/4.0.x
stable/4.1.x
stable/4.2.x
swap-closing-quote-period-in-admin-i18nable-literal
ticket-25055
ticket-31342
update-next-docs-version
github.com: django/django.git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
django
/
template
/
loaders
/
cached.py
Commit message (
Expand
)
Author
Age
Files
Lines
*
Refs #33476 -- Reformatted code with Black.
django-bot
2022-02-07
1
-6
/
+9
*
Refs #25791 -- Added get_dirs() method to cached template loader.
Tom Forbes
2020-11-05
1
-0
/
+5
*
Removed template_cache attribute from cached template loader.
Tom Forbes
2019-01-18
1
-2
/
+0
*
Fixed #30107 -- Removed unused dirs variable from cache template loader keys.
Tim Graham
2019-01-18
1
-3
/
+2
*
Refs #27795 -- Removed force_bytes() usage in django/template/loaders/cached.py.
Jon Dufresne
2018-02-10
1
-2
/
+1
*
Replaced some map() and filter() calls with generators.
Tom
2017-05-27
1
-1
/
+1
*
Refs #23919 -- Used yield from.
Vytis Banaitis
2017-02-23
1
-2
/
+1
*
Refs #27795 -- Removed force_text from the template layer
Claude Paroz
2017-02-07
1
-2
/
+2
*
Refs #23919 -- Replaced super(ClassName, self) with super().
chillaranand
2017-01-25
1
-2
/
+2
*
Refs #15053 -- Removed support for non-recursive template loading.
Tim Graham
2017-01-17
1
-84
/
+7
*
Fixed #26603 -- Forced lazy template names to text when computing cache key.
Simon Charette
2016-05-10
1
-2
/
+2
*
Fixed #26536 -- Preserved leading dashes of the cached template loader keys.
Simon Charette
2016-04-24
1
-1
/
+1
*
Fixed #26306 -- Fixed memory leak in cached template loader.
Alex Hill
2016-03-16
1
-3
/
+24
*
Fixed #26280 -- Fixed cached template loader crash when loading nonexistent t...
Ivan Tsouvarev
2016-02-26
1
-1
/
+1
*
Renamed RemovedInDjangoXYWarnings for new roadmap.
Tim Graham
2015-06-24
1
-7
/
+7
*
Fixed #24979 -- Removed usage of inspect.getargspec().
Tim Graham
2015-06-15
1
-2
/
+2
*
Moved engine-related exceptions to django.template.exceptions.
Preston Timmons
2015-05-06
1
-1
/
+1
*
Fixed #15053 -- Enabled recursive template loading.
Preston Timmons
2015-04-22
1
-10
/
+86
*
Sorted imports with isort; refs #23860.
Tim Graham
2015-02-06
1
-0
/
+1
*
Fixed #24235 -- Removed is_usable attribute from template loaders.
Preston Timmons
2015-02-04
1
-1
/
+0
*
Removed extraneous arguments in Engine.from_string.
Aymeric Augustin
2014-12-28
1
-2
/
+2
*
Removed some uses of global APIs from django.template.loader.
Aymeric Augustin
2014-12-28
1
-2
/
+1
*
Moved make_origin into the Engine class.
Aymeric Augustin
2014-11-23
1
-2
/
+3
*
Moved template loaders management in Engine.
Aymeric Augustin
2014-11-23
1
-5
/
+3
*
Removed unused API get_template_loaders.
Aymeric Augustin
2014-11-23
1
-2
/
+2
*
Used get_template_loaders in the cached loader.
Aymeric Augustin
2014-11-16
1
-15
/
+4
*
Refactored getting the list of template loaders.
Aymeric Augustin
2014-11-16
1
-1
/
+2
*
Moved all template loaders under django.template.loaders.
Aymeric Augustin
2014-11-16
1
-1
/
+3
*
Fixed #21460 -- Reenabled proper template precedence in find_template
Pablo Martín
2013-11-22
1
-0
/
+1
*
Fixed the remaining E302 violations int eh django package
Alex Gaynor
2013-11-02
1
-0
/
+1
*
Added further fixes, tests for #19949/f33db5a09a.
Ramiro Morales
2013-08-26
1
-1
/
+5
*
Fixed 19949 -- Cached template loader now caches TemplateDoesNotExist
SusanTan
2013-08-24
1
-6
/
+8
*
Fixed #20806 -- Cached loader caches find_template
Gavin Wahl
2013-07-30
1
-12
/
+27
*
Fixed #19510 -- Race condition in template loading.
Aymeric Augustin
2013-03-17
1
-2
/
+4
*
[py3] Always fed hashlib with bytes.
Łukasz Langa
2013-02-27
1
-1
/
+2
*
Fixed #17303 -- Ensured the list of template loaders is fully loaded before i...
Aymeric Augustin
2011-12-30
1
-1
/
+5
*
Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...
Jannis Leidel
2011-07-13
1
-2
/
+0
*
Removed a bunch more Python 2.4 workarounds now that we don't support that ve...
Adrian Holovaty
2011-03-28
1
-2
/
+2
*
Fixed #12248 -- Refactored django.template to get code out of __init__.py, to...
Russell Keith-Magee
2010-11-27
1
-1
/
+1
*
Refs #13573 -- Modified the key technique added in r13295 to be more robust a...
Russell Keith-Magee
2010-05-21
1
-3
/
+6
*
Fixed #13573 -- Corrected problem with template caching when template directo...
Russell Keith-Magee
2010-05-21
1
-6
/
+9
*
Fixed #12787: Correctly identify the template that does not exist when a temp...
Karen Tracey
2010-03-16
1
-1
/
+8
*
Fixed #12992: Adjusted the new template loader code so that the template
Karen Tracey
2010-03-01
1
-2
/
+2
*
Changed a whole bunch of places to raise exception instances instead of old-s...
Adrian Holovaty
2010-01-10
1
-1
/
+1
*
Fixed #6262 -- Added a cached template loader, and modified existing template...
Russell Keith-Magee
2009-12-14
1
-0
/
+46