diff options
| author | Joseph Kocherhans <joseph@jkocherhans.com> | 2006-05-16 21:07:14 +0000 |
|---|---|---|
| committer | Joseph Kocherhans <joseph@jkocherhans.com> | 2006-05-16 21:07:14 +0000 |
| commit | 63df9c1da6b090ab03a9bb892807914da9e71a17 (patch) | |
| tree | aea301b196bd1c07797a90b49ed3fee8d4acc481 /docs/tutorial03.txt | |
| parent | 64d292e3feeeed336f117d1c40a3b3693c0e89b0 (diff) | |
multi-auth: Merged to [2924]
git-svn-id: http://code.djangoproject.com/svn/django/branches/multi-auth@2925 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial03.txt')
| -rw-r--r-- | docs/tutorial03.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial03.txt b/docs/tutorial03.txt index 9dce729d24..f368d54c53 100644 --- a/docs/tutorial03.txt +++ b/docs/tutorial03.txt @@ -91,7 +91,7 @@ Finally, it calls that ``detail()`` function like so:: The ``poll_id='23'`` part comes from ``(?P<poll_id>\d+)``. Using parenthesis around a pattern "captures" the text matched by that pattern and sends it as an argument to the view function; the ``?P<poll_id>`` defines the name that will be used to -identify the matched pattern; and \d+ is a regular experession to match a sequence of +identify the matched pattern; and ``\d+`` is a regular experession to match a sequence of digits (i.e., a number). Because the URL patterns are regular expressions, there really is no limit on |
