Django

Code

Changeset 602

Show
Ignore:
Timestamp:
09/02/05 12:41:40 (3 years ago)
Author:
adrian
Message:

Added link to request-and-response documentation from tutorial03

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/trunk/docs/tutorial03.txt

    r436 r602  
    5656 
    5757When it finds a match, Django calls the Python callback function, with an 
    58 ``HTTPRequest`` request as the first argument, any "captured" values from the 
     58``HTTPRequest`` object as the first argument, any "captured" values from the 
    5959regular expression as keyword arguments, and, optionally, arbitrary keyword 
    6060arguments from the dictionary (an optional third item in the tuple). 
     61 
     62For more on ``HTTPRequest`` objects, see the `request and response documentation`_. 
    6163 
    6264When you ran ``django-admin.py startproject myproject`` at the beginning of 
     
    111113.. _Wikipedia's entry: http://en.wikipedia.org/wiki/Regular_expression 
    112114.. _Python documentation: http://www.python.org/doc/current/lib/module-re.html 
     115.. _request and response documentation: http://www.djangoproject.com/documentation/request_response/ 
    113116 
    114117Write your first view