~ubuntu-branches/ubuntu/quantal/python-django/quantal-security

« back to all changes in this revision

Viewing changes to docs/topics/http/urls.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jamie Strandboge
  • Date: 2010-10-12 11:34:35 UTC
  • mfrom: (4.4.9 sid)
  • mto: This revision was merged to the branch mainline in revision 30.
  • Revision ID: james.westby@ubuntu.com-20101012113435-5rk3p18nyanuhj6g
* SECURITY UPDATE: XSS in CSRF protections. New upstream release
  - CVE-2010-3082
* debian/patches/01_disable_url_verify_regression_tests.diff:
  - updated to disable another test that fails without internet connection
  - patch based on work by Kai Kasurinen and Krzysztof Klimonda
* debian/control: don't Build-Depends on locales-all, which doesn't exist
  in maverick

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
.. _topics-http-urls:
2
 
 
3
1
==============
4
2
URL dispatcher
5
3
==============
335
333
You can specify a common prefix in your ``patterns()`` call, to cut down on
336
334
code duplication.
337
335
 
338
 
Here's the example URLconf from the :ref:`Django overview <intro-overview>`::
 
336
Here's the example URLconf from the :doc:`Django overview </intro/overview>`::
339
337
 
340
338
    from django.conf.urls.defaults import *
341
339
 
537
535
 
538
536
    year='2005', foo='bar'
539
537
 
540
 
This technique is used in :ref:`generic views <ref-generic-views>` and in the
541
 
:ref:`syndication framework <ref-contrib-syndication>` to pass metadata and
 
538
This technique is used in :doc:`generic views </ref/generic-views>` and in the
 
539
:doc:`syndication framework </ref/contrib/syndication>` to pass metadata and
542
540
options to views.
543
541
 
544
542
.. admonition:: Dealing with conflicts