Using the revtree plugin on the latest trac svn, it gives the following error (when logged on on the base url, without /wiki):
Traceback (most recent call last):
File "/usr/lib/python2.5/site-packages/Trac-0.11dev_r6631-py2.5.egg/trac/web/main.py", line 232, in dispatch
self._post_process_request(req)
File "/usr/lib/python2.5/site-packages/Trac-0.11dev_r6631-py2.5.egg/trac/web/main.py", line 297, in _post_process_request
resp = f.post_process_request(req, *(None,)*arity)
File "build/bdist.linux-i686/egg/revtree/web_ui.py", line 158, in post_process_request
if (url_parts > 1) and (url_parts[1] in self.contexts):
IndexError: list index out of range
this is caused in:
url_parts = req.path_info.split(u'/')
if (url_parts > 1) and (url_parts[1] in self.contexts):