summaryrefslogtreecommitdiff
path: root/docs/releases/1.1-alpha-1.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/releases/1.1-alpha-1.txt')
-rw-r--r--docs/releases/1.1-alpha-1.txt22
1 files changed, 10 insertions, 12 deletions
diff --git a/docs/releases/1.1-alpha-1.txt b/docs/releases/1.1-alpha-1.txt
index 664c354561..b15a2a423c 100644
--- a/docs/releases/1.1-alpha-1.txt
+++ b/docs/releases/1.1-alpha-1.txt
@@ -1,5 +1,3 @@
-.. _releases-1.1-alpha-1:
-
================================
Django 1.1 alpha 1 release notes
================================
@@ -37,8 +35,8 @@ results of the aggregate directly, or else annotate the objects in a
:class:`QuerySet` with the results of the aggregate query.
This feature is available as new :meth:`QuerySet.aggregate()`` and
-:meth:`QuerySet.annotate()`` methods, and is covered in detail in :ref:`the ORM
-aggregation documentation <topics-db-aggregation>`
+:meth:`QuerySet.annotate()`` methods, and is covered in detail in :doc:`the ORM
+aggregation documentation </topics/db/aggregation>`
Query expressions
~~~~~~~~~~~~~~~~~
@@ -53,7 +51,7 @@ Performance improvements
.. currentmodule:: django.test
-Tests written using Django's :ref:`testing framework <topics-testing>` now run
+Tests written using Django's :doc:`testing framework </topics/testing>` now run
dramatically faster (as much as 10 times faster in many cases).
This was accomplished through the introduction of transaction-based tests: when
@@ -68,7 +66,7 @@ Other improvements
Other new features and changes introduced since Django 1.0 include:
-* The :ref:`CSRF protection middleware <ref-contrib-csrf>` has been split into
+* The :doc:`CSRF protection middleware </ref/contrib/csrf>` has been split into
two classes -- ``CsrfViewMiddleware`` checks incoming requests, and
``CsrfResponseMiddleware`` processes outgoing responses. The combined
``CsrfMiddleware`` class (which does both) remains for
@@ -85,13 +83,13 @@ Other new features and changes introduced since Django 1.0 include:
* The ``include()`` function in Django URLconf modules can now accept sequences
of URL patterns (generated by ``patterns()``) in addition to module names.
-* Instances of Django forms (see :ref:`the forms overview <topics-forms-index>`)
+* Instances of Django forms (see :doc:`the forms overview </topics/forms/index>`)
now have two additional methods, ``hidden_fields()`` and ``visible_fields()``,
which return the list of hidden -- i.e., ``<input type="hidden">`` -- and
visible fields on the form, respectively.
-* The ``redirect_to`` generic view (see :ref:`the generic views documentation
- <ref-generic-views>`) now accepts an additional keyword argument
+* The ``redirect_to`` generic view (see :doc:`the generic views documentation
+ </ref/generic-views>`) now accepts an additional keyword argument
``permanent``. If ``permanent`` is ``True``, the view will emit an HTTP
permanent redirect (status code 301). If ``False``, the view will emit an HTTP
temporary redirect (status code 302).
@@ -104,8 +102,8 @@ Other new features and changes introduced since Django 1.0 include:
* The ``{% for %}`` tag in Django's template language now accepts an optional
``{% empty %}`` clause, to be displayed when ``{% for %}`` is asked to loop
- over an empty sequence. See :ref:`the list of built-in template tags
- <ref-templates-builtins>` for examples of this.
+ over an empty sequence. See :doc:`the list of built-in template tags
+ </ref/templates/builtins>` for examples of this.
The Django 1.1 roadmap
======================
@@ -153,7 +151,7 @@ discussions there.
Django's online documentation also includes pointers on how to contribute to
Django:
- * :ref:`How to contribute to Django <internals-contributing>`
+ * :doc:`How to contribute to Django </internals/contributing>`
Contributions on any level -- developing code, writing documentation or simply
triaging tickets and helping to test proposed bugfixes -- are always welcome and