diff options
| author | Preston Timmons <prestontimmons@gmail.com> | 2015-01-05 14:43:15 -0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-01-05 19:35:02 -0500 |
| commit | de9ebdd39cb4f4b65475b43e0e32772d5a315654 (patch) | |
| tree | a1829e7865df451879a52f3dfda2affc18453809 /docs/ref | |
| parent | a9aec1154e5b65fcaf608801905a1bbafcfbfbf7 (diff) | |
Fixed #24022 -- Deprecated the ssi tag.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/settings.txt | 10 | ||||
| -rw-r--r-- | docs/ref/templates/builtins.txt | 7 |
2 files changed, 13 insertions, 4 deletions
diff --git a/docs/ref/settings.txt b/docs/ref/settings.txt index 3769695820..8d0d17c010 100644 --- a/docs/ref/settings.txt +++ b/docs/ref/settings.txt @@ -125,8 +125,14 @@ Default: ``()`` (Empty tuple) .. deprecated:: 1.8 - Set the ``'allowed_include_roots'`` option in the :setting:`OPTIONS - <TEMPLATES-OPTIONS>` of a ``DjangoTemplates`` backend instead. + This setting, along with the :ttag:`ssi` template tag, is deprecated and + will be removed in Django 2.0. + +.. versionchanged:: 1.8 + + You can also set the ``'allowed_include_roots'`` option in the + :setting:`OPTIONS <TEMPLATES-OPTIONS>` of a ``DjangoTemplates`` backend + instead. A tuple of strings representing allowed prefixes for the ``{% ssi %}`` template tag. This is a security measure, so that template authors can't access files diff --git a/docs/ref/templates/builtins.txt b/docs/ref/templates/builtins.txt index dced4cdee6..b9d2afb603 100644 --- a/docs/ref/templates/builtins.txt +++ b/docs/ref/templates/builtins.txt @@ -705,8 +705,6 @@ available to the included template:: been evaluated and rendered* - not blocks that can be overridden by, for example, an extending template. -See also: :ttag:`{% ssi %}<ssi>`. - .. templatetag:: load load @@ -979,6 +977,11 @@ this example, the space around ``Hello`` won't be stripped:: ssi ^^^ +.. deprecated:: 1.8 + + This tag has been deprecated and will be removed in Django 2.0. Use the + :ttag:`include` tag instead. + Outputs the contents of a given file into the page. Like a simple :ttag:`include` tag, ``{% ssi %}`` includes the contents of |
