summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
Diffstat (limited to 'docs/topics/http')
-rw-r--r--docs/topics/http/sessions.txt5
-rw-r--r--docs/topics/http/shortcuts.txt12
2 files changed, 0 insertions, 17 deletions
diff --git a/docs/topics/http/sessions.txt b/docs/topics/http/sessions.txt
index 46c273726b..40faf1870a 100644
--- a/docs/topics/http/sessions.txt
+++ b/docs/topics/http/sessions.txt
@@ -95,11 +95,6 @@ session data be expunged from time to time, the ``cache`` backend is for you.
If you use the ``cached_db`` session backend, you also need to follow the
configuration instructions for the `using database-backed sessions`_.
-.. versionchanged:: 1.7
-
- Before version 1.7, the ``cached_db`` backend always used the ``default``
- cache rather than the :setting:`SESSION_CACHE_ALIAS`.
-
Using file-based sessions
-------------------------
diff --git a/docs/topics/http/shortcuts.txt b/docs/topics/http/shortcuts.txt
index f015786838..957f042d12 100644
--- a/docs/topics/http/shortcuts.txt
+++ b/docs/topics/http/shortcuts.txt
@@ -77,10 +77,6 @@ Optional arguments
The ``current_app`` argument is deprecated. Instead you should set
``request.current_app``.
-.. versionchanged:: 1.7
-
- The ``dirs`` parameter was added.
-
.. deprecated:: 1.8
The ``dirs`` parameter was deprecated.
@@ -167,10 +163,6 @@ Optional arguments
The ``status`` parameter was added.
-.. versionchanged:: 1.7
-
- The ``dirs`` parameter was added.
-
.. deprecated:: 1.8
The ``dirs`` parameter was deprecated.
@@ -223,10 +215,6 @@ This example is equivalent to::
By default issues a temporary redirect; pass ``permanent=True`` to issue a
permanent redirect.
- .. versionchanged:: 1.7
-
- The ability to use relative URLs was added.
-
Examples
--------