Trac documentation? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T18:13:21Z http://stackoverflow.com/feeds/question/370733 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/370733/trac-documentation 3 Trac documentation? Epaga 2008-12-16T08:50:10Z 2008-12-18T05:47:30Z <p>I'm trying to write my first little plugin for <a href="http://trac.edgewall.org" rel="nofollow">Trac</a> and am kind of lost as to what the API exactly is. For example, exactly which fields are offered for "ticket" objects, among many other things.</p> <p>Does anyone know of a good place to look for Trac API documentation? Can't find anything on the web site but maybe I'm just looking wrong...</p> http://stackoverflow.com/questions/370733/trac-documentation/370743#370743 2 Answer by Epaga for Trac documentation? Epaga 2008-12-16T08:55:55Z 2008-12-16T08:55:55Z <p><a href="http://trac.edgewall.org/wiki/TracDev/ComponentArchitecture" rel="nofollow">http://trac.edgewall.org/wiki/TracDev/ComponentArchitecture</a> is a start.</p> http://stackoverflow.com/questions/370733/trac-documentation/370755#370755 4 Answer by Mapad for Trac documentation? Mapad 2008-12-16T08:58:33Z 2008-12-16T09:19:12Z <p>The component architecture is important, but the real starting page for development is: <a href="http://trac.edgewall.org/wiki/TracDev" rel="nofollow">http://trac.edgewall.org/wiki/TracDev</a></p> <p>Have also a look at the trac-hacks web site <a href="http://trac-hacks.org/" rel="nofollow">http://trac-hacks.org/</a> This is really a good source of examples, and many times you will find something close to what you want to do, that you can simply adapt from.</p> <p>Think also about installing this development plugin: <a href="http://trac-hacks.org/wiki/TracDeveloperPlugin" rel="nofollow">http://trac-hacks.org/wiki/TracDeveloperPlugin</a> It makes it much easier to debug your plugin with it</p> http://stackoverflow.com/questions/370733/trac-documentation/370759#370759 2 Answer by andypaxo for Trac documentation? andypaxo 2008-12-16T09:03:41Z 2008-12-16T09:03:41Z <p>It's all in Trac's Trac!</p> <p>The pages on <a href="http://trac.edgewall.org/wiki/TracDev/PluginDevelopment" rel="nofollow">plugin development</a> and the <a href="http://trac.edgewall.org/wiki/TracDev/ComponentArchitecture" rel="nofollow">component architecture</a> give a good overview. Unfortunately, I can't find any API documentation. Your best bet is to 'use the source'. Check out the <a href="http://trac.edgewall.org/browser/trunk/trac/ticket/model.py" rel="nofollow">Ticket.py</a> file for the Ticket class. If you would rather query the database directly, look at the <a href="http://trac.edgewall.org/wiki/TracDev/DatabaseSchema" rel="nofollow">database schema</a>.</p> http://stackoverflow.com/questions/370733/trac-documentation/377004#377004 2 Answer by Kamil Kisiel for Trac documentation? Kamil Kisiel 2008-12-18T05:47:30Z 2008-12-18T05:47:30Z <p>Each component of Trac has an api.py that's loaded with docstrings on all the interfaces you can implement. I've found them to be extremely valuable when implementing my own plugins.</p> <p>For example:</p> <p><a href="http://trac.edgewall.org/browser/trunk/trac/ticket/api.py" rel="nofollow">http://trac.edgewall.org/browser/trunk/trac/ticket/api.py</a></p> <p>or</p> <p><a href="http://trac.edgewall.org/browser/trunk/trac/wiki/api.py" rel="nofollow">http://trac.edgewall.org/browser/trunk/trac/wiki/api.py</a></p> <p>are two API's I've often used. Another thing I often do is look for existing plugins on <a href="http://www.trachacks.org" rel="nofollow">TracHacks</a> which implement features I'd like in my plugin and just rip out the useful bits of those.</p>