Home

Documentation

Project Support

Changes in Version 1 of TracTickets

Author:
trac
Timestamp:
Wed Aug 23 17:34:43 2006

Legend:

Unmodified
Added
Removed
Modified
  • TracTickets

    v0 v1
      1  = The Trac Ticket System = 
      2  [[TracGuideToc]] 
      3   
      4  The Trac issue database provides simple but effective tracking of issues and bugs within a project. 
      5   
      6  As the central project management element of Trac, tickets are used for '''bug reports''',  '''feature requests''', '''software support issues''' and '''project tasks'''.  
      7   
      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. 
      9   
      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.  
      14   
      15  == Ticket Fields == 
      16   
      17  A  ticket contains the following information attributes: 
      18    
      19   * '''Reporter''' - The author of the ticket. 
      20   * '''Component''' - The project module or subsystem this ticket concerns. 
      21   * '''Version''' - Version of the project that this ticket pertains to. 
      22   * '''Severity''' - What are the effects the issue described? Ranges from an ''enhancement'' request to ''blocker'' (must be fixed before next milestone). 
      23   * '''Priority''' - The importance of is the issue relative to other tasks. 
      24   * '''Milestone''' - When this issue should be resolved at the latest. 
      25   * '''Resolution''' - Reason for why a ticket was closed, such as fixed, invalid, duplicate, etc. 
      26   * '''Keywords''' - Keywords that a ticket is marked with.  Useful for searching and report generation. 
      27   * '''Assigned to''' - Principal person responsible for handling the issue. 
      28   * '''Cc''' - A list of other associated people. ''Note: this does '''not''' imply responsibility or any other policy.  
      29   * '''Status''' - What is the current status? 
      30   * '''Summary''' - A brief description summarizing the problem or issue. 
      31   * '''Description''' - The body of the ticket. A good description should be '''specific, descriptive and to the point'''. 
      32   
      33  == Changing and Commenting Tickets == 
      34   
      35  Once a ticket has been entered into Trac, you can at any time change the 
      36  information by '''annotating''' the bug. This means changes and comments to 
      37  the ticket are logged as a part of the ticket itself. 
      38   
      39  When viewing a ticket, this log of changes will appear below the main ticket area. 
      40   
      41  ''In the Trac project, we use ticket comments to discuss issues and 
      42  tasks. This makes understanding the motivation behind a design- or implementation choice easier, when returning to it later.'' 
      43   
      44  '''Note:''' An important feature is being able to use TracLinks and 
      45  WikiFormatting in ticket descriptions and comments. Use TracLinks to refer to 
      46  other issues, changesets or files to make your ticket more specific and easier 
      47  to understand. 
      48   
      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