Changes between Version 274 and Version 275 of ScrumBurndownPlugin


Ignore:
Timestamp:
Aug 1, 2008, 11:28:49 AM (16 years ago)
Author:
brother@…
Comment:

the current version is not compatible with genshi 0.5. work around posted!

Legend:

Unmodified
Added
Removed
Modified
  • ScrumBurndownPlugin

    v274 v275  
    44
    55== News ==
     6 * '''KNOWN BUG''' There is a [wiki:ScrumBurndownPlugin#BugsFeatureRequests known bug] in head.
    67 * '''Say goodbye to the cron job! '''  I finally found some time to implement Trac's iTicketChangeListener plugin interface so that now the burndown chart gets updated every time you change a ticket (version 01.08.10).  This simplifies the install process quite a bit.
    78 * ''Note that you may have to click the 'Start Milestone' button for any sprints that you're in the middle of after you upgrade to the latest version.''
     
    7374== Bugs/Feature Requests ==
    7475
     76Workaround!
     77[source:scrumburndownplugin/burndown/burndown.py@2215#L142 Error with Markup()].
     78 * in file:
     79{{{
     80yield 'mainnav', 'burndown', Markup('<a href="%s">Burndown</a>', self.env.href.burndown())
     81}}}
     82 * change to:
     83{{{
     84yield 'mainnav', 'burndown', Markup('<a href="%s">Burndown</a>') %self.env.href.burndown()
     85}}}
     86
    7587Existing bugs and feature requests for ScrumBurndownPlugin are
    7688[query:?status=new&status=assigned&status=reopened&group=&component=ScrumBurndownPlugin&order=priority  here].