summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/middleware.txt4
-rw-r--r--docs/topics/http/sessions.txt2
-rw-r--r--docs/topics/http/views.txt2
3 files changed, 2 insertions, 6 deletions
diff --git a/docs/topics/http/middleware.txt b/docs/topics/http/middleware.txt
index b18573f002..e21bdbd297 100644
--- a/docs/topics/http/middleware.txt
+++ b/docs/topics/http/middleware.txt
@@ -8,8 +8,8 @@ or output.
Each middleware component is responsible for doing some specific function. For
example, Django includes a middleware component,
-:class:`~django.middleware.transaction.TransactionMiddleware`, that wraps the
-processing of each HTTP request in a database transaction.
+:class:`~django.contrib.auth.middleware.AuthenticationMiddleware`, that
+associates users with requests using sessions.
This document explains how middleware works, how you activate middleware, and
how to write your own middleware. Django ships with some built-in middleware
diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt
index 5711b0c490..864777bfe4 100644
--- a/docs/topics/http/sessions.txt
+++ b/docs/topics/http/sessions.txt
@@ -324,8 +324,6 @@ You can edit it multiple times.
Session serialization
---------------------
-.. versionchanged:: 1.6
-
Before version 1.6, Django defaulted to using :mod:`pickle` to serialize
session data before storing it in the backend. If you're using the :ref:`signed
cookie session backend<cookie-session-backend>` and :setting:`SECRET_KEY` is
diff --git a/docs/topics/http/views.txt b/docs/topics/http/views.txt
index 28f2abdc9a..0653d74f53 100644
--- a/docs/topics/http/views.txt
+++ b/docs/topics/http/views.txt
@@ -242,8 +242,6 @@ same way you can for the 404 and 500 views by specifying a
The 400 (bad request) view
--------------------------
-.. versionadded:: 1.6
-
.. function:: django.views.defaults.bad_request(request, template_name='400.html')
When a :exc:`~django.core.exceptions.SuspiciousOperation` is raised in Django,