Hi,
If you are willing to play with the db, you can try inserting the
required values directly in the database. The possible values for
"status" field are picked up from the table "enum":
extract from db_default.py (Trac 0.9.6)
....
('enum',
('type', 'name', 'value'),
(('status', 'new', 1),
('status', 'assigned', 2),
('status', 'reopened', 3),
('status', 'closed', 4),
....
Execute the following commands in <project>/db folder:
cp trac.db trac.db.bak
sqlite3 trac.db
insert into enum values ('status','testing',5);
... etc.
If something goes wrong, you can go back to the backed up trac.db.
I needed the "status" field to have a value of either "fixed" or
"invalid" and Trac worked fine after removing the other status values
directly from the db. Haven't tested adding new values yet, but I
believe it should work.
Hope this helps.
-Ashwin
On 8/18/06, Noah Kantrowitz <[EMAIL PROTECTED]> wrote:
This will be possible once the workflow branch is merged back to trunk
after the release of 0.10.
--Noah
Bill Williams wrote:
> I'm sure this has been brought up before, but are there any plans to
> allow for custom values in the status field?
>
> I would like to have values such as "testing" or "waiting for feedback"
> when we are waiting on the customer to do something.
>
> Thanks
>
> _______________________________________________
> Trac mailing list
> [email protected]
> http://lists.edgewall.com/mailman/listinfo/trac
>
_______________________________________________
Trac mailing list
[email protected]
http://lists.edgewall.com/mailman/listinfo/trac
_______________________________________________
Trac mailing list
[email protected]
http://lists.edgewall.com/mailman/listinfo/trac