How can I best take advantage of Trac? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T01:18:08Zhttp://stackoverflow.com/feeds/question/193341http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac12How can I best take advantage of Trac?torial2008-10-10T23:32:34Z2009-02-10T22:20:56Z
<p>I have a Trac project installed on top of a Subversion implementation (easy to do thanks to Webfaction's control panel), but now I have configuration work to do. With that in mind, are there <em>easy</em> ways to do the following in Trac:</p>
<p>1) Ensure that customers can only see a high level progress indicator.<br />
2) Give daily summary reports on tickets, testing, and tasks.</p>
<p>Also, I am interested in knowing if there are any <strong>highly</strong> recommended plugins that I would be sorry I forgot to install.</p>
http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/193445#19344515Answer by Dave Dunkin for How can I best take advantage of Trac?Dave Dunkin2008-10-11T00:15:52Z2008-10-11T00:15:52Z<p>I would not recommend using the same Trac project for tracking development tasks and showing the customer progress. You want to be able to be candid with your development tickets, comments, etc. Customers can focus on the wrong things and misinterpret data you put in the tickets. I would recommend providing the customer with a separate project that contains high level tasks and only shows the progress on those tasks, not the nitty gritty.</p>
http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/194053#1940533Answer by ceejayoz for How can I best take advantage of Trac?ceejayoz2008-10-11T13:00:54Z2008-10-11T13:00:54Z<p>@Dave Dunkin is right. Use Trac for your internal use, and use a system like <a href="http://www.basecamphq.com/" rel="nofollow">Basecamp</a> to give your clients a high-level overview of what's going on in the project.</p>
http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/218132#2181325Answer by Jon Topper for How can I best take advantage of Trac?Jon Topper2008-10-20T11:45:00Z2008-10-20T11:45:00Z<p>As far as additional plugins are concerned, we install TocMacro, XmlRpcPlugin, WysiwygPlugin and TracRedirect. In particular, the WYSIWYG plugin is really good for encouraging less technical staff to maintain their own documents in the wiki - you can even C&P from MS Word whilst retaining formatting, which helps.</p>
<p>Take a look at the custom ticket workflow stuff that Trac gives you, if your own workflow isn't well represented by Trac's defaults. This has allowed us to add code review and integration testing steps to the workflow.</p>
<p>I'd recommend making your Trac server authenticate against some central authentication framework. We run an LDAP tree with auth credentials in it, and this is used by all our internal systems - including trac, svn, samba, openvpn etc.</p>
http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/218211#2182113Answer by Anders Eurenius for How can I best take advantage of Trac?Anders Eurenius2008-10-20T12:12:49Z2008-10-20T12:12:49Z<p>If it's a stock install, the database is just an SQLite3, so you can easily write scripts to fetch "safe" info, like the number of tickets, or why not one of the reports. That way, you can discuss freely as long as the ticket name is ok. Revisions, milestones, wikipages, tags (if you use that plugin) are also available.</p>
http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/524915#5249153Answer by Oliver Giesen for How can I best take advantage of Trac?Oliver Giesen2009-02-08T01:08:30Z2009-02-08T01:08:30Z<p>You could probably withdraw all permissions except <code>ROADMAP_VIEW</code> from the anonymous user but that will probably be a bit <strong>too</strong> high-level, no? Access control at the individual ticket or comment level is currently not supported AFAIK. See <a href="http://trac.edgewall.org/wiki/TracPermissions" rel="nofollow">http://trac.edgewall.org/wiki/TracPermissions</a> for details about trac permissions.</p>
http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/530173#5301733Answer by Bob Nadler for How can I best take advantage of Trac?Bob Nadler2009-02-09T21:54:44Z2009-02-09T23:41:54Z<p>As mentioned in one of the comments, you can't restrict ticket or comment access based on the user. Finding or creating an external reporting system is your best bet.</p>
<p>A couple of things based on experience with Trac:</p>
<ol>
<li><p>Creating a custom <a href="http://trac.edgewall.org/wiki/TracWorkflow" rel="nofollow">workflow</a> is
pretty straight froward. The use of
<a href="http://www.graphviz.org/" rel="nofollow">GraphViz</a> is a huge help for
communicating states and actions. A workflow plugin (like <a href="http://trac-hacks.org/wiki/AdvancedTicketWorkflowPlugin" rel="nofollow">AdvancedTicketWorkflowPlugin</a>) that further extends the built-in functionality isn't too hard to do if you need more complex state interaction.</p></li>
<li><p>For custom reporting, you can write
SQL queries that take named parameters,
then link to these from a wiki page:</p></li>
</ol>
<p>For example, the query can contain a WHERE clause like this:</p>
<pre><code>WHERE datetime(t.changetime, 'unixepoch') >= datetime('now','-$DAYS days')
</code></pre>
<p>and the wiki page can have this:</p>
<pre><code>Show activity for last [http://server.com/trac/report/9?DAYS=8 8] days.
</code></pre>
http://stackoverflow.com/questions/193341/how-can-i-best-take-advantage-of-trac/534447#5344476Answer by Brian Schimmel for How can I best take advantage of Trac?Brian Schimmel2009-02-10T22:11:13Z2009-02-10T22:20:56Z<p><strong>1) high level progress indicator:</strong></p>
<p>The roadmap tab gives you kind of a high level progress indicator. It lists all milestones, and for each milestone it shows you:</p>
<ul>
<li>milestone title</li>
<li>short description</li>
<li>date on which the milestone is due</li>
<li>how much time is left until then (or how long you are behind you schedule)</li>
<li>how many tickets are assigned to that milestone and how many of them have been closed, visualized as a nice green progress bar. This bar is drawn on the assumtion that each ticket has the same weight, which might be misleading</li>
</ul>
<p>You can restrict your permissions in a way that your customer can only access this view.</p>
<p>Depending on the relationship between you and your customer, you might want to give him the ability to create new tickets (permission TICKET_CREATE), which should be possible without giving him read access to other tickets (TICKET_VIEW and TICKET_MODIFY). Sorry, but I can't currently test if this really works, maybe someone can comment on this.</p>
<p><strong>2) daily summary reports</strong></p>
<p>trac offers you RSS feeds for everything you can think of. It should be possible to generate daily reports from this, or you simply tell your RSS client to check the feed once a day.</p>
<p>Trac also has the abilty to inform a ticket-owner via mail if that ticket changed, but it will happen instantly, not as a daily summary. You can comment on tickets, and sometimes we use them like a discussion board or mailing list, and in this case it's good to be notified instantly.</p>
<p><strong>Other configuration</strong></p>
<p>In each project I do with trac, I create a custom query to list all tickets that nobody owns:</p>
<pre>
SELECT p.value AS __color__,
owner AS __group__,
status,
id AS ticket, summary, component, milestone, t.type AS type, time AS created,
changetime AS _changetime, description AS _description,
reporter AS _reporter
FROM ticket t
LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'
WHERE status = 'new' AND (owner = '' OR owner = 'somebody' OR owner = 'None' )
ORDER BY owner, p.value, t.type, time
</pre>
<p>Each ticket may have an owner and several people in the cc field, but the report for <em>my tickets</em> only lists those where you are the owner. To overcome this, I add a query like this:</p>
<pre>
SELECT p.value AS __color__,
(CASE owner WHEN '$USER' THEN
(CASE status
WHEN 'assigned'
THEN 'Tickets that you accepted'
ELSE 'Tickets that were assigned to you, please accept or reassign'
END)
ELSE 'Tickets, that have your name in the cc' END)
AS __group__,
id AS ticket, summary, component, version, milestone,
t.type AS type, priority, time AS created,
changetime AS _changetime, description AS _description,
reporter AS _reporter
FROM ticket t
LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'
WHERE t.status 'closed' AND (owner = '$USER' OR cc like '%$USER%')
ORDER BY owner, (status = 'assigned') DESC, p.value, milestone, t.type, time
</pre>
<p><em>(this code works in trac 0.11b)</em></p>
<p>That's my favorite ticket report. It goups tickets by three classes:</p>
<ul>
<li>Tickets you own and accepted</li>
<li>Tickets that were assigned to you, but you didn't accept yet</li>
<li>Tickets that have you in the cc (that the fancy thing you don't get without that query)</li>
</ul>
<p>The queries might look scary, but they are simple modifications of the queries that are already there. You don't have to hack the trac source code, the webinterface lets you edit queries.</p>
<p><strong>Plugins</strong></p>
<p>I recommend the <a href="http://trac-hacks.org/wiki/XmlRpcPlugin" rel="nofollow">XML RPC plugin</a> if you work with eclipse. It enables tight integration with <a href="http://www.eclipse.org/mylyn/start/" rel="nofollow">Mylin</a>. (I think basic integration works even without the plugin), so your developers can do many tasks from within eclipse without switching to the trac webinterface.</p>
<p>(If you use eclipse, but don't know mylin, you should have a look at it. You can test it without any configuration because it comes with most eclipse distributions and can work as standalone without trac.)</p>