summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTimo Graham <timograham@gmail.com>2011-12-30 12:29:47 +0000
committerTimo Graham <timograham@gmail.com>2011-12-30 12:29:47 +0000
commitc9ab2bfb39c03883623dbd858791b39690391900 (patch)
tree5a67b31f619a490c24bd413520e5bda6e818c610 /docs
parentb5853cf043fe22277e5aff7648b5b1a74b778255 (diff)
downloaddjango-c9ab2bfb39c03883623dbd858791b39690391900.tar.gz
[1.3.X] Fixed #17470 - Broken links in 0.95/0.96 release notes; thanks 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
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/0.95.txt11
-rw-r--r--docs/releases/0.96.txt28
2 files changed, 15 insertions, 24 deletions
diff --git a/docs/releases/0.95.txt b/docs/releases/0.95.txt
index 7409bff1c0..3632c31460 100644
--- a/docs/releases/0.95.txt
+++ b/docs/releases/0.95.txt
@@ -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
@@ -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
diff --git a/docs/releases/0.96.txt b/docs/releases/0.96.txt
index 1224360e3f..8874ccb20e 100644
--- a/docs/releases/0.96.txt
+++ b/docs/releases/0.96.txt
@@ -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
---------------------------------
@@ -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
--------------------
@@ -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
-----------------------------------