| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|\ \ \ \ \ \ \
| |_|/ / / / /
|/| | | | | | |
|
| | | | | | | |
|
| |\ \ \ \ \ \
|/ / / / / / /
| | | | | | |
| | | | | | | |
https://github.com/albert-github/doxygen into albert-github-feature/svg_image_determnation
|
| | |_|_|_|/
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
In case a svg image url has some decoration behind it, the image is not seen as a svg image. The decoration is taken away from the determination.
Found by means of:
```
[![Build Status](https://api.travis-ci.com/ILIAS-eLearning/ILIAS.svg?branch=release_5-3)](https://travis-ci.com/ILIAS-eLearning/ILIAS)
[![Minimum PHP Version](https://img.shields.io/badge/php-%3E%3D%205.6-8892BF.svg)](https://php.net/)
```
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
issue #6869 SVG image generated by \dot or \dotfile does not render properly in HTML
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
in HTML
The path to the svgpan.js should be relative to the svg file. For files generated with `dot` or `\dotfile` this is the root of the HTML tree, so relpath is here an empty reference (the svg file still needs the relpath as this file is referenced from a html file that is possibly in a sub directory).
|
|\ \ \ \ \ \ \
| |_|_|/ / / /
|/| | | | | | |
Markdown file as internet link
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Removed debug statements.
|
| | |/ / / /
| |/| | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
See a link in case of a md file only as local link if it doesn't start with a supported protocol.
Example found was:
```
[Ansibullbot](https://github.com/ansible/ansibullbot/blob/master/ISSUE_HELP.md)
```
|
|\ \ \ \ \ \ |
|
| |\ \ \ \ \ \
| | |_|_|/ / /
| |/| | | | | |
Bug 781306 - *** Error in `doxygen': realloc(): invalid pointer: 0x0000000001d45ba0 @ exit
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
0x0000000001d45ba0 @ exit
Crash occurs, as indicated in error report, on line 131 of htags.cpp (line.resize(len+1);)
Looks like there is a buffer problem (enlarge after making the buffer smaller beforehand).
The readLine should place a `\0` at the end but to be on the save side.
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
issue #6979 Method parameters documented inline are not present in documentation of overriding/implementing methods
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
documentation of overriding/implementing methods
Not only the name of the argument should be copied but also the documentation (this routine is only used for reimplemented members).
|
|/ / / / / |
|
|\ \ \ \ \
| |_|_|/ /
|/| | | | |
Fixes #6973 - Fixed segmentation fault in do_warn
|
|/ / / /
| | | |
| | | |
| | | | |
Copied va_list to avoid reuse causing crash
|
|\ \ \ \
| | | | |
| | | | | |
Windows crash in case of incorrect end statement
|
| | | | |
| | | | |
| | | | |
| | | | | |
Some Fortran compilers accept the END statement instead of the mandatory END TYPE. The code crashes on Windows as no correct END statement is found.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
issue #6968 INLINE_INHERITED_MEMB doesn't respect EXTRACT_PRIVATE=NO
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Check besides the protection of the method also the protection of the class (but don't forget to ignore it when EXTRACT_PRIVATE is set).
|
|\ \ \ \ \ \ |
|
| |\ \ \ \ \ \
| | |/ / / / /
| |/| | | | | |
Bug 783759 - PERL_PATH config option: when is this needed? Still used?
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
As, more or less, mentioned in the bug report: in version 1.7.6.1 the PERL_PATH is still in use (instdox.cpp) but in version 1.8.0 it is not used anymore, so the parameter has been set to obsolete now.
|
| |\ \ \ \ \
| | | | | | |
| | | | | | | |
Truncated warning message
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
In case of extremely long warning messages (e.g. in case of overloaded methods with a lot of alternatives) the warning message is truncated due to the "limited" buffer size.
By using `vsnprintf(NULL, 0, fmt, args)` it is possible to determine the length of the message based on format and actual arguments.
`char text[bufSize]` cannot be used as some older compilers don't accept it.
(reference: https://stackoverflow.com/questions/3919995/determining-sprintf-buffer-size-whats-the-standard/30909417#30909417)
|
| |\ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Missing white space in warning
|
| | |/ / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Some messages give a result in the form of:
`'static ostream & operator<<(ostream &out, const EntityAuth &a)' at line 61 of fileD:/Fossies/ceph-14.2.1/src/auth/Auth.h`
i.e. space was missing `file` and `D:`
|
| |\ \ \ \ \ \
| | | | | | | |
| | | | | | | | |
Fix #6906
|
| | |/ / / / /
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Generate configvalues.h only as a dependency for the VHDL parser. Fixes
a problem in combination with Ninja v1.9.0 because of duplicate rules
for generating configvalues.h.
|
| |\ \ \ \ \ \
| | |/ / / / /
| |/| | | | | |
Travis build fails due to problem with cmake
|
| | | | | | |
| | | | | | |
| | | | | | |
| | | | | | | |
Typo
|
| |/ / / / /
| | | | | |
| | | | | |
| | | | | | |
removed explicit loading of cmake
|
|/ / / / / |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* put the global variables in struct sqlcodeYY_state.
* globally define yyscanner and sqlcode_extra. these two should be per-thread.
* add a new yyscan_t function parameter when these functions are referenced:
- yyin, yyout, yyextra, yyleng, yytext, yylineno, yycolumn, and yy_flex_debug.
- the macros BEGIN, YY_START, YYSTATE, yymore, unput, and yyless
- the functions that deal with input buffers: yyrestart
- others: yy_switch_to_buffer, yy_create_buffer, yy_delete_buffer,
yy_flush_buffer, yypush_buffer_state, yypop_buffer_state,
yy_scan_buffer, yy_scan_string, and yy_scan_bytes
* add a new yyscan_t function parameter when globals are referenced,
to get the yyextra out of the yyscanner.
|
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
* put the global variables in struct declinfoYY_state.
* globally define yyscanner and declinfo_extra. these two should be per-thread.
* add a new yyscan_t function parameter when these functions are referenced:
- yyin, yyout, yyextra, yyleng, yytext, yylineno, yycolumn, and yy_flex_debug.
- the macros BEGIN, YY_START, YYSTATE, yymore, unput, and yyless
- the functions that deal with input buffers: yyrestart
- others: yy_switch_to_buffer, yy_create_buffer, yy_delete_buffer,
yy_flush_buffer, yypush_buffer_state, yypop_buffer_state,
yy_scan_buffer, yy_scan_string, and yy_scan_bytes
* add a new yyscan_t function parameter when globals are referenced,
to get the yyextra out of the yyscanner.
|
| | | | | |
|
| | | | | |
|
| | | | | |
|
| | | | |
| | | | |
| | | | |
| | | | | |
deprecated since Bison 2.3b
|
| | | | | |
|
| | | | |
| | | | |
| | | | | |
Also exclude tests on osx as (some) require latex as well
|
| |_|_|/
|/| | |
| | | | |
Skip building docs on osx until a solution for the missing mactek package is found
|
| | | |
| | | |
| | | | |
update flex and bison for the OSX build
|
|\ \ \ \
| | | | |
| | | | | |
issue #6920 Option syntax for commands is unclear
|
| | | | |
| | | | |
| | | | |
| | | | | |
Corrected typo
|
| |/ / /
| | | |
| | | |
| | | | |
Making documentation regarding option clearer and more consistent.
|
|\ \ \ \ |
|