summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* | 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
* | issue #8251: Macro stopped working in 1.8,.19Dimitri van Heesch2020-12-151-4/+9
| |
* | Added missing protocolsDimitri van Heesch2020-12-151-2/+4
| |
* | Merge branch 'feature/bug_url_irc' of ↵Dimitri van Heesch2020-12-152-2/+3
|\ \ | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_url_irc
| * | Incorrect specification of irc as URL protocolalbert-github2020-12-112-2/+3
| |/ | | | | | | | | - missing colon (`:`) at irc - adding irc, sftp and ftps
* | Regression: Fixed crash in dotgfxhierarchytable.cppDimitri van Heesch2020-12-141-1/+1
| | | | | | | | | | - introduced by commit fce7c2f8af2ccd04137c7db163333d0110241835 - found when processing pytorch code
* | issue #8246 The prefix &#х202А; for files is displayed incorrectly in the ↵albert-github2020-12-141-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | file names. Each index generator should handle its Left-To-Right / Right-To-Left handling on its own as otherwise we get for e.g. treeview in the js file: ``` [ "\u202A&#x202A;afx3.h", "a00002_source.html", null ] ``` instead of: ``` [ "\u202A;afx3.h", "a00002_source.html", null ] ``` resulting in the problems from this issue. in the htmlhelp (index.hhc): ``` ... value="&#x202A;&#x202A;afx3.h" ... ``` i.e. a double `&#x202A;` which is not nice. In "XML" type formats (not the doxygen xml output!), here qhp index.qhp: ``` ... title="&amp;#x202A;afx3.h" ... ``` where the LTR sequence is escaped.
* | Fix for compilation issues on WindowsDimitri van Heesch2020-12-121-2/+11
| | | | | | | | Using lambdas as a default argument is not supported by older versions of MSVC
* | Merge branch 'xmlparser'Dimitri van Heesch2020-12-116-1209/+1735
|\ \ | |/ |/|
| * Make layout parser use the new XML parserDimitri van Heesch2020-12-113-921/+922
| |
| * Make tagreader use the new XML parserDimitri van Heesch2020-12-082-291/+268
| |
| * Refactoring: replace QXml by own XML processorDimitri van Heesch2020-12-063-0/+548
| |
* | Creating link to not defined label in case of groupsalbert-github2020-12-042-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the doxygen group example there is for group 5 a "More" link but this points to nowhere as there is no detailed section. Using a link checker this gives: ``` Processing file:///.../html/group__group5.html List of broken links and other issues: file:///.../html/group__group5.html Line: 47 Code: 200 (no message) To do: Some of the links to this resource point to broken URI fragments (such as index.html#fragment). The following fragments need to be fixed: details Line: 47 ``` By applying the same logic for creating the "More" link as for for the real writing and using the appropriate function (with correction) for it
* | Merge pull request #8222 from albert-github/feature/bug_docu_linksDimitri van Heesch2020-12-031-2/+2
|\ \ | |/ |/| Incorrect link in doxygen documentation
| * Incorrect link in doxygen documentationalbert-github2020-12-031-2/+2
| | | | | | | | | | The link to mathjax is not correct anymore (config.xml), the latest version points to version 3.0 and here there is no output.html either. Setting it fixed to the 2.7 version. The other corrected links are just about redirections that are otherwise done.
* | Avoid duplicate entry in the LaTeX output for inlined namespaceDimitri van Heesch2020-12-031-1/+1
| |
* | Forgot to handle deprecated in the same way as other xref itemsDimitri van Heesch2020-12-031-1/+1
|/
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-12-025-47/+111
|\