Linux Magazine has a big introductory article called Looking after your bugs with Request Tracker. RT is the bug tracking system used for Perl 5, Parrot, Perl 6 and all the CPAN modules, at least by default.
5 Comments
Leave a comment
Perlbuzz
- Perlbuzz news roundup for 2010-01-07
- Devel::NYTProf 3.0 is out, more mindblowing than ever
- Perlbuzz news roundup for 2009-12-22
- Perlbuzz news roundup for 2009-12-08
- Advent calendars galore
- Christmas brings the RJBS Advent Calendar
- Perl gets modern community blogging platform at blogs.perl.org
- Perlbuzz news roundup for 2009-11-17
- perl.org gets a beautiful upgrade
- The horrible bug your command line Perl program probably has
Mechanix
- Cool vim plugin of the day: surround.vim
- When to use JPEG, when to use PNG
- Git is my hero
- Downloading video with Awk
- Creating Excel files with Perl
- Scrabble cheating with Perl one-liners
- Use Getopt::Long even if you don't think you need to
- Pragmatic Programmer on estimating
- How to write a simple database-backed website with Perl modules Mason and Class::DBI
- Optimizing file searches with File::Find::Rule
The Working Geek
- Use Google Alerts to monitor your online presence
- The Working Geek news roundup for 2010-01-07
- "Effective Interviewing From Both Sides of the Desk" at the Chicago Nerd Social Club, 1/21/2010
- The Working Geek news roundup for 2009-12-08
- How to keep a job you don't love
- The Working Geek news roundup for 2009-11-17
- How to show open source experience in your job hunt
- Life as a woman in telecom
- The Working Geek news roundup for 2009-09-02
- How to boost your career by contributing to open source projects
Search
Contact
- Email andy@petdance.com
- Twitter Perlbuzz
Other Perl Sites
- Rakudo.org, home of Rakudo Perl 6
- Modern Perl
- Proud To Use Perl
- The official Perl wikis
- News at The Perl Foundation
- use.perl.org
- jobs.perl.org
- Perlcast, the Perl podcast
- Yet Another Perl Game Hacker
Archives
- January 2010
- December 2009
- November 2009
- October 2009
- September 2009
- August 2009
- July 2009
- June 2009
- May 2009
- April 2009
- March 2009
- February 2009
- January 2009
- December 2008
- November 2008
- October 2008
- September 2008
- August 2008
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
RT makes for an excellent help desk too. The ability to post separate replies/comments that go to different audiences mean that you can easily record technical comments for internal use separately from the simplified responses you send to clients. Because of this and its tight email integration, RT is indispensable as far as I'm concerned.
I believe the other big bug tracking app written in Perl is Bugzilla. What are the major differences between Bugzilla and RT? Which do you like better?
I guess it would nice if RT had better integration with Subversion.
Trac has good Subversion integration. Ticket handling is ok, but not as good as RT. For instance, Trac doesn't support merging tickets.
The problem with Trac Subversion integration, is that tickets are not automatically back-linked to commits. So for instance, if I make a commit, and put "ticket:123" in the commit message, Trac knows that it is linked to ticket:123. But if I looked at ticket #123, I won't see a link to any commits made against the ticket, unless I manually a back-link on the ticket to the commit (changeset). Is this possible in any Bug tracker right now?
RT also has good email support. And the ability to customize the templates right in RT, plus the different automatically generated replies, is a big bonus. Email2Trac isn't a module to Trac.
Also, RT for the longest time had a very "fat" database. For example, ticket status was stored in a varchar field. So when the ticket was completed, it actually stored the string "Completed" in the status field, rather than a status ID. This is lame. I worked on an RT2 system where the ticket count was over 320,000, and I had to disable all kinds of stuff to get it to work reasonably fast.
I see Bugzilla supports ticket dependencies. So it clear that one ticket has to be done before the other (I saw this on a public Bugzilla site). I don't know if RT supports this? Trac definitely doesn't.
I don't know the differences between RT and Bugzilla. I use RT at work, and have never looked at Bugzilla. I do know that RT supports ticket dependencies.
@Tom Samplonius,
RT certainly supports ticket dependencies. For SVN integration, check out http://search.cpan.org/dist/RT-Integration-SVN/