On Sep 12, 9:31 am, Daniel Camargo <[email protected]> wrote: > Hi everyone, > I want Trac to manage different kinds of tickets with specific rules. > At first I need to create a special kind (type) of ticket called "Feature". > A feature ticket should have a different set of fields and permissions > (FEATURE_VIEW, FEATURE_CREATE, etc) if compared to a normal defect ticket. > If possible I want it to be accessed throgh a different tipe of link macro > ("FT#10 <http://#>" instead of "#10 <http://#>") > > Thanks in advance. > > Daniel
I think you could do most of what you want fairly easily with a combination of "TypedTicketWorkflow", custom permissions, and probably Master Tickets plugin. Combined with trac's current worflfow/ permission configuration features. the exception being the custom link type. What we do here, we use "feature tickets" with Master tickets and the TypedTicketWorkflow plugin. All our feature tickets happen to begin with "Feature Ticket - ...." for the summary which makes it a bit easier (when you mouse-over #12345 link, you see "Feature ticket....") and provides the "inten" of your special link type for our purposes. We don't use custom tickets, I required TICKET_ADMIN to do specific workflow steps to Feature Ticket type tickets, using the TypedTicketWorkflow capablilites. We add all "sub tickets" of a feature as blocking with master tickets. I personally also choose to give each feature ticket a milestone, so I can use the progressmetermacro right in the ticket description, and also do some roadmap level stuff, but that is a bit retentive. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/trac-users?hl=en -~----------~----~----~----~------~----~------~--~---
