tags:

views:

49

answers:

1

I was planning to implement a way to extract/update/insert trac's project related data from different web application. Assuming I have direct access to database (eg. MySQL, because maybe SQLite will not work if the external site does not have access to the file system).

Is there any API for trac that I can use to manipulate milestone & ticket data, (preferably in PHP language)?

Thanks

+2  A: 

You can use http://trac-hacks.org/wiki/XmlRpcPlugin to enable XML-RPC API for almost all trac functions.

Mad
Thanks, I'll look into the plugin.
Hossain Khan
You might also take a look at the TracCmdScript, which uses the XmlRpc interface: http://trac-hacks.org/wiki/TracCmdScript
RjOllos