Ticket #17470: 17470.patch

File 17470.patch, 3.8 KB (added by Aymeric Augustin, 12 years ago)
  • docs/releases/0.95.txt

     
    9292easy checklist_ for reference when undertaking the porting operation.
    9393
    9494.. _Removing The Magic: http://code.djangoproject.com/wiki/RemovingTheMagic
    95 .. _checklist: http://code.djangoproject.com/wiki/MagicRemovalCheatSheet1
     95.. _checklist: http://code.djangoproject.com/wiki/MagicRemovalCheatSheet
    9696
    9797Problem reports and getting help
    9898================================
    9999
    100 Need help resolving a problem with Django? The documentation in the distribution
    101 is also available online_ at the `Django Web site`_. The :doc:`FAQ </faq/index>`
    102 document is especially recommended, as it contains a number of issues that come
    103 up time and again.
     100Need help resolving a problem with Django? The documentation in the
     101distribution is also available :doc:`online </index>` at the `Django Web
     102site`_. The :doc:`FAQ </faq/index>` document is especially recommended, as it
     103contains a number of issues that come up time and again.
    104104
    105105For more personalized help, the `django-users`_ mailing list is a very active
    106106list, with more than 2,000 subscribers who can help you solve any sort of
     
    113113Django users and developers from around the world. Friendly people are usually
    114114available at any hour of the day -- to help, or just to chat.
    115115
    116 .. _online: http://www.djangoproject.com/documentation/0.95/
    117116.. _Django Web site: http://www.djangoproject.com/
    118117.. _django-users: http://groups.google.com/group/django-users
    119118
  • docs/releases/0.96.txt

     
    5050maintained, and it will be removed in a future release of Django.
    5151
    5252Also, note that some features, like the new :setting:`DATABASE_OPTIONS`
    53 setting (see the `databases documentation`_ for details), are only
    54 available on the "mysql" backend, and will not be made available for
     53setting (see the :doc:`databases documentation </ref/databases>` for details),
     54are only available on the "mysql" backend, and will not be made available for
    5555"mysql_old".
    5656
    57 .. _databases documentation: http://www.djangoproject.com/documentation/0.96/databases/
    58 
    5957Database constraint names changed
    6058---------------------------------
    6159
     
    164162for most common cases. We recommend that anyone new to form handling skip the
    165163old forms system and start with the new.
    166164
    167 For more information about ``django.newforms``, read the `newforms
    168 documentation`_.
     165For more information about ``django.newforms``, read the :doc:`newforms
     166documentation </topics/forms/index>`.
    169167
    170 .. _newforms documentation: http://www.djangoproject.com/documentation/0.96/newforms/
    171 
    172168URLconf improvements
    173169--------------------
    174170
     
    220216:mod:`doctest` or :mod:`unittest` and test your views with a simple test client.
    221217
    222218There is also new support for "fixtures" -- initial data, stored in any of the
    223 supported `serialization formats`_, that will be loaded into your database at the
    224 start of your tests. This makes testing with real data much easier.
     219supported :doc:`serialization formats </topics/serialization>`, that will be
     220loaded into your database at the start of your tests. This makes testing with
     221real data much easier.
    225222
    226 See `the testing documentation`_ for the full details.
     223See :doc:`the testing documentation </topics/testing>` for the full details.
    227224
    228 .. _the testing documentation: http://www.djangoproject.com/documentation/0.96/testing/
    229 .. _serialization formats: http://www.djangoproject.com/documentation/0.96/serialization/
    230 
    231225Improvements to the admin interface
    232226-----------------------------------
    233227
Back to Top