After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 745481 - Doxygen generates bad "More..." file links for functions within a namespace
Doxygen generates bad "More..." file links for functions within a namespace
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: build
1.8.9.1
Other Windows
: Normal major
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2015-03-02 21:27 UTC by MNovak
Modified: 2015-06-27 19:01 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Test header that repros the bug (318 bytes, text/plain)
2015-03-02 21:27 UTC, MNovak
Details

Description MNovak 2015-03-02 21:27:33 UTC
Created attachment 298348 [details]
Test header that repros the bug

Simple repro test.h file (inlined below and attached).  Repros with default configuration.

The generated files page for the test.h file:

X:\doxytest\html\test_8h.html

Generates broken "More..." links for all functions that are within a namespace:

file:///X:/doxytest/html/test_8h.html#a21a676ce17bdfef3cca5c682b1f065cf

The documentation for these functions is on the namespace page, rather than the file page (doxygen's link is broken).

Severity is high in a project (like mine) that shares a common namespace where the most common means of looking through code is by File.



//! @file
//! This is the test file documentation

//! This is the documentation for the namespace
namespace nsname
{
    //! @brief This is the function inside of the namespace.
    //!
    //! This is the long description for the function inside of the namespace
    void FunctionInside()
    {
    }
}
Comment 1 albert 2015-03-04 19:03:20 UTC
I've just pushed a proposed solution to github (pull request 305).
Comment 2 Dimitri van Heesch 2015-03-05 20:58:55 UTC
Thanks, I've merged the pull request
Comment 3 Dimitri van Heesch 2015-06-27 19:01:58 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.8.10. 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 (preferably in the form of a self-contained example).