Edgewall Software

Changes between Version 55 and Version 56 of TracTickets


Ignore:
Timestamp:
Mar 1, 2011, 8:05:35 PM (13 years ago)
Author:
Christian Boos
Comment:

mention the need to check for local ticket creation and editing policy (#10051), plus a quick clean-up of the scattered notes

Legend:

Unmodified
Added
Removed
Modified
  • TracTickets

    v55 v56  
    55The Trac ticket database provides simple but effective tracking of issues and bugs within a project.
    66
    7 As the central project management element of Trac, tickets are used for '''project tasks''', '''feature requests''', '''bug reports''' and '''software support issues'''.
     7As the central project management element of Trac, tickets can be used for '''project tasks''', '''feature requests''', '''bug reports''' and '''software support issues'''.
    88
    99As 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.
     
    1111An issue is assigned to a person who must resolve it or reassign the ticket to someone else.
    1212All tickets can be edited, annotated, assigned, prioritized and discussed at any time.
     13
     14[=#edit-permissions]
     15However, some Trac installations may put restrictions in place about who can change what. For example, the default installation doesn't permit to non-authenticated users ("anonymous" users) to change anything, even to comment on an issue, for obvious spam prevention reasons. Check the local contributing policy, which you can usually find on the front page WikiStart, or contact your local Trac administrator.
    1316
    1417== Ticket Fields ==
     
    3336 * '''Description''' — The body of the ticket. A good description should be specific, descriptive and to the point.
    3437
    35 '''Note:''' 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].
     38'''Notes:'''
     39 - 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].
    3640
    37 '''Note:''' 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.
     41 - 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.
    3842
    39 '''Note:''' Description of the builtin ''priority'' values is available at [trac:TicketTypes#Whyistheseverityfieldgone TicketTypes]
     43 - Description of the builtin ''priority'' values is available at [trac:TicketTypes#Whyistheseverityfieldgone TicketTypes]
    4044
    4145== Changing and Commenting Tickets ==
     
    4347Once a ticket has been entered into Trac, you can at any time change the
    4448information by '''annotating''' the bug. This means changes and comments to
    45 the ticket are logged as a part of the ticket itself.
     49the ticket are logged as a part of the ticket itself.
     50As already mentioned [#edit-permissions above], you'll however need the appropriate permissions for doing so.
    4651
    4752When viewing a ticket, the history of changes will appear below the main ticket area.
     
    5156when returning to it later.''
    5257
    53 '''Note:''' An important feature is being able to use TracLinks and
    54 WikiFormatting in ticket descriptions and comments. Use TracLinks to refer to
    55 other issues, changesets or files to make your ticket more specific and easier
    56 to understand.
     58'''Notes:'''
     59 - An important feature is being able to use TracLinks and
     60   WikiFormatting in ticket descriptions and comments. Use TracLinks to refer to
     61   other issues, changesets or files to make your ticket more specific and easier
     62   to understand.
    5763
    58 '''Note:''' See TracNotification for how to configure email notifications of ticket changes.
     64 - See TracNotification for how to configure email notifications of ticket changes.
    5965
    60 '''Note:''' See TracWorkflow for information about the state transitions (ticket lifecycle), and how this workflow can be customized.
     66 - See TracWorkflow for information about the state transitions (ticket lifecycle), and how this workflow can be customized.
    6167
    6268== Default Values for Drop-Down Fields ==
     
    8894To appear in the dropdown list, a user needs be registered with the project, ''i.e.'' a user session should exist in the database. Such an entry is automatically created in the database the first time the user submits a change in the project, for example when editing the user's details in the ''Settings'' page, or simply by authenticating if the user has a login. Also, the user must have `TICKET_MODIFY` [TracPermissions permissions].
    8995
    90 '''Note:''' See [http://pacopablo.com/wiki/pacopablo/blog/set-assign-to-drop-down Populating Assign To Drop Down] on how to add user entries at database level
     96'''Notes:'''
     97 - See [http://pacopablo.com/wiki/pacopablo/blog/set-assign-to-drop-down Populating Assign To Drop Down] on how to add user entries at database level
    9198
    92 '''Note 2:''' 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] (disclosure: I'm the author)
     99 - 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] (disclosure: I'm the author)
    93100
    94 '''Note 3:''' Activating this option may cause some performance degradation, read more about this in the [trac:TracPerformance#Configuration Trac performance] page.
     101 - Activating this option may cause some performance degradation, read more about this in the [trac:TracPerformance#Configuration Trac performance] page.
    95102
    96103== Preset Values for New Tickets ==
    97104
    98 To create a link to the new-ticket form filled with preset values, you need to call the `/newticket?` URL with variable=value separated by &.
     105To create a link to the new-ticket form filled with preset values, you need to call the `/newticket?` URL with `variable=value` separated by `&`.
    99106
    100107Possible variables are :
     
    113120 * '''cc''' — The list of emails for notifying about the ticket change
    114121
    115 '''Example:''' ''/trac/newticket?summary=Compile%20Error&version=1.0&component=gui''[[BR]]
     122Example: ''`[/newticket?summary=Compile%20Error&version=1.0&component=gui]`''[[BR]]
    116123
    117124----