Django

Code

Changeset 3939

Show
Ignore:
Timestamp:
10/26/06 21:03:15 (2 years ago)
Author:
adrian
Message:

Fixed #2958 -- Pointed out in docs/modpython.txt that we use <Location> instead of <Directory>

Files:

Legend:

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

    r3210 r3939  
    4343Django mod_python handler." It passes the value of ``DJANGO_SETTINGS_MODULE`` 
    4444so mod_python knows which settings to use. 
     45 
     46Note that we're using the ``<Location>`` directive, not the ``<Directory>`` 
     47directive. The latter is used for pointing at places on your filesystem, 
     48whereas ``<Location>`` points at places in the URL structure of a Web site. 
     49``<Directory>`` would be meaningless here. 
    4550 
    4651Also, if you've manually altered your ``PYTHONPATH`` to put your Django project