Django

Code

Changeset 7560

Show
Ignore:
Timestamp:
05/29/08 07:02:11 (3 months ago)
Author:
russellm
Message:

Fixed #7191 -- Removed leading slashes in description of the patterns that a URLconf checks when GET data is present. Thanks, andrews.

Files:

Legend:

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

    r7361 r7560  
    158158 
    159159For example, in a request to ``http://www.example.com/myapp/``, the URLconf 
    160 will look for ``/myapp/``. 
     160will look for ``myapp/``. 
    161161 
    162162In a request to ``http://www.example.com/myapp/?page=3``, the URLconf will look 
    163 for ``/myapp/``. 
     163for ``myapp/``. 
    164164 
    165165The URLconf doesn't look at the request method. In other words, all request