summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #7230 from albert-github/feature/bug_formula_macrofileDimitri van Heesch2019-12-255-1/+220
|\ | | | | Create possibility to define LaTeX commands for formulas
| * Create possibility to define LaTeX commands for formulasalbert-github2019-08-275-1/+220
| | | | | | | | | | | | To be able to have building bocks for formulas one can create a `\newcommand` (or when one wants to change a command `\renewcommand`). Due to the different handling of LaTeX commands in pure LaTeX code (latex output and formulas converted to images) and MathJax it is necessary to transform LaTeX commands to the MathJax equivalent. This is done in a transparent way by providing the new commands in a file and add this verbatim to the pure LaTeX code and to translate the `\newcommand` and `\renewcomamnd` to MathJax macros.
* | Merge branch 'master' into spellingDimitri van Heesch2019-12-23110-8409/+8781
|\ \
| * | Fix for use of non portable strnstr function (part 2)Dimitri van Heesch2019-12-232-3/+31
| | |
| * | Fix for use of non portable strnstr functionDimitri van Heesch2019-12-233-1/+18
| | |
| * | Merge pull request #7211 from albert-github/feature/issue_7210Dimitri van Heesch2019-12-231-32/+30
| |\ \ | | | | | | | | issue #7210: 1.8.16: Image inclusion is inconsistent
| | * | issue #7210: 1.8.16: Image inclusion is inconsistentalbert-github2019-08-201-32/+30
| | | | | | | | | | | | | | | | | | | | The consequence of #7084 (Missing warning about ambiguous files) was that in case a file was ambiguous only a message was given. Now a warning is given plus one of the ambiguous files is used (might be the wrong one).
| * | | Optimize UTF-8 nbsp conversion in markdownDimitri van Heesch2019-12-221-6/+17
| | | |
| * | | Merge branch 'feature/bug_nbsp_code' of ↵Dimitri van Heesch2019-12-221-5/+6
| |\ \ \ | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_nbsp_code
| | * | | Text ' ' appears in code segmentsalbert-github2019-08-231-5/+6
| | |/ / | | | | | | | | | | | | | | | | In case we have the UTF-8 code for nbsp in our source this is (see #6983) replaced with ` `, though in code fragments this is unwanted as here the text appears literally. the UTF-8 nbsp is temporary replaced by a "doxygen" tag and for fenced code blocks, backtick blocks and special bloc commands (code, verbatim, htmlonly, formulas,...) replaced back with the UTF-8 version, the remaining "doxygen" tags are at the end replaced with ` `
| * | | Fixed merge issueDimitri van Heesch2019-12-221-1/+1
| | | |
| * | | Merge branch 'master' into feature/bug_550158Dimitri van Heesch2019-12-22145-13669/+13042
| |\ \ \
| | * | | Removed exitCode parameter as it is always 1Dimitri van Heesch2019-12-2223-78/+63
| | | | |
| | * | | Merge branch 'feature/bug_terminate' of ↵Dimitri van Heesch2019-12-2223-111/+101
| | |\ \ \ | | | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_terminate
| | | * | | Better termination messagealbert-github2019-11-2223-111/+101
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case a `WARN_LOGFILE` is used it in this file no clear whether doxygen finished correctly or exited beforehand in case a fatal error. Now a 'Exiting...' is also given in the warning log file in case an error is a fatal error.
| | * | | | issue 3417: C++: friend template functions shown even with ↵Dimitri van Heesch2019-12-212-12/+13
| | | | | | | | | | | | | | | | | | | | | | | | HIDE_FRIEND_COMPOUNDS=yes
| | * | | | Merge pull request #7231 from albert-github/feature/issue_7228Dimitri van Heesch2019-12-211-5/+5
| | |\ \ \ \ | | | | | | | | | | | | | | issue #7228 Using markdown causes wrong error and warning line numbers - v. 1.8.16
| | | * | | | issue #7228 Using markdown causes wrong error and warning line numbers - v. ↵albert-github2019-08-271-5/+5
| | | | |_|/ | | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | 1.8.16 Sacrificing some readability of the debug `-d markdown` output for a better approximation of the line numbers by keeping the rows of a markdown table on one line when translating to a HTML table.
| | * | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-12-211-1/+1
| | |\ \ \ \
| | | * \ \ \ Merge pull request #7459 from albert-github/feature/bug_tests_xhtmlDimitri van Heesch2019-12-201-1/+1
| | | |\ \ \ \ | | | | | | | | | | | | | | | | Tests 31 for XHTML output
| | | | * | | | Tests 31 for XHTML outputalbert-github2019-12-191-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When running test 31 for XHTML output, we get the error: ``` not ok 1 - [031_image.dox]: test the \image command ------------------------------------- .../testing/test_output_031/html/index.xhtml:107: parser error : EntityRef: expecting ';' "image/svg+xml" data="https://img.shields.io/badge/docs-Doxygen-blue.svg?foo&bar ``` For the SVG output the `src` was not properly converted (see also the other formats a few lines lower).
| | * | | | | | Reduced code duplicationDimitri van Heesch2019-12-211-148/+37
| | | | | | | |
| | * | | | | | Merge branch 'feature/bug_config' of ↵Dimitri van Heesch2019-12-203-9/+203
| | |\ \ \ \ \ \ | | | |/ / / / / | | |/| | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_config
| | | * | | | | Checking of right usage of configuration list itemsalbert-github2019-11-253-9/+203
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case of a configuration list item has an equal sign in it ('=') some extra restriction are imposed / made more understandable.
| | * | | | | | issue #7446: C#: parameter named `extends` is broken in the documentationDimitri van Heesch2019-12-2011-27/+38
| | | | | | | |
| | * | | | | | issue #7456: function-like macros generate warningsDimitri van Heesch2019-12-201-1/+2
| | | |/ / / / | | |/| | | |
| | * | | | | Extend built-in STL support with more classesDimitri van Heesch2019-12-194-232/+311
| | | | | | |
| | * | | | | Incorrect warning "yyextra->inside" instead of "inside"albert-github2019-12-181-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We get warnings like: ``` warning: reached end of file while yyextra->inside a 'code' block! warning: Ignoring \brief command yyextra->inside argument documentation ``` this is due to the fact that the scanner has been made reentrant (inside becomes yyextra->inside and this slipped into the warning strings as well)
| | * | | | | Merge branch 'feature/bug_unsupported_html' of ↵Dimitri van Heesch2019-12-183-4/+7
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_unsupported_html
| | | * | | | | Output of unknown xml/html tagalbert-github2019-11-063-11/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having a problem like: ``` /** \file - Just name <name> - name plus subname <name subname> - name plus twice subname <name subname subname> - name plus subname subname="" <name subname subname=""> */ ``` we get correctly the warnings: ``` .../aa.h:3: warning: Unsupported xml/html tag <name> found .../aa.h:4: warning: Unsupported xml/html tag <name> found .../aa.h:5: warning: Unsupported xml/html tag <name> found .../aa.h:6: warning: Unsupported xml/html tag <name> found ``` but the output doesn't look good as there is `=""` added: ``` Just name <name> name plus subname <name subname=""> name plus twice subname <name subname="" subname=""> name plus subname subname="" <name subname="" subname=""> ``` This patch fixes this output.
| | * | | | | | Made regexp more strictDimitri van Heesch2019-12-181-5/+6
| | | | | | | |
| | * | | | | | Merge branch 'feature/bug_nospam_email' of ↵Dimitri van Heesch2019-12-181-0/+5
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_nospam_email
| | | * | | | | | Simple nospam email addressalbert-github2019-11-051-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having a simple nospam email address coded like: ``` /** \file * Big Unknown <big at none dot com> */ ``` this results in the warning: ``` aa.c:2: warning: Unsupported xml/html tag <big> found ``` and in the HTML output it looks like: ``` Big Unknown <big at none dot com> ``` instead of: ``` Big Unknown <big at none dot com> ``` (Found in a couple of open source projects).
| | * | | | | | | Merge pull request #7237 from albert-github/feature/bug_table_hrDimitri van Heesch2019-12-172-1/+9
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | Problem with `<hr>` in LaTeX multicolumn cell
| | | * | | | | | | Problem with `<hr>` in LaTeX multicolumn cellalbert-github2019-08-291-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Small problem with defining `\hrulefilll`, moved code.
| | | * | | | | | | Problem with `<hr>` in LaTeX multicolumn cellalbert-github2019-08-291-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In case we have a `<hr>` in a table cell then it is displayed as a horizontal line (in LaTeX) unless it is in a multicolumn cell. In the later case it throws an error: ``` ! You can't use `\hrule' here except with leaders. \DoxyHorRuler ... }{0ex plus 0ex minus 0ex}\hrule ``` We have to use use `\hrulefill` in a table but in combination with the table option of xcolor this gives some problems so a new command has to be defined for this. See also: - horizontal rule / line inside a multicolumn field (https://tex.stackexchange.com/questions/506211/horizontal-rule-line-inside-a-multicolumn-field) - interaction between \usepackage[table]{xcolor} and \hrulefill (https://tex.stackexchange.com/questions/506221/interaction-between-usepackagetablexcolor-and-hrulefill)
| | * | | | | | | | Avoid warning in commentcnv.l about trailing context made variable due to ↵Dimitri van Heesch2019-12-171-48/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | preceding '|' action
| | * | | | | | | | Prevent writing automatic anchors to the tag fileDimitri van Heesch2019-12-152-2/+2
| | | | | | | | | |
| | * | | | | | | | Merge branch 'feature/issue_7248' of ↵Dimitri van Heesch2019-12-151-1/+18
| | |\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_7248
| | | * | | | | | | | issue #7248: Including external tag files with TOC produces a broken index.qhpalbert-github2019-09-091-1/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ignore automatically generated anchor names when importing a tag file.
| | * | | | | | | | | issue #7326: Incorrect display of multiline #define valueDimitri van Heesch2019-12-141-1/+9
| | | | | | | | | | |
| | * | | | | | | | | Fix logic bug in SVG detectionDimitri van Heesch2019-12-141-1/+1
| | | | | | | | | | |
| | * | | | | | | | | issue #7206: Problems with Fortran and `@cond`Dimitri van Heesch2019-12-141-7/+15
| | | | | | | | | | |
| | * | | | | | | | | Minor fixesDimitri van Heesch2019-12-121-1/+1
| | | | | | | | | | |
| | * | | | | | | | | issue #7436 Incorrect handling of block comments in VHDLalbert-github2019-12-113-2/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The search for `/*` or /*!` ended at the last `*/` in a file and thus skipping other intermediate block end and new starts. Also the intermediate code was lost see as comment. The filter pattern used was incorrect and should have been `<"/*" (~["*"])* "*" ("*" | ~["*","/"] (~["*"])* "*")* "/">` (thanks to https://javacc.org/contrib/C.jj). Here also the space plus one or more `*` at the end beginning of the line are still incorporated as well as multiple `*` before the colosing `*/` this is also filtered.
| | * | | | | | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-12-103-4/+30
| | |\ \ \ \ \ \ \ \ \
| | | * \ \ \ \ \ \ \ \ Merge pull request #7431 from albert-github/feature/bug_emailDimitri van Heesch2019-12-101-1/+7
| | | |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | Email address seen as code starter
| | | | * | | | | | | | | Email address seen as code starteralbert-github2019-12-061-1/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some email addresses give problems in the comment converter as they contain e.g. `@code`, so we try to detect Email addresses (analogous to doctokenizer.l) to prevent these false positives. The given warning would ne like: ``` aa.h:13: warning: Reached end of file while still inside a (nested) comment. Nesting level 1 (probable line reference: 1) ```
| | | * | | | | | | | | | Merge pull request #7186 from albert-github/feature/bug_cite_docbookDimitri van Heesch2019-12-081-2/+22
| | | |\ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Incorrect NCName in docbook citations
| | | | * | | | | | | | | | Incorrect NCName in docbook citationsalbert-github2019-08-121-2/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In a bibtex reference it is possible to have a colon as the id, but in docbook this will result in: ``` docbook/citelist.xml:5: validity error : xml:id : attribute value _citelist_1CITEREF_pre:post is not an NCName <varlistentry><term><anchor xml:id="_citelist_1CITEREF_pre:post"/>[1]</term> ``` So the id has to be translated. A colon in an id can only happen in case the names is provided from the outside.