Changeset 602
- Timestamp:
- 09/02/05 12:41:40 (3 years ago)
- Files:
-
- django/trunk/docs/tutorial03.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/tutorial03.txt
r436 r602 56 56 57 57 When it finds a match, Django calls the Python callback function, with an 58 ``HTTPRequest`` request as the first argument, any "captured" values from the58 ``HTTPRequest`` object as the first argument, any "captured" values from the 59 59 regular expression as keyword arguments, and, optionally, arbitrary keyword 60 60 arguments from the dictionary (an optional third item in the tuple). 61 62 For more on ``HTTPRequest`` objects, see the `request and response documentation`_. 61 63 62 64 When you ran ``django-admin.py startproject myproject`` at the beginning of … … 111 113 .. _Wikipedia's entry: http://en.wikipedia.org/wiki/Regular_expression 112 114 .. _Python documentation: http://www.python.org/doc/current/lib/module-re.html 115 .. _request and response documentation: http://www.djangoproject.com/documentation/request_response/ 113 116 114 117 Write your first view
