Edgewall Software
Modify

Opened 19 years ago

Closed 16 years ago

Last modified 16 years ago

#869 closed defect (fixed)

Cumulative patch: New workflow system for tickets in Trac

Reported by: pkou@… Owned by: Alec Thomas
Priority: high Milestone: 0.11
Component: ticket system Version: devel
Severity: critical Keywords: workflow
Cc: addy.bhardwaj@…, pkou@…, nvihinen@…, dserodio@…, swalker@…, martin.d.johansson@…, tracissue@…, mrovner@…, ciaran.hennessy@…, dmlee@…, vyt@…, gytis@…, bene@…, maze@…, guillaume.tardif@…, barry.kaplan@…, shishz@…, trac@…, nicpottier@…, nick+trac@…, number5@…, nwhite@…, mjh-trac-tickets@…, rob.duncan@…, rmota@…, seemant@…, junk@…, fonolit@…, rhind@…, kevin@…, wfragg@…, rapin.s@…, trac.tickets@…, ged-trac-workflow@…, dombly@…, avif@…, d-sleeman@…, sstarr@…, deepak.jois@…, ronald.berger@…, yellen@…, sgeertgens@…, trac@…, e@…, trac.20.nickread@…, martin.marcher@…, pradeep.varadarajan@…, mmay@…, sdyson@…, peter.valtersson@…, sungje@… Branch:
Release Notes:
API Changes:
Internal Changes:

Description

A new workflow system is proposed (including implementation). See NewWorkflow for details. It includes the patch and comprehensive description of the changes.

Related tickets: #563, #301 (probably more).

IMHO it is one of most important features that need to be added to Trac.

Attachments (2)

patch-customworkflow-r1064.diff (24.3 KB ) - added by pkou <pkou at ua.fm> 19 years ago.
Support customized workflows in Trac
patch-customworkflow-r1098-2.diff (31.0 KB ) - added by pkou <pkou at ua.fm> 19 years ago.
Patch for the changes: Synchonized with trunk, changed according to comments on previous implementation

Download all attachments as: .zip

Change History (116)

comment:1 by pkou <pkou at ua.fm>, 19 years ago

