Edgewall Software

Changes between Version 5 and Version 6 of CommitTicketUpdater


Ignore:
Timestamp:
Mar 15, 2011, 1:40:20 PM (13 years ago)
Author:
Floris Lambrechts <floris.lambrechts@…>
Comment:

Syntax examples

Legend:

Unmodified
Added
Removed
Modified
  • CommitTicketUpdater

    v5 v6  
    1414=== Location ===
    1515The `CommitTicketUpdater` component lives in `source:trunk/tracopt/ticket/commit_updater.py` and is maintained alongside the Trac core. It's included with every Trac installation as a plugin, but is not enabled by default because it's rooted in the `tracopt.` packages and not in `trac.`.   Therefore it needs to be explicitly activated (e.g. trough the Admin interface).
     16
     17=== Syntax ===
     18The basic syntax is of the form `[command] [ticketreference]`. A colon between the command and the ticket reference is allowed. The ticketreference also allows to list //multiple// ticket numbers separated by spaces and/or comma.
     19
     20You can use the following commands:
     21* To **close** a ticket: //close//, //closed//, //closes//, //fix//, //fixed//, //fixes//
     22* To **reference** a ticket: //addresses//, //re//, //references//, //refs//, //see//
     23
     24You can optionally refer to tickets with the following words
     25* //ticket//, //issue//, //bug//
     26
     27Examples:
     28* `close #10`
     29* `closed: #10`
     30* `closes ticket #10`
     31* `fixes #10`
     32* `fixes bug: #10`
     33* `see #5`
     34* `references #5, #6`
     35* `fixes #10 #11`