Edgewall Software

Changes between Version 16 and Version 17 of TracModPython


Ignore:
Timestamp:
Mar 4, 2005, 3:55:43 AM (19 years ago)
Author:
HumbertoDiogenes
Comment:

Warning for versions ≥ 0.9

Legend:

Unmodified
Added
Removed
Modified
  • TracModPython

    v16 v17  
    44
    55Be sure to grab mod_python 3.1.3 and later for ''SetHandler'' ''mod_python'' directive to work.  Also, older versions may generate an internal error.  [http://projects.edgewall.com/trac/ticket/1090 #1090]
     6
     7== Trac >= 0.9 ==
     8
     9  In the examples below, if you are using any version greater than 0.8 then replace this line:
     10
     11{{{
     12   PythonHandler trac.ModPythonHandler
     13}}}
     14
     15  With this one:
     16
     17{{{
     18   PythonHandler trac.web.modpython_frontend
     19}}}
    620
    721== Simple configuration ==