summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8151 from albert-github/feature/issue_8129_docuDimitri van Heesch2020-11-031-6/+14
|\ | | | | Documentation correction for CASE_SENSE_NAMES
| * Update config.xmlDimitri van Heesch2020-11-021-1/+1
| | | | | | added missing "be"
| * Update config.xmlDimitri van Heesch2020-11-021-10/+13
| | | | | | Did rephrasing things a bit.
| * Documentation correction for CASE_SENSE_NAMESalbert-github2020-11-021-6/+11
| | | | | | | | | | In issue #8129 the problem of using different case of filenames was addressed, though in the documentation it was not clear what this meant for input files. This has been corrected (the underlying problem has been handled with different other commits a.o. 2b5a4541fb6f806c02a1f6e65a1ff2610f29751f ).
* | Merge pull request #8149 from albert-github/feature/bug_warn_doctokinizerDimitri van Heesch2020-11-021-10/+11
|\ \ | | | | | | 64-bit Windows compiler warnings doctokinizer.l
| * | 64-bit Windows compiler warnings doctokinizer.lalbert-github2020-11-011-10/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removing compiler warnings like: ``` .../src/doctokenizer.l(101): warning C4267: '=': conversion from 'size_t' to 'int', possible loss of data .../src/doctokenizer.l(844): warning C4267: 'initializing': conversion from 'size_t' to 'int', possible loss of data ... ``` (analogous as done in e.g. `commentscan.l`)
* | | Fixed issue when testing on ceph code regarding calling aliased membersDimitri van Heesch2020-11-021-19/+25
| |/ |/|
* | Fixed issue in combineUsingRelations() that could lead to the use of invalid ↵Dimitri van Heesch2020-11-012-2/+11
| | | | | | | | iterators
* | Fixed issue when testing on pytouch code regarding calling aliased membersDimitri van Heesch2020-11-011-1/+1
| |
* | Refactoring: modernized the getUsedNamespaces() methodDimitri van Heesch2020-11-016-184/+89
|/
* issue #8148: copydoc broken in private sectionsDimitri van Heesch2020-11-011-1/+1
|
* issue 8143: copydoc in excluded namespace broken after d03e8d9Dimitri van Heesch2020-10-311-2/+12
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-10-311-0/+3
|\
| * Merge pull request #8146 from albert-github/feature/issue_8144Dimitri van Heesch2020-10-301-0/+3
| |\ | | | | | | issue #8144 Problem with `\\` at end of an ALIASES in the configuration file
| | * Problem with `\\` at end of an ALIASES in the configuration filealbert-github2020-10-301-0/+3
| | | | | | | | | | | | | | | In principle a configuration file should not know anything about the doxygen commands, but the handling of the escaped `\` and `@` are an exception of this rule (especially in `ALIASES`). The mentioned escaped characters were not handled properly.
* | | issue #8129: Image path is now case sensitive (take 2)Dimitri van Heesch2020-10-312-34/+58
|/ /
* | issue #8129: Image path is now case sensitiveDimitri van Heesch2020-10-302-21/+32
|/
* Fixed marker replacement for a placeholder at the end of the commandDimitri van Heesch2020-10-291-2/+2
|
* Some further simplications and modernizationsDimitri van Heesch2020-10-291-50/+30
|
* Merge branch 'feature/bug_aliases_cmd' of ↵Dimitri van Heesch2020-10-291-12/+21
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_aliases_cmd
| * Handling commands for backslash and at-sign in ALIASESalbert-github2020-10-291-12/+21
| | | | | | | | | | | | When we have an command like `\\`, `\@`, `@@` or `@\`in ALIASES this should not disturb the recognition of the replacement strings like `\2`, so e.g. `\\2` should not be replaced by `\y` but remain `\\2` (assuming the `\2` is linked to `y` in an ALIASES). This issue was found after #8137 had been fixed and was already present in older versions as well.
* | Refactoring: modernize getUsedClasses() methodDimitri van Heesch2020-10-2910-143/+144
|/
* issue #8139 Segfault after a8bf5d3albert-github2020-10-291-1/+1
| | | | As indicated in the issue the proposed fix fixes OP's problem (according to his initial tests) as well as the problem in the CGAL documentation.
* Merge pull request #8131 from albert-github/feature/issue_8130Dimitri van Heesch2020-10-281-2/+6
|\ | | | | issue #8130 Markdown relative links - not working for other folders
| * issue #8130 Markdown relative links - not working for other foldersalbert-github2020-10-261-2/+6
| | | | | | | | Always convert links to absolute path even when path exists
* | Merge pull request #8136 from albert-github/feature/bug_latex_doubleDimitri van Heesch2020-10-281-7/+2
|\ \ | | | | | | Remove double usepackage / RequirePackage from LaTeX
| * | Remove ouble usepackage / RequirePackage from LaTeXalbert-github2020-10-271-7/+2
| | | | | | | | | | | | Remove double usepackage / RequirePackage from LaTeX initialization files (but keen multirow / multicol together)
* | | Merge branch 'feature/issue_8137' of ↵Dimitri van Heesch2020-10-281-1/+1
|\ \ \ | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_8137
| * | | issue #8137 Whitespace/Separator required to recognize custom command argumentalbert-github2020-10-281-1/+1
| |/ / | | | | | | | | | In case the character directly following the number of a substitution marker is a backslash search directly a new substitution pattern
* | | Merge branch 'symbolresolver'Dimitri van Heesch2020-10-289-1163/+1331
|\ \ \ | |/ / |/| |
| * | Refactoring: introduce SymbolResolver to group symbol lookup routinesDimitri van Heesch2020-10-289-1163/+1331
| | | | | | | | | | | | - Main goal was to avoid use of global state.
* | | Merge pull request #8133 from albert-github/feature/issue_8127Dimitri van Heesch2020-10-261-10/+18
|\ \ \ | | | | | | | | issue #8127 Java: xml output of preformatted (`<pre>`) block adds para-block for blank lines (hindering certain manual parsing)
| * | | issue #8127 Java: xml output of preformatted (`<pre>`) block adds para-block ↵albert-github2020-10-261-10/+18
| | |/ | |/| | | | | | | | | | | | | for blank lines (hindering certain manual parsing) Don't terminate a paragraph and remove the whitespace when inside a pre block, but output the blanks.
* | | issue #8132 Markdown inclusion of images broken after 39db9f48albert-github2020-10-261-0/+4
|/ / | | | | | | see to it that the `\ilinebr` cannot be seen as part of the file name (backslashes can be present as path especially in case of windows).
* | Merge pull request #8124 from albert-github/feature/bug_cmake_versionDimitri van Heesch2020-10-241-1/+0
|\ \ | | | | | | Redundant / incorrect required version of cmake
| * | Redundant / incorrect required version of cmakealbert-github2020-10-221-1/+0
| | | | | | | | | | | | In the clang part the required version for cmake was 3.1 though in the general part (on the main directory) already version 3.3. was required.
* | | Merge pull request #8123 from albert-github/feature/bug_cnt_md_codeDimitri van Heesch2020-10-241-1/+1
|\ \ \ | | | | | | | | Miscounting lines with markdown backtick section
| * | | Miscounting lines with markdown backtick sectionalbert-github2020-10-221-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we have a program like: ``` # test ~~~ npm ~~~ \aa5 ~~~ npm ~~~ \aa8 ``` we get the warnings like: ``` .../aa.md:6: warning: Found unknown command '\aa5' .../aa.md:10: warning: Found unknown command '\aa8' ``` instead of: ``` .../aa.md:5: warning: Found unknown command '\aa5' .../aa.md:8: warning: Found unknown command '\aa8' ``` This has been corrected. Note: in the example tildes are used so the backticks show up in the github issue as well.
* | | Merge pull request #8122 from albert-github/feature/bug_warn_lexDimitri van Heesch2020-10-246-8/+8
|\ \ \ | | | | | | | | Remove warnings from lexers
| * | | Remove warnings from lexersalbert-github2020-10-206-8/+8
| |/ / | | | | | | | | | | | | | | | | | | | | | Remove warnings (Windows 64 bit compilation) like: ``` warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data ``` from the different lexers by making use of more consistent data types.
* | | Merge pull request #8125 from albert-github/feature/bug_cnt_md_tableDimitri van Heesch2020-10-241-4/+4
|\ \ \ | | | | | | | | Miscounting lines with markdown table
| * | | Miscounting lines with markdown tablealbert-github2020-10-221-4/+4
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we have a program like: ``` # Test1 | \aa3 | | ---- | | \aa5 | \aa6 ``` we get the warnings like: ``` .../cc.md:3: warning: Found unknown command '\aa3' .../cc.md:4: warning: Found unknown command '\aa5' .../cc.md:6: warning: Found unknown command '\aa6' ``` instead of: ``` .../cc.md:4: warning: Found unknown command '\aa3' .../cc.md:5: warning: Found unknown command '\aa5' .../cc.md:6: warning: Found unknown command '\aa6' ``` The external counting was correct, not the internal counting. This has been corrected.
* | | Merge pull request #8126 from albert-github/feature/bug_cnt_md_blockquoteDimitri van Heesch2020-10-241-3/+3
|\ \ \ | |_|/ |/| | Miscounting lines with markdown blockquote
| * | Miscounting lines with markdown blockquotealbert-github2020-10-221-3/+3
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we have a program like: ``` # test \aa2 > \aa3 \aa4 ``` we get the warnings like: ``` .../aa.md:2: warning: Found unknown command '\aa2' .../aa.md:4: warning: Found unknown command '\aa3' .../aa.md:6: warning: Found unknown command '\aa4' ``` instead of: ``` .../aa.md:2: warning: Found unknown command '\aa2' .../aa.md:3: warning: Found unknown command '\aa3' .../aa.md:4: warning: Found unknown command '\aa4' ``` This has been corrected.
* | Use correct #includeDimitri van Heesch2020-10-231-1/+1
| |
* | Fixed regression for test 027 due to use of unordered mapDimitri van Heesch2020-10-231-1/+1
| |
* | Refactoring: Remove unused DefinitionIntf and DefinitionList classesDimitri van Heesch2020-10-236-58/+29
| |
* | Merge branch 'symbolmap'Dimitri van Heesch2020-10-237-269/+155
|\ \
| * | Refactoring: modernize Doxygen::symbolMapDimitri van Heesch2020-10-237-269/+155
| | |
* | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-10-231-3/+7
|\ \ \ | |/ / |/| / | |/