The patch in NewWorkflow has been updated and changes not related to workflow system have been removed (they have been registered as separate tickets #877, #878, #879, and #880).

I do not see anything that can be simplified or improved for now. Thus, I am waiting for comments from Trac development team.

I would not like to apply the patch to my real projects because it changes database structure. Until I get a feedback, there is a risk than next database change will break compatibility between Trac code and NewWorkflow code.

Thoughts?

comment:2 by Christopher Lenz, 19 years ago

First a couple of random thoughts on the proposal:

The one thing that I think is dangerous is that the workflow_version option is a pretty big switch that goes through the code-base, i.e. the "if workflow_version..." conditionals are too distributed.

Object-oriented programming theory says to use polymorphism instead of conditionals, so how about something like:

class SimpleWorkflow:

    def available_actions(self, ticket):
        if ticket['status'] in ['new', 'reopened']:
            actions = [ 'accept', 'reassign', 'resolve' ]
        elif ticket['status'] == 'assigned':
            actions = [ 'reassign', 'resolve' ]
        elif ticket['status'] == 'closed':
            actions = [ 'reopen' ]

    def ticket_changed(self, ticket, user, action, args):
        if action == 'accept':
            ticket['status'] =  'assigned'
            ticket['owner'] = user or ''
        if action == 'resolve':
            ticket['status'] = 'closed'
            ticket['resolution'] = args.get('resolve_resolution')
        elif action == 'reassign':
            ticket['owner'] = args.get('reassign_owner')
            ticket['status'] = 'new'
        elif action == 'reopen':
            ticket['status'] = 'reopened'
            ticket['resolution'] = ''


class ExtendedWorkflow:

   def get_actions(self, ticket, user):
        if ticket['status'] in ['new', 'reopened']:
            actions = [ 'accept', 'reassign', 'resolve' ]
        elif ticket['status'] == 'assigned':
            actions = [ 'reassign', 'resolve' ]
        elif ticket['status'] == 'resolved':
            actions = [ 'reopen', 'verify' ]
        elif ticket['status'] == 'verified':
            actions = [ 'reopen', 'close' ]
        elif ticket['status'] == 'closed':
            actions = [ 'reopen' ]

    def do_action(self, ticket, user, action, arg):
        if action == 'accept':
            ticket['status'] = 'assigned'
            ticket['owner'] = user or ''
        if action == 'resolve':
            ticket['status'] = 'resolved'
            ticket['resolution'] = arg
        elif action == 'reassign':
            ticket['status'] = 'new'
            ticket['owner'] = arg
        elif action == 'verify':
            ticket['status'] = 'new'
            ticket['owner'] = # XXX: get QA owner
        elif action == 'reopen':
            ticket['status'] = 'reopened'
            ticket['resolution'] = ''
        # XXX: etc

The ticket system/class would delegate to the workflow implementation where appropriate. The user would select between different workflows in trac.ini:

[ticket]
workflow = simple|extended

One could imagine users even plugging in custom workflow implementations by specifying the fully qualified name of the class:

[ticket]
workflow = mypackage.workflow.MyWorkflow

I think such an approach would also allow a more controlled introduction of the advanced workflow you propose: first refactor the ticket workflow so that it's basically pluggable, then add the new workflow implementation, together with the other changes such as adding qaowners to components, owners to milestones, etc.

What do you think?

Otherwise I think the patch is very high quality, and the feature has been requested often enough that we should seriously consider adding it to Trac. The best way forward would be (IMHO) to get you svn write access to a private branch in the repository (say pkou-dev/workflow), and try to merge the branch into trunk for 0.9 as soon as we all think it's ready.

BTW, I think attaching the patches to this ticket instead of to the Wiki page would be more appropriate.

comment:3 by pkou <pkou at ua.fm>, 19 years ago

I like the idea with removing workflow_version and replacing it with a parameter that specifies a workflow class. This will give us flexible customization of a workflow for tickets. I will be working on this implementation.

One of interesting moments here is that it is possible to move action-specific HDF code from Ticket.cs into separate files. The Ticket.cs should include a file with actions using code like:

 <?cs include ticket.workflow.actions_template ?>

and a workflow class should have a method that returns the name of included file, e.g.

class SimpleWorkflow:
    def get_actions_template(self, ticket, user):
        return 'Ticket_simple.cs'

class ExtendedWorkflow:
    def get_actions_template(self, ticket, user):
        # possible changes: return different templates depending on ticket fields
        # and/or logged user
        return 'Ticket_extended.cs'

What do you think about this approach?

Also, it seems to be a good idea to have a commonly accessible place in SVN where we can change code. Let's discuss the details via email. I would also agree with proposed approach: Refactor current code first, and then apply changes that are specific to new workflow.

p.s.: The patches have been attached to Wiki page because it is necessary to maintain change history for the sources. I would like to suggest to keep the change history with NewWorkflow page even if we switch from patches to SVN repository. This way everybody can communicate with each other and describe additional changes that are made. And at the end we will have a good documentation for the change.

p.p.s: Thank you for the feedback.

by pkou <pkou at ua.fm>, 19 years ago

Support customized workflows in Trac

comment:4 by pkou <pkou at ua.fm>, 19 years ago

Attached patch refactors existing code in trac/Ticket.py, templates/ticket.cs, and templates/newticket.cs in order to support customized workflows in Trac.

Note that the patch does not implement enhanced workflow, it just refactors existing code for existing workflow. However, the patch in NewWorkflow contains both this refactoring and support for enhanced workflow.

Section Refactoring of Trac code for easy support of customized workflows in NewWorkflow describes the changes with more details.

comment:5 by Christopher Lenz, 19 years ago

One thing I do not like about this patch is the coupling of workflow classes with templates. Templates are part of the web presentation layer, and backend/logic classes such as the workflow implementations should not need to know or even care about them.

(Granted, the separation between presentation and backend/logic isn't strong or even existant in the current code base, but that's something we need to move away from, not move closer to.)

So ideally, the workflow classes would somehow export a data structure that gives the normal ticket template enough information to display the available options. Going back to my initial example code, maybe something like:

class SimpleWorkflow:

    def available_actions(self, ticket):
        if ticket['status'] in ['new', 'reopened']:
            return [
                ('accept', None),
                ('reassign', 'owner'),
                ('resolve', 'resolution')
            ]
        elif ...

I don't think there's any other information than the new owner (reassign) or the new resolution (resolve etc) that we'd need on status changes, so such an approach may work. Probably, we'll also want to provide a hook for workflows to determine the available resolutions per status change, for example:

class SimpleWorkflow:

    def available_resolutions(self, ticket, newstatus):
        if newstatus == 'resolve':
            return [ 'fixed', 'invalid', 'duplicate', 'worksforme' ]
        return []

You get the idea.

And going into nitpicking mode, I think on_create would be a better method name than on_insert, as the latter is too SQL-layerish, and the Ticket class also uses create.

by pkou <pkou at ua.fm>, 19 years ago

Patch for the changes: Synchonized with trunk, changed according to comments on previous implementation

comment:6 by pkou <pkou at ua.fm>, 19 years ago

New patch attached. Changes:

  • Sources synchronized with trunk;
  • Workflow operations on_insert and on_update renamed to on_create and on_save in order to match Trac conventions for tickets;
  • Additional workflow contributed in order to prove current implementation (see below).

It seems that we have different vision on this issue and I would like to explain why current design is implemented as it is.

Trac has rather good separation between presentation layer and business logic. There are three types of entities:

  • Python source code for business logic;
  • ClearSilver templates for presentation layer. However, the templates are linked to business logic in terms of data that is passed between these layers;
  • CSS templates for presentation layer.

An attempt to develop a customized workflow without appropriate changes in templates will not give a big value for developers of customized workflows.

Let's review what we cover by term customized workflow:

  • It does not change statuses for tickets. Although this is an interesting idea, it is not discussed here. Many other places in Trac depend on statuses (timeline, milestone, reports, etc) and a separate research needs to be done for this task;
  • A customized workflow does allow to customize actions on a ticket;
  • A customized workflow allows to implement custom fields within an action. Examples of such fields include 1) ticket owner changes; 2) resolution field; 3) other fields like time that is spent on an action.

