summaryrefslogtreecommitdiff
path: root/docs/ref/class-based-views
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-03-24 11:42:56 -0400
committerTim Graham <timograham@gmail.com>2014-03-24 11:42:56 -0400
commit51c8045145b29fed604f716d4d17958aa803b5ea (patch)
tree3d3c1711832684134bf5bda967acdb4bf5cd09c0 /docs/ref/class-based-views
parentec08d62a20f55cfdfb9fbd21d8bc5627c54337c7 (diff)
Removed versionadded/changed annotations for 1.6.
Diffstat (limited to 'docs/ref/class-based-views')
-rw-r--r--docs/ref/class-based-views/base.txt6
-rw-r--r--docs/ref/class-based-views/mixins-editing.txt14
-rw-r--r--docs/ref/class-based-views/mixins-multiple-object.txt4
3 files changed, 4 insertions, 20 deletions
diff --git a/docs/ref/class-based-views/base.txt b/docs/ref/class-based-views/base.txt
index 7b627d3d44..fb98f9d80e 100644
--- a/docs/ref/class-based-views/base.txt
+++ b/docs/ref/class-based-views/base.txt
@@ -213,8 +213,6 @@ RedirectView
.. attribute:: pattern_name
- .. versionadded:: 1.6
-
The name of the URL pattern to redirect to. Reversing will be done
using the same args and kwargs as are passed in for this view.
@@ -238,10 +236,6 @@ RedirectView
Constructs the target URL for redirection.
- .. versionchanged:: 1.6
-
- The signature of this method was changed to include ``*args``.
-
The default implementation uses :attr:`url` as a starting
string and performs expansion of ``%`` named parameters in that string
using the named groups captured in the URL.
diff --git a/docs/ref/class-based-views/mixins-editing.txt b/docs/ref/class-based-views/mixins-editing.txt
index cfa343c937..7a315ad7a3 100644
--- a/docs/ref/class-based-views/mixins-editing.txt
+++ b/docs/ref/class-based-views/mixins-editing.txt
@@ -37,8 +37,6 @@ FormMixin
.. attribute:: prefix
- .. versionadded:: 1.6
-
The :attr:`~django.forms.Form.prefix` for the generated form.
.. method:: get_initial()
@@ -66,8 +64,6 @@ FormMixin
.. method:: get_prefix()
- .. versionadded:: 1.6
-
Determine the :attr:`~django.forms.Form.prefix` for the generated form.
Returns :attr:`~django.views.generic.edit.FormMixin.prefix` by default.
@@ -234,12 +230,10 @@ DeletionMixin
The url to redirect to when the nominated object has been
successfully deleted.
- .. versionadded:: 1.6
-
- ``success_url`` may contain dictionary string formatting, which
- will be interpolated against the object's field attributes. For
- example, you could use ``success_url="/parent/%(parent_id)s/"`` to
- redirect to a URL composed out of the ``parent_id`` field on a model.
+ ``success_url`` may contain dictionary string formatting, which will be
+ interpolated against the object's field attributes. For example, you
+ could use ``success_url="/parent/%(parent_id)s/"`` to redirect to a URL
+ composed out of the ``parent_id`` field on a model.
.. method:: get_success_url()
diff --git a/docs/ref/class-based-views/mixins-multiple-object.txt b/docs/ref/class-based-views/mixins-multiple-object.txt
index 160237f4e2..b3de1a7a94 100644
--- a/docs/ref/class-based-views/mixins-multiple-object.txt
+++ b/docs/ref/class-based-views/mixins-multiple-object.txt
@@ -81,8 +81,6 @@ MultipleObjectMixin
.. attribute:: paginate_orphans
- .. versionadded:: 1.6
-
An integer specifying the number of "overflow" objects the last page
can contain. This extends the :attr:`paginate_by` limit on the last
page by up to ``paginate_orphans``, in order to keep the last page from
@@ -135,8 +133,6 @@ MultipleObjectMixin
.. method:: get_paginate_orphans()
- .. versionadded:: 1.6
-
An integer specifying the number of "overflow" objects the last page
can contain. By default this simply returns the value of
:attr:`paginate_orphans`.