Re: [Doxygen-users] Compare with already existing and identical output file and *not* refresh its timestamp?

2019-02-06 Thread Sebastien Loriot (GeometryFactory)
At least for html you can set the option HTML_TIMESTAMP = OFF. Sebastien. On 02/07/2019 04:15 AM, Richard Damon wrote: On 2/6/19 9:45 PM, Marc Herbert wrote: Hi,  I understand incremental doxygen compilation is a hard problem. I've read some of the past discussions. This request is *not* abo

Re: [Doxygen-users] Pages in Doxygen 1.8.11

2016-06-30 Thread Sebastien Loriot (GeometryFactory)
Hi, set EXTENSION_MAPPING = dg=C++ in your config file (replace C++ by your language) Best, Sebastien. On 06/30/2016 10:46 AM, Fabian Nick wrote: > Hi everyone, > > we have various files in our project that we name *.dg that just contain > 'User Manual Pages' like > >> /*! \page gettingsta

[Doxygen-users] Inheritance by non-documented classes

2014-09-22 Thread Sebastien Loriot
Hi, I have the following example: /// this class is documented struct documented{}; struct hidden : public documented {}; setting HIDE_UNDOC_CLASSES = YES Then in the documentation page of `documented` I can see: Inherited by hidden. Is it expected or is it a bug? Tested wit

[Doxygen-users] file documentation in

2014-09-22 Thread Sebastien Loriot
Hi, I have the following example: bar/foo.h /// \defgroup GRP This is a group /// \file bar/foo.h /// \ingroup GRP /// \brief This file is documented Then the group page is showing me the file foo.h where as I would have expected to see bar/foo.h (which is what I can see if I click on

Re: [Doxygen-users] Get rid of "More..."

2014-05-02 Thread Sebastien Loriot
On 05/02/2014 04:31 PM, MK wrote: > On Fri, 02 May 2014 15:38:23 +0200 > "Sebastien Loriot (GeometryFactory)" wrote: >> This is the default, there is nothing to tune. > > I can tell it is the default to use it, yes. But note the title of > the thread here i

Re: [Doxygen-users] Get rid of "More..."

2014-05-02 Thread Sebastien Loriot (GeometryFactory)
On 05/02/2014 03:14 PM, MK wrote: > On Fri, 02 May 2014 14:42:25 +0200 > Sebastien Loriot wrote: >> On 05/02/2014 02:26 PM, MK wrote: >>> Is there some way I can toggle the inclusion of the "More..." link >>> >> The fix has been included into doxyg

Re: [Doxygen-users] Get rid of "More..."

2014-05-02 Thread Sebastien Loriot
On 05/02/2014 02:26 PM, MK wrote: > Is there some way I can toggle the inclusion of the "More..." link at > the end of brief descriptions? It's come out in my docs as totally > superfluous since it follows, e.g., the function or type name which is > a link to the exact same place. > > Sincerely, M

Re: [Doxygen-users] Doxygen 1.8.6 unusable to build our doc due to tag_files generated

2014-03-01 Thread Sebastien Loriot (GeometryFactory)
On 02/28/2014 10:33 PM, Dimitri van Heesch wrote: > Hi Sebastien, > Hi Dimitri, > On 28 Feb 2014, at 10:59 , Sebastien Loriot wrote: > >> Hello, >> >> Our library documentation is decomposed into packages and each package >> documentation has its own doxygen

[Doxygen-users] Doxygen 1.8.6 unusable to build our doc due to tag_files generated

2014-02-28 Thread Sebastien Loriot
Hello, Our library documentation is decomposed into packages and each package documentation has its own doxygen compilation unit. The links between the packages are handled thanks to the tag-files. The build is OK when using doxygen 1.8.4. When we tried to switch to 1.8.6 we noticed that the seco

Re: [Doxygen-users] Public and private parts in documentation

2013-09-23 Thread Sebastien Loriot
On 09/23/2013 04:45 PM, Yura V. Vishnevskiy wrote: > Hello Doxygen Users and Developers, Hello, > my code contains different documented parts, some of them are just for > internal in-house usage, others are public. Both types can be in the same > source files. I am trying to figure out whether it

Re: [Doxygen-users] Forcing to have a space before doxygen \cite command

2013-08-02 Thread Sebastien Loriot (GeometryFactory)
Hello, Thanks a lot it is working. Sebastien. On 08/02/2013 01:53 PM, Stefan Pendl wrote: > Am 02.08.2013 08:31, schrieb Sebastien Loriot (GeometryFactory): >> Hello, >> >> In some code documentation, I have sentences like "... as described in >> \cite FooBar..

[Doxygen-users] Forcing to have a space before doxygen \cite command

2013-08-01 Thread Sebastien Loriot (GeometryFactory)
Hello, In some code documentation, I have sentences like "... as described in \cite FooBar...". Since no space is put before the reference, the output looks weird. Do you know a trick or a custom command that could force having a space before the reference? Thanks, Sebastien. ---