summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Update scanner.lArmin Müller2018-06-191-3/+3
|
* Update rtfdocvisitor.cppArmin Müller2018-06-191-1/+1
|
* Update doxygen.mdArmin Müller2018-06-191-1/+1
|
* Update doxygen.cppArmin Müller2018-06-191-1/+1
|
* Merge pull request #714 from albert-github/feature/bug_test_condDimitri van Heesch2018-06-102-2/+2
|\ | | | | Problem with \cond in normal comment of test 015
| * Problem with \cond in normal comment of test 015albert-github2018-05-072-2/+2
| | | | | | | | | | | | | | | | In the \cond is also recognized in non-doxygen comment. - As a work around the \ has been removed - in case of e.g. pdf the enabled function is not shown as it does not have a doxygen comment - test file output update due to change in input code. - pre.l and commentcnv.l. better error message i.e. showing better the used condition
* | Merge pull request #742 from albert-github/feature/bug_latex_table_codeDimitri van Heesch2018-06-103-14/+35
|\ \ | | | | | | Problem with code inside a Doxy table in LaTeX
| * | Problem with code inside a Doxy table in LaTeXalbert-github2018-05-263-14/+35
| | | | | | | | | | | | | | | | | | When code is used inside a problem occurs with \discretionary - Inside a table \discretionary is disabled when code is used. - \newline should not be appended to a code line (is already implicitly done by the command).
* | | Merge pull request #751 from albert-github/feature/bug_latex_tablesDimitri van Heesch2018-06-102-24/+48
|\ \ \ | | | | | | | | Problems and some enhancements for LaTeX tables
| * | | Problems and some enhancements for LaTeX tablesalbert-github2018-05-302-24/+48
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Possibility to honor also the cell alignment when using Markdown tables for other formats (markdown.cpp, latexdocvisitor.cpp, lines: 1146, 1157, 1173) latexdocvisitor.cpp: - Possibility to nest tables to a further level when using LaTeX. It was only possible till level 2 (i.e. a longtabu followed buy a tabularx table). By placing tabularx in an extra set of brackets this is fixed (lines 938 and 951) - tablarx environment cannot handle the headers as used for the longtabu table. A header line is in case of tabularx implemented by mimicking the header line. - longtabu needs multiple times the header line (first and following), tabularx we only need 1 (line 998) - no longtabu special headers (line 1092) - tabularx cannot handle rowcolor, coloring done only with columncolor(line 1024, 1134, 1188) - no necessity for longtabu to define column with for spanned columns / rows(line 1048, 1134, 1171)
* | | Merge pull request #757 from albert-github/feature/bug_latex_formulaDimitri van Heesch2018-06-101-2/+1
|\ \ \ | | | | | | | | Improvement LaTeX output (regression)
| * | | Improvement LaTeX output (regression)albert-github2018-06-051-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | Regression on pull request #698. We shouldn't switch to pdflatex for formula generation (follow up procedure: dvips and gs / splitting into images does not work). In the travis tests this was shown as well but not flagged as an error.
* | | | Merge pull request #758 from albert-github/feature/bug_363762Dimitri van Heesch2018-06-101-7/+10
|\ \ \ \ | | | | | | | | | | Bug 363762 - Tooltips are not shown in dot-generated graphs
| * | | | Bug 363762 - Tooltips are not shown in dot-generated graphsalbert-github2018-06-071-3/+6
| | | | | | | | | | | | | | | | | | | | Some graphs were still missing a tooltip in the root node (most notably the caller graphs), so were still displaying something like Node0.
| * | | | Bug 363762 - Tooltips are not shown in dot-generated graphsalbert-github2018-06-071-4/+4
| |/ / / | | | | | | | | | | | | | | | | The basic problem mentioned in this issue was already solved in Mai 2009 (version 1.5.8 or earlier), in case a brief description is present this is displayed otherwise the node number is specified) A remaining thing was that the tooltip with the root nodes (gray nodes) was always something like Node0 irrespective of the brief description. This has been solved here.
* | | | Merge pull request #735 from albert-github/feature/bug_792122_2Dimitri van Heesch2018-06-101-1/+1
|\ \ \ \ | | | | | | | | | | Bug 792122 - XHTML pages are broken several ways (Regression #674)
| * | | | Bug 792122 - XHTML pages are broken several ways (Regression #674)albert-github2018-05-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | The markdown processing of [TOC] was not performed anymore, at the moment of processing there was no g_current. Adding @tableofcontents to the stream (like with images) solves this problem.
* | | | | Merge pull request #752 from albert-github/feature/bug_782082Dimitri van Heesch2018-06-102-3/+15
|\ \ \ \ \ | | | | | | | | | | | | Bug 782082 - Czech/Slovak language documentation with tables from LaTeX to PDF is not possible
| * | | | | Bug 782082 - Czech/Slovak language documentation with tables from LaTeX to ↵albert-github2018-05-312-3/+15
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | PDF is not possible Added commands as indicated to overrule \cline and \cmidrule due to problems with `-`
* | | | | Merge pull request #739 from albert-github/feature/bug_python_codeDimitri van Heesch2018-06-102-5/+26
|\ \ \ \ \ | | | | | | | | | | | | Small problems when displaying python code
| * | | | | Small problems when displaying python codealbert-github2018-05-222-5/+26
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - with was not colored (in pyscanner the KEYWORD item was not used, so removed as dead code) - incorrect handling of a 'triquote' at end of string - incorrect handling of a stringprefix followed by the end of a string
* | | | | | Merge pull request #749 from albert-github/feature/bug_792918Dimitri van Heesch2018-06-101-7/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | Bug 792918 - incorrect parsing of markdown table
| * | | | | | Bug 792918 - incorrect parsing of markdown tablealbert-github2018-05-291-7/+4
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Problem due to the fact that for the display of the header line the size of the separator line was used. The headerStart and headerEnd have to be set before the next call to 'findTableColumns' Related to: - pull request 537 Add support for more CSS and column/row spanning in markdown tables - pull request 542 Reverting pull request #537 until it will be fixed - commit on 16/09/2017: New table features mentioned in the documentation were not enabled.
* | | | | | Merge pull request #748 from albert-github/feature/rtf_output_typoDimitri van Heesch2018-06-101-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Wrong spelling of word doxygen
| * | | | | | Wrong spelling of word doxygenalbert-github2018-05-291-1/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | Corrected spelling Doxgyen -> doxygen and added space for better readability
* | | | | | Merge pull request #756 from albert-github/feature/bug_rtf_formulaDimitri van Heesch2018-06-102-2/+20
|\ \ \ \ \ \ | | | | | | | | | | | | | | Add formula (images) to RTF output
| * | | | | | Add formula (images) to RTF outputalbert-github2018-06-052-2/+20
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | The RTF output was lacking the possibility to have formulas in it (were written as text). This patch generates the images analogous to the HTML, non MATHJAX, version and includes them in the output.
* | | | | | Merge pull request #741 from albert-github/feature/bug_rtf_code_colorDimitri van Heesch2018-06-102-4/+39
|\ \ \ \ \ \ | | | | | | | | | | | | | | Syntax highlighting / code coloring in RTF
| * | | | | | Syntax highlighting / code coloring in RTFalbert-github2018-05-252-4/+39
| | |/ / / / | |/| | | | | | | | | | | | | | | | Although stated in the Doxyfile that for RTF source code syntax highlighting should be present this was not the case.
* | | | | | Merge pull request #746 from albert-github/feature/bug_782754Dimitri van Heesch2018-06-102-17/+3
|\ \ \ \ \ \ | | | | | | | | | | | | | | Bug 782754 - rtf generation
| * | | | | | Bug 782754 - rtf generationalbert-github2018-05-282-17/+3
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Looks like problem has been introduced with the fix for bug 445105 (release 1.5.3), in this case the \par is necessary. The fix for bug 741547 (pull request #596) is related to this problem and the fix here is not necessary with this fix. Related to bug 778525, here 2 problems occur and the mangling is solved with this patch.
* | | | | | Merge pull request #744 from albert-github/feature/bug_774597Dimitri van Heesch2018-06-101-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Bug 774597 - Title in rtf file is incorrect when overridden by user in extension file
| * | | | | | Bug 774597 - Title in rtf file is incorrect when overridden by user in ↵albert-github2018-05-261-1/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | extension file Corrected title in case of extension file used.
* | | | | | Merge pull request #724 from albert-github/feature/bug_796094Dimitri van Heesch2018-06-101-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Bug 796094 - Backslashes in default values confuse the parser (and cause params to be ignored)
| * | | | | | Bug 796094 - Backslashes in default values confuse the parser (and cause ↵albert-github2018-05-141-1/+1
| | |_|_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | params to be ignored) Corrected assignment / counting.
* | | | | | Merge pull request #740 from isaachier/compilation-database-include-fixDimitri van Heesch2018-06-101-0/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | Include header for CompilationDatabase
| * | | | | | Include header for CompilationDatabaseIsaac Hier2018-05-231-0/+1
| | |/ / / / | |/| | | |
* | | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2018-06-101-1/+1
|\ \ \ \ \ \ | | |_|/ / / | |/| | | |
| * | | | | Bug 796494 - Collapsed treeview arrow displays as emoji in Microsoft Edgealbert-github2018-06-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The right arrow (▶) is inn MicrosoftEdge displayed as an Emoji it displays as a white arrow inside a blue square with a black border instead of a monochrome arrow. Unicode contains another right arrow (&#9258) which displays correctly (also in Chrome, Opera, FireFox, Internet Explorer; in some even better). The Unicode naming is a bit confusing: - for the down arrow we only have: - ▼ 'BLACK DOWN-POINTING TRIANGLE' - for the right arrow we have: - ▶ 'BLACK RIGHT-POINTING TRIANGLE' - ► 'BLACK RIGHT-POINTING POINTER' so it looks logical to use both Triangles but this is not the case.
* | | | | | Merge branch 'feature/bug_enum' of https://github.com/albert-github/doxygen ↵Dimitri van Heesch2018-06-102-34/+143
|\ \ \ \ \ \ | |/ / / / / |/| | | | | | | | | | | into albert-github-feature/bug_enum
| * | | | | Implementation Fortran ENUM / ENUMERATIONalbert-github2018-02-172-46/+153
| | | | | | | | | | | | | | | | | | | | | | | | All ENUMs are anonymous as they don't have a name defined in the Fortran standard.
* | | | | | Merge branch 'master' into vhdl-localizationAndreas Regel2018-05-2869-439/+838
|\ \ \ \ \ \ | | |/ / / / | |/| | | | | | | | | | | | | | | | # Conflicts: # src/translator.h
| * | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2018-05-2212-55/+107
| |\ \ \ \ \
| | * \ \ \ \ Merge pull request #689 from albert-github/feature/bug_vhdl_code_colorDimitri van Heesch2018-05-221-17/+51
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | Added some VHDL code coloring
| | | * | | | | Added some VHDL code coloringalbert-github2018-03-311-17/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add coloring of "of" - improvement for architecture - adding coloring for names after an end statement removed obsolete g_CurrScope
| | * | | | | | Merge pull request #687 from albert-github/feature/bug_vhdl_ports_htmlDimitri van Heesch2018-05-2211-38/+56
| | |\ \ \ \ \ \ | | | |_|_|_|/ / | | |/| | | | | Better HTML output for VHDL Ports
| | | * | | | | Better HTML output for VHDL Portsalbert-github2018-03-2911-38/+56
| | | |/ / / / | | | | | | | | | | | | | | | | | | | | | Small alignment improvement of HTML output for VHDL Ports so that the mode will be in a separate column
| * | | | | | Moved #include "config.h" back to the original placeDimitri van Heesch2018-05-2217-16/+15
| | | | | | |
| * | | | | | Merge branch 'feature/bug_latex_languages' of ↵Dimitri van Heesch2018-05-2236-67/+218
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_latex_languages
| | * | | | | Merge branch 'master' into feature/bug_latex_languagesDimitri van Heesch2018-05-0133-204/+460
| | |\ \ \ \ \