Re: [Doxygen-users] Best way to 'relocate' links to html
Brought to you by:
dimitri
From: Dimitri v. H. <do...@gm...> - 2014-02-17 20:17:13
|
Hi Edward, On 17 Feb 2014, at 16:32 , Edward Moyse <edw...@ce...> wrote: > Hi all, > > I'm just trying to understand why our doxygen builds take such an insane amount of time. I think we're not currently building tags first then making the html after, as recommended here: > http://stackoverflow.com/questions/8247189/doxygen-is-slow/8247993#8247993 > and so I'm investigating changing this... > > But also we seem to have an incredibly slow part of the process where the html is parsed to turn links like: > file:///my/local/path/doc/xAODMuon/html/classSG_1_1AuxElement.html > > into > html://a/web/location/doc/xAODMuon/html/classSG_1_1AuxElement.html > > (The reason for this is we build the documentation on a local machine, then once it's done it's copied to a web visible location) > > Presumably there is a better way to do this? I'd have thought it should be possible to specify that the html will eventually live elsewhere, but I had a look at the documentation and couldn't see it? Doxygen normally doesn't create any absolute URLs (with file:// or http:// in them), so the URL renaming process is not part of doxygen and shouldn't be needed at all. Just copy the HTML files to the web location in the end. Regards, Dimitri |