summaryrefslogtreecommitdiff
path: root/docs/templates_python.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-04-24 00:29:31 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-04-24 00:29:31 +0000
commit489d5bae5c5e53891c71796427e205625c8afe74 (patch)
treeb674d675428ad1647cb686f99589944b17c4429c /docs/templates_python.txt
parent0f89743539b2129bab5bbaa719ea5be00d05c294 (diff)
magic-removal: Removed 'New in Django development version' notes in all docs
git-svn-id: http://code.djangoproject.com/svn/django/branches/magic-removal@2744 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/templates_python.txt')
-rw-r--r--docs/templates_python.txt8
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/templates_python.txt b/docs/templates_python.txt
index c40d4e9be2..d937ea2aad 100644
--- a/docs/templates_python.txt
+++ b/docs/templates_python.txt
@@ -209,9 +209,9 @@ This applies to any level of lookup::
>>> t.render(c)
"My name is Stan ."
-In the Django development version, if a variable doesn't exist, the template
-system inserts the value of the ``TEMPLATE_STRING_IF_INVALID`` setting, which
-is set to ``''`` (the empty string) by default.
+If a variable doesn't exist, the template system inserts the value of the
+``TEMPLATE_STRING_IF_INVALID`` setting, which is set to ``''`` (the empty
+string) by default.
Playing with Context objects
----------------------------
@@ -352,8 +352,6 @@ See the `internationalization docs`_ for more.
django.core.context_processors.request
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
-**New in Django development version**
-
If ``TEMPLATE_CONTEXT_PROCESSORS`` contains this processor, every
``DjangoContext`` will contain a variable ``request``, which is the current
`HttpRequest object`_. Note that this processor is not enabled by default;