id	summary	reporter	owner	description	type	status	priority	component	severity	resolution	keywords	cc	release
772	Wrong link path in navigation	timn	cboos	The link in the navigation goes to "doxygen". So following this link it will take you to something like !http://server/trac/doxygen. On this the relative links in the Trac navigation (for instance to classes.html) will point to a non-existent path. The problem is the following code in source:doxygenplugin/0.10/doxygentrac/doxygentrac.py?rev=1251, line 86-90:\r\n{{{\r\n    def get_navigation_items(self, req):\r\n        if req.perm.has_permission('DOXYGEN_VIEW'):\r\n            # Return mainnav buttons.\r\n            yield 'mainnav', 'doxygen', html.a(self.title,\r\n                                               href=req.href.doxygen())\r\n}}}\r\nThis will create a relative link to doxygen. Similar to the code in 0.9 this should read:\r\n{{{\r\n    def get_navigation_items(self, req):\r\n        if req.perm.has_permission('DOXYGEN_VIEW'):\r\n            # Return mainnav buttons.\r\n            yield 'mainnav', 'doxygen', html.a(self.title,\r\n                                               href=req.href.doxygen() + '/')\r\n}}}\r\nNote the additional {{{+ '/'}}}. This will create a link to !http://server/trac/doxygen/ and relative links will work just fine.	defect	assigned	high	DoxygenPlugin	major				0.10
