diff options
| author | Chris Beaven <smileychris@gmail.com> | 2012-02-21 02:59:05 +0000 |
|---|---|---|
| committer | Chris Beaven <smileychris@gmail.com> | 2012-02-21 02:59:05 +0000 |
| commit | 0e54c23caf21e5680aff68660b5d5b5937b98262 (patch) | |
| tree | 617db57a36ccbe9e8df5d8f94aee64f6f3149c66 /docs | |
| parent | 7d7d2d354c6670b645a14a7bd941c5f2cac79063 (diff) | |
Fixed #17660 -- Standardize extends tag token parsing
git-svn-id: http://code.djangoproject.com/svn/django/trunk@17568 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/releases/1.4.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/releases/1.4.txt b/docs/releases/1.4.txt index 2014a1004d..7b45f9e4e2 100644 --- a/docs/releases/1.4.txt +++ b/docs/releases/1.4.txt @@ -1031,6 +1031,17 @@ If you depended on the output of this command -- if you parsed it, for example management commands in a script, use :djadmin:`manage.py help --commands <help>` instead. +``extends`` template tag +~~~~~~~~~~~~~~~~~~~~~~~~ + +Previously, the :ttag:`extends` tag used a buggy method of parsing arguments, +which could lead to it erroneously considering an argument as a string literal +when it wasn't. It now utilises ``parser.compile_filter`` like other tags. + +The internals of the tag aren't part of the official stable API, but in the +interests of full disclosure, the ``ExtendsNode.__init__`` definition has +changed which may break any custom tags that use this node class. + Features deprecated in 1.4 ========================== |
