Ticket #12205: 12205.diff

File 12205.diff, 1.8 KB (added by Tim Graham, 14 years ago)

fix a few broken links plus a missing close parens

  • docs/releases/1.1.txt

     
    388388* The ``include()`` function in Django URLconf modules can now accept sequences
    389389  of URL patterns (generated by ``patterns()``) in addition to module names.
    390390
    391 * Instances of Django forms (see `the forms overview <topics-forms-index>`_ now
    392   have two additional methods, ``hidden_fields()`` and ``visible_fields()``,
     391* Instances of Django forms (see :ref:`the forms overview <topics-forms-index>`)
     392  now have two additional methods, ``hidden_fields()`` and ``visible_fields()``,
    393393  which return the list of hidden -- i.e., ``<input type="hidden">`` -- and
    394394  visible fields on the form, respectively.
    395395
    396 * The ``redirect_to`` generic view (see `the generic views documentation
    397   <ref-generic-views>`_) now accepts an additional keyword argument
     396* The ``redirect_to`` generic view (see :ref:`the generic views documentation
     397  <ref-generic-views>`) now accepts an additional keyword argument
    398398  ``permanent``. If ``permanent`` is ``True``, the view will emit an HTTP
    399399  permanent redirect (status code 301). If ``False``, the view will emit an HTTP
    400400  temporary redirect (status code 302).
     
    402402* A new database lookup type -- ``week_day`` -- has been added for ``DateField``
    403403  and ``DateTimeField``. This type of lookup accepts a number between 1 (Sunday)
    404404  and 7 (Saturday), and returns objects where the field value matches that day
    405   of the week. See `the full list of lookup types <field-lookups>`_ for details.
     405  of the week. See :ref:`the full list of lookup types <field-lookups>` for
     406  details.
    406407
    407408* The ``{% for %}`` tag in Django's template language now accepts an optional
    408409  ``{% empty %}`` clause, to be displayed when ``{% for %}`` is asked to loop
Back to Top