| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Multiple anchors with member-group
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When running a link checker on the CGAL (e.g. AABB_tree package) we get a lot of warnings like:
```
Processing file:///.../doc_output/AABB_tree/classCGAL_1_1AABB__tree.html
List of duplicate and empty anchors
member-group Lines: 191, 229, 258, 297, 316, 335, 347
```
The member-group anchor is shown like:
```
<a name="member-group"></a>
```
and create each time the `\name` command is used. the `\name` command can be used multiple times on a page.
There is (no way to) reference the anchor (like `<a href="#member-group">...`) found in the doxygen code.
Setting the name to the empty string prevents the anchor from being created.
|
|\ \
| | |
| | | |
Remove some build warnings
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Removing some build warnings like:
```
D:\a\doxygen\doxygen\src\groupdef.cpp(628): warning C4267: 'return': conversion from 'size_t' to 'int', possible loss of data
D:\a\doxygen\doxygen\src\index.cpp(3950): warning C4267: '+=': conversion from 'size_t' to 'int', possible loss of data
```
|
| | | |
|
| | | |
|
|/ /
| |
| |
| | |
When building without libclang support
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Currently typedef'd function pointers, typically used as callbacks,
don't have their `@param` documentation properly validated. This commit
adds a proper check by initializing their memberdef with the parsed
args. To avoid duplicating the params in the output, since typedef's
already have the params in their definition, an extra check was added.
Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no>
|
| | |
|
|\ \ |
|
| | | |
|
| |\ \
| | | |
| | | |
| | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_utf_8_latex_href
|
| | |/
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In case in there is a literal utf-8 character like the the Unicode En Dash (U+2013) a pages is accessed with `\T1\endash` like:
```
https://en.wikipedia.org/wiki/Damerau\T1\textendash_Levenshtein_distance
```
and this page cannot be found, so the UTF-8 character has to be handled properly here.
This is found when solving issue #8241
|
|\ \ \
| |/ /
|/| | |
issue #8142 UTF-8 in URL in source generates truncated URL in HTML
|
| |/
| |
| |
| | |
Specifying the URL in a similar way as other IDs
|
| | |
|
| | |
|
|\ \
| | |
| | |
| | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_url_irc
|
| |/
| |
| |
| |
| | |
- missing colon (`:`) at irc
- adding irc, sftp and ftps
|
| |
| |
| |
| |
| | |
- introduced by commit fce7c2f8af2ccd04137c7db163333d0110241835
- found when processing pytorch code
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
file names.
Each index generator should handle its Left-To-Right / Right-To-Left handling on its own as otherwise we get for e.g.
treeview in the js file:
```
[ "\u202A‪afx3.h", "a00002_source.html", null ]
```
instead of:
```
[ "\u202A;afx3.h", "a00002_source.html", null ]
```
resulting in the problems from this issue.
in the htmlhelp (index.hhc):
```
... value="‪‪afx3.h" ...
```
i.e. a double `‪` which is not nice.
In "XML" type formats (not the doxygen xml output!), here qhp index.qhp:
```
... title="&#x202A;afx3.h" ...
```
where the LTR sequence is escaped.
|
| |
| |
| |
| | |
Using lambdas as a default argument is not supported by older versions of MSVC
|
|\ \
| |/
|/| |
|
| | |
|
| | |
|
| | |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In the doxygen group example there is for group 5 a "More" link but this points to nowhere as there is no detailed section. Using a link checker this gives:
```
Processing file:///.../html/group__group5.html
List of broken links and other issues:
file:///.../html/group__group5.html
Line: 47
Code: 200 (no message)
To do: Some of the links to this resource point to broken URI fragments
(such as index.html#fragment).
The following fragments need to be fixed:
details Line: 47
```
By applying the same logic for creating the "More" link as for for the real writing and using the appropriate function (with correction) for it
|
|\ \
| |/
|/| |
Incorrect link in doxygen documentation
|
| |
| |
| |
| |
| | |
The link to mathjax is not correct anymore (config.xml), the latest version points to version 3.0 and here there is no output.html either. Setting it fixed to the 2.7 version.
The other corrected links are just about redirections that are otherwise done.
|
| | |
|
|/ |
|
|\ |
|
| |\
| | |
| | | |
issue #8023 Add option to exit with non-zero exit code on warnings even if WARN_AS_ERROR is OFF
|
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
WARN_AS_ERROR is OFF
In case we want for a Continuous integration system a non-zero exit status at the end of a doxygen we can now set `WARN_AS_ERRORS=FAIL_ON_WARNINGS`.
The behavior for `NO` and `YES` remains as it was.
|
| |\ \
| | | |
| | | | |
Enable UML diagrams without member fields
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Change of DOT_UML_DETAIL from bool to enum in order to avoid the
creation of another, new configuration setting.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
The compartment for class attributes and the compartment for the
operations are optional.
By providing a new option "DOT_UML_SHOW_MEMBER" an user can
configure to use the UML_LOOK but without the additional
information regarding the content of the class.
|
| | | | |
|
|\ \ \ \
| |/ / /
|/| | |
| | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_789318
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Create possibility to see the CS construct `=>` not as an initializer (based on just the `=`) but as getter.
This problem solves besides this issue:
- #6278 c# expression-bodied property is not rendered correctly (Origin: bugzilla #789318)
also the issues:
- #6064 Lambda for read-only property in C# 6 (Origin: bugzilla #771283)
- #7550 C# Expression-Bodied Properties reveals underline implementation
- #7914 Doxygen Treats C# Inline-Bodied Properties as Member Variables
|
| | | |
| | | |
| | | |
| | | | |
(restores 1.8.16 behavior)
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Convert http to https for main doxygen website. Closes #8212
|
| | | | |
| | | | |
| | | | |
| | | | | |
was also removed (hope this is ok, was a default setting). Closes #8212
|
| | | | | |
|
| | | | | |
|
| | | | | |
|