raimue / trac-configurable-ctu

An extension of Trac's CommitTicketUpdater with a configurable ticket_prefix

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Trac - Configurable CommitTicketUpdater

Features

This Trac plugin performs the same tasks as Trac's CommitTicketUpdater but gives you the option of changing the regular expression it uses to find tickets in commit messages. This is useful if a different party already claims Trac's standard ticket syntax, for example when you are using GitHub.

Requirements

trac_configurable_ctu requires Trac ~= 1.0.

To install trac_configurable_ctu, use the included setup.py, for example using pip install in a directory with the code.

Setup

trac_configurable_ctu contains two plugins:

  • ConfigurableCommitTicketUpdater, and
  • ConfigurableCommitTicketReferenceMacro

Both are required for trac_configurable_ctu to work correctly.

Edit your trac.ini as follows to enable and configure both plugins:

[components]
trac_configurable_ctu.ConfigurableCommitTicketReferenceMacro = enabled
trac_configurable_ctu.ConfigurableCommitTicketUpdater = enabled

[ticket]
commit_ticket_update_ticket_prefix = (?:trac-ticket(?:[: ]+)?)

Note that the regular expression to match ticket expressions must not include the ticket number (which is expected right after the regular expression) and must not create capturing groups.

Development

In a virtualenv, install the requirements:

pip install trac
pip install tox
pip install -e .

Run pylint with

tox -e pylint 

Changelog

1.0

  • Public release.

License

This plugin is released under the BSD-2-Clause license.

It was initially written for MacPorts' Trac.

About

An extension of Trac's CommitTicketUpdater with a configurable ticket_prefix

License:Other


Languages

Language:Python 100.0%