Version 28 (modified by 6 years ago) (diff) | ,
---|
Contents
Show ticket relative changelogs
Description
This plugin adds a changelog list in a Trac ticket. You do not need to switch from your coding environment to your browser and your comment ticket anymore to see this changeset.
Just compose your log message following the pattern. The default pattern is add #ticketid before the log messages.
#ticketid any messages
This is done by scanning commit logs for the ticket number which match a configurable regular expression.
Tested with Subversion, Mercurial and Git.
Mercurial
For mercurial backend, since TracMecurial does not support repository cache yet, you should install TracMercurialChangesetPlugin to generate the repository cache.
Git
For git backend, according to #7746, you should add following config to git section in the trac.ini
file:
[git] cached_repository = true persistent_cache = true
You might need to run trac-admin repository resync
after the change.
Example
For example, when you commit for ticket #10, the commit log like:
#10 fixed blog
And you got a revision [1234]. After that, when open ticket #10, you can see a change log list:
Bugs/Feature Requests
Existing bugs and feature requests for TracTicketChangelogPlugin are here.
If you have any issues, create a new ticket.
defect |
26 / 26 |
|
---|---|---|
enhancement |
6 / 6 |
|
task |
0 / 1 |
Download
Download the zipped source from here.
Source
You can check out TracTicketChangelogPlugin from here using Subversion, or browse the source with Trac.
Installation
You can install this plugin following the standard procedures described in TracPlugins.
- Uninstall TracTicketChangelogPlugin if you have installed it before.
- Change to the directory containning setup.py.
- (Optional): If you have Babel installed and would like to have translations available:
python setup.py compile_catalog -f
- (Optional): If you have Babel installed and would like to have translations available:
- If you want to install this plugin globally, that will install this plugin to the Python path:
- python setup.py install
- If you want to install this plugin to the Trac instance only:
- python setup.py bdist_egg
- copy the generated egg file to the trac instance's plugin directory
cp dist/*.egg /srv/trac/env/plugins
- Add the following to the
trac.ini
file in the components section:[components] ticketlog.* = enabled [ticketlog] ; optional: custom your log message pattern log_pattern = ^\s*#%s[:\s]+.*$ ; optional: set log message's max length, default is no limit log_message_maxlength = 100
Configuration
- You can configure the log_pattern to define your pattern.
%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+.*
.(?:\n|[^#])*#%s(?:\D|$)
matches ticket references in the form#xyz
anywhere in the commit message.
See comment:5:ticket:7884
Recent Changes
- 18070 by rjollos on 2021-03-16 21:50:56
-
TracTicketChangelogPlugin 1.2.0.1dev: Extract messages on
bdist_*
command
Patch by Jun Omae.
Fixes #13969.
- 18038 by rjollos on 2021-03-03 18:44:11
-
TracTicketChangelogPlugin 1.2.0.1dev: Bump version after release
Refs #13965.
- 18033 by rjollos on 2021-03-02 17:09:23
-
TracTicketChangelogPlugin 1.2.0dev: Extract messages
Remove
templates
path fromITemplateProvider
impl
Refs #13965.
(more)
Author/Contributors
Author: richard
Maintainer: Ryan J Ollos
Contributors: hasienda, jun66j5
Attachments (1)
- ticketlog.png (7.6 KB) - added by 13 years ago.
Download all attachments as: .zip