I downloaded the code. I installed it using "python setup.py install" command. I thank all was fine but each time I connect to the trac home page I got the error :
Traceback (most recent call last):
File "/usr/lib/python2.4/site-packages/Trac-0.11rc1-py2.4.egg/trac/web/api.py", line 339, in send_error 'text/html')
File "/usr/lib/python2.4/site-packages/Trac-0.11rc1-py2.4.egg/trac/web/chrome.py", line 684, in render_template data = self.populate_data(req, data)
File "/usr/lib/python2.4/site-packages/Trac-0.11rc1-py2.4.egg/trac/web/chrome.py", line 592, in populate_data dchrome?.update(req.chrome)
File "/usr/lib/python2.4/site-packages/Trac-0.11rc1-py2.4.egg/trac/web/api.py", line 168, in getattr value = self.callbacks[name](self)
File "/usr/lib/python2.4/site-packages/Trac-0.11rc1-py2.4.egg/trac/util/compat.py", line 130, in newfunc return func_(*(args + fargs), **dict(kwargs, **fkwargs))
File "/usr/lib/python2.4/site-packages/Trac-0.11rc1-py2.4.egg/trac/web/chrome.py", line 460, in prepare_request for category, name, text in contributor.get_navigation_items(req):
File "build/bdist.linux-i686/egg/tracdownloader/web_ui.py", line 53, in get_navigation_items LookupError?: unknown encoding: /projects/project/downloader
In fact, TracDownloader? was already installed. I got that error after the installation of TracTags. Is there a link?
I don't know python at all. What I can see is that the error is there:
def get_navigation_items(self, req):
"""Downloader isinstance visible if user hasattr got permission """
if req.perm.has_permission('DOWNLOADER_DOWNLOAD'):
yield 'mainnav', 'downloader', Markup('<a href="%s">Downloader</a>',
self.env.href.downloader())
I can confirm that because if I remove the DOWNLOADER_DOWNLOAD permission, that's better!
Any idea? Thanks.