summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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
|/ /
* | Regression: fixed 'no matching class member found for' warning in OpenMSX ↵Dimitri van Heesch2020-12-231-2/+2
| | | | | | | | project
* | Regression: Members of template instances were no longer outputtedDimitri van Heesch2020-12-231-1/+1
| |
* | issue #8274: List entries for file & namespace enumsDimitri van Heesch2020-12-231-76/+65
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-12-231-1/+1
|\ \ | |/
| * issue #8269 Make failed when building layout.cppalbert-github2020-12-231-1/+1
| | | | | | | | | | When a `\r` is present of the line ending of the file `layout_default.xml` this leads to unexpected results (the `\r` should not be present at all). By means of removing the `\r` this problem can be solved.
* | Refactoring: replace NamespaceSDict by NamespaceLinkedMapDimitri van Heesch2020-12-2317-282/+150
| |
* | Refactoring: replaced getNamespaceSDict() by getNamespaces()Dimitri van Heesch2020-12-2314-343/+313
|/
* issue #6471: Out-of-line documentation of scoped enumsDimitri van Heesch2020-12-221-3/+76
|
* Merge pull request #8268 from albert-github/feature/bug_warn_utilDimitri van Heesch2020-12-221-3/+3
|\ | | | | Remove warnings from util.cpp
| * Remove warnings from util.cppalbert-github2020-12-211-3/+3
| | | | | | | | | | | | | | | | Remove warnings from util.cpp (as done on other places as well): ``` ...\src\util.cpp(3592): warning C4242: '=': conversion from 'int' to 'char', possible loss of data ...\src\util.cpp(3593): warning C4242: '=': conversion from 'int' to 'char', possible loss of data ```
* | Merge pull request #8271 from albert-github/feature/bug_cnt_md_anchorDimitri van Heesch2020-12-221-1/+1
|\ \ | | | | | | Miscounting of lines in case of inserting an anchor for a "H." tag
| * | Miscounting of lines in case of inserting an anchor for a "H." tagalbert-github2020-12-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having a simple file like: ``` # The page # a section ##### a h5 section \error7 ``` we get as warning: ``` .../aa.md:8: warning: Found unknown command '\error7' ``` instead of ``` .../aa.md:7: warning: Found unknown command '\error7' ``` This is due to the fact that the ``` ##### a h5 section ``` is translated into: ``` \anchor autotoc_md2 <h5>a h5 section</h5> ``` instead of ``` \anchor autotoc_md2\ilinebr <h5>a h5 section</h5> ```
* | | Fixed more issues handling Java nested generic classes (part 2)Dimitri van Heesch2020-12-221-2/+6
| | |
* | | Fixed more issues handling Java nested generic classesDimitri van Heesch2020-12-221-2/+28
|/ /
* | Refactoring: remove unused Doxygen::genericsSDictDimitri van Heesch2020-12-224-42/+2
| |
* | Fixed scope resolution problem for nested Java genericsDimitri van Heesch2020-12-223-11/+16
|/
* Merge pull request #8237 from albert-github/feature/bug_anchor_member_groupDimitri van Heesch2020-12-211-1/+1
|\ | | | | Multiple anchors with member-group
| * Multilke anchors with member-groupalbert-github2020-12-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When running a link checker on the CGAL (e.g. AABB_tree package) we get a lot of warnings like: ``` Processing file:///.../doc_output/AABB_tree/classCGAL_1_1AABB__tree.html List of duplicate and empty anchors member-group Lines: 191, 229, 258, 297, 316, 335, 347 ``` The member-group anchor is shown like: ``` <a name="member-group"></a> ``` and create each time the `\name` command is used. the `\name` command can be used multiple times on a page. There is (no way to) reference the anchor (like `<a href="#member-group">...`) found in the doxygen code. Setting the name to the empty string prevents the anchor from being created.
* | Merge pull request #8265 from albert-github/feature/bug_bld_warnDimitri van Heesch2020-12-213-7/+7
|\ \ | | | | | | Remove some build warnings
| * | Remove some build warningsalbert-github2020-12-203-7/+7
| | | | | | | | | | | | | | | | | | | | | | | | Removing some build warnings like: ``` D:\a\doxygen\doxygen\src\groupdef.cpp(628): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data D:\a\doxygen\doxygen\src\index.cpp(3950): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data ```
* | | Refactoring: modernize class indexDimitri van Heesch2020-12-218-327/+167
| | |
* | | Regression: Fixed crash while processing the Kafka package.Dimitri van Heesch2020-12-202-3/+5
| | |
* | | Avoid unused variable 'g_docCrossReferenceMutex' warningDimitri van Heesch2020-12-201-1/+2
|/ / | | | | | | When building without libclang support
* | Removed unused taggedInnerClasses memberDimitri van Heesch2020-12-193-24/+0
| |
* | Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMapDimitri van Heesch2020-12-1934-1131/+875
| |
* | Add param validation to typedef function pointersFabio Utzig2020-12-172-2/+2
| | | | | | | | | | | | | | | | | | | | Currently typedef'd function pointers, typically used as callbacks, don't have their `@param` documentation properly validated. This commit adds a proper check by initializing their memberdef with the parsed args. To avoid duplicating the params in the output, since typedef's already have the params in their definition, an extra check was added. Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no>
* | Simplified escaping for latex URLsDimitri van Heesch2020-12-161-11/+2
| |
* | Merge branch 'albert-github-feature/bug_utf_8_latex_href'Dimitri van Heesch2020-12-161-40/+83
|\ \
| * | Unified the routine to get the next UTF8 character from a UTF8 streamDimitri van Heesch2020-12-161-84/+71
| | |
| * | Merge branch 'feature/bug_utf_8_latex_href' of ↵Dimitri van Heesch2020-12-161-1/+57
| |\ \ | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_utf_8_latex_href
| | * | Incorrect handling of UTF-8 characters in latex reference statementalbert-github2020-12-111-1/+57
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | In case in there is a literal utf-8 character like the the Unicode En Dash (U+2013) a pages is accessed with `\T1\endash` like: ``` https://en.wikipedia.org/wiki/Damerau\T1\textendash_Levenshtein_distance ``` and this page cannot be found, so the UTF-8 character has to be handled properly here. This is found when solving issue #8241
* | | Merge pull request #8243 from albert-github/feature/issue_8142Dimitri van Heesch2020-12-161-1/+1
|\ \ \ | |/ / |/| | issue #8142 UTF-8 in URL in source generates truncated URL in HTML
| * | issue #8142 UTF-8 in URL in source generates truncated URL in HTMLalbert-github2020-12-111-1/+1
| |/ | | | | | | Specifying the URL in a similar way as other IDs