Changes between Version 279 and Version 280 of ScrumBurndownPlugin


Ignore:
Timestamp:
Aug 19, 2008, 8:10:38 AM (16 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ScrumBurndownPlugin

    v279 v280  
    44
    55== News ==
     6 * '''Will crash Trac 0.11.''' If you have installed it and upgraded your trac.11 into oblivion, apply the following patch and replace the egg:
     7{{{
     8Index: burndown/burndown.py
     9===================================================================
     10--- burndown/burndown.py        (revision 4148)
     11+++ burndown/burndown.py        (working copy)
     12@@ -139,7 +139,7 @@
     13 
     14     def get_navigation_items(self, req):
     15         if req.perm.has_permission("BURNDOWN_VIEW"):
     16-            yield 'mainnav', 'burndown', Markup('<a href="%s">Burndown</a>', self.env.href.burndown())
     17+            yield 'mainnav', 'burndown', Markup('<a href="%s">Burndown</a>') % req.href.burndown()
     18 
     19     #---------------------------------------------------------------------------
     20     # IPermissionRequestor methods
     21}}}
     22
    623 * '''KNOWN BUG''' There is a [wiki:ScrumBurndownPlugin#BugsFeatureRequests known bug] in head.
    724 * '''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.