tags:

views:

42

answers:

3

Sometimes an issue can't be resolved until someone else does something, or until some event occurs. Is there an add-on for trac that adds a field for these situations?

+1  A: 

Have you seen the MasterTickets plugin? It adds a "blocked by" field, which is the equivalent of "waiting on". This is for dependencies between bugs, where Bug 101 can't be solved until Bug 102 is.

Matthew Flaschen
Cool! But I don't think it want it to be dependent on other *tickets*. I'm thinking more about "waiting for email reply from XXX"
Mark
+1  A: 

I use a needinfo keyword for such issues.

Pascal Thivent
+1  A: 

Look at AdvancedTicketWrokflowPlugin on trac-hacks. You can use set_owner_to_previous and set_status_to_previous to implement a needinfo state in your ticket workflow. In fact, a needinfo action is the example given on that page.

Disclosure: I wrote the AdvancedTicketWorkflowPlugin and am a Trac developer.

retracile