summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #8430 from albert-github/feature/issue_8425Dimitri van Heesch2021-04-221-13/+9
|\ | | | | issue #8425 Would like a way to sort class list but not brief member list
| * issue #8425 Would like a way to sort class list but not brief member listalbert-github2021-03-141-13/+9
| | | | | | | | | | | | In the 1.9 series the sorting of the classes inside the namespaces was made dependent on the configuration setting `SORT_BRIEF_DOCS`, this is a regression compared to the 1.8.20 and earlier versions. (see also the discussion in the issue #8425)
* | Merge pull request #8424 from albert-github/feature/bug_default_rule_paramDimitri van Heesch2021-04-221-0/+8
|\ \ | | | | | | Usage of default lex rule with `\param`
| * | Usage of default lex rule with `\param`albert-github2021-03-121-0/+8
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | In case we have a file like ``` /// \file /// the fie /// \param /// arg the argument void fie(int arg); ``` we get in the console output extra empty lines, this is due to the fact that the default lex rule kicks in an the output is echoed to the consol. We have defined an explicit rule.
* | Merge pull request #8502 from albert-github/feature/bug_coverity_20210414Dimitri van Heesch2021-04-222-2/+1
|\ \ | | | | | | Coverity warnings
| * | Coverity warningsalbert-github2021-04-142-2/+1
| | | | | | | | | | | | | | | | | | Correcting new coverity warnings. - utf8.cpp is dead code. - template.cpp, made consistent with other render functions
* | | Merge pull request #8514 from albert-github/feature/bug_aliases_regexDimitri van Heesch2021-04-221-2/+2
|\ \ \ | | | | | | | | No warning for incorrect ALIASES
| * | | No warning for incorrect ALIASESalbert-github2021-04-221-2/+2
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having the alias: ``` "\latexonly mytable=\\mytable \endlatexonly" ``` the 1.9.1. version gave a warning: ``` error: Illegal ALIASES format '\latexonly mytable=\\mytable \endlatexonly'. Use "name=value" or "name{n}=value", where n is the number of arguments ``` though the current version doesn't give a warning, probably due to the regexp replacement. Now most likely the string found starts at `mytable=` The alias should start at the beginning of the string when searching.
* | | Refactoring: remove implicit conversion from QCString to const char *Dimitri van Heesch2021-04-22262-8538/+8713
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit changes the following in relation to string use - The implicit convert from 'QCString' to 'const char *' is removed - Strings parameters use 'const QCString &' as much as possible in favor over 'const char *' - 'if (s)' where s is a QCString has been replaced by 'if(!s.isEmpty())' - data() now always returns a valid C-string and not a 0-pointer. - when passing a string 's' to printf and related functions 'qPrint(s)' is used instead of 's.data()' - for empty string arguments 'QCString()' is used instead of '0' - The copy() operation has been removed - Where possible 'qstrcmp(a,b)==0' has been replaces by 'a==b' and 'qstrcmp(a,b)<0' has been replaced by 'a<b' - Parameters of string type that were default initialized with '= 0' are no initialized with '= QCString()'
* | issue #8498: Concepts do not respect groups in tree viewDimitri van Heesch2021-04-133-23/+20
| |
* | Merge pull request #8500 from albert-github/feature/bug_layout_fileDimitri van Heesch2021-04-131-6/+10
|\ \ | | | | | | Written layout file was empty
| * | Written layout file was emptyalbert-github2021-04-131-6/+10
|/ / | | | | | | With `doxygen -l` the layout file was not written anymore.
* | issue #8474: Crash: double free or corruption (out)Dimitri van Heesch2021-04-091-1/+1
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2021-04-091-2/+2
|\ \
| * \ Merge pull request #8491 from couet/Typo-fix2Dimitri van Heesch2021-04-091-1/+1
| |\ \ | | | | | | | | remove a double "the"
| | * | remove a double "the"Olivier Couet2021-04-091-1/+1
| |/ /
| * | Merge pull request #8488 from couet/Typo-fixDimitri van Heesch2021-04-091-1/+1
| |\ \ | | | | | | | | Remove a double "the"
| | * | Remove a double "the"Olivier Couet2021-04-091-1/+1
| |/ /
* | | Fixed potential crash when using . after a markdown style linked image.Dimitri van Heesch2021-04-091-2/+3
|/ /
* | regex: Avoid wrong assumption that char is always signed.Dimitri van Heesch2021-04-081-1/+1
| |
* | issue #2732: Adding support for C++ concepts (Origin: bugzilla #499352)Dimitri van Heesch2021-04-0858-157/+2466
| |
* | C++20 concepts: added support for parsing requires-clausesDimitri van Heesch2021-04-088-27/+225
| |
* | Merge pull request #8486 from albert-github/feature/issue_8485Dimitri van Heesch2021-04-082-1/+5
|\ \ | | | | | | issue #8485 The browser based search doesn't handle underscores correctly
| * | issue #8485 The browser based search doesn't handle underscores correctlyalbert-github2021-04-082-1/+5
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem is that that "_" is seen as an Id character and not is escaped for JS search. This is a regression on: ``` Commit: a4ecbee86766b35d25d41d1a178806e1688485df [a4ecbee] Date: Monday, March 22, 2021 8:02:06 PM issue #8375: Lowercase search does not find non-ASCII uppercase pages and vice versa ``` and ``` Commit: 3a365ab230cab40910366eee5352534719541598 [3a365ab] Date: Wednesday, March 24, 2021 8:34:50 PM issue #8375 Lowercase search does not find non-ASCII uppercase pages and vice versa (part 2) ```
* | Merge pull request #8481 from albert-github/feature/bug_ghostscript_versDimitri van Heesch2021-04-061-6/+8
|\ \ | | | | | | Determine ghostscript directory (Windows)
| * | Determine ghostscript directory (Windows)albert-github2021-04-061-1/+1
| | | | | | | | | | | | Looks like that the time taken is a bit long, lets attempt a bit longer / more specific path
| * | Determine ghostscipt directory (Windows)albert-github2021-04-061-6/+8
|/ / | | | | | | Detremine the gostscript directory in a more system and version independent way for Windows.
* | Merge pull request #8479 from albert-github/feature/bug_ghostscript_9_54_0Dimitri van Heesch2021-04-051-4/+4
|\ \ | | | | | | Update ghostscript version
| * | Update ghostscript versionalbert-github2021-04-041-4/+4
|/ / | | | | | | Update of hard coded ghostscript version
* | Regression: source code was not longer visible in HTML/LaTeX/docbook outputDimitri van Heesch2021-03-319-75/+41
| |
* | issue #8471: doxygen 1.9.1 segmentation fault when generating libstdc++ ↵Dimitri van Heesch2021-03-301-2/+2
| | | | | | | | documentation
* | issue #8448: [c++] unable to expand recursive macroDimitri van Heesch2021-03-291-1/+1
| |
* | Updated the FAQ regarding the use of QtDimitri van Heesch2021-03-291-6/+4
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2021-03-293-6/+20
|\ \
| * \ Merge pull request #8467 from albert-github/feature/bug_doxyfile_encodingDimitri van Heesch2021-03-291-1/+8
| |\ \ | | | | | | | | Incorrect DOXYFILE_ENCODING upon update
| | * | Incorrect DOXYFILE_ENCODING upon updatealbert-github2021-03-291-1/+8
| | | | | | | | | | | | | | | | When the Doxyfile is updated the DOXYFILE_ENCODING remains at the original setting although the setting should now be UTF-8
| * | | Merge pull request #8468 from albert-github/feature/bug_xml_dbg_msgDimitri van Heesch2021-03-291-4/+5
| |\ \ \ | | | | | | | | | | Consistency with other debug messages
| | * | | Consistency with other debug messagesalbert-github2021-03-291-4/+5
| | |/ / | | | | | | | | | | | | More consistent debug message (other lexers through printlex)
| * | | Merge pull request #8466 from albert-github/feature/issue_8465Dimitri van Heesch2021-03-291-1/+7
| |\ \ \ | | |/ / | |/| | issue #8465 Parens in return type template are dropped
| | * | issue #8465 Parens in return type template are droppedalbert-github2021-03-291-1/+7
| |/ / | | | | | | | | | The "(" was eaten when the sharp parens ended but not the number of round brackets so exter condition required.
* | | Fixed potential crash in handling empty list item.Dimitri van Heesch2021-03-293-9/+20
| | |
* | | Performance improvement by returning BaseClassList by referenceDimitri van Heesch2021-03-292-8/+8
|/ /
* | Fixed compilation problem when enableing sqlite3Dimitri van Heesch2021-03-286-13/+11
| |
* | Refactoring: Add TextStream buffer to improve output writing performanceDimitri van Heesch2021-03-28111-2647/+2998
| | | | | | | | | | - direct use of std::stringstream and std::ostream gave a 30% drop in performance.
* | Merge pull request #8460 from albert-github/feature/bug_env_changelogDimitri van Heesch2021-03-271-5/+5
|\ \ | | | | | | Environment variabelen in changelog
| * | Environment variabelen in changelogalbert-github2021-03-271-5/+5
| | | | | | | | | | | | | | | The environment variables in the changelog were replaced by their values and this was not the intention in the changelog By using the HTML Entity here for the dollar sign this can be prevented.
* | | Merge pull request #8459 from albert-github/feature/bug_qtools_maintDimitri van Heesch2021-03-273-5/+2
|\ \ \ | | | | | | | | Removing some left over qtools
| * | | Removing some left over qtoolsalbert-github2021-03-273-5/+2
| |/ / | | | | | | | | | Removing some references to removed qtools
* | | Merge pull request #8461 from albert-github/feature/bug_maint_prefix_fileDimitri van Heesch2021-03-272-3/+0
|\ \ \ | |/ / |/| | Remove not used file
| * | Remove not used filealbert-github2021-03-272-3/+0
|/ / | | | | | | The file install_prefx is not used.