summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fixed two compilation issuesDimitri van Heesch2019-07-282-0/+9
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-07-272-20/+20
|\
| * Merge pull request #7131 from groleo/masterDimitri van Heesch2019-07-272-20/+20
| |\ | | | | | | code.l: make CallContext independent of global variables
| | * code.l: make CallContext independent of global variablesAdrian Negreanu2019-07-261-20/+20
| | |
| | * chmod +x runtest.pyAdrian Negreanu2019-07-261-0/+0
| | |
* | | Merge branch 'groleo-docgroup'Dimitri van Heesch2019-07-2712-245/+300
|\ \ \ | |/ / |/| |
| * | Fix naming and indenting.Dimitri van Heesch2019-07-272-93/+93
| | |
| * | Merge branch 'docgroup' of https://github.com/groleo/doxygen into ↵Dimitri van Heesch2019-07-2712-245/+300
| |\ \ |/ / / | | | | | | groleo-docgroup
| * | take doc group out of commentscan.lAdrian Negreanu2019-07-2612-245/+300
| |/ | | | | | | Signed-off-by: Adrian Negreanu <groleo@gmail.com>
* | Merge branch 'albert-github-feature/issue_6769'Dimitri van Heesch2019-07-275-6/+3036
|\ \
| * \ Merge branch 'feature/issue_6769' of ↵Dimitri van Heesch2019-07-275-6/+3036
| |\ \ |/ / / | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_6769
| * | issue #6769 Tabu is brokenalbert-github2019-07-263-15/+7
| | | | | | | | | | | | | | | Based on comment `\usepackage` in refman.tex / doxygen_manual.tex has been replaced with `\RequirePackage` in doxygen.sty ("back to its old place").
| * | issue #6769 Tabu is brokenalbert-github2019-07-225-6/+3044
| | | | | | | | | | | | | | | Created a workaround for the problems in the unmaintained tabu package due to changes in LaTeX 2019 Changes are based on the comments of David Carlisle and Frank Mittelbach of The LaTeX3 Project Team
* | | Merge pull request #7144 from albert-github/feature/issue_7140Dimitri van Heesch2019-07-263-6/+5
|\ \ \ | | | | | | | | issue @7140 DoxygenLayout does not support UTF8 BOM format
| * | | issue @7140 DoxygenLayout does not support UTF8 BOM formatalbert-github2019-07-263-6/+5
|/ / / | | | | | | | | | Read the DoxygenLayout file in a similar way as the header / footer etc. for HTML and feed the (converted) result into the XML reader.
* | | Merge branch 'albert-github-feature/issue_7127'Dimitri van Heesch2019-07-251-1/+2
|\ \ \ | |/ / |/| |
| * | Merge branch 'feature/issue_7127' of ↵Dimitri van Heesch2019-07-251-1/+2
| |\ \ |/ / / | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_7127
| * | issue #7127 Broken links on generated documentationalbert-github2019-07-201-1/+2
| |/ | | | | | | Make identifier in the `.js` files unique (they are only used internally)
* | Merge pull request #7125 from albert-github/feature/bug_double_commentDimitri van Heesch2019-07-211-9/+10
|\ \ | | | | | | Missing warning for "double comment"
| * | Missing warning for "double comment"albert-github2019-07-141-9/+10
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case we have: ``` /** \file /** the second comment start line */ /** the docu */ void a_fie(void){} /** the docu ** double commented */ void a_fie2(void){} `` one would expect to get a warning regarding the ``` /** /** ``` but none is given. One would have expected: ``` aa.c:13: warning: Reached end of file while still inside a (nested) comment. Nesting level 1 (probable line reference: 1) ```
* | Merge pull request #7134 from albert-github/feature/bug_enlarge_lex_buffersDimitri van Heesch2019-07-213-1/+10
|\ \ | | | | | | Option for 'input buffer overflow'
| * | Option for 'input buffer overflow'albert-github2019-07-203-1/+10
|/ / | | | | | | Cmake option `-Denlarge_lex_buffers=<size>` to enlarge input and read buffers for source code lexers.
* | Merge pull request #7092 from albert-github/feature/issue_7091Dimitri van Heesch2019-07-201-0/+3
|\ \ | | | | | | issue #7091 HEAD fails to build on macOS with stock `bison`
| * | issue #7091 HEAD fails to build on macOS with stock `bison`albert-github2019-06-291-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | Placed minimum `bison` requirement. Tested with bison version 2.7 so used this as minimum. Note: win_flex_bison uses a different external numbering. The e.g. the version 2.5.16 of win_flex_bison contains bison version 3.0.4.
* | | Merge pull request #7112 from arm-in/masterDimitri van Heesch2019-07-203-3/+3
|\ \ \ | |_|/ |/| | Correct spelling "build in" vs. "built-in"
| * | built-inArmin Müller2019-07-091-1/+1
| | |
| * | built-inArmin Müller2019-07-091-1/+1
| | |
| * | built-inArmin Müller2019-07-091-1/+1
| | |
* | | Merge pull request #7121 from albert-github/feature/issue_7120Dimitri van Heesch2019-07-121-12/+8
|\ \ \ | | | | | | | | issue #7120 Markdown generator does not consider extension mapping for files with no extension
| * | | issue #7120 Markdown generator does not consider extension mapping for files ↵albert-github2019-07-121-12/+8
|/ / / | | | | | | | | | | | | | | | | | | | | | with no extension Better handling of the determination of what is an extension. - don't see a file references like: `./LICENSE` as extension - use the qt way of extension determination and in case of no extension use the no extension placeholder for it.
* | | Merge pull request #7111 from albert-github/feature/issue_7110Dimitri van Heesch2019-07-082-1/+2
|\ \ \ | | | | | | | | issue #7110 URL Encoding for Hyperlinks in PDF
| * | | issue #7110 URL Encoding for Hyperlinks in PDFalbert-github2019-07-082-1/+2
|/ / / | | | | | | | | | For an URL also the percentage (`%`)sign has to be escaped
* | | Merge pull request #7105 from albert-github/feature/issue_7102Dimitri van Heesch2019-07-071-1/+13
|\ \ \ | | | | | | | | issue #7102 Doxygen does not generate error/warning message for unbalanced group markers "@{"..."@}"
| * | | issue #7102 Doxygen does not generate error/warning message for unbalanced ↵albert-github2019-07-051-1/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | group markers "@{"..."@}" There are 2 sorts of grouping, with and without preceding group command. In case og a preceding group command a warning was already issued, but without preceding group this was not done Also corrected wrong order of `\{` `\}` commands, i.e, when we see more closing before opening commands.
* | | | Merge pull request #7107 from albert-github/feature/bug_unused_DocCopy_classDimitri van Heesch2019-07-0718-213/+0
|\ \ \ \ | | | | | | | | | | Remove not used class
| * | | | Remove not used classalbert-github2019-07-0718-213/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As per comment in `docvisitor.h`: ``` class DocCopy; // TODO: no longer generated => remove ```
* | | | | Merge pull request #7082 from albert-github/feature/bug_642126Dimitri van Heesch2019-07-071-1/+6
|\ \ \ \ \ | |/ / / / |/| | | | Bug 642126 - @mscfile <filename> does not process mscgen code
| * | | | Bug 642126 - @mscfile <filename> does not process mscgen codealbert-github2019-06-271-1/+6
| | |_|/ | |/| | | | | | | | | | Small explanation about required syntax.
* | | | Merge pull request #7098 from albert-github/feature/bug_coverityDimitri van Heesch2019-07-066-5/+7
|\ \ \ \ | | | | | | | | | | High consequence coverity mesages
| * | | | High consequence coverity mesagesalbert-github2019-07-026-5/+7
| | |/ / | |/| | | | | | | | | | | | | | - initializing fd (analogous to htmldocvisitor) - always good to close file pointers
* | | | Merge pull request #7106 from albert-github/feature/issue_7104Dimitri van Heesch2019-07-061-6/+6
|\ \ \ \ | |/ / / |/| | | issue #7104 Warning with preprocessor
| * | | issue #7104 Warning with preprocessoralbert-github2019-07-051-6/+6
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The test on 'defined' has to be done earlier as otherwise the replacement (limited to 2 defined is enough for the test) of ``` (defined(__AVR_ATmega644RFR2__)||defined(__AVR_ATmega256RFR2__)) ``` will be ``` ` ! (defined( 0 )||0( 0 )) ' ``` instead of ``` ` ! (defined( 0 )||defined( 0 )) ' ```
* | | Merge pull request #7094 from albert-github/feature/bug_docu_mscgenDimitri van Heesch2019-07-012-2/+2
|\ \ \ | |/ / |/| | Correction obvious documentation errors in mscgen
| * | Correction obvious documentation errors in mscgenalbert-github2019-07-012-2/+2
|/ /
* | Merge pull request #7075 from tirolerstefan/feature/doxysearch_wildcardDimitri van Heesch2019-06-261-5/+13
|\ \ | | | | | | doxysearch: added wildcard, partial and phrase sesarch
| * | doxysearch: added wildcard, partial and phrase sesarchStefan Felkel2019-06-251-5/+13
| | |
* | | Merge pull request #7079 from albert-github/feature/regr_6885Dimitri van Heesch2019-06-261-2/+2
|\ \ \ | | | | | | | | regression #6885 mscgen links placed in the wrong place when using SVG output
| * | | regression #6885 mscgen links placed in the wrong place when using SVG outputalbert-github2019-06-261-2/+2
| |/ / | | | | | | | | | The output files were not placed in the output directories but in the "root" directory (the `.msc` files were correctly placed in the output directories).
* | | Merge pull request #7081 from albert-github/feature/bug_docu_mscgenDimitri van Heesch2019-06-261-3/+2
|\ \ \ | | | | | | | | Update documentation for msc
| * | | Update documentation for mscalbert-github2019-06-261-3/+2
| |/ / | | | | | | | | | Due to the built in mscgen code the documentation needed some updates.