Changes between Version 19 and Version 20 of TracTicketChangelogPlugin


Ignore:
Timestamp:
Mar 13, 2015, 12:20:01 PM (9 years ago)
Author:
figaro
Comment:

Cosmetic changes, tagged with license

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketChangelogPlugin

    v19 v20  
    1919
    2020=== Mercurial
    21 For mercurial backend, since [http://trac.edgewall.org/ticket/8417 TracMecurial did not support repository cache] yet, you should install [http://github.com/maraujop/TracMercurialChangesetPlugin TracMercurialChangesetPlugin] to generate repository cache.
     21
     22For mercurial backend, since [http://trac.edgewall.org/ticket/8417 TracMecurial did not support repository cache] yet, you should install [http://github.com/maraujop/TracMercurialChangesetPlugin TracMercurialChangesetPlugin] to generate the repository cache.
    2223
    2324=== Git
    24 For git backend, according to #7746, you should add following config to git section:
     25
     26For git backend, according to #7746, you should add following config to git section in the `trac.ini` file:
    2527{{{#!ini
    2628[git]
     
    2830persistent_cache = true
    2931}}}
     32
    3033You might need to run `trac-admin repository resync` after the change.
    3134
     
    5659You can check out TracTicketChangelogPlugin from [http://trac-hacks.org/svn/tracticketchangelogplugin here] using Subversion, or [source:tracticketchangelogplugin browse the source] with Trac.
    5760
    58 == Install
     61== Installation
     62
    5963You can install this plugin following the standard procedures described in [wiki:TracPlugins#InstallingaTracplugin].
    6064
     
    6266 1. Change to the directory containning setup.py.
    6367  * (Optional): If you are using Trac 0.12 with i18n, you should compile language files here:
    64  {{{#!sh
     68{{{#!sh
    6569python setup.py compile_catalog -f
    6670}}}
     
    7377cp dist/*.egg /srv/trac/env/plugins
    7478}}}
    75  1. Config trac.ini:
    76  {{{#!ini
     79 1. Add the following to the `trac.ini` file in the components section:
     80{{{#!ini
    7781[components]
    7882ticketlog.* = enabled
     
    8690
    8791=== Usage
    88  * make sure you add `TICKETLOG_VIEW` permission to users
    89  * you can config log_pattern to define your pattern.[[br]]
     92
     93 * Make sure you add `TICKETLOG_VIEW` permission to users.
     94 * You can configure the log_pattern to define your pattern:[[br]]
    9095   `%s` in the pattern will be replaced with the referenced ticket number (e.g. 12345), so `\s*#%s+\s+.*` will be evaluated as `\s*#12345+\s+.*`.
    9196