~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/bugs/externalbugtracker/trac.py

  • Committer: Gavin Panella
  • Date: 2010-11-10 09:28:09 UTC
  • mto: This revision was merged to the branch mainline in revision 11897.
  • Revision ID: gavin.panella@canonical.com-20101110092809-1h4giu3oekip8oso
Add new 'fixreleased' status mapping for Trac. Maps to 'Fix Released'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
274
274
        # XXX: 2007-08-06 Graham Binns:
275
275
        #      We should follow dupes if possible.
276
276
        ('accepted', 'assigned', 'duplicate', BugTaskStatus.CONFIRMED),
277
 
        ('fixed', 'closed', BugTaskStatus.FIXRELEASED),
 
277
        # Status fixverified added for bug 667340, for http://trac.yorba.org/,
 
278
        # but could be generally useful so adding here.
 
279
        ('fixed', 'closed', 'fixverified', BugTaskStatus.FIXRELEASED),
278
280
        ('invalid', 'worksforme', BugTaskStatus.INVALID),
279
281
        ('wontfix', BugTaskStatus.WONTFIX),
280
282
        )