Changes between Version 3 and Version 4 of TracTickets
- Timestamp:
- 08/29/18 21:34:48 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracTickets
v3 v4 6 6 As the central project management element of Trac, tickets can be used for '''project tasks''', '''feature requests''', '''bug reports''', '''software support issues''' among others. 7 7 8 As with the TracWiki, this subsystem has been designed with the goal of makinguser contribution and participation as simple as possible.8 As with the TracWiki, this subsystem has been designed to make user contribution and participation as simple as possible. 9 9 10 10 An issue is assigned to a person who must resolve it or reassign the ticket to someone else. All tickets can be edited, annotated, assigned, prioritized and discussed at any time. … … 19 19 * '''Reporter''' — The author of the ticket. 20 20 * '''Type''' — The category of the ticket. The default types are `defect`, `enhancement` and `task`. 21 * '''Component''' — The project module or subsystem th is ticket concerns.21 * '''Component''' — The project module or subsystem that this ticket concerns. 22 22 * '''Version''' — Version of the project that this ticket pertains to. 23 * '''Keywords''' — Keywords that a ticket is marked with. Useful for searching and report generation.24 * '''Priority''' — The importance of this issue, ranging from ''trivial'' to ''blocker''. A dropdown list if differentpriorities are defined.23 * '''Keywords''' — Keywords that a ticket is tagged with. Useful for searching and report generation. 24 * '''Priority''' — The importance of this issue, ranging from ''trivial'' to ''blocker''. A dropdown list when multiple priorities are defined. 25 25 * '''Milestone''' — Due date of when this issue should be resolved. A dropdown list containing the milestones. 26 26 * '''Assigned to/Owner''' — Principal person responsible for handling the issue. … … 34 34 - Versions of Trac prior to 0.9 did not have the ''type'' field, but instead provided a ''severity'' field and different default values for the ''priority'' field. This change was done to simplify the ticket model by removing the somewhat blurry distinction between ''priority'' and ''severity''. However, the old model is still available if you prefer it: just add/modify the default values of the ''priority'' and ''severity'', and optionally hide the ''type'' field by removing all the possible values through [wiki:TracAdmin trac-admin]. 35 35 36 - The [trac:TicketTypes type], [trac:TicketComponent component], version, priority and severity fields can be managed with [wiki:TracAdmin trac-admin] or with the [trac:WebAdmin WebAdmin] plugin.36 - The [trac:TicketTypes type], [trac:TicketComponent component], version, priority and severity fields can be managed with [wiki:TracAdmin trac-admin] or through the !WebAdmin. 37 37 38 - Description of the builtin ''priority'' values is available at [trac:T icketTypes#Whyistheseverityfieldgone TicketTypes]38 - Description of the builtin ''priority'' values is available at [trac:TracDev/Proposals/TicketTypes#Whyistheseverityfieldgone TicketTypes]. 39 39 40 40 == Changing and Commenting Tickets … … 44 44 Then, annotations like changes and comments to the ticket are logged as a part of the ticket itself. When viewing a ticket, the history of changes will appear below the main ticket area. 45 45 46 Comment editing (available since 0.12) is meant to be used to make small corrections to comments, like fixing formatting, forgotten WikiFormatting or spelling errors, not major edits. For longer edits, you should be adding a new comment instead. Editing a comment will not produce a new entry on [/timeline], while entering a new comment or other changes will do.46 Comment editing (available since Trac version 0.12) is meant to be used to make small corrections to comments, like fixing formatting, forgotten WikiFormatting or spelling errors, not major edits. For longer edits, you should be adding a new comment instead. Editing a comment will not produce a new entry on [/timeline], while entering a new comment or other changes will do. 47 47 48 48 All edits (field changes, new comments, comment edits) update the "last changed" time of the ticket. … … 67 67 * `default_owner`: Name of the default owner. If set to the text `< default >` (the default value), the component owner is used. 68 68 69 If any of these options are omitted, the default value will either be the first in the list, or an empty value, depending on whether the field in question is required to be set. Some of these can be chosen through the [trac:WebAdmin WebAdmin] plugin in the "Ticket System" section, others can be set in the [[wiki:TracIni#ticket-section|"[ticket]"]] section in `trac.ini`.69 If any of these options are omitted, the default value will either be the first in the list, or an empty value, depending on whether the field in question is required to be set. Some of these can be chosen through the !WebAdmin in the "Ticket System" section, others can be set in the [[wiki:TracIni#ticket-section|"[ticket]"]] section in `trac.ini`. 70 70 71 71 == Hiding Fields and Adding Custom Fields … … 98 98 99 99 '''Notes:''' 100 - If you need serious flexibility and aren't afraid of a little plugin coding of your own, see [http://trac-hacks.org/wiki/FlexibleAssignToPlugin FlexibleAssignTo].100 - If you need more flexibility and aren't afraid of a little plugin coding of your own, see the [https://trac-hacks.org/wiki/FlexibleAssignToPlugin FlexibleAssignTo plugin]. 101 101 102 102 - Activating this option may cause some performance degradation. Read more about this in the [trac:TracPerformance#Configuration Trac performance] page. … … 121 121 Example: `[/newticket?summary=Compile%20Error&version=1.0&component=gui]` 122 122 123 == Deleting Tickets 124 125 Ticket delete and ticket change delete functions are enabled through an optional component. To enable the functionality edit the [TracIni#components-section "[components]"] section of TracIni: 126 {{{#!ini 127 [components] 128 tracopt.ticket.deleter.* = enabled 129 }}} 130 131 The //Delete// buttons appears next to the //Reply// buttons in the ticket description and ticket change areas. `TICKET_ADMIN` permission is required for deleting tickets and ticket changes. 132 123 133 ---- 124 See also: Trac Guide, TracWiki, TracTicketsCustomFields, TracNotification, TracReports, TracQuery134 See also: TracTicketsCustomFields, TracNotification, TracReports, TracQuery