| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|\
| |
| |
| | |
https://github.com/albert-github/doxygen into albert-github-feature/issue_6690
|
| |
| |
| |
| |
| |
| | |
function parameters (with bisect and test case)
For some keywords not the value of the 'type' should decide whether the 'name' in the name field is part of the 'type' or is the 'name' in the argument.
|
| |
| |
| |
| | |
Python #6706
|
| |
| |
| |
| |
| |
| |
| |
| | |
Changes:
- Use of `@emoji name` instead of `:name:`
- Support only GitHub emojis (i.e. without spaces or special characters in the name)
- Provided script to download images for LaTeX support.
- XML output now has <emoji> tag with name an unicode sequence.
|
| | |
|
| | |
|
|\ \
| | |
| | | |
issue #6692 XML TOC generation is not backwards-compatible with 1.8.14
|
| |/
| |
| |
| | |
In case no options specified with the `\tableofcontents` `Html` and `XML` should be generated and not only `Html` (compatibility).
|
|\ \
| | |
| | | |
Incorrect closing tags for in page table of contents (XHTML)
|
| |/
| |
| |
| | |
In case of using the levels in the in page table of contents in XHTML some closing tags wer missing.
|
|\ \
| | |
| | | |
Incorrect closing tags for in page table of contents (docbook)
|
| |/
| |
| |
| | |
In the in page table of contents in docbook some closing tags were missing.
|
|\ \
| | |
| | | |
Index list cannot contain special characters in ids for XHTML
|
| | |
| | |
| | |
| | | |
XHTML doesn't ids with a ~ in it, converted to an id character. This happens with e.g. the list of destructors.
|
|\ \ \
| | | |
| | | | |
Print emoji text in case of unknown emoji
|
| | |/
| |/|
| | |
| | | |
In case an unknown emoji was detected the 'value' was not printed to the output, this is corrected.
|
|\ \ \
| | | |
| | | | |
issue #6691 Multiple issues with emoji matching
|
| |/ /
| | |
| | |
| | |
| | | |
This fix is regarding the false positive emoji detection of scope rules like: `Platform::*Application::viewportEvent(const Vector2i&)`
In case the "emoji" is followed by and extra `:` it is not seen as an emoji anymore.
|
|\ \ \
| | | |
| | | | |
Prevent empty page list table (XHTML)
|
| | |/
| |/|
| | |
| | | |
The table (tag) should only be written in case a table has at least one row, otherwise a non valid table is generated (XHTML)
|
| |/
|/| |
|
|/
|
|
| |
bisect] (Origin: bugzilla #791942)
|
|\ |
|
| |
| |
| |
| | |
Prevent endless loop during renumbering
|
|/
|
|
| |
output
|
|\
| |
| | |
RTF lists more levels and removing extra paragraphs
|
| |
| |
| |
| |
| | |
- In a RTF list after the last indent a number of extra paragraphs were displayed (with e.g. bullets), these extra paragraphs are removed
- Increased the number of levels conform the changes for latex (#6622)
|
|\ \
| | |
| | | |
Tag sequence incorrect for svg image (XHTML)
|
| | |
| | |
| | |
| | | |
svg images should also follow the rules a for other type images regarding div tag and paragraph tags
|
|/ /
| |
| |
| | |
The table tag should only be written in case a table has at least one row, otherwise a non valid table is generated (XHTML)
|
| |
| |
| |
| |
| |
| |
| |
| | |
When running xhtml checker on the doxygen diagram example we get:
Syntax of value for attribute name of a is not valid
Document mux/xhtml/classmux__using__with.xhtml does not validate
This is due to a space in the name tag, substituting the appropriate code solves the problem.
As this is a VHDL specific problem only these strings are converted.
|
|\ \
| | |
| | | |
Bug 774118 - EXTERNAL_GROUPS lose hierarchy
|
| | |
| | |
| | |
| | | |
Created relations between groups as specified in the tag file
|
|\ \ \
| | | |
| | | | |
Wrong counting of lines during VHDL code output
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The code coloring of the output stops at an early stage, resulting in incorrect HTML / LaTeX / ... output, due to a double counting of the lines in case of `STRIP_CODE_COMMENTS=NO`.
Problem is visible when looking at the documentation of the VHDL documentation block in the manual for VHDL code in e.g. HTML and LaTex (Note problem occurs in the 1.8.15 master, not in the 1.8.14 version).
|
|\ \ \ \
| | | | |
| | | | | |
XHTML incorrect attribute values for align and valign
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
The attribute values of the `align` and `valign` attribute have to be in lowercase and the `valign` attribute value `center` does not exist but has to be `middle`.
Most browsers do accept the 'incorrect' values but it is better to have the right values present.
(Found by means of the CGAL/cgal repository)
|
|\ \ \ \ \
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
albert-github/feature/bug_xhtml_maparea_node_numbers
XHTML problem with multiple use of node numbers in id attribute
|
| | |/ / /
| |/| | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
When running xhtml checker on the doxygen diagram example we get:
diagrams/html/class_a.html:66: element area: validity error : ID node1 already defined
<area shape="rect" id="node1" title=" " alt="" coords="5,5,44,32"/>
^
ID node1 already defined
Document diagrams/html/class_a.html does not validate
This is due to the fact that the map file is used as generated by dot, and here the id values start each time with node1. The id is not used and can be omitted.
|
|\ \ \ \ \
| |_|/ / /
|/| | | | |
XHTML problem with class index table
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
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`).
|