| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
issue #7477 Broken urls in the xml output
|
|/
|
|
|
| |
Made code analogous to HTML code.
Also the doxygen internal tests suffered from this problem.
|
|\
| |
| | |
Small spelling correction in portable.cpp
|
| |
| |
| |
| | |
Small spelling correction in portable.cpp
|
|\ \
| |/
|/| |
Small spelling correction in change log
|
|/
|
|
| |
Small spelling correction in change log
|
| |
|
|\ |
|
| |\
| | |
| | | |
issue #7464 1.8.17: test suite is failing
|
| |/
| |
| |
| |
| |
| |
| |
| | |
On Windows the syntax with the command and arguments in one string worked but on *nix (and Cygwin) it didn't.
- changed calls to Popen to split command (see also: https://docs.python.org/3/library/subprocess.html).
- explicitly specify files to check for xhtml
- changed call to xmllint for xhtml and docbook (due to stdout overflow in some cases, we are not really interested in the, formatted, output of xmllint).
- in the update part a `read` was left, should have been removed.
|
|/ |
|
| |
|
| |
|
|\ |
|
| |\
| | |
| | | |
Adding check on configuration setting EXTENSION_MAPPING
|
| |/
| |
| |
| | |
In #7419 the EXTENSION_MAPPING test was omitted
|
|/ |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|\ |
|
| | |
|
| |\
|/ /
| |
| | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_formula
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
When having a problem like:
```
/** \file */
/**
* The fie
*
* @form: the new format
* @content: the content of the form
*
* Sets @form content to be @content.
*
* \f$ \alpha \f$ \f[ \beta \f]
*/
void fie(char *form, char *content);
```
we get warnings like:
```
.../aa.h:5: warning: Wrong formula id -1
.../aa.h:6: warning: Found unknown command '\content'
.../aa.h:8: warning: Wrong formula id -1
.../aa.h:8: warning: Found unknown command '\content'
```
The `@form:` is in RST analogue to the doxygen `@param form` but not understood by doxygen.
The result is that it is seen as an formula as doxygen translates the formula commands to `\form`.
For `@content` is handled properly as this is not a doxygen command.
In this patch a more unique name is chosen so these type of conflicts don't appear (that easy). The resulting, better, warnings are now:
```
.../aa.h:5: warning: Found unknown command '\form'
.../aa.h:6: warning: Found unknown command '\content'
.../aa.h:8: warning: Found unknown command '\form'
.../aa.h:8: warning: Found unknown command '\content'
```
|
|\ \ |
|
| |\ \
| |/ /
|/| | |
|
|\ \ \
| | | |
| | | | |
Error in LaTeX with single quote in formula / math mode.
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
When having a text like:
```
\f$ text t' text \f$
```
and conversion this to a pdf (latex directory) we get the error:
```
! Undefined control sequence.
l.3 $ text t\text
{'} text $
?
```
|
|\ \ \ \
| | | | |
| | | | | |
Double entry for ins in compound.xsd
|
| | | | |
| | | | |
| | | | |
| | | | | |
Pull request #7458 added `ins` and pull request #7203 corrected `inc` to `ins` resulting in double `ins`, corrected.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Table caption flows in first table field for RTF output
|
| | | | |
| | | | |
| | | | |
| | | | | |
Tables should be numbered independent of images.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
See to it that the table caption is placed on top of the table and not in the first field.
(See the doxygen documentation in respect to the tables; problem with tables in tables is a a different problem.)
|
|\ \ \ \ \ |
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
Wrong reference to code line
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
The newline was handled twice and thus the prprocessor giving out too many lines, resulting in a shift in line numbers
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
|
| |\ \ \ \ \ \
|/ / / / / / /
| | | | | | |
| | | | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_html_s
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Added documentation.
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Adding the HTML `<s>` tag (https://www.w3schools.com/tags/tag_s.asp).
Adding 's' and correcting 'inc' to 'ins' in compound.xsd
|
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Avoid code duplication by adding function addHtmlExtensionIfMissing() and
avoid member shadowing by using 'm_' prefix for member variables
|
| |\ \ \ \ \ \
|/ / / / / / /
| | | | | | |
| | | | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_335614
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
- See to it that when an extension is already present this extension is used and not a second extension is added
- let the tag file know what the original extension was.
|
|\ \ \ \ \ \ \ |
|
| | | | | | | | |
|
| |\ \ \ \ \ \ \
|/ / / / / / / /
| | | | | | | |
| | | | | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_style_change
|