From 51c8045145b29fed604f716d4d17958aa803b5ea Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 24 Mar 2014 11:42:56 -0400 Subject: Removed versionadded/changed annotations for 1.6. --- docs/topics/forms/formsets.txt | 14 -------------- docs/topics/forms/index.txt | 11 ++++------- docs/topics/forms/modelforms.txt | 14 ++------------ 3 files changed, 6 insertions(+), 33 deletions(-) (limited to 'docs/topics/forms') diff --git a/docs/topics/forms/formsets.txt b/docs/topics/forms/formsets.txt index 0e32d6131f..44d3154683 100644 --- a/docs/topics/forms/formsets.txt +++ b/docs/topics/forms/formsets.txt @@ -118,13 +118,6 @@ affect validation. If ``validate_max=True`` is passed to the :func:`~django.forms.formsets.formset_factory`, then ``max_num`` will affect validation. See :ref:`validate_max`. -.. versionchanged:: 1.6 - - The ``validate_max`` parameter was added to - :func:`~django.forms.formsets.formset_factory`. Also, the behavior of - ``FormSet`` was brought in line with that of ``ModelFormSet`` so that it - displays initial data regardless of ``max_num``. - Formset validation ------------------ @@ -169,8 +162,6 @@ the expected error message appears for the second item. .. method:: BaseFormSet.total_error_count() -.. versionadded:: 1.6 - To check how many errors there are in the formset, we can use the ``total_error_count`` method:: @@ -344,11 +335,6 @@ excessive. truncated entirely. This is to protect against memory exhaustion attacks using forged POST requests. -.. versionchanged:: 1.6 - - The ``validate_max`` parameter was added to - :func:`~django.forms.formsets.formset_factory`. - ``validate_min`` ~~~~~~~~~~~~~~~~ diff --git a/docs/topics/forms/index.txt b/docs/topics/forms/index.txt index 441ab2eea3..9d93083f91 100644 --- a/docs/topics/forms/index.txt +++ b/docs/topics/forms/index.txt @@ -317,14 +317,11 @@ attributes, which can be useful in your templates: The label of the field, e.g. ``Email address``. ``{{ field.label_tag }}`` - The field's label wrapped in the appropriate HTML ``