GNOME Bugzilla – Bug 693406
Doxygen should support tag files with same name
Last modified: 2015-08-29 15:33:54 UTC
Created attachment 235492 [details] TAG file issue As an example, if one adds this to Doxyfile: TAGFILES = \ ../A/tags=../../A/html \ ../B/tags=../../B/html \ ../C/tags=../../C/html ...only links to documentation in C will work while links to A and B will use the base URL of C and are therefore broken. Attached you will find an example project. Dimitri has confirmed that this is an issue because the tag file names are used to identify the link target. So if two or more tag files have the same name, the base URL of the last of these in TAGFILES will be used for all of them. Doxygen should support tag files with identical names, e.g., by identifying the link targets by tag file path (directory + filename).
Confirmed. Should be fixed in the next subversion update.
This bug was previously marked ASSIGNED, which means it should be fixed in doxygen version 1.8.4. Please verify if this is indeed the case. Reopen the bug if you think it is not fixed and please include any additional information that you think can be relevant.
This change broke install-time rewriting of documentation references in our custom doc-install.pl script in mm-common. We are now working around the issue by stripping the tagfile directory prefix in a post-processing step, so it's no longer a problem for us. However, another visible side effect of this change is that the generated HTML files are now full of local path references leaked from the build environment, which is rather ugly.