summaryrefslogtreecommitdiff
path: root/docs/templates_python.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/templates_python.txt')
-rw-r--r--docs/templates_python.txt9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/templates_python.txt b/docs/templates_python.txt
index 04be6853f7..02d943baf1 100644
--- a/docs/templates_python.txt
+++ b/docs/templates_python.txt
@@ -276,11 +276,6 @@ optional, third positional argument, ``processors``. In this example, the
'foo': 'bar',
}, [ip_address_processor])
-Note: The concept of template-context processors is new in the Django
-development version. In Django 0.90, ``DjangoContext`` automatically populates
-the context with all of the values explained below, but it's not possible to
-add and remove processors.
-
Here's what each of the default processors does:
.. _HttpRequest object: http://www.djangoproject.com/documentation/request_response/#httprequest-objects
@@ -534,8 +529,6 @@ filters are registered. So, near the top of your module, put the following::
Writing custom template filters
-------------------------------
-**This section applies to the Django development version.**
-
Custom filters are just Python functions that take one or two arguments:
* The value of the variable (input) -- not necessarily a string.
@@ -595,8 +588,6 @@ will use the function's name as the filter name.
Writing custom template tags
----------------------------
-**This section applies to the Django development version.**
-
Tags are more complex than filters, because tags can do anything.
A quick overview