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
/
template
/
engine.py
Age
Commit message (
Expand
)
Author
2016-09-03
Fixed #25788 -- Enabled the cached template loader if debug is False.
Tim Graham
2015-11-12
Fixed #25469 -- Added autoescape option to DjangoTemplates backend.
Aaron Elliot Ross
2015-09-24
Added django.template.engine.Engine.render_to_string() docstring.
Tim Graham
2015-09-23
Removed template.loader.BaseLoader per deprecation timeline.
Tim Graham
2015-09-23
Removed dictionary and context_instance parameters for render functions.
Tim Graham
2015-09-23
Removed dirs parameter in template engine methods and related funtions.
Tim Graham
2015-09-23
Refs #24022 -- Removed the ssi tag per deprecation timeline.
Tim Graham
2015-06-24
Renamed RemovedInDjangoXYWarnings for new roadmap.
Tim Graham
2015-05-21
Fixed #17085, #24783 -- Refactored template library registration.
Preston Timmons
2015-05-06
Moved engine-related exceptions to django.template.exceptions.
Preston Timmons
2015-04-22
Fixed #15053 -- Enabled recursive template loading.
Preston Timmons
2015-03-20
Cleaned up the template debug implementation.
Preston Timmons
2015-02-06
Sorted imports with isort; refs #23860.
Tim Graham
2015-02-04
Fixed #24235 -- Removed is_usable attribute from template loaders.
Preston Timmons
2015-01-07
Exposed Engine in the django.template namespace.
Aymeric Augustin
2015-01-06
Added comments to remove Engine.render_to_string in Django 2.0.
Aymeric Augustin
2014-12-28
Raised an error when allowed_include_roots is a string.
Aymeric Augustin
2014-12-28
Supported multiple template engines in render_to_string.
Aymeric Augustin
2014-12-28
Removed extraneous arguments in Engine.from_string.
Aymeric Augustin
2014-12-28
Looked up the default template engine in the list of all engines.
Aymeric Augustin
2014-12-28
Passed a reference to the current engine when instantiating Template.
Aymeric Augustin
2014-12-28
Renamed get_template_from_string to from_string.
Aymeric Augustin
2014-12-28
Simplified handling of a default value.
Aymeric Augustin
2014-11-23
Encapsulated TEMPLATE_DEBUG in Engine.
Aymeric Augustin
2014-11-23
Encapsulated TEMPLATE_CONTEXT_PROCESSORS in Engine.
Aymeric Augustin
2014-11-23
Moved make_origin into the Engine class.
Aymeric Augustin
2014-11-23
Move compile_string into the Engine class.
Aymeric Augustin
2014-11-23
Removed dependency of template loaders on Django settings.
Aymeric Augustin
2014-11-23
Moved template loaders management in Engine.
Aymeric Augustin
2014-11-23
Removed unused API get_template_loaders.
Aymeric Augustin
2014-11-23
Introduced a template engine class.
Aymeric Augustin