Changeset 8043 for django/trunk/docs/tutorial03.txt
- Timestamp:
- 07/21/08 22:01:21 (5 months ago)
- Files:
-
- django/trunk/docs/tutorial03.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial03.txt
r7294 r8043 442 442 * Django will find the match at ``'^polls/'`` 443 443 * It will strip off the matching text (``"polls/"``) and send the remaining 444 text -- ``"34/"`` -- to the 'mysite.polls.urls' urlconf for444 text -- ``"34/"`` -- to the 'mysite.polls.urls' URLconf for 445 445 further processing. 446 446 447 447 Now that we've decoupled that, we need to decouple the 448 'mysite.polls.urls' urlconf by removing the leading "polls/" from each448 'mysite.polls.urls' URLconf by removing the leading "polls/" from each 449 449 line:: 450 450
