summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Running doxygen tests with variable with spaces (#7819)albert-github2020-06-131-4/+25
| | | | | | | | | | | | | | | When having a run command like: ``` nmake tests TEST_FLAGS="--xhtml --keep --cfg GENERATE_HTMLHELP=YES --cfg HHC_LOCATION=\"c:\Program Files (x86)\HTML Help Workshop\hhc.exe\" --cfg HTML_FILE_EXTENSION=.html --cfg SEARCHENGINE=NO --id=1" ``` we get an error like ``` Not a doxygen configuration item, missing '=' sign: 'Files'. ``` this is due to the usage of the `split()` that does a brute force split on spaces. Making the splitting a bit more intelligent: - splitting on `--` - splitting on space after "command"
* bug_121547 extern variable is being referenced in documentation incorrectly ↵albert-github2020-06-131-3/+4
| | | | | (#7792) It is made clear that where the variable is declared "extern" that it is also shown at that place in the documentation
* Add `const` qualifier to UsedDir::m_dir. (#7820)David Hebbeker2020-06-132-3/+3
|
* issue #7810 LaTeX manual not built, but make install tries to install it (#7821)albert-github2020-06-131-0/+10
| | | | Give a meaningful fatal error when the pdf does not exists (when it exists automatically also the html directory with content exists). Give a meaningful fatal error when the chm does not exists.
* Create link for GENERATE_XML (#7824)albert-github2020-06-131-1/+2
| | | Small documentation consistency.
* Addon option --pool to the test run script for parallel execution of tests ↵albert-github2020-06-131-10/+29
| | | | | | (#7827) To make better use of the processors of a computer the possibility has been build to execute the tests in parallel, this is especially of an advantage for PDF tests. To make use of this option the number of parallel tests `np` has to be specified by means of `--pool=np`, the default is 1.
* Add namespace inline flag in xml output (#7828)Sergei Izmailov2020-06-132-2/+7
| | | | | | | * Flag namespace as inline in xml output * Add inline namespace flag to innernamespace tag as well suggested by @mosra
* Incorrect label in map of dot files in xhtml (#7840)albert-github2020-06-134-2/+13
| | | | | | | 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).
* Number of translatable terms (like Chapter) are in English instead of Greek ↵albert-github2020-06-133-6/+33
| | | | | | | | | | | | | | | | | | | (#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
* Merge pull request #7843 from albert-github/feature/bug_coverity_mkdirDimitri van Heesch2020-06-134-5/+19
|\ | | | | Catch all wrong mkdir calls (coverity)
| * Catch all wrong mkdir calls (coverity)albert-github2020-06-124-5/+19
| | | | | | | | | | - Always catch the output of `mkdir` - corrected an incorrect message (context.cpp)
* | Merge pull request #7844 from albert-github/feature/bug_coverity_mscgenDimitri van Heesch2020-06-135-4/+50
|\ \ | |/ |/| Coverity uninitialized variable in mscgen_api.c
| * Coverity uninitialized variable in mscgen_api.cppalbert-github2020-06-125-4/+50
|/ | | | | - Initialize the variable ymax - add an extended example with "parallel events" triggered by a `,` instead of `;` between events
* Regression: further fixes to make the documentation build againDimitri van Heesch2020-06-104-1662/+1298
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-06-105-41/+158
|\
| * issue #7778 Build fails with javacc 5.0 (#7779)albert-github2020-06-102-1/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * issue #7778 Build fails with javacc 5.0 At the moment doxygen works with javaCC version 7.0.5 but no test is done for the version. The minimum requirement has been set to 7.0.5 javacc does not have an option to retrieve the version though when giving `--version` a bit more information is given, this information is filtered. (an issue has been submitted to javacc to obtain the version information: https://github.com/javacc/javacc/issues/172). * issue #7778 Build fails with javacc 5.0 Version detection did not work for `5.0` (only x.y.z was handled, not x.y) * issue #7778 Build fails with javacc 5.0 Based on a review - `--version` is not a valid option, but present already for future use but - removed double ` if(JAVACC_EXECUTABLE)` - Needed `"${JAVACC_TEMP_VERSION}"` as otherwise when `javacc` is found but cannot be executed a message like: ``` CMake Error at cmake/FindJavacc.cmake:11 (string): string sub-command REGEX, mode MATCH needs at least 5 arguments total to command. Call Stack (most recent call first): vhdlparser/CMakeLists.txt:1 (find_package) ``` would appear - reformulated some status strings * issue #7778 Build fails with javacc 5.0 the `.` was not correctly escaped. * issue #7778 Build fails with javacc 5.0 Another one 7.0........ match, going for the suggested match in the cmake CheckCXXCompilerFlag * issue #7778 Build fails with javacc 5.0 Accidently left debug statement. * issue #7778 Build fails with javacc 5.0 Problem has been fixed upstream for version 7.0.7 and up, not using `--version` but `-version` as all command line arguments are starting with a single '-'. Also it is just the bare version, so small extra test so it will work with all versions.
| * Merge pull request #7830 from maddox11/missing_instance_reworkDimitri van Heesch2020-06-103-40/+136
| |\ | | | | | | missing instance-rework
| | * missing instance-reworkhake2020-06-033-40/+136
| | |
* | | Regression: fix issue with substitute charactersDimitri van Heesch2020-06-101-1/+1
|/ /
* | Fix win64 compiler warningsDimitri van Heesch2020-06-101-4/+4
| |
* | Merge branch 'refactor_qcstring'Dimitri van Heesch2020-06-1010-846/+279
|\ \
| * | Refactor: make QCString a wrapper around std::stringDimitri van Heesch2020-06-1010-846/+279
| | |
* | | Merge pull request #7837 from albert-github/feature/bug_tests_latex_hangsDimitri van Heesch2020-06-091-6/+13
|\ \ \ | |/ / |/| | LaTeX test were hanging for a.o. Hungarian on Windows
| * | LaTeX test were hanging for a.o. Hungarian on Windowsalbert-github2020-06-081-6/+13
|/ / | | | | | | | | | | On Windows a number of tests were hanging when using a language like Hungarian, Russian. The handling of the output of the output is now done differently for Windows and other OS A small (but obvious) error has been corrected (failed_html -> failed_latex), has no effect on the output / results though.
* | Revert pull request #7703: make declArgumentList be from declaration, and ↵Dimitri van Heesch2020-06-071-3/+3
| | | | | | | | argumentList from definition
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-06-061-1/+1
|\ \
| * \ Merge pull request #7829 from albert-github/feature/bug_htmlhelp_indonDimitri van Heesch2020-06-061-1/+1
| |\ \ | | | | | | | | Incorrect htmlhelp language code for Indonesian
| | * | Incorrect htmlhelp language code for Indonesianalbert-github2020-06-041-1/+1
| | |/ | | | | | | | | | The language code for Indonesian is `0x421` and not `0x412`, the later is for Korean.
* | | Minor documentation updatesDimitri van Heesch2020-06-065-64/+697
|/ /
* | Prevent potential empty stringDimitri van Heesch2020-06-061-1/+1
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-06-061-1/+1
|\ \
| * \ Merge pull request #7834 from albert-github/feature/issue_7833Dimitri van Heesch2020-06-061-1/+1
| |\ \ | | | | | | | | issue #7833 Empty string in PREDEFINED throws
| | * | issue #7833 Empty string in PREDEFINED throwsalbert-github2020-06-061-1/+1
| |/ / | | | | | | | | | Ignore empty strings
* | | Fixed compilation issue on Windows for setNum with size_t argumentDimitri van Heesch2020-06-062-2/+2
|/ /
* | Issue #7831: Error building docs after 0df1623c9363d52a2b04457233dcf2c64319b03cDimitri van Heesch2020-06-052-19/+29
| |
* | Refactor: modernize configuration valuesDimitri van Heesch2020-06-0429-1088/+1041
|/
* Update installation documentation for Linux binary distributionDimitri van Heesch2020-06-011-49/+39
|
* Added copyright header to threadpool.hDimitri van Heesch2020-05-311-0/+16
|
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2020-05-311-0/+5
|\
| * Merge pull request #7814 from albert-github/feature/bug_empty_settingDimitri van Heesch2020-05-311-0/+5
| |\ | | | | | | Empty enum setting in configuration file
| | * Empty enum setting in configuration filealbert-github2020-05-291-0/+5
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Added experimental multi-thread input processing support.Dimitri van Heesch2020-05-3113-107/+329
|/ | | | | 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!
* Merge pull request #7794 from wataash/cmake-list-dirDimitri van Heesch2020-05-271-14/+14
|\ | | | | Replace ${CMAKE_SOURCE_DIR}/path/to/current/cmake-lists-txt/dir with ${CMAKE_CURRENT_LIST_DIR}
| * Replace ${CMAKE_SOURCE_DIR}/path/to/current/cmake-lists-txt/dir with ↵Wataru Ashihara2020-05-231-14/+14
| | | | | | | | ${CMAKE_CURRENT_LIST_DIR}
* | Merge pull request #7776 from albert-github/feature/bug_git_inDimitri van Heesch2020-05-271-0/+13
|\ \ | | | | | | Change of git version input file was not taken into account
| * | Change of git version input file was not taken into accountalbert-github2020-05-151-0/+13
| | | | | | | | | | | | Changes in the git version input file file were not taken into account. Explicitly checking whether or not the input file is newer or not than the output file.
* | | Merge pull request #7806 from albert-github/feature/bug_py_multDimitri van Heesch2020-05-271-0/+4
|\ \ \ | | | | | | | | Warning in case of multiple python documentation sections.
| * | | Warning in case of multiple python documentation sections.albert-github2020-05-271-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 ```
* | | | Merge pull request #7801 from albert-github/feature/bug_warn_structDimitri van Heesch2020-05-271-7/+4
|\ \ \ \ | | | | | | | | | | Better warning for non documented struct
| * | | | Better warning for non documented structalbert-github2020-05-241-7/+4
| |/ / / | | | | | | | | | | | | | | | | 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)