| Commit message (Collapse) | Author | Age | Files | Lines |
|\
| |
| | |
Extending tests with extra possibilities
|
| |\ |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
- docbook for docbook output including small test on validity (i.e. basic xml test)
- rtf for rtf output
- start_id and end_id creating the possibility to run one range of tests
-- subdirs us CREATE_SUBDIRS=YES
|
|\ \ \
| | | |
| | | | |
Bug 677092 - single quote in HTML section of PHP breaks doxygen
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Close string also when entering a new php (`<?php`) block
Also solves:
Bug 695337 - Inline HTML containing a single apostrophe (') appears to interfere with Doxygen parsing.
Bug 156160 - Doesn't support quotes in HTML code embedded into a PHP script
|
|\ \ \ \
| | | | |
| | | | | |
Issue 6469: Java method calls are ignored in generating call/caller graph with Graphviz
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
with Graphviz
Added possibility for `List<String> list = new ArrayList<>();` and `List<String> list = new ArrayList<String>();` i.e. the `<...>` in the `new` part
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Heading in rtf. #6522
|
|/ / / / / |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
update to the experimental sqlite3 generator
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The generated schema is malformed in versions below 3.9.0.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Generated sqlite3 databases are roughly ready to support tools and projects that
require a significant fraction of what Doxygen collects.
output quality:
- collect primary info for most major entities and relationships
- fix causes of junk data in some columns (i.e. const * / QCString /
string / memory issues)
- convert decription field markup (mix of markdown, HTML, and Doxygen commands)
into XML
- eliminate duplicate/overlapping data (both rows and columns)
usability:
- abort if database already exists; prompt user to archive/delete it
- record Doxygen and sql schema versions so tools/clients can target/message
appropriately
- refine schema to support and simplify common queries
addon/doxypysql:
- adopt schema changes
- py3 compat
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
In order for sqlite3gen to re-use parts of the XML generator, XMLCodeGenerator
needs to be declared in a header file. I parroted how other generators handle
this and have it working in both the XML and sqlite3 outputs, but I don't have
any sense of whether this is otherwise "right".
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Typos found by running "codespell"
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Handling Fortran functions in call graphs
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
When functions are used they have to be declared and were seen as local variables even when the 'external' keyword had been applied.
Functions are now not seen anymore as local variables as soon as the 'external' keyword has been applied.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Enable comma as separator in configuration lists
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Loosely based on problems when users use a comma as separator in a list (as this is slightly suggested in the documentation).
(https://stackoverflow.com/questions/43093051/doxygen-is-generating-empty-documentation)
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Wrong separator in index for a.o. Python, C#
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
In e.g. the LaTeX output the separator for Pyton, C# is given as '::', this should be '.' .
With this fix the problems in the index are gone.
|
|\ \ \ \ \ \ \ \
| |/ / / / / / /
|/| | | | | | | |
issue_6566: INHERIT_DOCS not working for python
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
methods in Python are always "virtual" (but there is no way to signal it).
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Bug 749049 - Doxygen not creating call graphs for C# methods if namespace contains the classname
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
contains the classname
Problem is the '.' in the namespace name.
For Csharp:
namespace N1.n2
{
is equivalent to
namespace N1
{
namespace N2
{
This splitting has to be considered in the scanner so the different namespaces are mentioned. In the code.l the '.' was not handled.
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Remove obsolete line from README.md
|
| |/ / / / / /
| | | | | | |
| | | | | | |
| | | | | | | |
The README.md contained a reference to the file INSTALL but this file only contains a reference to the manual plus address.
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Add python function annotations support
|
| | | | | | | |
|
| | | | | | | |
|
| | | | | | | |
|
|\ \ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Bug 719541 - Error with inserting images to PDF with Markdown
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Create possibility to use images in other output formats conform the `\image` command.
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Bug 710654 - <img> on a \page does not copy the image to the html output folder
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Create possibility to copy the image automatically to the HTML directory, in case file cannot be found no warning is given (consistency).
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
issue_6524: Markdown formats missing in doxygen outputs.
|
| | |_|_|_|/ / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Support for strikethrough by means of `~~<text>~~`
See also https://help.github.com/articles/basic-writing-and-formatting-syntax/ paragraph about "styling" text".
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
Bold text terminated by plus sign
|
| | |_|/ / / / /
| |/| | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
No reason to have '+,'-' or '=' with ignore characters.
See also: https://stackoverflow.com/questions/52696929/markdown-bold-text
|
|\ \ \ \ \ \ \ \
| | | | | | | | |
| | | | | | | | | |
issue_6547 Call graph missing due to ALIASES
|
| |/ / / / / / /
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Replace the `^^` in an alias not with an physical newline but with a doxygen synthetic newline.
Shown problem is due to the fact that line matching didn't work anymore due to the fact that a physical newline was inserted (ever better seen when enabling `INLINE_SOURCES`)
|
|\ \ \ \ \ \ \ \
| |_|_|/ / / / /
|/| | | | | | | |
Fix travis mac build
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Suggestion fro @crodon implemented
This is an error in one of the dependencies of Conan, which should be fixed upstream soon. Then we can remove this error again. See conan-io/conan#3728 for more information
|
| | | | | | | |
| | | | | | | |
| | | | | | | |
| | | | | | | | |
Need `;` in `if` statement
|
|/ / / / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Attempt to fix mac build of travis in respect to:
- Could not install packages due to an EnvironmentError: [Errno 13] Permission denied: '/usr/local/man'
|
|\ \ \ \ \ \ \
| |/ / / / / /
|/| | | | | | |
Numbers in comment disappear
|