Problem was, that if I clicked for example 'Classes' Link, the plugin
searched for a file /path/to/doxygen/classes.html instead of /path/to/doxygen/html/classes.html. The result was that it didn't
find the page and rerouted to the search.
I had to apply the following patch (for the 0.10 version).
Note: I did NOT test what happens if the 'html_output' option is
not set in 'trac.ini'.
--- doxygentrac.py.orig 2007-05-23 09:42:35.750206000 +0200
+++ doxygentrac.py 2007-05-23 09:43:07.942571000 +0200
@@ -263,7 +263,7 @@
self.html_output,
file or self.index])
else:
- doc = ''
+ doc = self.html_output
def lookup(file, category='undefined'):
"""Build (full path, relative link) and check if path exists."""