| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|/ / |
|
| | |
|
| | |
|
|\ \
| |/
|/| |
|
| | |
|
|/ |
|
|\
| |
| | |
Fix #7490 and #7494
|
| |
| |
| |
| |
| | |
Fix following issues:
#7490 multiple grouped functions (member groups)
#7494 grouped members from files ("user-defined")
|
|\ \ |
|
| | | |
|
| |\ \
|/ / /
| | |
| | | |
https://github.com/albert-github/doxygen into albert-github-feature/bug_tables_docbook
|
| | |
| | |
| | |
| | |
| | | |
In case of docbook output and having nesting tables (e.g. in the tables chapter of the doxygen documentation), we get invalid xml for docbook as the `<tbody>` is not closed.
Each table level should have an own flag to signal whether or not the `<tbiody>` tag is set or not, otherwise the inner table resets the outer tables its "flag".
|
| | | |
|
|\ \ \ |
|
| |\ \ \
| | | | |
| | | | | |
issue #7583 External Links in Inheritance Diagrams open in the Image Frame.
|
| | | | |
| | | | |
| | | | |
| | | | | |
When having a function it opens in the current frame and uses the complete frame. Images (e.g. inherited diagrams) are displayed in a small "sub frame" and when displaying the link here it is not readable and furthermore the user doesn't know anything about the "sub frame". In case of an image the link should be displayed in the parent frame of the image.
|
| |\ \ \ \
| | | | | |
| | | | | | |
Problem with temporary / intermediate directory in doxyparse
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
When we want to use doxyparse under Windows we get the message like:
```
error: tag OUTPUT_DIRECTORY: Output directory '/tmp/doxyparse-9848' does not exist and cannot be created
```
as this is a *nix type path and the '/tmp', normally doesn't exists on Windows, better to see what is the real temporary directory (on all systems) and make everything system independent.
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
Problem in case using PREDEFINED with comma and using +=
|
| | |/ / / /
| | | | | |
| | | | | |
| | | | | | |
In pull request #7603 the problem regarding `PREDEFINED = A(x,y)`, but the same patch must be applied to the construct `PREDEFINED += A(x,y)`
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
output on doxyparse if a function is a prototype
|
| | |/ / /
| |/| | |
| | | | |
| | | | | |
issue #5618
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Removing warnings from doxygen internal documentation
|
| |/ / / /
| | | | |
| | | | |
| | | | | |
Although there is not a lot of doxygen internal documentation, it still should not produce warnings.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Incorrect handling of typedef in combination with const
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
I issue #7060 and example was given with
```
typedef const char m_msgEvtName;
```
we see that
- 1.8.15, listed under Typedefs:
` typedef const char m_msgEvtName`
- 1.8.16 and up, listed under Variables:
`const typedef char m_msgEvtName`
so mentioned:
- wrong "header"
- const at the wrong place
This is a regression on:
C# consts incorrectly placed under instance variables (Origin: bugzilla #535853) (issue #2976)
and the pull request #7048
The fix should only be used for C#
|
|\ \ \ \
| |/ / /
|/| | | |
Disappearing words in RTF output after a list
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
When having the simple example:
```
First list
- Item 1 1
Second list
- Item 2 1
```
in the RTF output the word `Second` disappears due to the fact that the is no space between a `\par` command and the word `Second`
|
|\ \ \ \
| | | | |
| | | | | |
Compilation warnings
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Due to
```
Commit: 1a56a39b4a97452a5c7c2d8e9d39ab28ca33dff0 [1a56a39]
Commit Date: Friday, February 21, 2020 9:07:13 PM
Restructure section handling
```
a number of compilation warnings (Windows) appeared:
```
c:\projects\doxygen\src\section.h(51): warning C4099: 'SectionInfo': type name first seen using 'struct' now seen using 'class' [C:\projects\doxygen\build\src\_doxygen.vcxproj]
c:\projects\doxygen\src\section.h(50): note: see declaration of 'SectionInfo'
```
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Specifying filename in preprocessor debug output
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
Especially when running with `QUIET=YES` it is no clear which file is preprocessed, so the filename is added to the preprocessor debug output
|
| | | | |
| | | | |
| | | | |
| | | | | |
documented const functions
|
| | | | | |
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
issue #7606 Unable to build "master" branch
|
|/ / / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
regression on:
```
Commit: 1a56a39b4a97452a5c7c2d8e9d39ab28ca33dff0 [1a56a39]
Commit Date: Friday, February 21, 2020 9:07:13 PM
Restructure section handling
```
when sqlite3 has been enabled for the build.
|
| | | | |
|
|\ \ \ \ |
|
| |\ \ \ \
| | |/ / /
| |/| | | |
Problem in case using PREDEFINED with comma
|
| |/ / /
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
In the pull request "Enable comma as separator in configuration lists enhancement " (#6563) it was made possible to have commas as separators for lists.
In case we have:
```
PREDEFINED = A(x,y)=sin(x),cos(y)
```
and use `doxygen -x` (or usethe define): this results in:
```
PREDEFINED = A(x \
y)=sin(x) \
cos(y)
```
this can be overcome by means of:
```
PREDEFINED = "A(x,y)=sin(x),cos(y)"
```
But for a lot of existing packages this poses a problem.
(Found by looking at the doxygen configuration files as used by Fossies).
|
|\ \ \ \
| |/ / /
|/| | | |
|
| | | | |
|
|\ \ \ \ |
|
| |\ \ \ \
| | | | | |
| | | | | | |
Creation of svg images for formulas with inkscape
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Based on the implementation as mentioned in #7578 to add the possibilities to generated svg images for formulas
- When running with inkscape 92.3 / 92.4 on Cygwin /Windows there were no images generated as the `-o` flag didn't exist, the output file had to be specified as part of the `-l` (or `--export-plain-svg`) option
- For more flexibility the system is checked on existence of the `pdf2svg` and `inkscape` executables, so no compilations flags are necessary
|
|/ / / / /
| | | | |
| | | | |
| | | | | |
not recognized as a function (Origin: bugzilla #792830)
|
| |/ / /
|/| | | |
|