Opened 18 years ago
Closed 18 years ago
#391 closed defect (fixed)
`DoxygenPlugin` object has no attribute `get_htdocs_dirs`
Reported by: | anonymous | Owned by: | Jason Parks |
---|---|---|---|
Priority: | high | Component: | DoxygenPlugin |
Severity: | major | Keywords: | Error |
Cc: | Trac Release: | 0.10 |
Description
Latest version of DoxygenPlugin using Trac SVN trunk, generates this error in the log file, trac.log running as a plugin, TracDoxygen-0.1-py2.3.egg
:
2006-05-25 11:11:12,310 Trac[main] ERROR: 'DoxygenPlugin' object has no attribute 'get_htdocs_dirs' Traceback (most recent call last): File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/trac/web/main.py", line 299, in dispatch_request dispatcher.dispatch(req) File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/trac/web/main.py", line 189, in dispatch resp = chosen_handler.process_request(req) File "/System/Library/Frameworks/Python.framework/Versions/2.3/lib/python2.3/site-packages/trac/web/chrome.py", line 219, in process_request for dir in [os.path.normpath(dir[1]) for dir AttributeError: 'DoxygenPlugin' object has no attribute 'get_htdocs_dirs'
Attachments (0)
Change History (7)
comment:1 follow-up: 2 Changed 18 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 follow-up: 4 Changed 18 years ago by
Replying to anonymous:
... The following patch adds an empty implementation.
By looking at the doxygen plugin code, it seems that an empty implementation would be OK, but this doesn't mean you should close the ticket as fixed: this has to be done by the plugin author once the problem has been effectively fixed in the code.
comment:3 Changed 18 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
(and therefore reopening it)
comment:4 follow-up: 5 Changed 18 years ago by
... but this doesn't mean you should close the ticket as fixed: this has to be done by the plugin author once the problem has been effectively fixed in the code.
So that would be probably never :-).
comment:5 follow-up: 6 Changed 18 years ago by
Replying to anonymous:
... but this doesn't mean you should close the ticket as fixed: this has to be done by the plugin author once the problem has been effectively fixed in the code.
So that would be probably never :-).
If you would like to help with development, just email the current maintainer, and ask them to send Alec a message indicating that he should add you to this project.
comment:6 Changed 18 years ago by
If you would like to help with development, just email the current maintainer, and ask them to send Alec a message indicating that he should add you to this project.
Sorry for not logged reply. We are curently solving that with Alec.
comment:7 Changed 18 years ago by
Resolution: | → fixed |
---|---|
Status: | reopened → closed |
Fixed in changeset 871.
Since DoxygenPlugin is an ITemplateProvider, it needs to implement the method
get_htdocs_dirs()
. The following patch adds an empty implementation.