Edgewall Software

Changes between Version 62 and Version 63 of TracDownload


Ignore:
Timestamp:
Jan 15, 2007, 3:50:56 PM (17 years ago)
Author:
Christian Boos
Comment:

Replaced 0.10.3dev by 0.10.4dev in #Tracstable section

Legend:

Unmodified
Added
Removed
Modified
  • TracDownload

    v62 v63  
    7474
    7575=== Trac ''stable'' ===
    76 The latest revision for the ''stable'' version of Trac (currently Trac [milestone:0.10.3]dev) can be checked out with the following command:
     76The latest revision for the ''stable'' version of Trac (currently Trac [milestone:0.10.4]dev) can be checked out with the following command:
    7777
    7878{{{
    79 svn co http://svn.edgewall.org/repos/trac/branches/0.10-stable 0.10.3dev
     79svn co http://svn.edgewall.org/repos/trac/branches/0.10-stable 0.10.4dev
    8080}}}
    8181
    82 For installing this version, we recommend that you choose some well visible place (e.g. `/opt/trac-0.10.3dev`), and override the PYTHONPATH environment variable (or !PythonPath path directive for `mod_python`) by ''preprending'' the `/opt/trac-0.10.3dev/lib/python2.4/site-packages` path (replace 2.4 by the Python version that you actually use). That way, you minimize the risk of interferences with the packaged Trac version you probably already have.
     82For installing this version, we recommend that you choose some well visible place (e.g. `/opt/trac-0.10.4dev`), and override the PYTHONPATH environment variable (or !PythonPath path directive for `mod_python`) by ''preprending'' the `/opt/trac-0.10.4dev/lib/python2.4/site-packages` path (replace 2.4 by the Python version that you actually use). That way, you minimize the risk of interferences with the packaged Trac version you probably already have.
    8383{{{
    84 cd 0.10.3dev
    85 python setup.py install --prefix=/opt/trac-0.10.3dev
     84cd 0.10.4dev
     85python setup.py install --prefix=/opt/trac-0.10.4dev
    8686}}}
    8787then:
    8888{{{
    89 export PYTHONPATH=/opt/trac-0.10.3dev/lib/python2.4/site-packages:$PYTHONPATH
     89export PYTHONPATH=/opt/trac-0.10.4dev/lib/python2.4/site-packages:$PYTHONPATH
    9090}}}
    9191or, in your httpd.conf:
     
    9393<Location /projects/myproject>
    9494  ...
    95   PythonPath "['/opt/trac-0.10.3dev/lib/python2.4/site-packages'] + sys.path"
     95  PythonPath "['/opt/trac-0.10.4dev/lib/python2.4/site-packages'] + sys.path"
    9696  ...
    9797</Location>