Changes between Version 2 and Version 3 of TracTickets
- Timestamp:
- 11/18/04 18:03:00 (20 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TracTickets
v2 v3 1 1 = The Trac Ticket System = 2 [[TracGuideToc]] 2 3 3 The Trac issue database provides simple but effective tracking of issues and bugs within theproject.4 The Trac issue database provides simple but effective tracking of issues and bugs within a project. 4 5 5 6 As the central project management element of Trac, tickets are used for '''bug reports''', '''feature requests''', '''software support issues''' and '''project tasks'''. 6 7 7 As with the TracWiki, this subsystem has been designed with the goal of making user contribution and participation as simple as possible. It should be easyto report bugs, ask questions and suggest improvements.8 As with the TracWiki, this subsystem has been designed with the goal of making user contribution and participation as simple as possible. It should be as easy as possible to report bugs, ask questions and suggest improvements. 8 9 9 An issue is assigned to a person who must resolve it or reassign the ticket to 10 someone else. All tickets can be edited, annotated, assigned, prioritized and 11 discussed at any time. 10 An issue is assigned to a person who must resolve it or reassign the ticket to someone else. 11 All tickets can be edited, annotated, assigned, prioritized and discussed at any time. 12 13 '''Note:''' To make full use of the ticket system, use it as an ''in bucket'' for ideas and tasks for your project, rather than just bug/fault reporting. 12 14 13 15 == Ticket Fields == … … 24 26 * '''Keywords''' - Keywords that a ticket is marked with. Useful for searching and report generation. 25 27 * '''Assigned to''' - Principal person responsible for handling the issue. 26 * '''Cc''' - A list of other associated people. ''note: this does '''not''' imply responsiblity or any other policy. 27 28 * '''Cc''' - A list of other associated people. ''Note: this does '''not''' imply responsibility or any other policy. 28 29 * '''Status''' - What is the current status? 29 30 30 * '''Summary''' - A brief description summarizing the problem or issue. 31 31 * '''Description''' - The body of the ticket. A good description should be '''specific, descriptive and to the point'''. … … 47 47 to understand. 48 48 49 See also: TracGuide, TracWiki 49 '''Note:''' See TracNotification for how to configure email notifications of ticket changes. 50 51 === State Diagram === 52 http://projects.edgewall.com/trac/attachment/wiki/TracTickets/Trac%20Ticket%20State%20Chart%2020040607DF.png?format=raw 53 54 == Advanced: Preset values for New Tickets from URL == 55 56 To create a link to the new-icket form filled with preset values, you need to call the /newticket? URL with variable=value separated by &. 57 58 Possible variables are : 59 60 * '''reporter''' - Name or email of the reporter 61 * '''summary''' - Summary line for the ticket 62 * '''description''' - Long description of the ticket 63 * '''component''' - The component droplist 64 * '''version''' - The version droplist 65 * '''severity''' - The severity droplist 66 * '''keywords''' - The keywords 67 * '''priority''' - The priority droplist 68 * '''milestone''' - The milestone droplist 69 * '''owner''' - The responsable of the ticket 70 * '''cc''' - The list of email for notify the ticket change 71 72 '''Example:''' ''/trac/newticket?summary=Compile%20Error&version=1.0&component=gui'' 73 74 75 See also: TracGuide, TracWiki, TracTicketsCustomFields, TracNotification