Django

Code

Changeset 4638

Show
Ignore:
Timestamp:
02/27/07 14:11:26 (2 years ago)
Author:
jacob
Message:

Fixed #3598: Added a note about the precedence of URL matches versus extra kwargs in URL patterns. Thanks, Ubernostrum.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/url_dispatch.txt

    r4420 r4638  
    391391.. _syndication framework: ../syndication/ 
    392392 
     393.. admonition:: Dealing with conflicts 
     394 
     395    It's possible to have a URL pattern which captures named keyword arguments, 
     396    and also passes arguments with the same names in its dictionary of extra 
     397    arguments. When this happens, the arguments in the dictionary will be used 
     398    instead of the arguments captured in the URL. 
     399 
    393400Passing extra options to ``include()`` 
    394401--------------------------------------