[Trac] Re: Trac ticket resolved as dropdown box

2007-06-29 Thread Brian McCann
Hi Eli,
 
Any idea on where and how to run the sql command in trac in order
to change these values?
Thanks,
Brian
 
mailto:[EMAIL PROTECTED] 
 



From: trac-users@googlegroups.com on behalf of Eli Carter
Sent: Thu 6/28/2007 3:46 PM
To: trac-users@googlegroups.com
Subject: [Trac] Re: Trac ticket resolved as dropdown box




On Thursday 28 June 2007, Brian McCann wrote:
 Hi
 
 Is there away to change the resolve as drop down items names and add to the
dropdown box
 
 the items are fixed, invalid , wontfix,duplicate, worksforme

In 0.11dev, through webadmin or trac-admin.

In 0.10.*, you'd have to do SQL on the database.

Eli





--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Trac ticket resolved as dropdown box

2007-06-29 Thread Eli Carter

On Friday 29 June 2007, Brian McCann wrote:
 Hi Eli,
  
 Any idea on where and how to run the sql command in trac in order
 to change these values?

This should get you started:
sqlite3 db/trac.db .schema enum
sqlite3 db/trac.db SELECT * FROM enum WHERE type = 'resolution'
sqlite3 db/trac.db UPDATE enum SET name = 'blah' WHERE type = 'resolution' 
AND value = 1

Backups recommended. ;)

Eli

--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---



[Trac] Re: Trac ticket resolved as dropdown box

2007-06-28 Thread Eli Carter

On Thursday 28 June 2007, Brian McCann wrote:
 Hi
  
 Is there away to change the resolve as drop down items names and add to the 
dropdown box
  
 the items are fixed, invalid , wontfix,duplicate, worksforme

In 0.11dev, through webadmin or trac-admin.

In 0.10.*, you'd have to do SQL on the database.

Eli

--~--~-~--~~~---~--~~
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@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en
-~--~~~~--~~--~--~---