Author: gwilson
Date: 2009-12-25 18:55:06 -0600 (Fri, 25 Dec 2009)
New Revision: 11988

Modified:
   django/trunk/docs/ref/models/querysets.txt
   django/trunk/docs/releases/1.1-alpha-1.txt
   django/trunk/docs/releases/1.1.txt
Log:
Fixed #12205 -- Corrected malformed reference links in the 1.1 and 1.1-alpha 
release notes, and corrected position of field lookup reference label.  Thanks 
velmont and timo. 


Modified: django/trunk/docs/ref/models/querysets.txt
===================================================================
--- django/trunk/docs/ref/models/querysets.txt  2009-12-25 21:08:02 UTC (rev 
11987)
+++ django/trunk/docs/ref/models/querysets.txt  2009-12-26 00:55:06 UTC (rev 
11988)
@@ -1131,8 +1131,6 @@
 For an in-depth discussion of aggregation, see :ref:`the topic guide on
 Aggregation <topics-db-aggregation>`.
 
-.. _field-lookups:
-
 ``exists()``
 ~~~~~~~~~~~~
 
@@ -1147,6 +1145,8 @@
 more overall work (an additional query) than simply using
 ``bool(some_query_set)``.
 
+.. _field-lookups:
+
 Field lookups
 -------------
 

Modified: django/trunk/docs/releases/1.1-alpha-1.txt
===================================================================
--- django/trunk/docs/releases/1.1-alpha-1.txt  2009-12-25 21:08:02 UTC (rev 
11987)
+++ django/trunk/docs/releases/1.1-alpha-1.txt  2009-12-26 00:55:06 UTC (rev 
11988)
@@ -85,13 +85,13 @@
 * 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 `the forms overview <topics-forms-index>`_ now
-  have two additional methods, ``hidden_fields()`` and ``visible_fields()``,
+* Instances of Django forms (see :ref:`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 `the generic views documentation
-  <ref-generic-views>`_) now accepts an additional keyword argument
+* The ``redirect_to`` generic view (see :ref:`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).
@@ -99,7 +99,8 @@
 * A new database lookup type -- ``week_day`` -- has been added for 
``DateField``
   and ``DateTimeField``. This type of lookup accepts a number between 1 
(Sunday)
   and 7 (Saturday), and returns objects where the field value matches that day
-  of the week. See `the full list of lookup types <field-lookups>`_ for 
details.
+  of the week. See :ref:`the full list of lookup types <field-lookups>` for
+  details.
 
 * The ``{% for %}`` tag in Django's template language now accepts an optional
   ``{% empty %}`` clause, to be displayed when ``{% for %}`` is asked to loop
@@ -150,7 +151,7 @@
 discussions there.
 
 Django's online documentation also includes pointers on how to contribute to
-Django: 
+Django:
 
     * :ref:`How to contribute to Django <internals-contributing>`
 

Modified: django/trunk/docs/releases/1.1.txt
===================================================================
--- django/trunk/docs/releases/1.1.txt  2009-12-25 21:08:02 UTC (rev 11987)
+++ django/trunk/docs/releases/1.1.txt  2009-12-26 00:55:06 UTC (rev 11988)
@@ -392,13 +392,13 @@
 * 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 `the forms overview <topics-forms-index>`_ now
-  have two additional methods, ``hidden_fields()`` and ``visible_fields()``,
+* Instances of Django forms (see :ref:`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 `the generic views documentation
-  <ref-generic-views>`_) now accepts an additional keyword argument
+* The ``redirect_to`` generic view (see :ref:`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).
@@ -406,7 +406,8 @@
 * A new database lookup type -- ``week_day`` -- has been added for 
``DateField``
   and ``DateTimeField``. This type of lookup accepts a number between 1 
(Sunday)
   and 7 (Saturday), and returns objects where the field value matches that day
-  of the week. See `the full list of lookup types <field-lookups>`_ for 
details.
+  of the week. See :ref:`the full list of lookup types <field-lookups>` for
+  details.
 
 * The ``{% for %}`` tag in Django's template language now accepts an optional
   ``{% empty %}`` clause, to be displayed when ``{% for %}`` is asked to loop

--

You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-upda...@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en.


Reply via email to