| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
When running xhtml checker on the doxygen diagram example we get:
Element tr content does not follow the DTD, expecting (th | td)+, got
Document diagrams/xhtml/classes.xhtml does not validate
This is due to an empty `<tr></tr>`, adding the appropriate column definitions solves the problem.
|
| |
|
|
|
|
|
|
| |
union/struct
Protect findAt against empty string.
|
| |
|
|\
| |
| | |
Consistency in headings and layout for template parameters (tparam)
|
| |
| |
| |
| |
| | |
- at some places the translation of the "Template Parameters" was not yet done
- layout of the template parameters table in HTML had no default. Should be analogous to the table for normal parameters
|
|\ \
| | |
| | | |
Incorrect number tag sequence for xhtml with htmlinclude command possible
|
| | |
| | |
| | |
| | |
| | |
| | | |
Analogous to the `\htmlonly` also with the `\htmlinclude` command it is possible that some parts are added that cannot be inside a `<p> ... <\/p>` and thus we have to temporary close (and later reopen) the paragraph.
The option `[block]` has been added to the `\htmlinclude` command (analogous to the `\htmlonly` command).
Problem can be seen with the default doxygen test 30 (`[030_htmlinclude.dox]: test the \htmlinclude command`).
|
|\ \ \
| | | |
| | | | |
Incorrect tag sequence for xhtml with latexinclude command possible
|
| | | |
| | | |
| | | |
| | | | |
Analogous to DontInclude (test 21) the wrong xhtml tag sequence can also occur with `\latexinclude`
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Message:
`< Element map content does not follow the DTD, expecting ((p | h1 | h2 | h3 | h4 | h5 | h6 | div | ul | ol | dl | menu | dir | pre | hr | blockquote | address | center | noframes | isindex | fieldset
| table | form | noscript | ins | del | script)+ | area+), got (area area div)`
The problem first surfaced with test 11 (empty map tag), but the solution given at that moment (`<div/>)`) did work for test 11, but was not correct for test 27.
Problem can be seen with the default doxygen test 27 (`[027_extends.c]: test the \extends, \implements, \memberof, \private, and \public commands`).
|
| | | |
|
|\ \ \
| | | |
| | | | |
Does not generate TOC for markdown
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The markdown handling has been moved to a more logical place and as a consequence the section headers were added and thus checked twice but didn't show the TOC.
Also setting up the table of contents level in a more standard way.
|
|\ \ \ \
| | | | |
| | | | | |
Warning running xmllint for xhtml
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
When running xmllint in the error output the following message appears:
`I/O error : Attempt to load network entity http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd`
Going to the website we see that there an automatic redirect was done from `http` to `https`.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Incorrect tag sequence for xhtml with class diagram possible
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
In case of a class diagram without mapping information the `map` tag is written without content. This is not allowed and results in xhtml (as reported by xmllint) in:
`Element map content does not follow the DTD, expecting ((p | h1 | h2 | h3 | h4 | h5 | h6 | div | ul | ol | dl | menu | dir | pre | hr | blockquote | address | center | noframes | isindex | fieldset | table | form | noscript | ins | del | script)+ | area+), got ()`
By adding a dummy 'paragraph' `<div/>` this can be overcome,
The closing tag for `map` has been placed on a bit a more logical place, showing the open and close tag together.
Problem can be seen with the default doxygen test 11 (`[011_category.m]: test the \interface and \category command`).
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The keyword `register` is deprecated since C++11:
- for the Darwin platform it was already filtered (-Wno-deprecated-register)
- CLan emits: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register]
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Issue #6631 Code blocks incorrectly formatted in Latex
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The line wrapping is automatically done in the DoxyCodeLine environment, so no need for extra spaces etc.
(The m_col is still required for resolving tab positions)
|
|\ \ \ \ \
| | |_|/ /
| |/| | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
- In case no with and no height is given don't scale automatically to `width=50%`
- in case of inline image and a title don't display title.
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_xhtml_test_31
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
In case of `\image` a force closed paragraph is not always force opened again.
Problem can be seen with the default doxygen test 31 (`[031_image.dox]: test the \image command`).
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | |
| | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_docbook_figure
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | | |
The title of an image needs to be at a specific place in docbook. The current place was incorrect
(based on https://stackoverflow.com/questions/53448764/doxygen-creates-empty-image-titles-for-docbook-output)
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/issue_6632
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The issue is the change in the spacing for protocols.
In 1.8.11 the option `-r functions` gave (a.o): `member callbackMethod of class MyProtocol-p`
In 1.8.12 the result is: `member callbackMethod of class MyProtocol -p`
(Note the extra space).
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | |
| | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_emoji_objc
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
In Objective-C the separator for classes / protocols / functions is a single colon `:` resulting in recognizing it as an non existing emoji.
Note that this can only happen with generated names, in e.g. a page name an emoji can be used.
|
|\ \ \ \
| | | | |
| | | | | |
Incorrect number of start / end paragraph tags for xhtml with htmlonly
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
In case of `\htmlonly[block]` the a force closed paragraph is not always force opened again.
Problem can be seen with the default doxygen test 20 (`[020_only.dox]: test the \*only and \*endonly commands`).
|
|/ / /
| | |
| | |
| | |
| | | |
Line was removed but #6415 but apparently reintroduced by a later issue.
The problem shows with a number of the standard doxygen tests when enabling either e.g `--rtf` or `--latex`
|
|\ \ \
| | | |
| | | | |
Update Dutch translation for new Slice implementation
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \ |
|
| |\ \ \
| | | | |
| | | | | |
issue_6601 tparam HTML gobbles up lines after the tparam comment
|
| | | |/
| | |/|
| | | |
| | | | |
properly terminate block and see to it that a proper horizontal ruler occurs (as if `<hr>` was used).
|
| |\ \ \
| | | | |
| | | | | |
Replace 'printf' with appropriate warn 'message'
|
| | | | |
| | | | |
| | | | |
| | | | | |
In the code a 'printf' has been replaced with an appropriate 'warn' call (and renamed a local variable to prevent conflicts)
|
| |/ / /
| | | |
| | | |
| | | | |
In the `\cite` label some extra characters are enabled, '-' and '?', as the '--' and '---' have been converted beforehand they have to be converted back and the corresponding labels also have to between double quotes (which are striped away).
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Regression on adding emoji.
- in case of multiple levels of `::` (e.g. `U::V::W`) this resulted in the fact that `:V:` was seen as an emoji and handled as such
- in a citelist it is possible to have `pages = {104:1--104:8},`, `number = {4},` and `volume = {28},` but this is translated into `28(4):104:1–104:8` giving a false positive on `:104:`. the citelist has been excluded from emoji handling.
|
| |\ \ \
| | | | |
| | | | | |
Remove debug statements
|