albert-github

Results 944 comments of albert-github

With the version that was valid at the moment that the issue was written (doxygen 1.5.2) , the simple file: ``` /** \file * \section sect0 First file section *...

With a minimal `Doxyfile`: ``` EXTRACT_ALL = YES EXTRACT_ANON_NSPACES = YES EXTRACT_STATIC = YES ``` We get for the 1.5.1-p1 version (for some reason my 1.5.2. version doesn't want to...

With the 1.5.2 version we see on the detailed page, when `SEPARATE_MEMBER_PAGES=YES`: ![image](https://user-images.githubusercontent.com/5223533/177561414-ea15c044-26d4-4dd7-abf3-69fceb38bd7c.png) and when `SEPARATE_MEMBER_PAGES=NO`: ![image](https://user-images.githubusercontent.com/5223533/177561671-3fe0690f-a4b0-421e-9eec-4b154e8d4503.png) For the 1.9.4 version we see in both cases: ![image](https://user-images.githubusercontent.com/5223533/177561793-79124d2c-28b9-42e1-baea-1d2ce675930b.png) I think the...

The problem here is that based on the `SERVER_BASED_SEARCH` the resulting html output will contain different code as can be see e.g. in the method `writeDefaultQuickLinks` of `htmlgen.cpp`: ``` t

The file search.idx is currently (1.9.4) not automatically generated, it now requires the setting `SERVER_BASED_SEARCH` (introduced in version 1.6.2). The given example doesn't contain a `Doxyfile` so it is not...

I tried to run the example from @FlaShG with a simple Doxyfile: ``` EXTRACT_ALL=YES ``` though with the versions 1.9.0 and 1.9.1 this crashed. with the version 1.8.20 it ran....

That is strange. - on which platform are you running? - with the `HAVE_DOT=NO` I get as last lines on the console ``` Generating class documentation... Generating docs for compound...

Remains strange that you don't get the crash. Maybe @doxygen has an idea.

@jadaml - What are you exactly missing? - Did you set `EXTRACT_STATIC=YES` in your doxygen configuration file? - Can you please attach a, small, self contained example (source+configuration file in...

The problem that we have here is that doxygen is not a compiler and that doxygen tries to optimize the processing of the different files. As soon as an include...