summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'feature/bug_latex_index' of ↵Dimitri van Heesch2018-07-233-5/+31
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_latex_index
| * Making the 'tex' part of \makeindex available to the useralbert-github2018-05-083-5/+31
| | | | | | | | | | | | | | | | | | In case we need to use another 'makeindex' command in the Makefile / make.bat we can use the configuration tag MAKEINDEX_CMD_NAME When we want to have another index we can use e.g. EXTRA_PACKAGES = [nottoc]tocbibind but in those cases the \makeindex command is still the same but should be \makeindex[intoc]. By means of the new configuration tag LATEX_MAKEINDEX_CMD this discrepancy has been solved. Due to the default value some small changes in the configuration parser were necessary as well. (based on the stack question https://stackoverflow.com/questions/44394311/add-index-to-toc-with-doxygen).
* | Minor fixes to local toc logic after feedbackDimitri van Heesch2018-07-232-7/+7
| |
* | 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-2212-177/+362
|\ \ | | | | | | | | | 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-121-1/+1
| | | | | | | | | | | | | | | | | | | | | 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-1271-526/+1474
| |\ \ | | | | | | | | | | | | https://github.com/albert-github/doxygen into feature/bug_tableofcontents_latex
| | * \ Merge branch 'master' into feature/bug_tableofcontents_latexDimitri van Heesch2018-06-2471-526/+1474
| | |\ \
| * | | | Enable in page table of contents for XML and add maximum level to in page ↵albert-github2018-07-1211-29/+158
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | 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-2111-165/+220
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-214-30/+45
|\ \ \ \ \ | | | | | | | | | | | | Small problems when having code in LaTeX output
| * | | | | 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 branch 'master' into feature/bug_663297Dimitri van Heesch2018-07-2176-642/+2241
|\ \ \ \ \ \
| * | | | | | Bug 779407 - plantuml:an unwanted newline is generated after @startumlDimitri van Heesch2018-07-211-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.
| * | | | | | 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-181-1/+3
| |\ \ \ \ \ \
| | * \ \ \ \ \ 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 '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
| | | | | | |
| * | | | | | 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.
| * | | | | | | Merge pull request #783 from albert-github/feature/bug_clangDimitri van Heesch2018-07-072-13/+17
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Enable possibility of CLANG for Cygwin
| | * | | | | | | Enable possibility of CLANG for Cygwinalbert-github2018-07-071-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The forward declaring of standard functions is not the best way, better to do it through available standard settings. Setting has to be before that features.h is loaded (the first time).
| | * | | | | | | Enable possibility of CLANG for Cygwinalbert-github2018-06-302-13/+17
| | | |_|_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | - During compilation there were some problems with strdup (POSIX), replaced by qstrdup - During compiling / linking there were some problems with killpg which was recognized, added standard definition.
| * | | | | | | Merge pull request #719 from albert-github/feature/bug_678684Dimitri van Heesch2018-07-071-0/+2
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Bug 678684 - Not warning of undocumented function parameters
| | * | | | | | | Bug 678684 - Not warning of undocumented function parametersalbert-github2018-05-111-0/+2
| | | |_|/ / / / | | |/| | | | | | | | | | | | | | | | | | | | | Noted in documentation that parameter has no effect in case of EXRTACT_ALL
| * | | | | | | Merge pull request #767 from albert-github/feature/bug_124252Dimitri van Heesch2018-07-071-0/+16
| |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Bug 124252 - A function cannot be documented as related to two classes.
| | * | | | | | | Bug 124252 - A function cannot be documented as related to two classes.albert-github2018-06-161-0/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Multiple use in one comment block of \relates or \relatesalso or \memberof or a mixture is silently ignored (only last command is active). In this patch a warning is given and the right relatesType is set (in case of Simple the previous type remained).
| * | | | | | | | Merge pull request #759 from albert-github/feature/bug_363762_2Dimitri van Heesch2018-07-071-0/+4
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Bug 363762 - Tooltips are not shown in dot-generated graphs (extension)
| | * | | | | | | | Bug 363762 - Tooltips are not shown in dot-generated graphs (extension)albert-github2018-06-101-0/+4
| | |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | In case no brief description present, no tooltip is shown.
| * | | | | | | | Merge pull request #773 from albert-github/feature/bug_796621Dimitri van Heesch2018-07-074-16/+39
| |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Bug 796621 - @cond does not stop at @endcond Fortran