Edgewall Software

Changes between Version 269 and Version 270 of TracInstall


Ignore:
Timestamp:
Feb 13, 2009, 10:47:41 AM (15 years ago)
Author:
Christian Boos
Comment:

fixing spelling of Trac

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v269 v270  
    178178 * TracModPython if you use the mod_python method.
    179179
    180 == Automatic reference to the SVN changesets in TRAC tickets ==
     180== Automatic reference to the SVN changesets in Trac tickets ==
    181181
    182182You can configure SVN to automatically add a reference to the changeset into the ticket comments, whenever files are committed to the repository. The description of the commit needs to contain one of the following formulas:
     
    184184 * '''Fixes #123''' - to reference this changeset and close #123 ticket with the default status ''fixed''
    185185
    186 All you have to do is to edit the ''post-commit'' hook in your SVN repository and make it execute ''trac-post-commit-hook'' coming with TRAC.
     186All you have to do is to edit the ''post-commit'' hook in your SVN repository and make it execute ''trac-post-commit-hook'' coming with Trac.
    187187
    188188If you are editing the ''post-commit'' hook for the first time you need to navigate to your SVN repository's hooks subfolder and rename existing there ''post-commit'' template:
     
    193193}}}
    194194
    195 Next open it in any text editor and add a line with path to the TRAC environment connected with this SVN repository and another line executing the ''trac-post-commit-hook'' script:
     195Next open it in any text editor and add a line with path to the Trac environment connected with this SVN repository and another line executing the ''trac-post-commit-hook'' script:
    196196
    197197{{{
     
    203203}}}
    204204
    205 Make sure that ''trac-post-commit-hook'' exists in above path with execution permissions for the same user which SVN is running from. This script can be found in contrib subfolder of your TRAC distribution and the latest version can be always downloaded from [source:trunk/contrib/trac-post-commit-hook].
    206 
    207 '''UBUNTU 8.04.2 Hardy Note:''' the default package installs trac-post-commit-hook under /usr/share/doc/trac/contrib path. Unfortunately this script is not working correctly with TRAC 0.11 and you need to download the latest version from [source:0.11-stable/contrib/trac-post-commit-hook].
     205Make sure that ''trac-post-commit-hook'' exists in above path with execution permissions for the same user which SVN is running from. This script can be found in contrib subfolder of your Trac distribution and the latest version can be always downloaded from [source:trunk/contrib/trac-post-commit-hook].
     206
     207'''UBUNTU 8.04.2 Hardy Note:''' the default package installs trac-post-commit-hook under /usr/share/doc/trac/contrib path. Unfortunately this script is not working correctly with Trac 0.11 and you need to download the latest version from [source:0.11-stable/contrib/trac-post-commit-hook].
    208208
    209209== Platform-specifics installations ==
     
    224224----
    225225See also:  TracInstallPlatforms, TracGuide, TracCgi, TracFastCgi, TracModPython, [wiki:TracModWSGI], TracUpgrade, TracPermissions
    226