Edgewall Software

Changes between Version 75 and Version 76 of TracDownload


Ignore:
Timestamp:
Jun 22, 2008, 3:51:55 PM (16 years ago)
Author:
Jonas Borgström
Comment:

Added Trac 0.10.5

Legend:

Unmodified
Added
Removed
Modified
  • TracDownload

    v75 v76  
    2121 * '''FTP''': [ftp://ftp.edgewall.com/pub/trac/Trac-0.11rc2.win32.exe Trac-0.11rc2.win32.exe]
    2222
    23 == Latest Stable Release - 0.10.4 == #LatestStableRelease
     23== Latest Stable Release - 0.10.5 == #LatestStableRelease
    2424
    25 0.10.4 is a bug fix release which fix a few important issues related to the repository cache and everyone is recommended to upgrade their installations.
     250.10.5 is a security and bug fix release which fix a few important issues and everyone is recommended to upgrade their installations.
    2626See ChangeLog for details.
    2727
    2828=== Tar package ===
    29  * '''HTTP''': [http://ftp.edgewall.com/pub/trac/trac-0.10.4.tar.gz trac-0.10.4.tar.gz]
    30  * '''FTP''': [ftp://ftp.edgewall.com/pub/trac/trac-0.10.4.tar.gz trac-0.10.4.tar.gz]
     29 * '''HTTP''': [http://ftp.edgewall.com/pub/trac/trac-0.10.5.tar.gz trac-0.10.5.tar.gz]
     30 * '''FTP''': [ftp://ftp.edgewall.com/pub/trac/trac-0.10.5.tar.gz trac-0.10.5.tar.gz]
    3131
    3232=== Windows Zip package ===
    33  * '''HTTP''': [http://ftp.edgewall.com/pub/trac/trac-0.10.4.zip trac-0.10.4.zip]
    34  * '''FTP''': [ftp://ftp.edgewall.com/pub/trac/trac-0.10.4.zip trac-0.10.4.zip]
     33 * '''HTTP''': [http://ftp.edgewall.com/pub/trac/trac-0.10.5.zip trac-0.10.5.zip]
     34 * '''FTP''': [ftp://ftp.edgewall.com/pub/trac/trac-0.10.5.zip trac-0.10.5.zip]
    3535 
    3636=== Windows installer ===
    37  * '''HTTP''': [http://ftp.edgewall.com/pub/trac/trac-0.10.4.win32.exe trac-0.10.4.win32.exe]
    38  * '''FTP''': [ftp://ftp.edgewall.com/pub/trac/trac-0.10.4.win32.exe trac-0.10.4.win32.exe]
     37 * '''HTTP''': [http://ftp.edgewall.com/pub/trac/trac-0.10.5.win32.exe trac-0.10.5.win32.exe]
     38 * '''FTP''': [ftp://ftp.edgewall.com/pub/trac/trac-0.10.5.win32.exe trac-0.10.5.win32.exe]
    3939
    4040'''Notes:'''
     
    116116
    117117=== Trac ''0.10-stable'' ===
    118 The latest revision for the ''stable'' version of Trac 0.10 (currently Trac [milestone:0.10.5]dev) can be checked out with the following command:
     118The latest revision for the ''stable'' version of Trac 0.10 (currently Trac [milestone:0.10.6]dev) can be checked out with the following command:
    119119
    120120{{{
    121 svn co http://svn.edgewall.org/repos/trac/branches/0.10-stable 0.10.5dev
     121svn co http://svn.edgewall.org/repos/trac/branches/0.10-stable 0.10.6dev
    122122}}}
    123123
    124 For installing this version, we recommend that you choose some well visible place (e.g. `/opt/trac-0.10.5dev`), and override the PYTHONPATH environment variable (or !PythonPath path directive for `mod_python`) by ''preprending'' the `/opt/trac-0.10.5dev/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.
     124For installing this version, we recommend that you choose some well visible place (e.g. `/opt/trac-0.10.6dev`), and override the PYTHONPATH environment variable (or !PythonPath path directive for `mod_python`) by ''preprending'' the `/opt/trac-0.10.6dev/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.
    125125{{{
    126 cd 0.10.5dev
    127 python setup.py install --prefix=/opt/trac-0.10.5dev
     126cd 0.10.6dev
     127python setup.py install --prefix=/opt/trac-0.10.6dev
    128128}}}
    129129then:
    130130{{{
    131 export PYTHONPATH=/opt/trac-0.10.5dev/lib/python2.4/site-packages:$PYTHONPATH
     131export PYTHONPATH=/opt/trac-0.10.6dev/lib/python2.4/site-packages:$PYTHONPATH
    132132}}}
    133133or, in your httpd.conf:
     
    135135<Location /projects/myproject>
    136136  ...
    137   PythonPath "['/opt/trac-0.10.5dev/lib/python2.4/site-packages'] + sys.path"
     137  PythonPath "['/opt/trac-0.10.6dev/lib/python2.4/site-packages'] + sys.path"
    138138  ...
    139139</Location>