Changes between Version 2 and Version 3 of TracInstall

Show
Ignore:
Timestamp:
08/11/09 08:16:13 (12 years ago)
Author:
trac
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TracInstall

    v2 v3  
    77 
    88== Short - Install a released version == 
    9 For the quick install, make sure you have [http://python.org Python-2.5], [http://peak.telecommunity.com/DevCenter/EasyInstall#installing-easy-install easy_install] and SQlite-3.3.4 installed (or above). 
     9For the quick install, make sure you have [http://python.org Python-2.5], [http://peak.telecommunity.com/DevCenter/EasyInstall#installing-easy-install easy_install] and SQlite-3.3.4 installed (or above). (You also might want to install python-dev to build genshi) 
    1010{{{ 
    1111sudo easy_install Trac 
     
    176176 * TracModPython if you use the mod_python method. 
    177177 
    178 == Trac 0.11 & SVN on Mac OS X Leopard (10.5) == 
    179  
    180  * [trac:TracOnLeopardServer TracOnLeopardServer] 
     178== Automatic reference to the SVN changesets in Trac tickets == 
     179 
     180You 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: 
     181 * '''Refs #123''' - to reference this changeset in #123 ticket 
     182 * '''Fixes #123''' - to reference this changeset and close #123 ticket with the default status ''fixed'' 
     183 
     184All 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. 
     185 
     186If 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: 
     187 
     188{{{ 
     189$ cd /path/to/svn/repository/hooks 
     190$ mv post-commit.tmpl post-commit 
     191$ chmod 755 post-commit 
     192}}} 
     193 
     194Next 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: 
     195 
     196{{{ 
     197REPOS="$1" 
     198REV="$2" 
     199TRAC_ENV="/path/to/your/trac/project" 
     200 
     201/usr/bin/python /usr/local/bin/trac-post-commit-hook -p "$TRAC_ENV" -r "$REV" 
     202}}} 
     203 
     204Make 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]. 
     205 
     206 
     207== Platform-specifics installations == 
     208 
     209 * See [trac:TracInstallPlatforms TracInstallPlatforms] 
     210  
    181211 
    182212== Using Trac == 
     
    191221 
    192222---- 
    193 See also:  TracGuide, TracCgi, TracFastCgi, TracModPython, [wiki:TracModWSGI], TracUpgrade, TracPermissions 
    194  
     223See also:  TracInstallPlatforms, TracGuide, TracCgi, TracFastCgi, TracModPython, [wiki:TracModWSGI], TracUpgrade, TracPermissions