summaryrefslogtreecommitdiff
path: root/docs/ref
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2014-11-21 18:55:58 +0200
committerTim Graham <timograham@gmail.com>2014-11-25 09:22:18 -0500
commit9a30acad8a1996c914351bad981d937de4db29a4 (patch)
tree15f6d9a64f5323121a7a532b3330a82f7dc5d104 /docs/ref
parentd43dd03ca3afecc27f43fbc932f239470a2f07db (diff)
Fixed #21587 -- Added a warning for changing default of RedirectView.permanent.
Diffstat (limited to 'docs/ref')
-rw-r--r--docs/ref/class-based-views/base.txt5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ref/class-based-views/base.txt b/docs/ref/class-based-views/base.txt
index e6c35fffd0..523b39d0e2 100644
--- a/docs/ref/class-based-views/base.txt
+++ b/docs/ref/class-based-views/base.txt
@@ -222,6 +222,11 @@ RedirectView
status code 301. If ``False``, then the redirect will use status code
302. By default, ``permanent`` is ``True``.
+ .. deprecated:: 1.8
+
+ The default value of the ``permanent`` attribute will change from
+ ``True`` to ``False`` in Django 1.9.
+
.. attribute:: query_string
Whether to pass along the GET query string to the new location. If