| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \
| |/ |
|
| |\
| | |
| | | |
Spelling correction
|
| |/
| |
| |
| | |
Spelling correction
|
|/ |
|
| |
|
|\ |
|
| |\
| | |
| | | |
Backslash in href.
|
| |/
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When having a backslash in a href like:
```
<a href="C:\boost">`C:\boost`</a>
```
we get in LaTeX the error:
```
(aa_8h.tex
! Undefined control sequence.
<argument> C:\boost
l.6 \href{C:\boost}
{\texttt{ {\ttfamily C\+:\textbackslash{}boost}}}
```
this can be overcome by escaping the backslash.
Note this is just an example, for an URI actually forward slashes should be used. It is just about the backslash not generating an error.
|
|/ |
|
|\
| |
| | |
Generating doxygen's documentation in CHM format
|
| |
| |
| |
| | |
Renaming index.chm to doxygen_manual.chm
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Until now the chm format of the doxygen documentation was generated by a separate script, this is now integrated in the CMake procedure.
- option -Dbuild_doc_chm to enable the possibility to generate the CHM documentation (only works for windows)
- procedure is as follows
- generate the base documentation for the CHM output
- copy the documentation of the examples to the tree with the base CHM output (cannot use it from its default place due to the fact that in the next face the first page of the CHM file will be wrong
- add the html, png, css and gif files of the examples to the so called hhp file (has to happen during runtime, hence a small python script, created inline so there is no extra file in the source tree)
- create the resulting doxygen_manual.chm
Some improvements during the process
- the html files of the examples are added so that the full documentation of the examples is accessible and not just the top pages of the examples
- keep the index terms of base chm file (mostly the commands and configuration parameters)
- see to it that the doxygen logo is copied by doxygen and not by means of cmake
|
|\ \
| | |
| | | |
issue #7200 Fortran warning: type not declared or defined
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
problem in the statement:
```
type(log_handle_type), protected, save, &
bind(c, name="LOG_HANDLE_one") &
:: log_handle_one
```
is the fact that the "bind" attribute is not handled.
- added handling of the bind attribute
- extending the bind definition also with the single quote version.
|
|\ \ \
| | | |
| | | | |
Correction documentation `\image` command
|
| | | |
| | | |
| | | |
| | | |
| | | | |
- Correction supported formats for LaTeX
- correction typo
|
|\ \ \ \
| | | | |
| | | | | |
Correcting visible year in copyright
|
| | | | |
| | | | |
| | | | |
| | | | | |
Correcting another visible year in copyright (see also #7182)
|
|\ \ \ \ \ |
|
| |\ \ \ \ \
| | |_|/ / /
| |/| | | | |
Parsing `#` sign inserted by preprocessor in fixed Form Fortran
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
In Fortran a file that is included is replaced by the doxygen preprocessor by something like:
`# 11 "<path>/<filename>" 2`
when this is in fixed form Fortran and the `<path>/<filename>` is long it is possible that the closing double quote is beyond position 72 and thus not seen resulting in:
```
Error in file <path>/<filename> line: 73, state: 22(String)
```
this is caused as the `#` is not handled properly in prepassFixedForm. The `#` should be handled analogous to e.g. `C`.
|
| |\ \ \ \
| | | | | |
| | | | | | |
issue #7218 Doxygen parsing word documents
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
making list consistent again.
See also table in chapter "Getting Started"
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
|
| | | | | | |
|
| |\ \ \ \ \
|/ / / / / /
| | | | | |
| | | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/issue_7212
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Have to see that the argument is not a void pointer but just a void
|
| |/ / /
|/| | | |
|
|\ \ \ \
| | | | |
| | | | | |
Doxygen comment fixes
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This was found while testing with Clang's -Wdocumentation
-Wdocumentation-pedantic options.
Note from the coding style used it would seem useDict would be the more
appropriate name, but usedict is used on multiple occasions in this file.
|
| |/ / /
| | | |
| | | |
| | | |
| | | | |
This was found while testing with Clang's -Wdocumentation
-Wdocumentation-pedantic options.
|
| | | |
| | | |
| | | | |
disabled macosx build as it keeps failing on inconsistent package versions.
|
| | | |
| | | |
| | | |
| | | | |
null pointer fix)
|
|\ \ \ \ |
|
| | | | |
| | | | |
| | | | | |
add explicit bzip2 verison requirement
|
|/ / / / |
|
| | | |
| | | |
| | | | |
switch back to version 5.12 of qt due to missing binary
|
|/ / /
| | |
| | | |
bump conan packages to the latest version
|
|\ \ \
| | | |
| | | | |
Order of commands in `<table>`
|
| | | |
| | | |
| | | |
| | | | |
Added note about the order of caption versus table rows and the number of table rows.
|
|\ \ \ \
| |_|/ /
|/| | | |
Strange '*/' in Fortran nad Markdown with conditional sections
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In case of a construct like (Markdown, analogous for Fortran):
```
test text
@cond: after cond
whatever
@endcond
some more text
```
we get a `*/` after `test text` that should not be present.
Other places exclude besides Pyton and VHDL also Fortran and Markdown and that should happen here as well.
|
|\ \ \
| | | |
| | | | |
issue #7190 1.8.16: Blank FILE_PATTERNS => no files processed
|
|/ / /
| | |
| | |
| | | |
This is actually a regression on #7195. Due to the fact that the init() routine has moved up, the settings for `FILE_PATTERNS` have already been done and a call to init does not operate on the `FILE_PATTERNS` variable but on the structure from which the `FILE_PATTERNS` was derived. We have should here operate on the `FILE_PATTERNS` directly as well., bu getting the default values out of the underlying structure.
|
|/ / |
|
|/ |
|
|\
| |
| | |
Problem with '<td nowrap>'
|
| |
| |
| |
| |
| |
| | |
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.
|
|\ \
| |/
|/| |
Missing tables item in overview
|
|/
|
|
| |
In the overview the paragraph about 'tables' is missing
|