Opened 18 years ago
Closed 16 years ago
#1472 closed defect (fixed)
URL Not Found when click Burndown menu
Reported by: | Rodrigo | Owned by: | daan |
---|---|---|---|
Priority: | normal | Component: | ScrumBurndownPlugin |
Severity: | normal | Keywords: | burndown scrum |
Cc: | Trac Release: | 0.10 |
Description
I´ve just installed the .egg, upgraded the db. But when i click the Burndown menu i get this:
Not Found The requested URL /burndown was not found on this server.
Attachments (0)
Change History (4)
comment:1 Changed 18 years ago by
Summary: | URL Not Found when I click Burndown menu → URL Not Found when click Burndown menu |
---|
comment:2 Changed 17 years ago by
here is patch for [2215]:
-
burndown/burndown.py
18 18 from trac.perm import IPermissionRequestor 19 19 from trac.web.chrome import INavigationContributor, ITemplateProvider, add_stylesheet 20 20 from trac.web.main import IRequestHandler 21 from trac.util import escape, Markup, format_date 21 from trac.util import format_date 22 from trac.util.html import html 22 23 from trac.ticket import ITicketChangeListener 23 24 24 25 class BurndownComponent(Component): … … 139 140 140 141 def get_navigation_items(self, req): 141 142 if req.perm.has_permission("BURNDOWN_VIEW"): 142 yield 'mainnav', 'burndown', Markup('<a href="%s">Burndown</a>', self.env.href.burndown()) 143 yield('mainnav', 'burndown', 144 html.A('Burndown', href=req.href.burndown(), accesskey=8)) 143 145 144 146 #--------------------------------------------------------------------------- 145 147 # IPermissionRequestor methods
(hmm, diff macro doesn't work here in the same manner as in default trac 0.10.3, shame)
comment:3 Changed 16 years ago by
Owner: | changed from Sam Bloomquist to daan |
---|
comment:4 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'
This is usual issue when Trac is not set as virtual host as this one server. Also occures when there are a number of Trac environments.
The folloing changes fixed this issue for me: changes to burndown.py:
Commented Markup can be removed from code completely.