Thus, the idea behind current implementation is the following: Trac provides enough statuses natively but transitions between these statuses can be fully customized and extended. Currently, it is even possible to implement actions for new tickets, which can be a nice feature for some workflows.

A workflow developer should be responsible for the following areas:

  • Which actions are allowed;
  • Which additional parameters should be entered for an action:
    • A workflow should manage owner changes;
    • A workflow should manage resolution changes;
    • A workflow can manage other action-specific fields.
  • Validation rules for a ticket;
  • Automatic field calculation.

All these responsibilities depend on 1) ticket status; 2) other ticket fields; 3) currently logged user; and 4) current environment parameters for a project.

In order to prove this concept, I would like to ask you to review two custom workflows that have been developed:

  • QaRmtWorkflow - See NewWorkflow for details;
  • TimeTrackWorkflow - available in attached patch. It is implementation that subclasses any other workflow in order to allow users to specify time that they spend on an action.

It is important to underline that

  1. These workflows do not require any changes in ticket-specific code in Trac;
  2. These workflows do require changes in templates (at least I do not see a possibility to implement these workflows without appropriate changes in templates).

Thus, if fields owner and resolution are managed in main Trac code, we lose an important feature: It will not be possible to implement additional workflow-specific fields like time-for-action.

What I would like to suggest is to leave minimal support for owner and resolution fields in main Trac code. The rest should be done by workflow classes. With attached patch, owner and resolution have minimal meaning in main code already. As an option, it is possible to remove resolution constants from table enum and make a workflow responsible for generating this list.

If we follow your proposal, then we will need to add code specific for owner and resolution in main Trac code. And this will not solve the whole problem because templates will need to be changed in order to add new actions.

Ugh, I finished :-)

comment:7 by anonymous, 19 years ago

Is there any update on this ticket?

I'm interested in using the patches, but would like to know that they are going to be committed. I'm in the process of writing conversion routines for our own custom tracking software for use with Trac, but I need the functionality offered by the patch. I've spent some time looking at just writing the custom fields using TracTicketsCustomFields. They do not seem to be a full solution to the problem as they do not address the issue of the two additional status codes (resolved and verified) or the workflow transitions to the respective entities.)

Thanks for the update.

comment:8 by anonymous, 19 years ago

Cc: nvihinen@… added

My engineering organization is also very interested in this patch. Any idea when this might be released?

Thanks!

comment:9 by Florent Guillaume <fg@…>, 19 years ago

