summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-09-12 16:27:30 -0400
committerTim Graham <timograham@gmail.com>2015-09-23 19:31:11 -0400
commit54848a96dd4a196e81f3d71c61caf84ea8b49f4e (patch)
tree0fe3e51fc3f783adc69c46bb0313514f207f71ab /docs/topics/http
parent48e7787db599b0103daf70f0ff4968d90b8540aa (diff)
Removed versionadded/changed annotations for 1.8.
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/middleware.txt5
-rw-r--r--docs/topics/http/sessions.txt6
-rw-r--r--docs/topics/http/shortcuts.txt8
3 files changed, 0 insertions, 19 deletions
diff --git a/docs/topics/http/middleware.txt b/docs/topics/http/middleware.txt
index c9812268a0..7ffaa9fc32 100644
--- a/docs/topics/http/middleware.txt
+++ b/docs/topics/http/middleware.txt
@@ -273,11 +273,6 @@ that piece of middleware from the middleware process and a debug message will
be logged to the ``django.request`` logger when :setting:`DEBUG` is set to
``True``.
-.. versionchanged:: 1.8
-
- Previously, :exc:`~django.core.exceptions.MiddlewareNotUsed` exceptions
- weren't logged.
-
Guidelines
----------
diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt
index da9e5ef567..6c0182ef33 100644
--- a/docs/topics/http/sessions.txt
+++ b/docs/topics/http/sessions.txt
@@ -226,12 +226,6 @@ You can edit it multiple times.
can't be accessed again from the user's browser (for example, the
:func:`django.contrib.auth.logout()` function calls it).
- .. versionchanged:: 1.8
-
- Deletion of the session cookie is a behavior new in Django 1.8.
- Previously, the behavior was to regenerate the session key value that
- was sent back to the user in the cookie.
-
.. method:: set_test_cookie()
Sets a test cookie to determine whether the user's browser supports
diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt
index 4ed7159de6..1635a4be01 100644
--- a/docs/topics/http/shortcuts.txt
+++ b/docs/topics/http/shortcuts.txt
@@ -56,10 +56,6 @@ Optional arguments
The :setting:`NAME <TEMPLATES-NAME>` of a template engine to use for
loading the template.
-.. versionchanged:: 1.8
-
- The ``using`` parameter was added.
-
Example
-------
@@ -121,10 +117,6 @@ Optional arguments
The :setting:`NAME <TEMPLATES-NAME>` of a template engine to use for
loading the template.
-.. versionchanged:: 1.8
-
- The ``status`` and ``using`` parameters were added.
-
Example
-------