Commit 51c80451 authored by Tim Graham's avatar Tim Graham
Browse files

Removed versionadded/changed annotations for 1.6.

parent ec08d62a
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -269,10 +269,6 @@ All attributes can be set in your derived class and can be used in
  because attempting to set the locale needs access to settings. This condition
  will generate a :class:`CommandError`.

.. versionadded:: 1.6

    The ``leave_locale_alone`` option was added in Django 1.6.

Methods
-------

+0 −5
Original line number Diff line number Diff line
@@ -74,11 +74,6 @@ with Django you'd need to change the ``managed`` option highlighted above to
This serves as an explicit opt-in to give your nascent Django project write
access to your precious data on a model by model basis.

.. versionchanged:: 1.6

    The behavior by which introspected models are created as unmanaged ones is new
    in Django 1.6.

Install the core Django tables
==============================

+0 −6
Original line number Diff line number Diff line
@@ -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.
+4 −10
Original line number Diff line number Diff line
@@ -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()

+0 −4
Original line number Diff line number Diff line
@@ -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`.
Loading