Cc: fg@… added

comment:10 by anonymous, 19 years ago

Cc: dserodio@… added

comment:11 by anonymous, 19 years ago

Cc: swalker@… added

comment:12 by graham_foster@…, 19 years ago

I too am very interested in this patch being fully included ASAP. Will it make 0.9? Thx.

comment:13 by pkou at ua.fm, 19 years ago

Doing a patch for 0.9 is rather hard due to significant source changes that have been made for this release in trunk.

Because the patch has not been integrated at beginning of 0.9, it is pending until all major refactorings will be done for 0.9 (in order to eliminate redundant work).

In order to simplify the patch, separate tickets have been created for step-by-step improvement of Trac code (notably, #1546, #1545, #1544, #1547, and optionally but highly required - #1549).

Having prepared source code in trunk, the patch will address workflow-related issues only.

Note about a major difference between existing patch for 0.8 and new patch for 0.9: The new patch will make Trac status-independent. This will allow customizing Trac for different workflows and statuses without additional changes in codebase.

comment:14 by anonymous, 19 years ago

Cc: martin.d.johansson@… added

comment:15 by anonymous, 19 years ago

Cc: tracissue@… added

comment:16 by anonymous, 19 years ago

Is a patch available for 0.8.2? I tried using the patch-newworkflow-r1102.diff attachment, but had a couple of problems:

  1. tried applying this with patch but it couldn't seem to get the file names—I had to type these in (or cut-n-paste them in);
  2. also had lots of rejects once I entered the filenames.

It's the first time I've used patch, so perhaps I messed something up (I tried using -Np1 but that didn't help).

This new workflow is exactly what we need, so I'd love to get it set up prior to 0.9, unless that's imminent.

comment:17 by anonymous, 19 years ago

New patch for Trac 0.8.2 attached in NewWorkflow.

comment:18 by tom at vikus.com, 19 years ago

I've tried applying the 0.8.2 v2 patch onto versions 1752, 1768, and HEAD, but there are many Hunk failures, as well as missing files, specifically Ticket.py and WikiFormatter.y.

I am anxious to apply this patch. Am I missing something?

comment:19 by anonymous, 19 years ago

Cc: tom@… added

comment:20 by Emmanuel Blot, 19 years ago

I've tried applying the 0.8.2 v2 patch onto versions 1752, 1768, and HEAD

See [http:/trac/ticket/869#change_14 comment 14]. Trunk (i.e. pre-0.9) revisions are very different from the 0.8.2 branch, so do not expect to patch the trunk without going thru (heavy) modifications of the patch file.

comment:21 by anonymous, 19 years ago

Cc: dstcruz@… added

comment:22 by anonymous, 19 years ago

Cc: mrovner@… added

comment:23 by anonymous, 19 years ago

Cc: ciaran.hennessy@… added

comment:24 by David M. Lee <dmlee@…>, 19 years ago

Cc: dmlee@… added

Add one more vote for an improved workflow.

comment:25 by Gunnar Wagenknecht <gunnar@…>, 19 years ago

Cc: gunnar@… added

comment:26 by anonymous, 19 years ago

Cc: vyt@… added

comment:27 by anonymous, 19 years ago

Cc: gytis@… added

comment:28 by Matthew Good, 19 years ago

#1989 has been marked as a duplicate of this ticket.

comment:29 by anonymous, 19 years ago

Cc: bene@… added

comment:30 by randyjames@…, 19 years ago

Cc: randyjames@… added

comment:31 by anonymous, 19 years ago

Cc: maze@… added

comment:32 by Christopher Lenz, 18 years ago

#2102 has been marked as duplicate of this ticket.

comment:33 by anonymous, 18 years ago

Cc: guillaume.tardif@… added

comment:34 by anonymous, 18 years ago

Cc: barry.kaplan@… added

comment:35 by anonymous, 18 years ago

Cc: trac@… added

My understanding is that this patch will not get into core Trac and needs to be rewritten using the new plug-in system. Is anyone working on this?

comment:36 by anonymous, 18 years ago

Cc: ssalmine@… added

comment:37 by anonymous, 18 years ago

Cc: shishz@… added

comment:38 by anonymous, 18 years ago

Cc: trac@… added

comment:39 by anonymous, 18 years ago

Cc: chris.hopper@… added

comment:40 by anonymous, 18 years ago

Cc: fg@… removed

comment:41 by anonymous, 18 years ago

Cc: nicpottier@… added

yet another votes for this to be possible in .9

comment:42 by anonymous, 18 years ago

Cc: nick+trac@… added

I'd also like to put in my vote for this.

comment:43 by Matthew Good, 18 years ago

#2511 has been marked as a duplicate of this ticket

comment:44 by tom@…, 18 years ago

I'm looking forward to this and would like to suggest an additional state which I've found very useful while working with Roundup, namely done, could be better a.k.a. donecbb.

In practice it happens often that something is fixed well enough to move on, but one still wants to have a list of all tickets that still could use some 'extra polish'. I found the donecbb state to be very helpful and would like to see it added to trac or that trac provide an easy way to customise states (as roundup does).

and just for the record: I think trac totally rocks ;-)

comment:45 by anonymous, 18 years ago

Cc: roch.nadeau@… added

comment:46 by anonymous, 18 years ago

Cc: number5@… added

comment:47 by anonymous, 18 years ago

Cc: nwhite@… added

comment:48 by anonymous, 18 years ago

Cc: mjh-trac-tickets@… added

comment:49 by anonymous, 18 years ago

Cc: addy.bhardwaj@… added

comment:50 by Alec Thomas <alec@…>, 18 years ago

I've created a new patch, and a plugin which leverages this patch. They can be found here. This is against Trac's trunk, so if you are running 0.9.3 it may or may not work.

comment:51 by anonymous, 18 years ago

Cc: rob.duncan@… added

comment:52 by Christian Boos, 18 years ago

Keywords: workflow added

There's now a sandbox branch dedicated to this effort: log:sandbox/workflow

comment:53 by totmacher@…, 18 years ago

Severity: criticalnormal

Hello, My name is Christian Sprajc and I'm Project Manager of the Open Source Project "PowerFolder" (http://www.powerfolder.com). We use Trac since three weeks and we like it very much. Thanks for this nice and useful Product. I'm looking forward to the Workflow component. I have read the "Whitepaper" of "New Trac Workflow" and I think something is still missing. I have the some Ideas to improve the "New" part of the workflow, the way a ticket comes into the system.

We have the problem, that someone who enters the ticket (a user or developer) is not responsible for sheduling a ticket on a milestone or version. Futhermore he might not have an idea to what component this ticket belongs to, nor what priority/Severity a ticket has. He also should not assign the ticket to a user.

I am thinging about a "Simple ticket entry" where all these properties have defaults which cannot be changed by the user. This ticket should then be evaluated by the project management, which sets these properties.

Workflow would be then: "Simple Ticket entry" (User, Developer) → "Evaluation and assignment" (Project management) → "Ticket new"

Best regards, Christian Sprajc

comment:54 by anonymous, 18 years ago

Severity: normalcritical

comment:55 by anonymous, 18 years ago

Cc: rmota@… added

comment:56 by anonymous, 18 years ago

Cc: mrovner@… ciaran.hennessy@… rmota@… added; mrovner@… ciaran.hennessy@… rmota@… removed

comment:57 by anonymous, 18 years ago

Cc: seemant@… added

We would love to see this feature implemented here.

comment:58 by anonymous, 18 years ago

Cc: junk@… added

ASAP please!

comment:59 by anonymous, 18 years ago

Cc: fonolit@… added

comment:60 by Russell Hind <rhind@…>, 18 years ago

Cc: rhind@… added

comment:61 by Christian Boos, 18 years ago

Milestone: 0.11
Owner: changed from Jonas Borgström to Alec Thomas

comment:62 by Christian Boos, 18 years ago

#1581 has been marked as duplicate. That ticket reminds about the necessity to avoid hardcoding the status values in the templates.

Also, I've seen that this ticket doesn't yet link to the WorkFlow wiki page, which documents the way new flexible workflows will be possible in future Trac versions.

That page also keeps track of the development status of the workflow branch in the sandbox mentioned above.

comment:63 by anonymous, 18 years ago

Cc: kevin@… added

comment:64 by anonymous, 18 years ago

Cc: wfragg@… added

comment:65 by Christopher Lenz, 18 years ago

#3056 marked as duplicate of this ticket.

comment:66 by anonymous, 18 years ago

Cc: ciaran.hennessy@… au rmota@… br rapin.s@… added; ciaran.hennessy@… rmota@… removed

comment:67 by Emmanuel Blot, 18 years ago

Cc: ciaran.hennessy@… added; ciaran.hennessy@… au removed

(fix up CC list)

comment:68 by anonymous, 18 years ago

Cc: trac.tickets@… added

comment:69 by anonymous, 18 years ago

Cc: ged-trac-workflow@… added

comment:70 by anonymous, 18 years ago

Cc: dombly@… added

comment:71 by anonymous, 18 years ago

Cc: avif@… added

I'd really like to see this integrated into Trac soon!

comment:72 by anonymous, 18 years ago

Cc: randyjames@… removed

comment:73 by anonymous, 18 years ago

Cc: tom@… dstcruz@… removed

comment:74 by anonymous, 18 years ago

Cc: d-sleeman@… added

comment:75 by anonymous, 18 years ago

Cc: sstarr@… added

comment:76 by anonymous, 18 years ago

Cc: addy.bhardwaj@… pkou@… nvihinen@… dserodio@… swalker@… martin.d.johansson@… tracissue@… mrovner@… ciaran.hennessy@… dmlee@… gunnar@… vyt@… gytis@… bene@… maze@… guillaume.tardif@… barry.kaplan@… trac@… ssalmine@… shishz@… trac@… chris.hopper@… nicpottier@… nick+trac@… roch.nadeau@… number5@… nwhite@… mjh-trac-tickets@… rob.duncan@… rmota@… br seemant@… junk@… fonolit@… rhind@… kevin@… wfragg@… rapin.s@… trac.tickets@… ged-trac-workflow@… dombly@… avif@… d-sleeman@… sstarr@… removed

comment:77 by anonymous, 18 years ago

Cc: addy.bhardwaj@… pkou@… nvihinen@… dserodio@… swalker@… martin.d.johansson@… tracissue@… mrovner@… ciaran.hennessy@… dmlee@… gunnar@… vyt@… gytis@… bene@… maze@… guillaume.tardif@… barry.kaplan@… trac@… ssalmine@… shishz@… trac@… chris.hopper@… nicpottier@… nick+trac@… roch.nadeau@… number5@… nwhite@… mjh-trac-tickets@… rob.duncan@… rmota@… br seemant@… junk@… fonolit@… rhind@… kevin@… wfragg@… rapin.s@… trac.tickets@… ged-trac-workflow@… dombly@… avif@… d-sleeman@… sstarr@… added

comment:78 by sstarr, 18 years ago

Cc: to added

Put the missing CCs back. 'Anonymous' please be careful with editing CCs.

comment:79 by Emmanuel Blot, 18 years ago

Cc: rmota@… added; rmota@… br to removed

(fix up CC: list)

comment:80 by anonymous, 18 years ago

Cc: deepak.jois@… added

comment:81 by anonymous, 18 years ago

Cc: ronald.berger@… added

comment:82 by anonymous, 18 years ago

Cc: yellen@… added

comment:83 by anonymous, 18 years ago

Cc: sgeertgens@… added

comment:84 by anonymous, 18 years ago

Cc: gunnar@… removed

comment:85 by anonymous, 18 years ago

Cc: ssalmine@… removed

comment:86 by anonymous, 17 years ago

It would be good to get an update on this.

I'm running 0.1 and I'd like to use this feature, the ability to create new ticket states and actions is fundamental to a change control system. Do I have to wait or is there a work around/plug-in available?

in reply to:  86 comment:87 by Matthew Good, 17 years ago

Replying to anonymous:

I'm running 0.1 and I'd like to use this feature, the ability to create new ticket states and actions is fundamental to a change control system. Do I have to wait or is there a work around/plug-in available?

As mentioned before this is being developed in sandbox/workflow and it's scheduled for 0.11. This cannot be implemented as a plugin, so if you want to try it ahead of time you'll need to get the sandbox branch, though it is not yet up to date with all the fixes in 0.10.

comment:88 by anonymous, 17 years ago

Cc: trac@… added

I really, really hope this get into the 0.11 release. Having used Trac for a while I say you cannot do without this feature for serious work with an off-shore testing team. The situation rapidly becomes confusing withouth the additional states of a flexible workflow. Also PM needs to track the defects in the various stages of the defect fixing process.

comment:89 by anonymous, 17 years ago

Cc: e@… added

comment:90 by sid, 17 years ago

#4338 was marked as duplicate of this ticket.

comment:91 by anonymous, 17 years ago

Cc: trac.20.nickread@… added

comment:92 by anonymous, 17 years ago

Cc: pradeep.varadarajan@… added

Is there a patch available for 0.10.x?

P.S. Thank you for trac.

comment:93 by anonymous, 17 years ago

Cc: mmay@… added

comment:94 by anonymous, 17 years ago

Cc: chris.hopper@… removed

comment:95 by anonymous, 17 years ago

Cc: peter.valtersson@… added

comment:96 by anonymous, 17 years ago

Cc: sdyson@… added

comment:97 by trac@…, 17 years ago

Cc: trac@… removed

comment:98 by anonymous, 17 years ago

Cc: sungje@… added

comment:99 by sdyson@…, 17 years ago

Since the workflow sandbox no longer exists does anyone know the status of this work?

comment:100 by Christian Boos, 17 years ago

Check the WorkFlow page, there are links pointing to the old branch (on top of 0.10dev).

There has been rumors that a new port for 0.11dev will be attempted at the TracSprint during PyCon 2007.

comment:101 by anonymous, 17 years ago

Cc: martin.marcher@… added; pradeep.varadarajan@… mmay@… peter.valtersson@… sdyson@… sungje@… removed

comment:102 by anonymous, 17 years ago

Cc: pradeep.varadarajan@… mmay@… added

please don't remove people from the cc list.

comment:103 by anonymous, 17 years ago

Cc: sdyson@… added

comment:104 by anonymous, 17 years ago

Cc: peter.valtersson@… sungje@… added

in reply to:  102 comment:105 by martin.marcher@…, 17 years ago

oops, something bad :(

Replying to anonymous:

please don't remove people from the cc list.

I'm sorry didn't intend to remove those people.

Anyway this could be a bug filed it under ticket:4720 and added a description how this happened. Feel free to remove my address if you need to gain the space to get the original addresses back in.

comment:106 by Christian Boos, 17 years ago

Well, maybe we could reopen one of the many duplicates of #869, while waiting for #1459

Pick one of #1581, #1989, #2102, #2511, #3056 or #4338.

comment:107 by roch.nadeau@…, 17 years ago

Cc: roch.nadeau@… removed

comment:108 by bskinnes@…, 17 years ago

Would be nice with a feature for removing history items, like all the cc changes here are really a waste of my scrolling time ;) Oh… and a multiline cc field :)

comment:109 by Eli Carter, 17 years ago

Resolution: fixed
Status: newclosed

You can now (as of [5378] on trunk) customize workflows in Trac. While there is a lot more planned for WorkFlow, I believe this is enough to close this ticket.

comment:110 by anonymous, 17 years ago

praise the lord. i thought i would never get this email :)

