Django

Code

Show
Ignore:
Timestamp:
11/29/07 23:20:27 (1 year ago)
Author:
adrian
Message:

Edited docs/modpython.txt changes from [6536]

Files:

Legend:

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

    r6630 r6771  
    9090.. note:: 
    9191 
    92     If you're using Windows, it is still recommended that you use forward 
    93     slashes in the pathnames, even though Windows normally uses backslashes 
    94     for its native separator. Apache knows how to convert from the forward 
    95     slash format to the native format, so this approach is portable and easier 
    96     to read (it avoids tricky problems with having to double-escape 
    97     backslashes). 
     92    If you're using Windows, we still recommended that you use forward 
     93    slashes in the pathnames, even though Windows normally uses the backslash 
     94    character as its native separator. Apache knows how to convert from the 
     95    forward slash format to the native format, so this approach is portable and 
     96    easier to read. (It avoids tricky problems with having to double-escape 
     97    backslashes.) 
    9898 
    9999    This is valid even on a Windows system:: 
    100100 
    101101        PythonPath "['c:/path/to/project'] + sys.path" 
    102  
    103102 
    104103You can also add directives such as ``PythonAutoReload Off`` for performance.