Django

Code

Show
Ignore:
Timestamp:
03/18/08 15:58:39 (10 months ago)
Author:
ubernostrum
Message:

Fixed #6382: Documented request.urlconf

Files:

Legend:

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

    r7294 r7303  
    141141    The raw HTTP POST data. This is only useful for advanced processing. Use 
    142142    ``POST`` instead. 
     143 
     144``urlconf`` 
     145    Not defined by Django itself, but will be read if other code 
     146    (e.g., a custom middleware class) sets it; when present, this will 
     147    be used as the root URLConf for the current request, overriding 
     148    the ``ROOT_URLCONF`` setting. See `How Django processes a 
     149    request`_ for details. 
     150 
     151.. _How Django processes a request: ../url_dispatch/#how-django-processes-a-request 
     152 
    143153 
    144154Methods