summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Update documentation for mscalbert-github2019-06-261-3/+2
| | | | Due to the built in mscgen code the documentation needed some updates.
* Fixed windows build issue in gd.hDimitri van Heesch2019-06-231-31/+2
|
* Fix gd_intern.h for Windows buildDimitri van Heesch2019-06-232-15/+1
|
* issue #6880 mscgen links placed in the wrong place when using SVG outputDimitri van Heesch2019-06-2346-55/+21266
|
* Fix windows buildDimitri van Heesch2019-06-221-6/+1
|
* Bug 566109 - unable to resolve links to java functions with array argumentsDimitri van Heesch2019-06-221-0/+1
|
* Split off lodepng functionality in a separate libraryDimitri van Heesch2019-06-229-31/+21
|
* Update .travis.ymlDimitri van Heesch2019-06-221-1/+1
|
* Update .travis.ymlDimitri van Heesch2019-06-221-0/+1
| | | Added bison 3 requirement for OSX build on Travis CI
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-06-229-13/+34
|\
| * Merge pull request #7034 from albert-github/feature/issue_7033Dimitri van Heesch2019-06-229-13/+34
| |\ | | | | | | issue #7033 Syntax highlighting doesn't work when calling \dontinclude from Markdown files
| | * issue #7033 Syntax highlighting doesn't work when calling \dontinclude from ↵albert-github2019-06-069-13/+34
| | | | | | | | | | | | | | | | | | Markdown files Don't use the file name extension of the including file but of the included file. In case of no included filename or no extension, fall back of the file extension of the including file.
* | | Fixed issues in introduced by making file name escapes lower caseDimitri van Heesch2019-06-221-1/+1
|/ /
* | Merge branch 'albert-github-feature/bug_case_sense'Dimitri van Heesch2019-06-222-7/+7
|\ \
| * \ Merge branch 'feature/bug_case_sense' of ↵Dimitri van Heesch2019-06-222-7/+7
| |\ \ |/ / / | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_case_sense
| * | Upper case characters in filename despice CASE_SENSE_NAME=NOalbert-github2019-06-172-5/+5
| | | | | | | | | | | | In case special characters in a filename need escaping into something like: `_0` the `0` should not be followed by an uppercase character as this would be in contradiction wit the setting `CASE_SENSE_NAMES=NO`.
* | | Merge pull request #7063 from albert-github/feature/bug_html_endcodelineDimitri van Heesch2019-06-225-11/+65
|\ \ \ | | | | | | | | Incorrect (X)HTML code when generating source code.
| * | | Incorrect (X)HTML code when generating source code.albert-github2019-06-175-11/+65
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having the example: ``` /*! \file * \brief * Prerequisite header file */ //! \cond #ifdef HAVE_CONFIG_H #include "gmxpre-config.h" #endif //! \endcond ``` and we run xmllint on it: ``` xmllint --path .../testing/dtd --noout --nonet --postvalid html/*.html ``` we get the messages: ``` html/aa_8h_source.html:75: parser error : Opening and ending tag mismatch: div line 67 and body </body> ^ html/aa_8h_source.html:76: parser error : Opening and ending tag mismatch: body line 17 and html </html> ^ html/aa_8h_source.html:77: parser error : Premature end of data in tag html line 2 ^ ``` It looks like the problematic part in this case is the doxygen type comment at the end of the file. In the past similar situations were present in LaTeX (related to maximum line length correction), but it was only fixed for LaTeX. Besides the change for HTML also small changes were necessary for RTF and docbook.
* | | Merge pull request #7059 from albert-github/feature/bug_xhtml_bracketsDimitri van Heesch2019-06-221-0/+2
|\ \ \ | | | | | | | | (X)HTML warning when `[` or `]` in constructed ids
| * | | (X)HTML warning when `[` or `]` in constructed idsalbert-github2019-06-161-0/+2
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we have a construct like: ``` template <typename Element, size_t N> class StlContainerView<Element[N]> { public: typedef internal::NativeArray<RawElement> type; }; ``` this will lead to files with `[` and `]` in it, as such not nice, but it is used in ids inside the code as well like: ``` id="aclass_stl_container_view_3_01_element[_n]_4_html_a1bf60158ff15896f2b53af11c09524fb" ``` running ``` xmllint --path ..../testing/dtd --noout --nonet --postvalid html_org/*html ``` this leads to the message: ``` Syntax of value for attribute id of div is not valid Document html_org/test_8h_source.html does not validate ``` escaping the `[` and `]` as done with other special characters solves this problem
* | | Merge pull request #7070 from coliff/patch-1Dimitri van Heesch2019-06-221-1/+1
|\ \ \ | | | | | | | | update jQuery version mentioned in README to 3.4.1
| * | | update jQuery version mentioned in README to 3.4.1Christian Oliff2019-06-211-1/+1
|/ / /
* | | Merge pull request #7064 from albert-github/feature/bug_796582Dimitri van Heesch2019-06-171-0/+1
|\ \ \ | | | | | | | | Bug 796582 - Doxygen has stopped working
| * | | Bug 796582 - Doxygen has stopped workingalbert-github2019-06-171-0/+1
| |/ / | | | | | | | | | | | | In (the rare) case the path is not set don't try to use the pointer. regression on pull request #513
* | | Avoid calling non-const member aliases and 0 pointer dereference in sqlite3Dimitri van Heesch2019-06-172-4/+8
|/ /
* | Merge pull request #7054 from albert-github/feature/regr_6945Dimitri van Heesch2019-06-164-3/+4
|\ \ | | | | | | Missing brief descriptions with `\defgroup`
| * | Missing brief descriptions with `\defgroup`albert-github2019-06-133-3/+3
| | | | | | | | | | | | Test 19 was incorrect, didn't show group description either (see make tests TEST_FLAGS="--keep --xhtml --id=19"
| * | Missing brief descriptions with `\defgroup`albert-github2019-06-131-0/+1
| | | | | | | | | | | | | | | Due to the fact that issue #6945 ended a brief description, all following was put into the detailed description (unless explicit \brief was used). The `\defgroup` should end the current brief description, but first line of the `\defgroup` should be seen as a new brief description. Problem can be seen with in the doxygen documentation in the example in the Grouping part and also with #7053 a small example is given in the comment.
* | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-06-168-5/+41
|\ \ \
| * \ \ Merge pull request #7056 from albert-github/feature/bug_cygwin_defaultsDimitri van Heesch2019-06-163-5/+5
| |\ \ \ | | | | | | | | | | Cygwin should by default also have `CASE_SENSE_NAMES=NO`
| | * | | Cygwin should by default also have `CASE_SENS_NAMES=NO`albert-github2019-06-153-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | Cygwin should by default also have `CASE_SENS_NAMES=NO` like is the case for the underlying Windows. In case of Cygwin the define `_WIN32` is not set so we also have to test for `__CYGWIN__`
| * | | | Merge pull request #7052 from InsertCreativityHere/masterDimitri van Heesch2019-06-151-0/+29
| |\ \ \ \ | | | | | | | | | | | | issue #6860 - Incorrect parsing of optional class fields in Slices
| | * | | | Fixes #6860.Austin Henriksen2019-06-121-0/+29
| | | |/ / | | |/| |
| * | | | Merge pull request #7057 from albert-github/feature/bug_warn_doxmlparserDimitri van Heesch2019-06-154-0/+7
| |\ \ \ \ | | | | | | | | | | | | Remove compilation warnings from doxmlparser
| | * | | | Remove compilation warnings from doxmlparseralbert-github2019-06-154-0/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove some warnings about incomplete types like: ``` D:\Programs\Doxygen\fork\doxygen\qtools\qlist.h(109) : warning C4150: deletion of pointer to incomplete type 'ParamHandler'; no destructor called d:\programs\doxygen\fork\doxygen\addon\doxmlparser\src\memberhandler.h(31) : see declaration of 'ParamHandler' D:\Programs\Doxygen\fork\doxygen\qtools\qlist.h(109) : while compiling class template member function 'void QList<ParamHandler>::deleteValue(type *) const' with [ type=ParamHandler ] d:\programs\doxygen\fork\doxygen\addon\doxmlparser\src\memberhandler.h(189) : see reference to class template instantiation 'QList<ParamHandler>' being compiled ``` from doxmlparser
* | | | | | Merge branch 'albert-github-feature/issue_7050'Dimitri van Heesch2019-06-161-7/+18
|\ \ \ \ \ \ | |/ / / / / |/| | | | |
| * | | | | Merge branch 'feature/issue_7050' of ↵Dimitri van Heesch2019-06-161-7/+18
| |\ \ \ \ \ |/ / / / / / | | | | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_7050
| * | | | | issue #7050 Physical newlines (^^) not working in group names and without ↵albert-github2019-06-121-7/+18
| | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | spaces in 1.8.15 Handling of `\_linebr` with defgroup and also with the `\page` command. Adding a missing linecount.
* | | | | Fix for race conditions introduced when refactoring dot classes.Dimitri van Heesch2019-06-153-31/+34
| |/ / / |/| | |
* | | | Fix for warning about deletion of pointer to incomplete type 'DotWorkerThread'Dimitri van Heesch2019-06-151-0/+1
| | | |
* | | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-06-153-0/+10
|\ \ \ \ | | |/ / | |/| |
| * | | Merge pull request #7055 from albert-github/feature/bug_489766Dimitri van Heesch2019-06-133-0/+10
| |\ \ \ | | | | | | | | | | Bug 489766 - Wrong MSC syntax rejected *silently*
| | * | | Bug 489766 - Wrong MSC syntax rejected *silently*albert-github2019-06-131-1/+1
| | | | | | | | | | | | | | | | | | | | Different types of inFile in different routines.
| | * | | Bug 489766 - Wrong MSC syntax rejected *silently*albert-github2019-06-133-0/+10
| | |/ / | | | | | | | | | | | | In case of an error at least a message (consistency) should be given (besides msc also for dia and htags).
* | | | Fix for warning about deletion of pointer to incomplete type 'DotFilePatcher'Dimitri van Heesch2019-06-151-1/+1
|/ / /
* | | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2019-06-136-6/+17
|\ \ \ | |/ /
| * | Merge pull request #7048 from albert-github/feature/bug_535853Dimitri van Heesch2019-06-101-0/+4
| |\ \ | | | | | | | | Bug 535853 - C# consts incorrectly placed under instance variables
| | * | Bug 535853 - C# consts incorrectly placed under instance variablesalbert-github2019-06-101-0/+4
| |/ / | | | | | | | | | Handle consts separately and in case of CSharp set the static flag.
| * | Merge pull request #7039 from albert-github/feature/issue_7038Dimitri van Heesch2019-06-101-1/+1
| |\ \ | | | | | | | | issue #7038 Broken refman.tex with SHOW_FILES=NO and doxygen groups
| | * | issue #7038 Broken refman.tex with SHOW_FILES=NO and doxygen groupsalbert-github2019-06-061-1/+1
| | |/ | | | | | | | | | Only have index section when SHOW_FILES is set (analogous to index for namespaces)i