summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorAaron Elliot Ross <aaronelliotross@gmail.com>2015-11-08 10:06:07 +0100
committerTim Graham <timograham@gmail.com>2015-11-12 19:14:23 -0500
commit19a5f6da329d58653bcda85f84efd5d5eaf68f84 (patch)
tree52f6955cff728d3050710f70ba0a735e99704643 /docs/ref
parenta8f05f405f8b78e13d7c4c9ffd73d6182b6fc4d5 (diff)
Fixed #25469 -- Added autoescape option to DjangoTemplates backend.
Thanks Aymeric for the initial patch and Carl for review.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/templates/api.txt14
1 files changed, 13 insertions, 1 deletions
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt
index 570ffbc9d6..aaa08cc70b 100644
--- a/docs/ref/templates/api.txt
+++ b/docs/ref/templates/api.txt
@@ -48,7 +48,7 @@ probably isn't the documentation you're looking for. An instance of the
of that backend and any attribute defaults mentioned below are overridden by
what's passed by :class:`~django.template.backends.django.DjangoTemplates`.
-.. class:: Engine(dirs=None, app_dirs=False, context_processors=None, debug=False, loaders=None, string_if_invalid='', file_charset='utf-8', libraries=None, builtins=None)
+.. class:: Engine(dirs=None, app_dirs=False, context_processors=None, debug=False, loaders=None, string_if_invalid='', file_charset='utf-8', libraries=None, builtins=None, autoescape=True)
When instantiating an ``Engine`` all arguments must be passed as keyword
arguments:
@@ -63,6 +63,18 @@ what's passed by :class:`~django.template.backends.django.DjangoTemplates`.
It defaults to ``False``.
+ * ``autoescape`` controls whether HTML autoescaping is enabled.
+
+ It defaults to ``True``.
+
+ .. warning::
+
+ Only set it to ``False`` if you're rendering non-HTML templates!
+
+ .. versionadded:: 1.10
+
+ The ``autoescape`` option was added.
+
* ``context_processors`` is a list of dotted Python paths to callables
that are used to populate the context when a template is rendered with a
request. These callables take a request object as their argument and