Commit fb564015 authored by Russell Keith-Magee's avatar Russell Keith-Magee
Browse files

Fixed #11493 -- Added an internal document listing the APIs that have been...

Fixed #11493 -- Added an internal document listing the APIs that have been formally deprecated. Thanks to Alex Gaynor for the draft text.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11277 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent bc5a7c0d
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -200,6 +200,7 @@ The Django open-source project

    * **Django over time:**
      :ref:`API stability <misc-api-stability>` |
      :ref:`Archive of release notes <releases-index>` | `Backwards-incompatible changes`_
      :ref:`Archive of release notes <releases-index>` | `Backwards-incompatible changes`_ |
      :ref:`Deprecation Timeline <internals-deprecation>`

.. _Backwards-incompatible changes: http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges
+21 −0
Original line number Diff line number Diff line
.. _internals-deprecation:

===========================
Django Deprecation Timeline
===========================

This document outlines when various pieces of Django will be removed, following
their deprecation, as per the :ref:`Django deprecation policy
<internal-release-deprecation-policy>`

    * 1.3
        * ``AdminSite.root()``.  This release will remove the old method for
          hooking up admin URLs.  This has been deprecated since the 1.1
          release.

    * 2.0
        * ``django.views.defaults.shortcut()``. This function has been moved
          to ``django.contrib.contenttypes.views.shortcut()`` as part of the
          goal of removing all ``django.contrib`` references from the core
          Django codebase. The old shortcut will be removed in the 2.0
          release.
+2 −1
Original line number Diff line number Diff line
@@ -22,3 +22,4 @@ the hood".
   documentation
   committers
   release-process
   deprecation
+16 −15
Original line number Diff line number Diff line
@@ -50,6 +50,8 @@ Minor releases
Minor release (1.1, 1.2, etc.) will happen roughly every six months -- see
`release process`_, below for details.

.. _internal-release-deprecation-policy:

These releases will contain new features, improvements to existing features, and
such. A minor release may deprecate certain features from previous releases. If a
feature in version ``A.B`` is deprecated, it will continue to work in version
@@ -203,4 +205,3 @@ development will be happening in a bunch of places:

    * On feature branches, development of major features is done. These
      branches will be merged into trunk before the end of phase two.