comment:111 by zywei@…, 16 years ago

Milestone: 0.110.10.5
Resolution: fixed
Status: closedreopened

How can I custom such workflow below:

  1. developer fixed a defect and assign to QA to verify.
  2. QA verify it, if works well, close this defect.

Issue: In 0.10.4, if developer set "resolve as" = fixed, this defect will be closed.
If reassign to QA without any comment, QA doesn't know what's happen, why reassign to me again?
Here I want the defect's status is fixed but owner change to QA, QA verify and close it.
For normal, only QA can close a defect.
Experts, how can I to it?
Thanks, Michael

comment:112 by Alec Thomas, 16 years ago

Resolution: fixed
Status: reopenedclosed

Please don't reopen tickets for configuration questions. Use the MailingList or IrcChannel for questions like this.

comment:113 by zywei@…, 16 years ago

Sorry for wrong action

comment:114 by Emmanuel Blot, 16 years ago

Milestone: 0.10.50.11

(restoring milestone)

Modify Ticket

Change Properties
Set your email in Preferences
Action
as closed The owner will remain Alec Thomas.
The resolution will be deleted. Next status will be 'reopened'.
to The owner will be changed from Alec Thomas to the specified user.

Add Comment


E-mail address and name can be saved in the Preferences .
 
Note: See TracTickets for help on using tickets.