summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* 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.)
* Merge pull request #722 from tusharpm/test_flagsDimitri van Heesch2018-05-133-4/+5
|\ | | | | Problem with TEST_FLAGS when using CMake for Visual Studio
| * Problem with TEST_FLAGS when using CMake for Visual StudioTushar Maheshwari2018-05-133-4/+5
|/
* Fixed compiler warning for nested /* in scanner.lDimitri van Heesch2018-05-011-2/+2
|
* Merge pull request #684 from albert-github/feature/bug_794567Dimitri van Heesch2018-05-011-104/+0
|\ | | | | Bug 794567 - Doxygen crash when using \code{.markdown}...\endcode in VHDL source
| * Bug 794567 - Doxygen crash when using \code{.markdown}...\endcode in VHDL sourcealbert-github2018-03-271-104/+0
| | | | | | | | | | The handling of the code command in comment is handled when entire comment is handled. Handling was incomplete only the backslash version was checked (and crashed).
* | Merge pull request #686 from albert-github/feature/bug_vhdl_error_messageDimitri van Heesch2018-05-013-6/+30
|\ \ | | | | | | Making VHDL error messages more doxygen like
| * | Making VHDL error messages more doxygen likealbert-github2018-03-273-6/+30
| |/
* | Merge pull request #710 from albert-github/feature/bug_dot_graphsDimitri van Heesch2018-05-012-17/+109
|\ \ | | | | | | Large CALL / CALLER graphs cannot be processed in LaTeX
| * | Large CALL / CALLER graphs cannot be processed in LaTeXalbert-github2018-04-262-17/+109
| | | | | | | | | | | | | | | | | | When generating CAL or CALLER graphs thy can become quite large (and unreadable) and it won't be possible to process them into a PDF due to a limitation of TeX. When it is determined that the resulting image is to large a scale down is done to around 150" (still unreadable) but it can be processed, this scaling done is done by means of the `dot` program. (Note: the scaling to 550 points for the output occurs on the original image in the TeX processing and Tex cannot read the image).
* | | Merge pull request #711 from albert-github/feature/bug_768240Dimitri van Heesch2018-05-013-41/+133
|\ \ \ | | | | | | | | Bug 768240 - Make maxLineLen of latex output configurable
| * | | Bug 768240 - Make maxLineLen of latex output configurablealbert-github2018-04-263-41/+133
| |/ / | | | | | | | | | | | | Removing the automatic line breaking after 108 characters (also didn't work properly with e.g. executive paper size). Due to new implementation some character encodings had to be changed as well as well as handling of the single quote in formulas.
* | | Merge pull request #654 from albert-github/feature/bug_group_consistencyDimitri van Heesch2018-04-291-2/+4
|\ \ \ | | | | | | | | Consistency for "group" commands
| * | | Consistency for "group" commandsalbert-github2018-02-121-2/+4
| | | | | | | | | | | | | | | | | | | | When a non-recognized character appears in a group-command id this is echoed to the console as the default (lex-)rule will be used. This patch ignores these characters, furthermore in case of a \ in the description this is shown in the output as well.
* | | | Merge pull request #707 from luzpaz/misc-typosDimitri van Heesch2018-04-2915-21/+21
|\ \ \ \ | | | | | | | | | | Misc. typos
| * | | | Misc. typosluz.paz2018-04-2515-21/+21
| | |/ / | |/| | | | | | | | | | Found via `codespell`
* | | | Merge pull request #708 from albert-github/feature/bug_fortran_code_realDimitri van Heesch2018-04-291-9/+19
|\ \ \ \ | | | | | | | | | | Fortran code coloring improvements (REAL and comment lines)
| * | | | Fortran code coloring improvements (REAL and comment lines)albert-github2018-04-261-9/+19
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | REAL can have multiple meanings in Fortran: - data type - name of (conversion) function in case of free formatted code the word "real" cab appear at the beginning of a (physical) line and would be interpreted incorrectly. Fortran comment lines always end at the end of the line (no block comments) so the code coloring of comment lines should always be terminated.
* | | | Merge pull request #709 from albert-github/feature/bug_markdown_formulaDimitri van Heesch2018-04-291-1/+1
|\ \ \ \ | |/ / / |/| | | Wrong determination of begin / end tag of formula in markdown.
| * | | Wrong determination of begin / end tag of formula in markdown.albert-github2018-04-261-1/+1
|/ / / | | | | | | | | | The begin tag for a formula during markdown checking was not determined correctly and thus the end tag was not set and the formula code was interpreted which should not be the case (especially in case of labels with '_' in it were miss interpreted .
* | | Merge pull request #706 from c-lipka/dirinfo_doxDimitri van Heesch2018-04-221-2/+2
|\ \ \ | | | | | | | | Include "empty" directories documenting themselves.
| * | | Include "empty" directories in the documentation if they contain a `.dox` ↵Christoph Lipka2018-04-141-2/+2
| | |/ | |/| | | | | | | file (or similar) documenting the directory itself.
* | | Merge pull request #701 from albert-github/feature/bug_latex_table_verboseDimitri van Heesch2018-04-221-16/+17
|\ \ \ | | | | | | | | LaTeX with verbatim part inside a table
| * | | LaTeX with verbatim part inside a tablealbert-github2018-04-111-16/+17
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Doxygen test 54, when generating LaTeX / PDF, gave the error message: Runaway argument? Second paragraph of the param description. \end {DoxyVerb} \\ \hline \ETC. ! Paragraph ended before \verbatim@ was complete. <to be read again> \par l.41 \end{DoxyParams} The tabu package documentation (and Stack Exchange LaTeX) give some hints in to the problem about the verbatim command in the different environments and has been implemented here for the longtabu table.
* | | Merge pull request #677 from albert-github/feature/bug_743539Dimitri van Heesch2018-04-222-4/+1
|\ \ \ | | | | | | | | Bug 743539 - Field with name "internal" confuses documentation builder.
| * \ \ Merge branch 'master' into feature/bug_743539Dimitri van Heesch2018-04-2238-164/+391
| |\ \ \
| * | | | Bug 743539 - Field with name "internal" confuses documentation builder.albert-github2018-03-062-4/+1
| | | | | | | | | | | | | | | | | | | | internal is not a Java reserved word / keyword but was handled as such.
* | | | | Merge pull request #705 from c-lipka/masterDimitri van Heesch2018-04-221-2/+1
|\ \ \ \ \ | | | | | | | | | | | | Bug 795252 - Broken extension test in FileDef::generateSourceFile()
| * | | | | Bug 795252 - Broken extension test in FileDef::generateSourceFile()Christoph Lipka2018-04-141-2/+1
| | |_|/ / | |/| | |
* | | | | Merge pull request #704 from albert-github/feature/bug_704046Dimitri van Heesch2018-04-221-1/+4
|\ \ \ \ \ | | | | | | | | | | | | Bug 740046 - Negative sign in -Foo::Bar ruins hyperlink in generated output
| * | | | | Bug 740046 - Negative sign in -Foo::Bar ruins hyperlink in generated outputalbert-github2018-04-121-1/+4
| |/ / / / | | | | | | | | | | | | | | | Excluded digits and '+' sign and '-' sign from determination of Words.
* | | | | Merge pull request #700 from albert-github/feature/bug_latext_indexDimitri van Heesch2018-04-221-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Consistency of Index name in LaTeX output
| * | | | | Consistency of Index name in LaTeX outputalbert-github2018-04-101-1/+1
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | The name of the index is used on a number of places, in the Contents and the Bookmarks the name as used in the \addcontentsline is used and in the chapter with the index the name as specified in the \indexname is used. The \indexname is set by the language package and the name in the \addcontentsline the name as used in the doxygen translator is used, this can lead to inconsistencies (e.g. Slovak language Register versus Index). The approach has be made uniform here by using \indexname on bot places.
* | | | | Merge pull request #699 from albert-github/feature/bug_303020Dimitri van Heesch2018-04-221-1/+4
|\ \ \ \ \ | | | | | | | | | | | | Bug 303020 - Missing warning of undocumented member in member group
| * | | | | Bug 303020 - Missing warning of undocumented member in member groupalbert-github2018-04-101-1/+4
| |/ / / / | | | | | | | | | | | | | | | | | | | | Removed restrictions that functions / variables / enums ... in a \name command were executed from the test. (Note: In case of functions the arguments were tested or presence).
* | | | | Merge pull request #696 from albert-github/feature/bug_xhtml_image_altDimitri van Heesch2018-04-221-3/+11
|\ \ \ \ \ | | | | | | | | | | | | XHTML image tag mandatory alt attribute
| * | | | | XHTML image tag mandatory alt attributealbert-github2018-04-091-3/+11
| |/ / / / | | | | | | | | | | | | | | | | | | | | The alt attribute is mandatory for the image tag, it is possible to have it written out with an empty string. In case with the image tag there is no alt attribute the empty string alt attribute is added.
* | | | | Merge pull request #695 from albert-github/feature/bug_internal_docuDimitri van Heesch2018-04-221-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Correction internal documentation
| * | | | | Correction internal documentationalbert-github2018-04-091-1/+1
| |/ / / / | | | | | | | | | | | | | | | Small correcting to remove some messages about wrong parameter documentation in doxygen internal documentation.
* | | | | Merge pull request #694 from albert-github/feature/bug_latex_rtf_referenceDimitri van Heesch2018-04-221-5/+5
|\ \ \ \ \ | | | | | | | | | | | | Correcting "Definition at line @0 of file @1."
| * | | | | Correcting "Definition at line @0 of file @1."albert-github2018-04-091-5/+5
| |/ / / / | | | | | | | | | | | | | | | In the LaTeX and RTF documentation where the filename should be presented before the linenumber (e.g. Chinese, Japanese) in the sentence "Definition at line @0 of file @1." neither was shown, the HTML version was correct.
* | | | | Merge pull request #693 from albert-github/feature/bug_tests_xhtml_pdfDimitri van Heesch2018-04-227-49/+2874
|\ \ \ \ \ | | | | | | | | | | | | Create test possibilities for xhtml and pdf output
| * | | | | Create test possibilities for xhtml and pdf outputalbert-github2018-04-031-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | Regression of default output (INPUT setting was overruled).
| * | | | | Create test possibilities for xhtml and pdf outputalbert-github2018-04-037-52/+2877
| |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | The tests in the testing directory provided possibilities to do some regression tests based on the xml output. With the option --xhtml it is possible to see whether or not a test or set of tests is xhtml compliant. With the option --pdf it is possible to see whether or not a test or set of tests can be build to a pdf file (per test).
* | | | | Merge pull request #692 from albert-github/feature/bug_792211_2Dimitri van Heesch2018-04-221-1/+1
|\ \ \ \ \ | | | | | | | | | | | | Bug 792211 - When generating xhtml, async attribute on script tags need a value
| * | | | | Bug 792211 - When generating xhtml, async attribute on script tags need a valuealbert-github2018-04-021-1/+1
| |/ / / / | | | | | | | | | | | | | | | Corrected attribute.
* | | | | Merge pull request #690 from albert-github/feature/bug_test_numbersDimitri van Heesch2018-04-224-12/+12
|\ \ \ \ \ | | | | | | | | | | | | Test renumbering
| * | | | | Test renumberingalbert-github2018-04-014-71/+0
| | | | | | | | | | | | | | | | | | | | | | | | The tests numbers 067 and 068 were used twice, test 067 has been renamed to 072 and test 068 has been renamed to 073.
| * | | | | Test renumberingalbert-github2018-04-014-0/+71
| |/ / / / | | | | | | | | | | | | | | | The tests numbers 067 and 068 were used twice, test 067 has been renamed to 072 and test 068 has been renamed to 073.
* | | | | Merge pull request #688 from albert-github/feature/bug_md_toc_docuDimitri van Heesch2018-04-221-0/+3
|\ \ \ \ \ | | | | | | | | | | | | Added note for usage of [TOC] together with Markdown headers