Changes between Version 18 and Version 19 of TracTicketChangelogPlugin


Ignore:
Timestamp:
Sep 26, 2014, 7:50:40 AM (10 years ago)
Author:
Ryan J Ollos
Comment:

New style markup.

Legend:

Unmodified
Added
Removed
Modified
  • TracTicketChangelogPlugin

    v18 v19  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Show ticket relative changelogs =
     3= Show ticket relative changelogs
    44
    5 == Description ==
     5== Description
    66
    77This plugin add a changelog list in ticket.
     
    1818Subversion, mercurial, git are tested.
    1919
    20 === mercurial ===
     20=== Mercurial
    2121For 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.
    2222
    23 === git ===
     23=== Git
    2424For git backend, according to #7746, you should add following config to git section:
    2525{{{#!ini
     
    3030You might need to run `trac-admin repository resync` after the change.
    3131
    32 == Example ==
     32== Example
    3333
    3434For example, when you commit for ticket #10, the commit log like:
     
    4040[[Image(ticketlog.png)]]
    4141
    42 == Bugs/Feature Requests ==
     42== Bugs/Feature Requests
    4343
    4444Existing bugs and feature requests for TracTicketChangelogPlugin are
     
    4848[http://trac-hacks.org/newticket?component=TracTicketChangelogPlugin&owner=richard new ticket].
    4949
    50 == Download ==
     50== Download
    5151
    5252Download the zipped source from [download:tracticketchangelogplugin here].
    5353
    54 == Source ==
     54== Source
    5555
    5656You can check out TracTicketChangelogPlugin from [http://trac-hacks.org/svn/tracticketchangelogplugin here] using Subversion, or [source:tracticketchangelogplugin browse the source] with Trac.
    5757
    58 == Install ==
    59  You can install this software as normal Trac plugin.
     58== Install
     59You can install this plugin following the standard procedures described in [wiki:TracPlugins#InstallingaTracplugin].
    6060
    6161 1. Uninstall TracTicketChangelogPlugin if you have installed before.
    62 
    63  2. Change to the directory containning setup.py.
     62 1. Change to the directory containning setup.py.
    6463  * (Optional): If you are using Trac 0.12 with i18n, you should compile language files here:
    6564 {{{#!sh
    6665python setup.py compile_catalog -f
    6766}}}
    68 
    69  3. If you want to install this plugin globally, that will install this plugin to the python path:
     67 1. If you want to install this plugin globally, that will install this plugin to the python path:
    7068  * python setup.py install
    71 
    72  4. If you want to install this plugin to trac instance only:
     69 1. If you want to install this plugin to trac instance only:
    7370  * python setup.py bdist_egg
    7471  * copy the generated egg file to the trac instance's plugin directory
     
    7673cp dist/*.egg /srv/trac/env/plugins
    7774}}}
    78 
    79  5. Config trac.ini:
    80   {{{#!ini
     75 1. Config trac.ini:
     76 {{{#!ini
    8177[components]
    8278ticketlog.* = enabled
     
    8985}}}
    9086
    91 === Usage ===
    92  * make sure you add TICKETLOG_VIEW permission to users
     87=== Usage
     88 * make sure you add `TICKETLOG_VIEW` permission to users
    9389 * you can config log_pattern to define your pattern.[[br]]
    9490   `%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+.*`.
    9591
    96 == Recent Changes ==
     92== Recent Changes
    9793
    9894[[ChangeLog(tracticketchangelogplugin, 3)]]
    9995
    100 == Author/Contributors ==
     96== Author/Contributors
    10197
    10298'''Author:''' [wiki:richard] [[BR]]