Opened 17 years ago
Closed 16 years ago
#2936 closed defect (fixed)
problem installing plugin
Reported by: | anonymous | Owned by: | daan |
---|---|---|---|
Priority: | normal | Component: | ScrumBurndownPlugin |
Severity: | blocker | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
- installed trac 0.11b1
- timingestimation plugin from svn
- scrumburndown from svn
I get a traceback like this:
Traceback (most recent call last):
File "/usr/lib/python2.5/site-packages/Trac-0.11b1-py2.5.egg/trac/web/api.py", line 339, in send_error
'text/html')
File "/usr/lib/python2.5/site-packages/Trac-0.11b1-py2.5.egg/trac/web/chrome.py", line 652, in render_template
data = self.populate_data(req, data)
File "/usr/lib/python2.5/site-packages/Trac-0.11b1-py2.5.egg/trac/web/chrome.py", line 560, in populate_data
dchrome?.update(req.chrome)
File "/usr/lib/python2.5/site-packages/Trac-0.11b1-py2.5.egg/trac/web/api.py", line 168, in getattr
value = self.callbacks[name](self)
File "/usr/lib/python2.5/site-packages/Trac-0.11b1-py2.5.egg/trac/web/chrome.py", line 439, in prepare_request
for category, name, text in contributor.get_navigation_items(req):
File "build/bdist.linux-i686/egg/burndown/burndown.py", line 142, in get_navigation_items
yield 'mainnav', 'burndown', Markup('<a href="%s">Burndown</a>', self.env.href.burndown())
LookupError: unknown encoding: /tst/burndown
Attachments (0)
Change History (3)
comment:1 Changed 17 years ago by
comment:2 Changed 16 years ago by
Owner: | changed from Sam Bloomquist to daan |
---|
comment:3 Changed 16 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
(In [4736]) Release of version 1.9 of the Trac Scrum burndown plugin. See http://stuq.nl/weblog/2008-11-04/scrum-burndown-plugin-19-released for more information.
The Scrum burndown plugin is currently compatible and tested with Trac 0.10.5, Trac 0.11.1, Python 2.4 and Python 2.5.
Issues fixed: Fixed #3498 Incompatible with Genshi 0.5 Fixed #1743 No support for 0.11 version on trac Fixed #2330 How to enable ScrumBurndownPlugin in 0.11b1 Fixed #1590 printing to stderr causes svn post-commit hook to crash Fixed #1510 Porting to Trac 0.11 and Genshi templates Fixed #2936 problem installing plugin Fixed #1668 Environment Not Found Fixed #1472 URL Not Found when click Burndown menu Fixed #3017 Trac 0.11 - Burndown Chart does not show tickets with status 'accepted'
See http://genshi.edgewall.org/changeset/834
You will notice the docs say that: Markup('<b>%s</b>', name)
Should be replaced by: Markup('<b>%s</b>') % name
Change manually and rebuild your egg file and you should be fine
This is a change in genshi v5 I think