Changes between Version 4 and Version 5 of TracTicketChangelogPlugin
- Timestamp:
- Jul 2, 2010, 2:25:39 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracTicketChangelogPlugin
v4 v5 5 5 == Description == 6 6 7 This plugin add a code changelog list in ticket. This is done by scanning commit logs ticket number which match a configurable regular expression. Subversion, mercurial, git are tested. 7 This plugin add a changelog list in ticket. 8 9 You do not need to switch from your coding environment to browser and comment ticket for this changeset anymore. 10 11 Just compose you log message following the pattern, then all done. The default pattern is add #ticketid before the log messages. 12 {{{ 13 #ticketid any messages 14 }}} 15 16 This is done by scanning commit logs for ticket number which match a configurable regular expression. 17 18 Subversion, mercurial, git are tested. 8 19 9 20 == Bugs/Feature Requests == … … 59 70 === Usage === 60 71 * make sure you add TICKETLOG_VIEW permission to users 61 * the default commit log pattern is62 {{{63 #ticketid any messages64 }}}65 72 * you can config log_pattern to define your pattern 66 73 … … 69 76 For example, when you commit for ticket #10, the commit log like: 70 77 {{{ 71 #10 blah blah blah78 #10 fixed blog 72 79 }}} 73 80 And you got a revision [1234]. After that, when open ticket #10, you can see a change log list as below.