summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | | | | | Bug 437181 - The -d Preprocessor option doesn't work for php, should be in ↵albert-github2019-07-022-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the doc. - excluded `.php5` files from preprocessing (like other php files) - made remark about some limits in files that are preprocessed in documentation
* | | | | | | | Merge branch 'albert-github-feature/issue_6831'Dimitri van Heesch2019-08-0412-29/+85
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | Merge branch 'feature/issue_6831' of ↵Dimitri van Heesch2019-08-0412-29/+85
| |\ \ \ \ \ \ \ |/ / / / / / / / | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_6831
| * | | | | | | issue #6831 Failure to recognize class array with PHP in @varalbert-github2019-02-1512-26/+90
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | There are 2 different situations here: - @var, here a special change is necessary to check and handle whether or not we are in PHP (declinfo.*, doxygen.cpp) - @param - the type recognition for the PHP type has to be extended with the `[]` possibility and subsequently the `[]` part has to be handled separately from the 'datatype' (doctokinizer.l, docparser.*). - In the output we now can have multiple text strings resulting in a small change in handling of the separator between the data type (*docvisitor.*)
* | | | | | | | Merge pull request #7160 from albert-github/feature/bug_latex_secrefDimitri van Heesch2019-08-042-19/+44
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Incorrect paragraph numbers in secref list.
| * | | | | | | | Incorrect paragraph numbers in secref list.albert-github2019-08-042-19/+44
|/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The definition of `\doxysection` etc. are using grouping around the section title, and this destroys the \label system as label names are stored locally. (see also: https://tex.stackexchange.com/questions/502650/section-numbering-in-redefined-sections) the `\doxysection` commands have been redefined (unfortunately partly copying values from book.cls)
* | | | | | | | Merge branch 'albert-github-feature/bug_doc_cont'Dimitri van Heesch2019-08-041-0/+8
|\ \ \ \ \ \ \ \
| * | | | | | | | Minor code simplificationsDimitri van Heesch2019-08-041-3/+8
| | | | | | | | |
| * | | | | | | | Merge branch 'feature/bug_doc_cont' of ↵Dimitri van Heesch2019-08-041-0/+3
| |\ \ \ \ \ \ \ \ |/ / / / / / / / / | | | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_doc_cont
| * | | | | | | | Incorrect joining documentation sections.albert-github2019-07-071-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case we have a documentation block that is interrupted the following part is directly appended to it without an appropriate newline and results, in this case, in messages like: ``` aa.c:13: warning: Illegal command @verbatim as part of a title section aa.c:15: warning: unexpected command endverbatim bb.f:13: warning: Illegal command @verbatim as part of a title section bb.f:15: warning: unexpected command endverbatim ``` We need a solution at 2 places due to the reset of of `OutputBrief` to `OutputDoc` in `setOutput` The original problem results from the "The R Project for Statistical Computing" version 3.6.1 in the Fortran part.
* | | | | | | | | Merge branch 'albert-github-feature/bug_if_unbalanced'Dimitri van Heesch2019-08-041-0/+2
|\ \ \ \ \ \ \ \ \
| * | | | | | | | | Allow \r\n as line continuation as wellDimitri van Heesch2019-08-041-1/+1
| | | | | | | | | |
| * | | | | | | | | Merge branch 'feature/bug_if_unbalanced' of ↵Dimitri van Heesch2019-08-041-0/+2
| |\ \ \ \ \ \ \ \ \ |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_if_unbalanced
| * | | | | | | | | warning: More #endif's than #if's found.albert-github2019-08-021-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case in a macro substitution string the last character was a backslash this was, incorrect, not seen as a sign for a line continuation.
* | | | | | | | | | Merge branch 'albert-github-fetaure/bug_html_ins_del_tag'Dimitri van Heesch2019-08-0317-3/+107
|\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | Add 'ins' and 'del' style tags to XML schemaDimitri van Heesch2019-08-031-0/+2
| | | | | | | | | | |
| * | | | | | | | | | Merge branch 'fetaure/bug_html_ins_del_tag' of ↵Dimitri van Heesch2019-08-0316-3/+105
| |\ \ \ \ \ \ \ \ \ \ |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-fetaure/bug_html_ins_del_tag
| * | | | | | | | | | Adding HTML tags ins and delalbert-github2019-04-0416-3/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Github does not support the `<u>` tag for underlined text, in HTML there exists the tag `<ins>`. On https://www.w3schools.com/tags/tag_ins.asp is written: The `<ins>` tag defines a text that has been inserted into a document. Browsers will normally strike a line through deleted text and underline inserted text. Most browsers will display the `<ins>` element with the following default values: ``` ins { text-decoration: underline; } ``` analogous there exists the tag `<del>` (https://www.w3schools.com/tags/tag_del.asp): The `<del>` tag defines text that has been deleted from a document. Browsers will normally strike a line through deleted text and underline inserted text. Most browsers will display the `<del>` element with the following default values: ``` del { text-decoration: line-through; } ``` Definitions analogue to the underline and strike through tag the implementation for the other formats has been chosen.
* | | | | | | | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-08-031-1/+1
|\ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merge pull request #7158 from albert-github/feature/bug_reached_endDimitri van Heesch2019-08-031-1/+1
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | warning: Reached end of file while still inside a (nested) comment.
| | * | | | | | | | | | | warning: Reached end of file while still inside a (nested) comment.albert-github2019-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | see to it that the JAVA_BANNER comment is not seen as new start of comment, but is shown as verbatim comment (works for doxygen documentation, Doxyfile and doxywizard).
* | | | | | | | | | | | | issue 7068: "QGDict::hashAsciiKey: Invalid null key" error messages (part 5)Dimitri van Heesch2019-08-031-1/+1
|/ / / / / / / / / / / /
* | | | | | | | | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-08-032-3/+3
|\ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / /
| * | | | | | | | | | | Merge pull request #7157 from albert-github/feature/bug_doc_unbalancedDimitri van Heesch2019-08-022-3/+3
| |\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | warning: Member func2InGroup1() (function) of class Memgrp_Test is not documented.
| | * | | | | | | | | | | warning: Member func2InGroup1() (function) of class Memgrp_Test is not ↵albert-github2019-08-022-3/+3
| | | |/ / / / / / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | documented. Correcting code due to the fact that `//@{` isn't seen by doxygen as block start (#7116). Thi s problem is shown when generating the doxygen documentation.
* | | | | | | | | | | | issue 7068: "QGDict::hashAsciiKey: Invalid null key" error messages (part 4)Dimitri van Heesch2019-08-031-1/+1
|/ / / / / / / / / / /
* | | | | | | | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-08-021-0/+1
|\ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ Merge pull request #7153 from albert-github/feature/issue_7151Dimitri van Heesch2019-08-021-0/+1
| |\ \ \ \ \ \ \ \ \ \ \ | | |/ / / / / / / / / / | |/| | | | | | | | | | issue #7151 Doxygen 1.8.15 TOC_INCLUDE_HEADINGS >0 stops html links being generated in markdown
| | * | | | | | | | | | issue #7151 Doxygen 1.8.15 TOC_INCLUDE_HEADINGS >0 stops html links being ↵albert-github2019-08-011-0/+1
| |/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | generated in markdown Don't create autotoc generated ids for pages. (the `\ref` problem also occurred with `\subage`).
* | | | | | | | | | | Merge branch 'albert-github-feature/regr_unbalanced'Dimitri van Heesch2019-08-023-9/+12
|\ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / |/| | | | | | | | | |
| * | | | | | | | | | Fixed typoDimitri van Heesch2019-08-021-1/+1
| | | | | | | | | | |
| * | | | | | | | | | Regression: unbalanced grouping commandsalbert-github2019-08-023-9/+12
|/ / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Regression on #7122 (and #7115 / #7116). When having multiple consecutive `\name` sections the warning "unbalanced grouping commands" appears Analogous to the open command also the close command needs an implicit argument.
* | | | | | | | | | issue 7068: "QGDict::hashAsciiKey: Invalid null key" error messages (part 3)Dimitri van Heesch2019-08-014-42/+82
| | | | | | | | | |
* | | | | | | | | | Merge branch 'albert-github-feature/bug_retval_mult'Dimitri van Heesch2019-07-311-11/+36
|\ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ Merge branch 'feature/bug_retval_mult' of ↵Dimitri van Heesch2019-07-311-11/+36
| |\ \ \ \ \ \ \ \ \ \ |/ / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_retval_mult
| * | | | | | | | | | Give warning when a retval is used multiple timesalbert-github2019-01-211-13/+84
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Analogous to arguments when they have multiple `\param` commands this is also done when a return value is specified multiple times with the `\retval` command
* | | | | | | | | | | issue 7068: "QGDict::hashAsciiKey: Invalid null key" error messages (part 2)Dimitri van Heesch2019-07-313-10/+22
| | | | | | | | | | |
* | | | | | | | | | | issue 7068: "QGDict::hashAsciiKey: Invalid null key" error messagesDimitri van Heesch2019-07-301-3/+6
| | | | | | | | | | |
* | | | | | | | | | | Merge pull request #7093 from albert-github/feature/bug_internal_DoxyfileDimitri van Heesch2019-07-301-8/+24
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Update internal Doxyfile to current version / situation
| * | | | | | | | | | | Update internal Doxyfile to current version / situationalbert-github2019-07-011-8/+24
| | |_|_|_|_|_|_|/ / / | |/| | | | | | | | |
* | | | | | | | | | | Merge pull request #7114 from albert-github/feature/issue_7113Dimitri van Heesch2019-07-301-1/+1
|\ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | issue #7113 Doxygen doesn't process markdown tables correctly
| * | | | | | | | | | | issue #7113 Doxygen doesn't process markdown tables correctlyalbert-github2019-07-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Better to have the end tag start at a new line so it cannot be added to a command that runs till the end of the line
* | | | | | | | | | | | Merge pull request #7101 from albert-github/feature/bug_js_licenseDimitri van Heesch2019-07-301-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Removed superfluous character
| * | | | | | | | | | | | Removed superfluous characteralbert-github2019-07-031-1/+1
| | |_|_|_|_|_|/ / / / / | |/| | | | | | | | | |
* | | | | | | | | | | | Merge pull request #7118 from albert-github/feature/issue_7109Dimitri van Heesch2019-07-302-4/+9
|\ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | issue #7109 Doxyapp can't use "[source_file | source_dir]" parameter
| * | | | | | | | | | | | issue #7109 Doxyapp can't use "[source_file | source_dir]" parameteralbert-github2019-07-131-6/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - setting RECURSIVE (required for directories) - making check / adjust consistent with doxyparse
| * | | | | | | | | | | | issue #7109 Doxyapp can't use "[source_file | source_dir]" parameteralbert-github2019-07-112-0/+7
| | |/ / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - initialization has to be done in an earlier stage (and only once) - not only the INPUT tag was involved, none of the tags were set.
* | | | | | | | | | | | Merge branch 'albert-github-feature/bug_685714'Dimitri van Heesch2019-07-303-22/+20
|\ \ \ \ \ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ \ \ \ Merge branch 'feature/bug_685714' of ↵Dimitri van Heesch2019-07-303-22/+20
| |\ \ \ \ \ \ \ \ \ \ \ \ |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_685714
| * | | | | | | | | | | | Bug 685714 - false positives reporting parameters or return value not being ↵albert-github2019-03-303-22/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | documented - removed memory leak on variable root - return values of generateDoc and parseText are nowhere used, replaced bool function with void function.