Login | Register For Free | Help
Search for: (Advanced)

Mailing List Archive: Trac: Users

Custom tickets manipulation

 

 

Trac users RSS feed   Index | Next | Previous | View Threaded


danielsudpr at gmail

Sep 12, 2009, 7:31 AM

Post #1 of 4 (349 views)
Permalink
Custom tickets manipulation

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

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users [at] googlegroups
To unsubscribe from this group, send email to trac-users+unsubscribe [at] googlegroups
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


yoheeb at gmail

Sep 14, 2009, 11:25 AM

Post #2 of 4 (333 views)
Permalink
Re: Custom tickets manipulation [In reply to]

On Sep 12, 9:31 am, Daniel Camargo <danielsu...@gmail.com> 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 trac-users [at] googlegroups
To unsubscribe from this group, send email to trac-users+unsubscribe [at] googlegroups
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


yoheeb at gmail

Sep 14, 2009, 11:33 AM

Post #3 of 4 (335 views)
Permalink
Re: Custom tickets manipulation [In reply to]

On Sep 14, 1:25 pm, yoheeb <yoh...@gmail.com> wrote:
> On Sep 12, 9:31 am, Daniel Camargo <danielsu...@gmail.com> 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
> MasterTicketsPlugin.  Combined with trac's current worKfLow/
> 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 "intenT" of your special link type for our purposes.
> We don't use custom PERMISSIONS, I required TICKET_ADMIN to do specific
> workflow steps to Feature Ticket type tickets, using the
> TypedTicketWorkflow capabilities.
>
> 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.

wow, my typing was horrible there, sorry for those of you still
getting the typo's out of your burning eyes... some corrections in-
lined above!
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users [at] googlegroups
To unsubscribe from this group, send email to trac-users+unsubscribe [at] googlegroups
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---


danielsudpr at gmail

Sep 14, 2009, 12:58 PM

Post #4 of 4 (331 views)
Permalink
Re: Custom tickets manipulation [In reply to]

That was a nice idea yoheeb, I will take a look at those plugins you
suggested.
I find a way to do what I want but it'll require a lot of coding. I think
your suggestion will be enought for now.

Thank you!


2009/9/14 yoheeb <yoheeb [at] gmail>

>
> On Sep 14, 1:25 pm, yoheeb <yoh...@gmail.com> wrote:
> > On Sep 12, 9:31 am, Daniel Camargo <danielsu...@gmail.com> 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
> > MasterTicketsPlugin. Combined with trac's current worKfLow/
> > 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 "intenT" of your special link type for our purposes.
> > We don't use custom PERMISSIONS, I required TICKET_ADMIN to do specific
> > workflow steps to Feature Ticket type tickets, using the
> > TypedTicketWorkflow capabilities.
> >
> > 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.
>
> wow, my typing was horrible there, sorry for those of you still
> getting the typo's out of your burning eyes... some corrections in-
> lined above!
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Trac Users" group.
To post to this group, send email to trac-users [at] googlegroups
To unsubscribe from this group, send email to trac-users+unsubscribe [at] googlegroups
For more options, visit this group at http://groups.google.com/group/trac-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Trac users RSS feed   Index | Next | Previous | View Threaded
 
 


Interested in having your list archived? Contact Gossamer Threads
 
  Web Applications & Managed Hosting Powered by Gossamer Threads Inc.