summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2011-10-30 07:32:21 +0000
committerAymeric Augustin <aymeric.augustin@m4x.org>2011-10-30 07:32:21 +0000
commitd17bc72880caea967ee1f4332941269837b68a2a (patch)
treefc1fa3537f139a2f2f1829c7bbdff008fdbc684a /docs/internals
parentbebbc9e4a537f45bfd24a902d223ad96d743a524 (diff)
Fixed #17135 -- Made it possible to use decorators (like stringfilter) on template filter functions in combination with auto-escaping. Refs #16726.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17056 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index f50b0423e5..603f20dbab 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -251,6 +251,9 @@ these changes.
:mod:`django.core.management`. This also means that the old (pre-1.4)
style of :file:`manage.py` file will no longer work.
+* Setting the ``is_safe`` and ``needs_autoescape`` flags as attributes of
+ template filter functions will no longer be supported.
+
2.0
---