Navigation Menu

Skip to content

Commit

Permalink
[1.3.X] Fixed #17470 - Broken links in 0.95/0.96 release notes; thank…
Browse files Browse the repository at this point in the history
…s fastinetserver for the report; aaugustin for the patch.

Backport of r17290 from trunk.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.3.X@17291 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
timgraham committed Dec 30, 2011
1 parent b5853cf commit c9ab2bf
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 24 deletions.
11 changes: 5 additions & 6 deletions docs/releases/0.95.txt
Expand Up @@ -92,15 +92,15 @@ changes is described in the `Removing The Magic`_ wiki page. There is also an
easy checklist_ for reference when undertaking the porting operation.

.. _Removing The Magic: http://code.djangoproject.com/wiki/RemovingTheMagic
.. _checklist: http://code.djangoproject.com/wiki/MagicRemovalCheatSheet1
.. _checklist: http://code.djangoproject.com/wiki/MagicRemovalCheatSheet

Problem reports and getting help
================================

Need help resolving a problem with Django? The documentation in the distribution
is also available online_ at the `Django Web site`_. The :doc:`FAQ </faq/index>`
document is especially recommended, as it contains a number of issues that come
up time and again.
Need help resolving a problem with Django? The documentation in the
distribution is also available :doc:`online </index>` at the `Django Web
site`_. The :doc:`FAQ </faq/index>` document is especially recommended, as it
contains a number of issues that come up time and again.

For more personalized help, the `django-users`_ mailing list is a very active
list, with more than 2,000 subscribers who can help you solve any sort of
Expand All @@ -113,7 +113,6 @@ there's a #django channel on irc.freenode.net that is regularly populated by
Django users and developers from around the world. Friendly people are usually
available at any hour of the day -- to help, or just to chat.

.. _online: http://www.djangoproject.com/documentation/0.95/
.. _Django Web site: http://www.djangoproject.com/
.. _django-users: http://groups.google.com/group/django-users

Expand Down
28 changes: 10 additions & 18 deletions docs/releases/0.96.txt
Expand Up @@ -50,12 +50,10 @@ aside from any necessary security fixes, it will not be actively
maintained, and it will be removed in a future release of Django.

Also, note that some features, like the new :setting:`DATABASE_OPTIONS`
setting (see the `databases documentation`_ for details), are only
available on the "mysql" backend, and will not be made available for
setting (see the :doc:`databases documentation </ref/databases>` for details),
are only available on the "mysql" backend, and will not be made available for
"mysql_old".

.. _databases documentation: http://www.djangoproject.com/documentation/0.96/databases/

Database constraint names changed
---------------------------------

Expand Down Expand Up @@ -164,10 +162,8 @@ Although the ``newforms`` library will continue to evolve, it's ready for use
for most common cases. We recommend that anyone new to form handling skip the
old forms system and start with the new.

For more information about ``django.newforms``, read the `newforms
documentation`_.

.. _newforms documentation: http://www.djangoproject.com/documentation/0.96/newforms/
For more information about ``django.newforms``, read the :doc:`newforms
documentation </topics/forms/index>`.

URLconf improvements
--------------------
Expand Down Expand Up @@ -216,19 +212,15 @@ The test framework
------------------

Django now includes a test framework so you can start transmuting fear into
boredom (with apologies to Kent Beck). You can write tests based on doctest_
or unittest_ and test your views with a simple test client.
boredom (with apologies to Kent Beck). You can write tests based on
:mod:`doctest` or :mod:`unittest` and test your views with a simple test client.

There is also new support for "fixtures" -- initial data, stored in any of the
supported `serialization formats`_, that will be loaded into your database at the
start of your tests. This makes testing with real data much easier.

See `the testing documentation`_ for the full details.
supported :doc:`serialization formats </topics/serialization>`, that will be
loaded into your database at the start of your tests. This makes testing with
real data much easier.

.. _doctest: http://docs.python.org/library/doctest.html
.. _unittest: http://docs.python.org/library/unittest.html
.. _the testing documentation: http://www.djangoproject.com/documentation/0.96/testing/
.. _serialization formats: http://www.djangoproject.com/documentation/0.96/serialization/
See :doc:`the testing documentation </topics/testing>` for the full details.

Improvements to the admin interface
-----------------------------------
Expand Down

0 comments on commit c9ab2bf

Please sign in to comment.