summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Minor documentation fixDimitri van Heesch2018-07-231-1/+1
|
* Minor fixes to local toc logic after feedbackDimitri van Heesch2018-07-232-7/+7
|
* Merge branch 'albert-github-feature/bug_tableofcontents_latex'Dimitri van Heesch2018-07-2226-234/+507
|\
| * Moved local toc data into a separate type for better encapsulationDimitri van Heesch2018-07-2212-124/+158
| |
| * Merge branch 'feature/bug_tableofcontents_latex' of ↵Dimitri van Heesch2018-07-2225-192/+431
| |\ |/ / | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_tableofcontents_latex
| * Enable in page table of contents for XML and add maximum level to in page ↵albert-github2018-07-123-3/+30
| | | | | | | | | | | | | | table of contents - correction of compiler error (not caught on Windows) - updated test 43 (for in page toc)
| * Merge branch 'feature/bug_tableofcontents_latex' of ↵albert-github2018-07-1288-559/+1521
| |\ | | | | | | | | | https://github.com/albert-github/doxygen into feature/bug_tableofcontents_latex
| | * Merge branch 'master' into feature/bug_tableofcontents_latexDimitri van Heesch2018-06-2488-559/+1521
| | |\
| * | | Enable in page table of contents for XML and add maximum level to in page ↵albert-github2018-07-1213-36/+183
| |/ / | | | | | | | | | | | | | | | | | | table of contents - add the in page table of contents for XML - add the possibility to have maximum levels in the in page table of contents (possible per output type and per in page table of contents. Default is show all)
| * | Enable in page table of contents for LaTeXalbert-github2018-05-2121-177/+241
| | | | | | | | | | | | | | | | | | | | | | | | currently the \tableofcontents command is only supported for HTML. In this patch: - enable in page table of contents for LaTeX: \tableofcontents['{'[option][,option]*'}'] where option can be 'HTML, and 'LaTeX' (side effect: possibility to have options with, nearly, all commands.)
* | | Possible fix for the buildDimitri van Heesch2018-07-211-5/+5
| | |
* | | Fixed logic errorDimitri van Heesch2018-07-211-1/+2
| | |
* | | Merge pull request #743 from albert-github/feature/bug_796355Dimitri van Heesch2018-07-212-8/+8
|\ \ \ | | | | | | | | Bug 796355 - LaTeX: Class scrbook Error: undefined old font command `\tt'
| * | | Bug 796355 - LaTeX: Class scrbook Error: undefined old font command `\tt'albert-github2018-05-262-8/+8
| | | | | | | | | | | | | | | | | | | | | | | | - Replaced \tt by \texttt - Replaced the left over \bf by \textbf and taking care that { } still match.
* | | | Merge pull request #737 from albert-github/feature/bug_cond_consistencyDimitri van Heesch2018-07-211-3/+3
|\ \ \ \ | | | | | | | | | | Consistency between preprocessor and handling of \cond and \if
| * | | | Consistency between preprocessor and handling of \cond and \ifalbert-github2018-05-211-3/+3
| | |/ / | |/| | | | | | | | | | Not all read characters in the preprocessor for the \con or \if were handled properly in de cond parser (most notably '-').
* | | | Merge pull request #738 from albert-github/feature/bug_latex_codeDimitri van Heesch2018-07-215-36/+51
|\ \ \ \ | | | | | | | | | | Small problems when having code in LaTeX output
| * | | | Small problems when having code in LaTeX outputalbert-github2018-05-241-6/+6
| | | | | | | | | | | | | | | | | | | | Also part in doxygen.sty made valid for plain latex
| * | | | Small problems when having code in LaTeX outputalbert-github2018-05-224-30/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - in formulas it is also possible to have special characters - adding special character '-' for U+2212 - making special characters more system independent (plain latex was not handled) and should be independent of hyperlink setting - without hyperlinks the name of normally linked names with underscore kept e.g. their underscores instead of escaping it - be sure that on the end of a code section the previous line is properly 'closed'.
* | | | | Merge pull request #731 from albert-github/feature/bug_663297Dimitri van Heesch2018-07-211-5/+5
|\ \ \ \ \ | | | | | | | | | | | | Bug 663297 - @todo in @param leads to strange confusing message
| * \ \ \ \ Merge branch 'master' into feature/bug_663297Dimitri van Heesch2018-07-21100-1806/+3427
| |\ \ \ \ \ | |/ / / / / |/| | | | |
* | | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2018-07-211-0/+1
|\ \ \ \ \ \
| * | | | | | try to force using the fully virtualized travis environmentDimitri van Heesch2018-07-201-0/+1
| | | | | | |
* | | | | | | Bug 779407 - plantuml:an unwanted newline is generated after @startumlDimitri van Heesch2018-07-211-1/+2
|/ / / / / /
* | | | | | Merge branch 'albert-github-feature/bug_759063'Dimitri van Heesch2018-07-181-1/+2
|\ \ \ \ \ \
| * | | | | | Replaced replace(QRegExp(..)) by substituteDimitri van Heesch2018-07-181-2/+2
| | | | | | |
| * | | | | | Merge branch 'feature/bug_759063' of ↵Dimitri van Heesch2018-07-181-1/+2
| |\ \ \ \ \ \ |/ / / / / / / | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_759063
| * | | | | | Bug 759063 - Macros (@test, @todo, etc) used with PHP namespaces causes ↵albert-github2018-05-171-1/+2
| | |_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | illegal command warning Illegal command is in case cause by the fact that the namespace-name and class-name are "concatenated" by means of a '\' in the tite of the, internal, xreflist. This patch fixes this by doubling the backslash.
* | | | | | Merge branch 'albert-github-feature/bug_782437'Dimitri van Heesch2018-07-181-1/+2
|\ \ \ \ \ \
| * | | | | | Replaced replace(QRegExp..) by substituteDimitri van Heesch2018-07-181-2/+2
| | | | | | |
| * | | | | | Merge branch 'feature/bug_782437' of ↵Dimitri van Heesch2018-07-181-1/+2
| |\ \ \ \ \ \ |/ / / / / / / | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_782437
| * | | | | | Bug 782437 - Annotated function parameter generates <dt> warning in todo listalbert-github2018-05-171-1/+2
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | Problems are cause by the annotation in the arguments (i.e. @myAnnotation) and the fact that the function prototype is used as title for the todo list. Escaping the @ (by means of @@) solves this problem.
* | | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2018-07-182-2/+12
|\ \ \ \ \ \
| * \ \ \ \ \ Merge pull request #718 from albert-github/feature/bug_626105_docuDimitri van Heesch2018-07-181-1/+9
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Bug 626105 - @var in php is not documented
| | * | | | | | Bug 626105 - @var in php is not documentedalbert-github2018-05-111-1/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Small clarification in case of datatype for php.
| * | | | | | | Merge pull request #716 from albert-github/feature/bug_docu_file_version_filterDimitri van Heesch2018-07-181-1/+3
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Correction in example of FILE_VERSION_FILTER
| | * | | | | | | Correction in example of FILE_VERSION_FILTERalbert-github2018-05-091-1/+3
| | |/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | Corrected name in example and corrected layout in documentation.
* | | | | | | | Merge branch 'albert-github-feature/bug_746419_2'Dimitri van Heesch2018-07-181-0/+3
|\ \ \ \ \ \ \ \ | |/ / / / / / / |/| | | | | | |
| * | | | | | | Merge branch 'feature/bug_746419_2' of ↵Dimitri van Heesch2018-07-181-0/+3
| |\ \ \ \ \ \ \ |/ / / / / / / / | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_746419_2
| * | | | | | | Bug 746419 - \todo at end of C# XML comment breaks following todo'salbert-github2018-05-161-0/+3
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | In case of </summary> or </remarks> to be sure to switch back to the right scope
* | | | | | | Added missing #include for util.h to portable.cppDimitri van Heesch2018-07-181-1/+1
| | | | | | |
* | | | | | | Merge branch 'albert-github-feature/bug_extcmd_path'Dimitri van Heesch2018-07-173-14/+25
|\ \ \ \ \ \ \
| * | | | | | | Added substitution variant for character substitutionDimitri van Heesch2018-07-173-27/+22
| | | | | | | |
| * | | | | | | Merge branch 'feature/bug_extcmd_path' of ↵Dimitri van Heesch2018-07-171-1/+17
| |\ \ \ \ \ \ \ |/ / / / / / / / | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_extcmd_path
| * | | | | | | Remove debug statementalbert-github2018-05-041-1/+0
| | | | | | | |
| * | | | | | | Path for external commands on windowsalbert-github2018-04-111-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case a path in the name of an executable contains one or more '/' characters they are replaced by a '\'. - inspired by the cause for bug 766059 - https://stackoverflow.com/questions/49750869/what-is-the-qhg-location-path-relative-to-for-doxygen
* | | | | | | | Merge pull request #717 from albert-github/feature/bug_769414Dimitri van Heesch2018-07-171-0/+60
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Bug 769414 - PHP: New array syntax not supported when parsing initial value
| * | | | | | | | Bug 769414 - PHP: New array syntax not supported when parsing initial valuealbert-github2018-05-101-0/+60
| | |_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | Implemented possibility string initializations by means of '[' ... ']' construct (besides the already existing 'array(' ... ')'.
* | | | | | | | Merge pull request #732 from albert-github/feature/bug_760661Dimitri van Heesch2018-07-161-1/+0
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Bug 760661 - \internal stops all parsing if used inside a section
| * | | | | | | | Bug 760661 - \internal stops all parsing if used inside a sectionalbert-github2018-05-181-1/+0
| | |_|/ / / / / | |/| | | | | | | | | | | | | | | | | | | | | | In case of state SkipInternal the \endinternal should not be written as the \internal isn't written either.