On Jun 28, 7:22 am, "Christopher Taylor" <[EMAIL PROTECTED]> wrote: > In version 0.10.4, I'm editing the milestone schema to contain a > priority (same as tickets) however I'm having trouble figuring out the > interactions b/n html,ClearSilver, and Python. I've got the drop down > box displaying for the user to select the priority however, I'm having > trouble getting that selection to propegate up to the python code. > Can someone please point me in the right direction.
Well, I might try to follow up on the main question later, but as a quick post before I got to bed: Don't hack the Trac tables. If you need to augment the data in a Trac table it's better to create a new table keyed off the same values as the table you're augmenting. Due to SQLite's limited support for ALTER TABLE Trac's upgrades blow away the existing table and copy the data into the new schema, so any changes you make to Trac's built-in tables will be lost. -- Matt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Development" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/trac-dev?hl=en -~----------~----~----~----~------~----~------~--~---
