| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
In the docbook ouput this was shown with the attribute `nowrap>=''`, in HTML this empty tag was skipped.
Normally a HTML attribute will have a value but in some cases it is possible without attribute and when this is the last attribute the `>` was accidently added to the attribute (in case of the value the `>` was already considered).
Furthermore `In XHTML, attribute minimization is forbidden, and the nowrap attribute must be defined as <td nowrap="nowrap">.`, this is now handled for HTML and docbook as well.
|
|\
| |
| |
| | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_endblock_msg
|
| |
| |
| |
| | |
Consistency
|
|\ \
| | |
| | |
| | | |
https://github.com/albert-github/doxygen into albert-github-feature/issue_6831
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
There are 2 different situations here:
- @var, here a special change is necessary to check and handle whether or not we are in PHP (declinfo.*, doxygen.cpp)
- @param
- the type recognition for the PHP type has to be extended with the `[]` possibility and subsequently the `[]` part has to be handled separately from the 'datatype' (doctokinizer.l, docparser.*).
- In the output we now can have multiple text strings resulting in a small change in handling of the separator between the data type (*docvisitor.*)
|
|\ \ \
| | | |
| | | |
| | | | |
https://github.com/albert-github/doxygen into albert-github-fetaure/bug_html_ins_del_tag
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Github does not support the `<u>` tag for underlined text, in HTML there exists the tag `<ins>`. On https://www.w3schools.com/tags/tag_ins.asp is written:
The `<ins>` tag defines a text that has been inserted into a document.
Browsers will normally strike a line through deleted text and underline inserted text.
Most browsers will display the `<ins>` element with the following default values:
```
ins {
text-decoration: underline;
}
```
analogous there exists the tag `<del>` (https://www.w3schools.com/tags/tag_del.asp):
The `<del>` tag defines text that has been deleted from a document.
Browsers will normally strike a line through deleted text and underline inserted text.
Most browsers will display the `<del>` element with the following default values:
```
del {
text-decoration: line-through;
}
```
Definitions analogue to the underline and strike through tag the implementation for the other formats has been chosen.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
As per comment in `docvisitor.h`:
```
class DocCopy; // TODO: no longer generated => remove
```
|
| |_|/
|/| |
| | |
| | |
| | |
| | | |
Markdown files
Don't use the file name extension of the including file but of the included file. In case of no included filename or no extension, fall back of the file extension of the including file.
|
| | | |
|
|\ \ \
| | | |
| | | |
| | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_init_fd_line
|
| |/ /
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In case thee `line` command is used without previous `\inclide` or `\dontinclude` command doxygen will crash due to a non initialized fd.
We get the message:
warning: No previous '\include' or \dontinclude' command for '\line' present
also a small correcting regarding the warning message is done.
|
|/ / |
|
|\ \
| | |
| | | |
Multiple use of HTML attributes
|
| | |
| | |
| | |
| | |
| | |
| | | |
In case an attribute is used multiple times the XHTML validator gives (here for the style attribute):
parser error : Attribute style redefined
Created routine to merge these types of attributes.
|
|\ \ \
| | | |
| | | | |
secreflist command output shows in 1 column (HTML)
|
| | | |
| | | |
| | | |
| | | |
| | | | |
The output from the `\secref` command shows in 1 column instead of 3.
The `column-count` (also possibile without `-moz` or `-webkit`) should be with the `<ul>` tag instead of the `<div>` tag
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_lineno_split_examples
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
With the commands like `\skip`, `\skipline` it is possible to show parts of a file for further explanation / tutorials. They can be started with `\include` or `\dontinclude` but in case `\include` specifies that the line numbers have to be shown they are only shown in the full example and not in the split up example
- show line numbers in split up example in case `lineno` is required
- add `lineno` option to `\dontinclude` so here also line numbers can be shown.
|
|/ / / |
|
|/ / |
|
|\ \ |
|
| |/
| |
| |
| |
| | |
- mapping changed due to missing `doxygen=`
- externalRef part changeddue to missing`doxygen=`
|
| | |
|
|/
|
|
|
|
|
|
|
|
|
| |
Besides the `p` tag there were a number of other tags were also the attributes were lost:
- `br`
- `hr`
- `a` in case of used as an anchor i.e. with the `name=` attribute
In case of a `caption` with a `table` and no `id=` attribute with the `caption` there was still an anchor generated
In scanner.l the warnings message was a bit unclear.
|
|\ |
|
| |\
| | |
| | |
| | | |
https://github.com/cheoljoo/doxygen into cheoljoo-run_java_once_3rd_trial
|
| |\ \
| | |/
| | |
| | | |
https://github.com/cheoljoo/doxygen into cheoljoo-run_java_once_3rd_trial
|
| | | |
|
| | |\ |
|
| | | |
| | | |
| | | |
| | | | |
not final
|
| | | |
| | | |
| | | |
| | | | |
Convert name / url based on HTML / XML conventions and don't do double conversions (XML).
|
| | | | |
|
| | | | |
|
|/ / / |
|
|\ \ \
| |_|/
|/| | |
Multiple addindex commands in HTML with same name
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
It is possible to specify an addindex multiple times. In HTML this resulted in
- a 'a' tag with with the same 'name' attribute
- in CHM only one occurrence was shown.
this has been corrected.
(see e.g. the index of 'flex' in the CHM manual generated ffrom master).
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
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.
|
| | |
| | |
| | |
| | | |
svg images should also follow the rules a for other type images regarding div tag and paragraph tags
|
| | | |
|
|\ \ \
| | | |
| | | | |
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`).
|
| | | |
| | | |
| | | |
| | | | |
Analogous to DontInclude (test 21) the wrong xhtml tag sequence can also occur with `\latexinclude`
|
| | | | |
|
| | | | |
|
|/ / /
| | |
| | |
| | |
| | | |
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`).
|
| | |
| | |
| | |
| | |
| | | |
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`).
|
|\ \ \
| | | |
| | | |
| | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_inline_image
|
| | | |
| | | |
| | | |
| | | | |
Create the possibility of inline images with the `\image` command by means of the option `inline`.
|