Ticket #10055: tutorial03.diff
File tutorial03.diff, 816 bytes (added by , 16 years ago) |
---|
-
docs/intro/tutorial03.txt
117 117 118 118 Note that these regular expressions do not search GET and POST parameters, or 119 119 the domain name. For example, in a request to ``http://www.example.com/myapp/``, 120 the URLconf will look for `` /myapp/``. In a request to121 ``http://www.example.com/myapp/?page=3``, the URLconf will look for `` /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/``. 122 122 123 123 If you need help with regular expressions, see `Wikipedia's entry`_ and the 124 124 `Python documentation`_. Also, the O'Reilly book "Mastering Regular Expressions"