summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #6591 from albert-github/feature/issue_6580Dimitri van Heesch2018-11-011-0/+2
|\ | | | | issue_6580 xrefitems not listed if the page is referenced multiple times
| * issue_6580 xrefitems not listed if the page is referenced multiple timesalbert-github2018-11-011-0/+2
| | | | | | | | Not only the documentation, but also the (x)refitems.
* | Merge pull request #6590 from albert-github/feature/issue_6589Dimitri van Heesch2018-11-011-1/+9
|\ \ | | | | | | issue_6589 anchor after test command in a namespace produces duplicate tests
| * | issue_6589 anchor after test command in a namespace produces duplicate testsalbert-github2018-11-011-1/+9
| |/ | | | | | | Not only should be checked whether the item to be inserted is the main item but also if it is not one of the extra items
* | Merge pull request #6587 from albert-github/feature/bug_mult_xrefDimitri van Heesch2018-11-016-25/+27
|\ \ | |/ |/| Multiple `\xreflist` in one page with same key
| * Multiple `\xreflist` in one page with same keyalbert-github2018-10-315-21/+20
| | | | | | | | Regression regarding tests
| * Multiple `\xreflist` in one page with same keyalbert-github2018-10-311-4/+7
| | | | | | | | | | In case there are multiple `\xreflist` commands with the same key only the first item has a correct linking possibility, the subsequent items don't have it. Resulting in warnings in e.g. docbook and LaTeX output
* | Merge pull request #6586 from albert-github/feature/issue_6585Dimitri van Heesch2018-10-311-27/+33
|\ \ | | | | | | Issue_6585: Unexpected anchor tags in tag-files
| * | Issue_6585: Unexpected anchor tags in tag-filesalbert-github2018-10-311-27/+33
| |/ | | | | | | | | | | - An anchor tag can also be in a `<compound>` added it. - corrected some warnings (wrong tag name) - some layout modifications regarding end of line (automatically nowadays with the call to the warn function
* | Merge pull request #6588 from Sleepyowl/masterDimitri van Heesch2018-10-311-1/+2
|\ \ | |/ |/| [C++] Add support for std::shared_ptr
| * Add support for std::shared_ptrDmitry Soloviev2017-02-131-1/+2
| |
* | Merge pull request #6582 from albert-github/feature/bug_docu_JavadocDimitri van Heesch2018-10-296-12/+12
|\ \ | | | | | | Spelling of the word Javadoc
| * | Spelling of the word Javadocalbert-github2018-10-296-12/+12
| | | | | | | | | | | | | | | The current spelling (also for the older versions) is Javadoc. Changed on all possible documentation visible places (external and internal).
* | | Merge pull request #6584 from albert-github/feature/bug_tag_printdocvisitorDimitri van Heesch2018-10-291-2/+2
|\ \ \ | | | | | | | | Correcting tag in printdocvisitor
| * | | Correcting tag in printdocvisitoralbert-github2018-10-291-2/+2
| |/ / | | | | | | | | | Correcting usage of tag
* | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2018-10-291-1/+1
|\ \ \ | |/ /
| * | Merge pull request #6448 from albert-github/feature/bug_markdown_listsDimitri van Heesch2018-10-281-1/+1
| |\ \ | | | | | | | | Markdown list wrong displayed
| | * | Markdown list wrong displayedalbert-github2018-08-151-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In some, rare, cases a markdown list was wrongly displayed (regression due to change of place of markdown handling) /** @mainpage * * * elem1 * * elem2 * Some text (actually found due to a table) */
* | | | Merge branch 'albert-github-feature/bug_latex_index_sorting'Dimitri van Heesch2018-10-295-25/+25
|\ \ \ \ | |/ / / |/| | |
| * | | Changed refiltering to forced use of insideTabbingDimitri van Heesch2018-10-295-58/+26
| | | |
| * | | Merge branch 'feature/bug_latex_index_sorting' of ↵Dimitri van Heesch2018-10-291-1/+33
| |\ \ \ |/ / / / | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_latex_index_sorting
| * | | Sorting of index in case of LaTexalbert-github2018-08-301-1/+33
| | | | | | | | | | | | | | | | | | | | | | | | In case of LaTeX the sorting was so that lowercase came after uppercase e.g.: `username` came after `useSsl`, although the index should be case insensitive. Te problem was that the sort key was filtered in such a way that a.o. uppercase symbols were preceded by `\+` for hyphenation. The key doesn't need this hyphenation (as there is a separate field for the display name). The `\+` has been filtered out now.
* | | | Merge branch 'albert-github-feature/bug_520975'Dimitri van Heesch2018-10-281-2/+15
|\ \ \ \
| * | | | Use QCStringList::split i.s.o. QStringList::splitDimitri van Heesch2018-10-281-4/+4
| | | | |
| * | | | Merge branch 'feature/bug_520975' of ↵Dimitri van Heesch2018-10-281-2/+15
| |\ \ \ \ |/ / / / / | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_520975
| * | | | Bug 436883 - Handling of unnamed parameters (C/C++) unclearalbert-github2018-07-141-2/+4
| | | | | | | | | | | | | | | | | | | | Also the name should not be a reserved type of word.
| * | | | Bug 520975 - Unnamed parameters parsed incorrectlyalbert-github2018-07-141-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | Added "signed" and "unsigned" to the list of "special types" analogous to "const" and "volatile" Created a function for this that would make it possible to have also constructs like "const const" recognized.
* | | | | Merge pull request #6438 from albert-github/feature/bug_citeDimitri van Heesch2018-10-283-7/+8
|\ \ \ \ \ | | | | | | | | | | | | Correcting labels for citations
| * | | | | Correcting labels for citationsalbert-github2018-08-101-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | Corrected change in test.
| * | | | | Correcting labels for citationsalbert-github2018-08-102-6/+7
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | The labels for RTF and XML were incorrect due to the fact that the wrong branch was chosen in the code (the newAnchor was set for the results of the `\cite ` command as well). Small readability issue with XML (when there are a lot of citations).
* | | | | Merge pull request #6549 from albert-github/feature/issue_6533Dimitri van Heesch2018-10-281-1/+2
|\ \ \ \ \ | | | | | | | | | | | | issue_6533: PHP: Namespaced typehints in deprecated methods not handled correctly
| * | | | | issue_6533: PHP: Namespaced typehints in deprecated methods not handled ↵albert-github2018-10-111-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | correctly Besides backslashes in the title (issue #5901) the backslashes in the argument list need to be escaped.
* | | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2018-10-282-2/+49
|\ \ \ \ \ \
| * \ \ \ \ \ Merge pull request #6572 from albert-github/feature/bug_fortran_state_debugDimitri van Heesch2018-10-281-1/+47
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Fortran scanner abort message
| | * | | | | | Fortran scanner abort messagealbert-github2018-10-231-1/+47
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The Fortran scanner can give a message when the scanner is aborted, in here there is also the state, but in the form of a number. This patch adds a little bit more descriptive text.
| * | | | | | | Merge pull request #6579 from albert-github/feature/bug_rtf_reference_displayDimitri van Heesch2018-10-281-1/+2
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | RTF layout regarding References and Referenced by
| | * | | | | | | RTF layout regarding References and Referenced byalbert-github2018-10-281-1/+2
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | The layout was so that lines were stretched to to complete lines from left to right (Justifid). For "normal" text this is fine, but not for lists like this, so set alignment here to: Left aligned
* | | | | | | | Merge branch 'albert-github-feature/docbook_cleanup'Dimitri van Heesch2018-10-283-2160/+0
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | Merge branch 'feature/docbook_cleanup' of ↵Dimitri van Heesch2018-10-283-2160/+0
| |\ \ \ \ \ \ \ |/ / / / / / / / | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/docbook_cleanup
| * | | | | | | Remove old obsolete docbook generatoralbert-github2018-10-173-2160/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The docbook generator has been replaced by a new implementation. The old implementation was still present, removed now (disrupts easy updates due to false positive searches in the code).
* | | | | | | | Merge branch 'albert-github-feature/bug_warning_msg'Dimitri van Heesch2018-10-274-163/+92
|\ \ \ \ \ \ \ \
| * | | | | | | | Renamed command and moved duplicated code into a macroDimitri van Heesch2018-10-273-37/+48
| | | | | | | | |
| * | | | | | | | Merge branch 'feature/bug_warning_msg' of ↵Dimitri van Heesch2018-10-274-154/+72
| |\ \ \ \ \ \ \ \ |/ / / / / / / / / | | | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_warning_msg
| * | | | | | | | Correcting warning messages and echoing unknown commandalbert-github2018-08-264-154/+72
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - In case an unknown command is given this was shown as a warning but not as normal text in the output, for this also a distinction between `\`and `@` commands has to be made - corrected command name in warning messages when handling arguments - making handling of some warning messages consistent
* | | | | | | | | Merge pull request #6459 from aquayan/patch-1Dimitri van Heesch2018-10-271-2/+3
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | File list creation performance improvement.
| * | | | | | | | | Update doxygen.cppaquayan2018-08-241-2/+3
| |/ / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | Reading a few thousands of input CPP/H files in alphabetical order is very slow because of using the inSort construct. The inSort function does a linear loop through the list to find the right alphabetical position, leading to a quadratic algorithm. During the creation of the file list there is no need to keep it sorted - it is not used at all yet. Therefore I propose to just append them and to a final sort at the end of the creation of the file list. For my use case with several thousands of input files, this reduces creating the file list from about an hour to a few seconds !!
* | | | | | | | | Merge pull request #771 from albert-github/feature/bug_734308Dimitri van Heesch2018-10-271-0/+4
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Bug 734308 - Error message when using memberof in a C macro
| * | | | | | | | | Bug 734308 - Error message when using memberof in a C macroalbert-github2018-06-181-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Made a better warning message, a 'define' is a global setting and cannot be made a member of a struct / class.
* | | | | | | | | | Merge pull request #6435 from albert-github/feature/bug_image_in_a_tagDimitri van Heesch2018-10-271-0/+3
|\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | Possibility to have a \image command inside a <A> tag
| * | | | | | | | | | Possibility to have a \image command inside a <A> tagalbert-github2018-08-091-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Enable the possibility to have a `\image` command inside a <A> tag