#13087 closed defect (fixed)
Status changes for other operations not handled by ConfigurableTicketWorkflow
Reported by: | Ryan J Ollos | Owned by: | Ryan J Ollos |
---|---|---|---|
Priority: | normal | Milestone: | 1.0.18 |
Component: | ticket system | Version: | |
Severity: | normal | Keywords: | workflow |
Cc: | Branch: | ||
Release Notes: |
|
||
API Changes: | |||
Internal Changes: |
Description (last modified by )
Following changes in #13013, ConfigurableTicketWorkflow
does not make status changes for operations provided by plugins such as AdvancedTicketWorkflowPlugin (issue reported in th:#13484).
This ticket will aim to revert that behavior, while still fixing the issue reported in #13013.
In #13086, the status change behavior will be improved and clarified for the next major release.
Attachments (0)
Change History (10)
comment:1 by , 6 years ago
Milestone: | 1.2.4 → 1.0.18 |
---|
comment:2 by , 6 years ago
Description: | modified (diff) |
---|
comment:3 by , 5 years ago
There's a problem with r16946, possible IndexError
, however it will be fixed with proposed changes that I'll post shortly.
comment:4 by , 5 years ago
Release Notes: | modified (diff) |
---|
comment:5 by , 5 years ago
The Next status will be … hint is not rendered when .operations
is specified.
-
trac/ticket/default_workflow.py
diff --git a/trac/ticket/default_workflow.py b/trac/ticket/default_workflow.py index 4ea7b5caa..04eb95f7a 100644
a b Read TracWorkflow for more information (don't forget to 'wiki upgrade' as well) 329 329 _("The ticket will remain with no owner")) 330 330 elif status == '*': 331 331 label = None # Control won't be created 332 el if not operations:332 else: 333 333 hints.append(_("Next status will be '%(name)s'", name=status)) 334 334 return (label, tag(separated(control, ' ')), 335 335 '. '.join(hints) + '.' if hints else '')
comment:6 by , 5 years ago
I've added comment:5 change and additional test coverage:
- 1.0-stable: [9060dee6a/rjollos.git]
- 1.2-stable: [339298cab/rjollos.git]
- trunk: [084402c65/rjollos.git]
comment:7 by , 5 years ago
Release Notes: | modified (diff) |
---|---|
Status: | assigned → closed |
comment:8 by , 5 years ago
Resolution: | → fixed |
---|
We should fix the issue in 1.0-stable also….