Re: [Doxygen-users] Howto get HTML links to functions so external documents links o function docume
Brought to you by:
dimitri
From: Dimitri V. H. <do...@gm...> - 2008-10-18 16:01:58
|
On 18 okt 2008, at 17:41, Pierre Rouleau wrote: > On Sat, Oct 18, 2008 at 10:39 AM, Dimitri Van Heesch <do...@gm... > > wrote: > >> Doxygen does generate persistent links already (unless SHORT_NAMES >> is set to >> YES). >> So I'm interested in which links you see change from one run to >> another. >> > > Hi Dimitri, thanks for your answer. > > I tried SHORT_NAMES set to yes. However, the link to a member > function or a global function is still set to something like > file:///D:/dvp/libs/communication/vcom/_dox/en/html/ > a00003.html#691f2832d51c16367ab2fbf6e444ae8d > . That is the URL I get for a member function link ( AddData() : > CAPIDataList) in the Doxygen page showing the "list of all class > members with links to the class they belong to". > > Can I assume that a URL that looks this way would always stay the same > for a given member function even when the source code evolves? I used > the latest version of Doxygen for that example. Hi Pierre, You should set SHORT_NAMES to NO, as I was trying to suggest. Doxygen makes local links, so I guess your browser "invented" the file:///D:/.../html/ stuff, it is not there in the actual HTML files. The link anchor is based on the function prototype, as long as that stays the same, the anchor will stay the same as well. Regards, Dimitri |