On Aug 4, 1:54 pm, bert <[EMAIL PROTECTED]> wrote: > hi, > > i have a big app consisting of 4 svn repositories each with their own > trac instance. > > they are not in a single repository because each of the 4 parts could > evolve at different development speeds, etc. > > since the 4 parts make no sense to the end user but only to the > developers, i would like to make a web form that lets people submit a > bug or feature request, store it in a database and then manually > approve the bug/feature behind the scenes and have it inserted into > the right trac instance. > > is there a way to automatically submit tickets to a trac instance, say > from a php web app or from python?
You can use the Trac APIs from a Python web app to insert data: http://trac.edgewall.org/wiki/TracDev/DataModels#Ticket Or you could use the XML-RPC plugin from trac-hacks.org Or for inserting new tickets you can add them directly to the SQLite database. -- Matt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Trac Users" 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-users?hl=en -~----------~----~----~----~------~----~------~--~---
