Ticket #10055: tutorial03.diff

File tutorial03.diff, 816 bytes (added by kgrandis, 15 years ago)
  • docs/intro/tutorial03.txt

     
    117117
    118118Note that these regular expressions do not search GET and POST parameters, or
    119119the domain name. For example, in a request to ``http://www.example.com/myapp/``,
    120 the URLconf will look for ``/myapp/``. In a request to
    121 ``http://www.example.com/myapp/?page=3``, the URLconf will look for ``/myapp/``.
     120the URLconf will look for ``myapp/``. In a request to
     121``http://www.example.com/myapp/?page=3``, the URLconf will look for ``myapp/``.
    122122
    123123If you need help with regular expressions, see `Wikipedia's entry`_ and the
    124124`Python documentation`_. Also, the O'Reilly book "Mastering Regular Expressions"
Back to Top