summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | Merge branch 'albert-github-feature/svg_image_determnation'Dimitri van Heesch2019-05-131-1/+5
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | |
| * | | | | | Simplified code a bitDimitri van Heesch2019-05-131-15/+5
| | | | | | |
| * | | | | | Merge branch 'feature/svg_image_determnation' of ↵Dimitri van Heesch2019-05-131-1/+15
| |\ \ \ \ \ \ |/ / / / / / / | | | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/svg_image_determnation
| * | | | | | Image not seen as svg imagealbert-github2019-04-051-1/+15
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/) ```
* | | | | | Merge pull request #6870 from albert-github/feature/issue_6869Dimitri van Heesch2019-05-121-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | issue #6869 SVG image generated by \dot or \dotfile does not render properly in HTML
| * | | | | | issue #6869 SVG image generated by \dot or \dotfile does not render properly ↵albert-github2019-03-041-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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).
* | | | | | | Merge pull request #6913 from albert-github/feature/url_to_md_fileDimitri van Heesch2019-05-123-5/+11
|\ \ \ \ \ \ \ | |_|_|/ / / / |/| | | | | | Markdown file as internet link
| * | | | | | Markdown file as internet linkalbert-github2019-04-051-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed debug statements.
| * | | | | | Markdown file as internet linkalbert-github2019-04-053-5/+13
| | |/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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) ```
* | | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-05-122-1/+3
|\ \ \ \ \ \
| * \ \ \ \ \ Merge pull request #6984 from albert-github/feature/bug_781306Dimitri van Heesch2019-05-121-1/+1
| |\ \ \ \ \ \ | | |_|_|/ / / | |/| | | | | Bug 781306 - *** Error in `doxygen': realloc(): invalid pointer: 0x0000000001d45ba0 @ exit
| | * | | | | Bug 781306 - *** Error in `doxygen': realloc(): invalid pointer: ↵albert-github2019-05-121-1/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | | | Merge pull request #6981 from albert-github/feature/issue_6979Dimitri van Heesch2019-05-111-0/+2
| |\ \ \ \ \ | | | | | | | | | | | | | | issue #6979 Method parameters documented inline are not present in documentation of overriding/implementing methods
| | * | | | | issue #6979 Method parameters documented inline are not present in ↵albert-github2019-05-101-0/+2
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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).
* | | | | | Fixed memory leak in reentrant lexersDimitri van Heesch2019-05-123-5/+13
|/ / / / /
* | | | | Merge pull request #6974 from mrhatch97/fix-va_list-reuseDimitri van Heesch2019-05-091-1/+5
|\ \ \ \ \ | |_|_|/ / |/| | | | Fixes #6973 - Fixed segmentation fault in do_warn
| * | | | Fixed segmentation fault in do_warnMatthew Hatch2019-05-081-1/+5
|/ / / / | | | | | | | | | | | | Copied va_list to avoid reuse causing crash
* | | | Merge pull request #6931 from albert-github/feature/bug_ftn_typeDimitri van Heesch2019-05-071-1/+9
|\ \ \ \ | | | | | | | | | | Windows crash in case of incorrect end statement
| * | | | Windows crash in case of incorrect end statementalbert-github2019-04-151-1/+9
| | | | | | | | | | | | | | | | | | | | 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.
* | | | | Merge pull request #6970 from albert-github/feature/issue_6968Dimitri van Heesch2019-05-071-2/+3
|\ \ \ \ \ | | | | | | | | | | | | issue #6968 INLINE_INHERITED_MEMB doesn't respect EXTRACT_PRIVATE=NO
| * | | | | issue #6968 INLINE_INHERITED_MEMB doesn't respect EXTRACT_PRIVATE=NOalbert-github2019-05-071-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | 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).
* | | | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-05-0714-48/+21
|\ \ \ \ \ \
| * \ \ \ \ \ Merge pull request #6967 from albert-github/feature/bug_783759Dimitri van Heesch2019-05-077-16/+1
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Bug 783759 - PERL_PATH config option: when is this needed? Still used?
| | * | | | | Bug 783759 - PERL_PATH config option: when is this needed? Still used?albert-github2019-05-077-16/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | 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.
| * | | | | Merge pull request #6963 from albert-github/feature/bug_truncated_warningDimitri van Heesch2019-05-071-3/+11
| |\ \ \ \ \ | | | | | | | | | | | | | | Truncated warning message
| | * | | | | Truncated warning messagealbert-github2019-05-061-3/+11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
| * | | | | | Merge pull request #6964 from albert-github/feature/bug_warning_missing_spaceDimitri van Heesch2019-05-071-1/+1
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Missing white space in warning
| | * | | | | | Missing white space in warningalbert-github2019-05-061-1/+1
| | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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:`
| * | | | | | Merge pull request #6965 from ton/masterDimitri van Heesch2019-05-074-25/+7
| |\ \ \ \ \ \ | | | | | | | | | | | | | | | | Fix #6906
| | * | | | | | Fix #6906Ton van den Heuvel2019-05-064-25/+7
| | |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * | | | | | Merge pull request #6966 from albert-github/feature/bug_travis_linux_cmakeDimitri van Heesch2019-05-071-3/+1
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | | Travis build fails due to problem with cmake
| | * | | | | Travis build fails due to problem with cmakealbert-github2019-05-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Typo
| | * | | | | Travis build fails due to problem with cmakealbert-github2019-05-071-3/+1
| |/ / / / / | | | | | | | | | | | | | | | | | | removed explicit loading of cmake
* | | | | | Add const correctness for argument listsDimitri van Heesch2019-05-0516-110/+124
|/ / / / /
* | | | | Regression #6836 URL contains $ sign on second run in map of imagesDimitri van Heesch2019-05-051-1/+1
| | | | |
* | | | | Further const correctness changesDimitri van Heesch2019-05-057-143/+150
| | | | |
* | | | | sqlcode.l: generate a reentrant scannerAdrian Negreanu2019-05-041-225/+250
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* | | | | declinfo.l: enable reentrantAdrian Negreanu2019-05-041-124/+136
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 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.
* | | | | declinfo.l: move function declarations beforeAdrian Negreanu2019-05-041-38/+41
| | | | |
* | | | | declinfo.l: group flex options toghetherAdrian Negreanu2019-05-041-5/+3
| | | | |
* | | | | constexp.l,y: generate a reentrant scanner and parserAdrian Negreanu2019-05-045-74/+110
| | | | |
* | | | | constexp.y: drop the = from name-prefixAdrian Negreanu2019-05-041-1/+1
| | | | | | | | | | | | | | | | | | | | deprecated since Bison 2.3b
* | | | | constexp.l: group the flex optionsAdrian Negreanu2019-05-041-1/+1
| | | | |
* | | | | Update .travis.ymlDimitri van Heesch2019-05-041-1/+1
| | | | | | | | | | | | | | | Also exclude tests on osx as (some) require latex as well
* | | | | Update .travis.ymlDimitri van Heesch2019-05-041-1/+3
| |_|_|/ |/| | | | | | | Skip building docs on osx until a solution for the missing mactek package is found
* | | | Update .travis.ymlDimitri van Heesch2019-04-281-1/+5
| | | | | | | | | | | | update flex and bison for the OSX build
* | | | Merge pull request #6935 from albert-github/feature/issue_6920Dimitri van Heesch2019-04-281-16/+21
|\ \ \ \ | | | | | | | | | | issue #6920 Option syntax for commands is unclear
| * | | | Option syntax for commands is unclearalbert-github2019-04-201-1/+1
| | | | | | | | | | | | | | | | | | | | Corrected typo
| * | | | Option syntax for commands is unclearalbert-github2019-04-171-16/+21
| |/ / / | | | | | | | | | | | | Making documentation regarding option clearer and more consistent.
* | | | Merge branch 'albert-github-feature/bug_init_fd_line'Dimitri van Heesch2019-04-282-2/+2
|\ \ \ \