| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
| |
See doxygen/doxygen#7860
|
| |
|
|\
| |
| | |
Spelling correction in cite code
|
| |
| |
| |
| |
| | |
Correction of 2 spelling errors
(thanks to Fossies).
|
| | |
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
* issue #7796 Backticks (`) in Doxygen-markup-in-C in Markdown collapses
The problem occurs when the backtick is just before the end of line.
The fenced block will only terminate when the same number of fence characters are present, otherwise the search will continue.
* issue #7796 Backticks (`) in Doxygen-markup-in-C in Markdown collapses
Removed unintentional tab.
|
| |
| |
| |
| |
| | |
(#7792)
It is made clear that where the variable is declared "extern" that it is also shown at that place in the documentation
|
| | |
|
| |
| |
| |
| |
| |
| |
| | |
* Flag namespace as inline in xml output
* Add inline namespace flag to innernamespace tag as well
suggested by @mosra
|
| |
| |
| |
| |
| |
| |
| | |
When a filename of a file starts with a digit the mapping of the resulting dot files results in message like:
```
Syntax of value for attribute id of map is not valid
```
an id cannot start with a digit, so an "a" is placed in front of it (unconditionally to overcome problems with a double label id i.e filename 087.cpp and a087.cpp).
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
(#7841)
* Number of translatable terms (like Chapter) are in English instead of Greek
When running tests in Greek OUTPUT_LANGUAGE mode for LaTeX a number of terms like Chapter were still in English instead of Greek.
Some used references:
https://tex.stackexchange.com/questions/548584/ascii-text-set-in-greek-script-when-using-usepackagegreekbabel
https://tex.stackexchange.com/questions/548761/missing-characters-in-output-due-to-renewcommand-familydefault-sfdefault
https://tex.stackexchange.com/questions/58624/variables-for-hiding-or-showing-text-in-latex
* Number of translatable terms (like Chapter) are in English instead of Greek
- adding the possibilities for mono spaced font (for code parts)
- creating a more flexible way to change fonts for different languages
See also discussion at https://tex.stackexchange.com/questions/548901/missing-characters-in-greek-output-due-to-ttfamily
|
| |
| |
| |
| |
| | |
- Always catch the output of `mkdir`
- corrected an incorrect message (context.cpp)
|
|/
|
|
|
|
|
|
|
| |
New CMAKE options (default OFF):
- SANITIZE_ADDRESS:BOOL=OFF
- SANITIZE_LINK_STATIC:BOOL=OFF
- SANITIZE_MEMORY:BOOL=OFF
- SANITIZE_THREAD:BOOL=OFF
- SANITIZE_UNDEFINED:BOOL=OFF
|
| |
|
|\
| |
| | |
missing instance-rework
|
| | |
|
| | |
|
| |
| |
| |
| | |
argumentList from definition
|
|\ \
| | |
| | | |
Incorrect htmlhelp language code for Indonesian
|
| |/
| |
| |
| | |
The language code for Indonesian is `0x421` and not `0x412`, the later is for Korean.
|
| | |
|
|\ \ |
|
| | |
| | |
| | |
| | | |
Ignore empty strings
|
|/ / |
|
| | |
|
|/ |
|
| |
|
|\ |
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
In case we have an empty setting in the doxygen configuration file, where an enum value is expected like:
```
OUTPUT_LANGUAGE =
```
we get the warning:
```
warning: argument '(null)' for option OUTPUT_LANGUAGE is not a valid enum value
Using the default: English!
```
The default value should immediately have been used.
|
|/
|
|
|
| |
This is disabled by default. It can be enabled by setting MULTITHREADED_INPUT to 1
in doxygen.h. Still has many data races, so don't use for anything other than development!
|
|\
| |
| | |
Replace ${CMAKE_SOURCE_DIR}/path/to/current/cmake-lists-txt/dir with ${CMAKE_CURRENT_LIST_DIR}
|
| |
| |
| |
| | |
${CMAKE_CURRENT_LIST_DIR}
|
| | |
|
|\ \
| | |
| | | |
Warning in case of multiple python documentation sections.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
In special cases when having multiple documentation section for 1 item in python it is possible that they are concatenated in a wrong way and result in a warning.
Each documentation section should be seen as a separate section and be separated from other sections.
the example:
```
#####################################################################
# # Modify Install Stage ############################################
#####################################################################
class install(_install):
"""Specialised python package installer.
It does some required chown calls in addition to the usual stuff.
"""
```
gives a warning like:
```
warning: unexpected command endverbatim
```
|
|\ \ \
| | | |
| | | | |
Better warning for non documented struct
|
| |/ /
| | |
| | |
| | |
| | | |
In case if a 'struct' we get the message about a 'class', by using the 'compoundTypeString' this can be corrected.
(message was originally found in #7304)
|
|\ \ \
| | | |
| | | | |
Issue #7804 String double quotes in C get misinterpreted by pdflatex
|
| |/ /
| | |
| | |
| | | |
The `"` quote is in some LaTeX language packages redefined to be used to create a umlaut / umlaut / tréma and in normal running text they have to replaced / escaped,
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
I case we use `LEX_FLAGS=-d` to compile `constexp.l` we get the error:
```
constexp.l: In member function ‘bool ConstExpressionParser::parse(const char*, int, const QCString&)’:
constexp.l:140:17: error: ‘yyscanner’ was not declared in this scope; did you mean ‘yyscan_t’?
140 | yyset_debug(1,yyscanner);
| ^~~~~~~~~
| yyscan_t
make[2]: *** [src/CMakeFiles/doxymain.dir/build.make:455: src/CMakeFiles/doxymain.dir/__/generated_src/constexp.cpp.o] Error 1
```
|
|/ |
|
|
|
|
|
| |
- the not linking in case of a the relative path (as there was no anchor for it)
- (on windows) the created, internal, anchor for a file can contain a `:` but this is not possible in an anchor and has to be escaped.
|
| |
|
| |
|
|\ |
|
| |\
| | |
| | | |
Fix #7495 generate "bitfield"
|
| | |
| | |
| | | |
Fix missing "bitfield" property generation in Perlmod
|
|/ /
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- Makes doxycfg library more self contained
- renames _doxygen library to doxymain
- Modernizes Debug implementation
- Moves Doxygen::runningTime into Debug
- Moves full version string to libversion
- Removed mentioning of file version in messages (when
FILE_VERSION_FILTER is used)
- Move substitute functions into QCString
|
| | |
|