summaryrefslogtreecommitdiff
path: root/docs/topics/http
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-01-26 15:39:52 -0500
committerTim Graham <timograham@gmail.com>2015-02-01 21:02:40 -0500
commitc79faae761659d51d58782dbd2b8058fb4668cfa (patch)
treea83649a302c53dd2d0ce9e0f50c4017b8b5da979 /docs/topics/http
parent0e6091249295b0e06aff2b1b4411819f94a1c529 (diff)
Removed versionadded/changed notes for 1.7.
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
--------