summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Refactoring: remove unused Doxygen::htmlDirMapDimitri van Heesch2021-01-013-43/+2
|
* Refactoring: replace Doxygen::directories by Doxygen::dirLinkedMapDimitri van Heesch2021-01-0113-123/+100
|
* Refactoring: remove unused Doxygen::entryDBFileName and Doxygen::objDBFileNameDimitri van Heesch2021-01-012-26/+0
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-12-311-2/+2
|\
| * Merge pull request #8287 from albert-github/feature/issue_8286Dimitri van Heesch2020-12-311-2/+2
| |\ | | | | | | issue #8286 Incorrect processing of VHDL strings
| | * issue #8286 Incorrect processing of VHDL stringsalbert-github2020-12-291-2/+2
| | | | | | | | | | | | See a `\` in comment in VHDL also as a normal character in a string.
* | | Refactoring: replace Doxygen::groupSDict by Doxygen::groupLinkedMapDimitri van Heesch2020-12-3125-403/+226
| | |
* | | Refactoring: replaced PageSDict by PageLinked*MapDimitri van Heesch2020-12-3120-332/+225
|/ /
* | Fix cases where classes inside inline namespaces could lead to crashesDimitri van Heesch2020-12-312-190/+231
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-12-313-12/+46
|\ \
| * \ Merge pull request #8289 from brycelelbach/clang-include-input-pathsDimitri van Heesch2020-12-312-12/+25
| |\ \ | | | | | | | | Add a CLANG_INCLUDE_INPUT_PATHS option
| | * | Add a CLANG_INCLUDE_INPUT_PATHS option which can be used to control whetherBryce Adelstein Lelbach aka wash2020-12-312-12/+25
| | | | | | | | | | | | | | | | | | | | the directory of every input file is added as an include when using Clang assisted parsing.
| * | | Merge pull request #8285 from albert-github/feature/bug_doxyw_docuDimitri van Heesch2020-12-311-0/+21
| |\ \ \ | | | | | | | | | | Layout in doxywizard documentation
| | * | | Layout in doxywizard documentationalbert-github2020-12-291-0/+21
| | | |/ | | |/| | | | | | | | | | | | | When looking at page 100 of the doxygen 1.9.0 manual (i.e. chapter Doxywizard usage, bold part "Configure doxygen using the Wizard and/or Expert tab..Configure doxygen using the Wizard and/or Expert tab...") we see that the word "Wizard tab" in comparison to "Expert tab" are a bit on a strange place. In the HTML documentation this looks OK The problem is caused by the fact that we have her nested description (`<dl>` lists), a new paragraph should be started / the line should be properly filled and this can be done by means of the `\hfill`.
* | | | Refactoring: replace QMap by std::map in vhdldocgenDimitri van Heesch2020-12-311-36/+34
|/ / /
* | | Fix potential crash with inline namespaceDimitri van Heesch2020-12-301-25/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Happens when an inline namespace also appears as normal namespace in the parent scope. Minimal reproduction scenario: ``` namespace N { inline namespace M { namespace L { } } namespace L { } } ```
* | | Refactoring: remove SIntDict and SIntList (no longer used)Dimitri van Heesch2020-12-301-336/+26
| | |
* | | Refactoring: change MemberGroupSDict to MemberGroupListDimitri van Heesch2020-12-3020-488/+262
| | |
* | | Refactoring: replace Doxygen::memGrpInfoDict by Doxygen::memberGroupInfoMapDimitri van Heesch2020-12-305-40/+47
| | |
* | | Refactoring: modernise MemberGroupListDimitri van Heesch2020-12-307-197/+99
| | |
* | | Fix size_t->int related compiler warnings on Windows 64bitDimitri van Heesch2020-12-301-4/+4
| | |
* | | Replaced UsedDirsContainer with UsedDirLinkedMapDimitri van Heesch2020-12-303-84/+102
| | | | | | | | | | | | | | | UsedDirLinkedMap is based on the LinkedMap container; this reduces the amount of unmanaged raw pointers, while still allowing quick lookup and range based loops.
* | | Merge branch 'feature/replace_QDict_by_std-container_for_m_usedDirs' of ↵Dimitri van Heesch2020-12-303-20/+23
|\ \ \ | | | | | | | | | | | | https://github.com/dhebbeker/doxygen into dhebbeker-feature/replace_QDict_by_std-container_for_m_usedDirs
| * | | Substitute `QDict<UsedDir>` with `std::map<QCString, UsedDir * >`.David Hebbeker2020-12-293-20/+23
| |/ / | | | | | | This allows to use range based for loops.
* | | Merge pull request #8288 from albert-github/feature/issue_8286_2Dimitri van Heesch2020-12-301-0/+10
|\ \ \ | | | | | | | | issue #8286 Incorrect processing of VHDL strings (comment part)
| * | | issue #8286 Incorrect processing of VHDL stringsalbert-github2020-12-291-0/+10
| |/ / | | | | | | | | | Just copying normal vhdl comment, don't interpret it.
* | | Merge pull request #8284 from albert-github/feature/issue_8282Dimitri van Heesch2020-12-301-1/+1
|\ \ \ | | | | | | | | issue #8282 Error on ALIAS declaration without quotes
| * | | issue #8282 Error on ALIAS declaration without quotesalbert-github2020-12-291-1/+1
| |/ / | | | | | | | | | | | | - also escape a "," (comma) when writing out string values (doxygen and doxywizard) - check on empty lists in stringlist for the wizard
* | | issue #8291: Doxygen crash on Windows when INLINE_SIMPLE_STRUCTS=YESDimitri van Heesch2020-12-301-4/+16
| | |
* | | Refactoring: modernise member indicesDimitri van Heesch2020-12-304-297/+163
| |/ |/|
* | Refactoring: Modernise client side part of searchindexDimitri van Heesch2020-12-294-470/+389
|/
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-12-261-2/+1
|\
| * Miscounting lines in case a fenced code blockalbert-github2020-12-261-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having the following code: ``` # The page ~~~ ABC ~~~ ~~~ DEF ~~~ ~~~ GHI ~~~ ~~~ JKL~~~ \line17 ``` we get the warnings: ``` .../aa.md:16: warning: Found unknown command '\line17' ``` instead of ``` .../aa.md:17: warning: Found unknown command '\line17' ``` The last character of the fenced code block is not handled in the code block. This problem has been solved (and also checked against the previous examples of #8045 and #8123).
* | Avoid "Internal inconsistency" warnings for scoped enumsDimitri van Heesch2020-12-261-3/+7
|/ | | | Can happen if they appear in an undocumented namespace.
* When instantiating templates also instantiate nested classesDimitri van Heesch2020-12-263-26/+47
|
* Improved sorting of class list/hierarchyDimitri van Heesch2020-12-261-3/+9
| | | | | | | When SORT_BY_SCOPE_NAME = NO nested classes with the same name but in different scopes were shown unsorted. Now they are alphabetically sorted by scope name which make the results more deterministic.
* issue #8050: Artificial classDef confuses getCanonicalTypeForIdentifier() ↵Dimitri van Heesch2020-12-251-9/+34
| | | | (part 2)
* Refactoring: removed some dead codeDimitri van Heesch2020-12-251-2/+0
|
* Refactoring: Re-added sorting for namespacesDimitri van Heesch2020-12-251-0/+8
|
* Refactoring: better processing of (un)quoted values for tags in the ↵Dimitri van Heesch2020-12-253-48/+48
| | | | configuration file (part 2)
* Refactoring: better processing of (un)quoted values for tags in the ↵Dimitri van Heesch2020-12-241-318/+427
| | | | configuration file
* Fixed small issue computing indentation for inline line breaksDimitri van Heesch2020-12-241-0/+1
|
* Merge branch 'feature/bug_param_ilinebr' of ↵Dimitri van Heesch2020-12-241-1/+1
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_param_ilinebr
| * Concatenation of \param text and \details textalbert-github2020-12-231-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having a simple file like: ``` /// \file /// @brief Different xxxxxxxxxxxxxxxxxxxxx /// @param[in] var = zzzzzz /// @details Different yyyyyyyy void fie(int var); `` we see in the version 1.8.18 that the text is displayed as: ``` Parameters [in] var = zzzzzz Different yyyyyyyy ``` but in the newer versions this is like: ``` Parameters [in] var = zzzzzz Different yyyyyyyy ``` the inserted intermediate `\ilinebr` are not handled as newlines
* | issue #7471: [1.8.16 regression] multiple use of page labelDimitri van Heesch2020-12-241-2/+5
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-12-244-247/+3
|\ \
| * \ Merge pull request #8276 from albert-github/feature/bug_refactor_lauout_defaultDimitri van Heesch2020-12-244-247/+3
| |\ \ | | | | | | | | Refactoring position of layout_default.xml
| | * | Refactoring position of layout_default.xmlalbert-github2020-12-244-247/+3
| | | | | | | | | | | | | | | | The position of the `layout_defaul.xml` was still done by a dedicated script and not by the resource manager.
* | | | issue #8050: Artificial classDef confuses getCanonicalTypeForIdentifier()Dimitri van Heesch2020-12-241-1/+6
|/ / /
* | | issue #8274 List entries for file & namespace enums (part 2)Dimitri van Heesch2020-12-242-4/+19
|/ /