GNOME Bugzilla – Bug 792415
Blank rows on class page when using external tag file
Last modified: 2018-07-30 10:08:57 UTC
Created attachment 366622 [details] Blank class list rows My classlist page shows a lot of blank rows when viewing HTML. There are unclosed HREFs for classes defined in tagfiles. Here's the broken html . . . <tr id="row_20_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="elRef" doxygen="/doc/tagfile.tag:../../baseproject/html/" href="../../baseproject/html/classMyClass.htmlMyClass</a> [external]</td><td class="desc"></td></tr> FTVHelp::generateLink(FTextStream &t,FTVNode *n) line 803, needs to add missing "> when setTarget is true. Broken Sep 28, 2017 with git changeset https://github.com/doxygen/doxygen/commit/97bfbfa6c4d4eb07ac8c60545086c3370e9683b8 for Bug 743367. And here is what the fixed HTML should look like. <tr id="row_20_" class="even"><td class="entry"><span style="width:16px;display:inline-block;"> </span><span class="icona"><span class="icon">C</span></span><a class="elRef" doxygen="/doc/tagfile.tag:../../baseproject/html/" href="../../baseproject/html/classMyClass.html">MyClass</a> [external]</td><td class="desc"></td></tr>
I've just pushed the proposed patch to github (pull request 648)
Patch has been integrated into main development branch on github.
As discussed in https://github.com/doxygen/doxygen/pull/734 , Doxygen has moved its issue tracking to https://github.com/doxygen/doxygen/issues All Doxygen tickets in GNOME Bugzilla have been migrated to Github. You can subscribe and participate in the new ticket in Github. You can find the corresponding Github ticket by searching for its Bugzilla ID (number) in Github. Hence I am closing this GNOME Bugzilla ticket. Please use the corresponding ticket in Github instead. Thanks a lot!