How to quickly add tickets in Trac? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T13:47:12Zhttp://stackoverflow.com/feeds/question/114306http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/114306/how-to-quickly-add-tickets-in-trac2How to quickly add tickets in Trac?Sebastjan TrepĨa2008-09-22T11:18:54Z2009-08-28T04:11:14Z
<p>It's very painful to add multiple tickets to Trac or to have it as your own todo list. That causes people to use their own task management tools so tasks are then spread all around.</p>
<p>Is there any plugin or macro that would quicken the process of adding a ticket?</p>
http://stackoverflow.com/questions/114306/how-to-quickly-add-tickets-in-trac/114312#1143125Answer by Epaga for How to quickly add tickets in Trac?Epaga2008-09-22T11:21:49Z2008-09-22T11:36:38Z<p>If you're using Eclipse: <a href="http://www.eclipse.org/mylyn/" rel="nofollow">Mylyn</a> is perfect.</p>
<p>Otherwise you could always get the XML RPC plugin. <a href="http://trac-hacks.org/wiki/XmlRpcPlugin" rel="nofollow">http://trac-hacks.org/wiki/XmlRpcPlugin</a> and roll your own little tool.</p>
<p>For quickly creating similar tickets, you could use the Clone plugin: <a href="http://trac-hacks.org/wiki/CloneTicketPlugin" rel="nofollow">http://trac-hacks.org/wiki/CloneTicketPlugin</a></p>
<p><strong>Edit</strong> And I second Espen's idea with the SVN <a href="http://trac.edgewall.org/browser/trunk/contrib/trac-post-commit-hook" rel="nofollow">checkin hook</a>, it works great for us, as well.</p>
http://stackoverflow.com/questions/114306/how-to-quickly-add-tickets-in-trac/114322#1143222Answer by Espen for How to quickly add tickets in Trac?Espen2008-09-22T11:26:49Z2008-09-22T11:26:49Z<p>You could try using <a href="http://trac-hacks.org/wiki/EmailtoTracScript" rel="nofollow">EmailtoTrack</a>, so you can create tickets just by sending emails. </p>
<p>(Another neat track tip, if not directly related to your question, is to use a commit hook with your version control system so you can close tickets by doing commits. I've only tried <a href="http://trac.edgewall.org/browser/trunk/contrib/trac-post-commit-hook" rel="nofollow">this</a> one for SVN, but it shouldn't be hard to port.)</p>
http://stackoverflow.com/questions/114306/how-to-quickly-add-tickets-in-trac/348466#3484660Answer by wesleycoelho for How to quickly add tickets in Trac?wesleycoelho2008-12-08T01:20:09Z2008-12-08T01:20:09Z<p>If Mylyn is working for you, consider checking out <a href="http://tasktop.com" rel="nofollow">http://tasktop.com</a> too. Tasktop extends Mylyn with powerful productivity features such as automatic time tracking, web browsing support, email and calendar integration, and more.</p>
http://stackoverflow.com/questions/114306/how-to-quickly-add-tickets-in-trac/1344978#13449782Answer by shavenwarthog for How to quickly add tickets in Trac?shavenwarthog2009-08-28T04:11:14Z2009-08-28T04:11:14Z<p>The following allows you to type a quick note. The note becomes a Trac ticket, assigned to yourself. I use this for very quick bugs and/or features I don't want to forget. Or, if I make up a feature I open then close a ticket for it, so I get full credit :)
- j</p>
<pre><code>#!/usr/bin/env python
'''
trac-bug: add bug/feature to current Trac project, from the command line.
Specify Trac project directory in TRAC_ENV environment variable.
'''
import os, sys
TRAC_ENV = os.environ.get('TRAC_ENV') or os.path.expanduser('~/trac/projectenv')
if not os.path.isdir(TRAC_ENV):
print >>sys.stderr, "Set TRAC_ENV to the Trac project directory."
sys.exit(2)
from trac.env import open_environment
from trac.ticket import Ticket
t = Ticket(open_environment(TRAC_ENV))
desc = ' '.join(sys.argv[1:])
info = dict(
status='open',
owner=os.environ['USER'], reporter=os.environ['USER'],
description = desc, summary=desc
)
t.populate(info)
num = t.insert()
if not num:
print >>sys.stderr, "Ticket not created"
print >>sys.stder, vals
sys.exit(1)
print "Ticket #%d: %s" % (num,desc)
sys.exit(0) # all is well
</code></pre>
<p>Usage is brief:</p>
<p>$ trac-bug out of beer</p>
<p>Ticket #9: out of beer</p>