summaryrefslogtreecommitdiffstats
path: root/src/configimpl.l
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'remove_tcl'Dimitri van Heesch2020-03-221-3/+0
|\
| * Remove support for TCL (code is too buggy and unmaintained, language not ↵Dimitri van Heesch2020-03-151-3/+0
| | | | | | | | very popular)
* | Remove last QThread-ReferenceMoritz 'Morty' Strübe2020-03-211-3/+3
| |
* | Doxygen version information (#7645)albert-github2020-03-171-6/+2
|/ | | | | - add doxygen version to rtf, comment, output - remove duplicate code (getFullVersion) - more clear name to get doxygen version (getVersion becomes getrDoxygenVersion). Also to overcomecofusion with the version information for files.
* Enabled stricter compiler warnings and fixed all new warningsDimitri van Heesch2020-03-081-149/+162
|
* Problem in case using PREDEFINED with comma and using +=albert-github2020-02-271-1/+8
| | | | In pull request #7603 the problem regarding `PREDEFINED = A(x,y)`, but the same patch must be applied to the construct `PREDEFINED += A(x,y)`
* Problem in case using PREDEFINED with commaalbert-github2020-02-201-5/+24
| | | | | | | | | | | | | | | | | | | | | | In the pull request "Enable comma as separator in configuration lists enhancement " (#6563) it was made possible to have commas as separators for lists. In case we have: ``` PREDEFINED = A(x,y)=sin(x),cos(y) ``` and use `doxygen -x` (or usethe define): this results in: ``` PREDEFINED = A(x \ y)=sin(x) \ cos(y) ``` this can be overcome by means of: ``` PREDEFINED = "A(x,y)=sin(x),cos(y)" ``` But for a lot of existing packages this poses a problem. (Found by looking at the doxygen configuration files as used by Fossies).
* Unknown configuration enum valuesalbert-github2020-02-131-0/+19
| | | | | | | | | | | | In case we set for instance `DOT_IMAGE_FORMAT = SVG` (and generate call graphs) we get messages from the `dot` tool like: ``` error: Problems running dot: exit code=1, command='dot', arguments='".../example/html/test_8cpp_a764ac60c654173eb1a0afd0906ad5a12_icgraph.dot" -TSVG -o ".../example/html/test_8cpp_a764ac60c654173eb1a0afd0906ad5a12_icgraph.SVG"' ``` on other places (e.g `HTML_FORMULA_FORMAT`) and an unknown or enum value with a wrong case, the default value is (silently) taken. We now check: - is the enum value of the correct case otherwise (silently) set it to the correct case. - in case of an unknown enum value a warning is given and the default value is used
* Fix compiler warnings on Windows (Visual Studio)Dimitri van Heesch2020-02-121-0/+3
|
* Adding check on configuration setting EXTENSION_MAPPINGalbert-github2019-12-281-0/+3
| | | | In #7419 the EXTENSION_MAPPING test was omitted
* Removed exitCode parameter as it is always 1Dimitri van Heesch2019-12-221-23/+23
|
* Merge branch 'feature/bug_terminate' of ↵Dimitri van Heesch2019-12-221-42/+31
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_terminate
| * Better termination messagealbert-github2019-11-221-42/+31
| | | | | | | | | | In case a `WARN_LOGFILE` is used it in this file no clear whether doxygen finished correctly or exited beforehand in case a fatal error. Now a 'Exiting...' is also given in the warning log file in case an error is a fatal error.
* | Reduced code duplicationDimitri van Heesch2019-12-211-148/+37
| |
* | Merge branch 'feature/bug_config' of ↵Dimitri van Heesch2019-12-201-3/+183
|\ \ | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_config
| * | Checking of right usage of configuration list itemsalbert-github2019-11-251-3/+183
| |/ | | | | | | In case of a configuration list item has an equal sign in it ('=') some extra restriction are imposed / made more understandable.
* | Renamed Portables to PortableDimitri van Heesch2019-12-081-8/+8
| |
* | Refactoring of portable.h and portable.cpp functions to be contained in a ↵Tobias Off2019-11-281-8/+8
|/ | | | | | namespace Fixing some memory issues caused by not correctly freed pointers
* Incorrect warning for ALIASESalbert-github2019-10-051-1/+1
| | | | | | | | In case we have an alias in the form: `mine_err(1)=\1` we get the warning: ``` error: Illegal alias format 'mine_err(1)=\1'. Use "name=value" or "name(n)=value", where n is the number of arguments ``` Note the round brackets in the explanation., these have to be curly brackets.
* Reduce the use of QString in favor of the more efficient QCStringDimitri van Heesch2019-09-211-5/+4
|
* Merge branch 'feature/bug_consistency_state_2' of ↵Dimitri van Heesch2019-09-121-0/+3
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_consistency_state_2
| * Consistent way to show scanner statealbert-github2019-09-051-0/+3
| | | | | | | | | | Create a consistent way to display the state mnemonics of the different scanners (analogous to the fortranscanner.l) Use an automatic procedure to generate the routine with the translation of the states to a string.
* | Refactoring code for dot related source filesDimitri van Heesch2019-09-101-0/+27
|/
* issue #7190 1.8.16: Blank FILE_PATTERNS => no files processedalbert-github2019-08-131-3/+9
| | | | This is actually a regression on #7195. Due to the fact that the init() routine has moved up, the settings for `FILE_PATTERNS` have already been done and a call to init does not operate on the `FILE_PATTERNS` variable but on the structure from which the `FILE_PATTERNS` was derived. We have should here operate on the `FILE_PATTERNS` directly as well., bu getting the default values out of the underlying structure.
* Merge pull request #7095 from albert-github/feature/bug_config_consistDimitri van Heesch2019-08-061-80/+81
|\ | | | | Consistency of configuration parameters
| * Consistency of configuration parametersalbert-github2019-07-011-80/+81
| | | | | | | | | | | | | | | | Configuration parameters were used 2 forms in the code bare name like `PAPER_TYPE` and as string `"PAPER_TYPE"`. In case of a non existing "bare name" (or misspelling) this is signaled by the compiler but in case of the string this was only shown at runtime. In case of the usage of an obsolete configuration parameter the "bare name" was signaled as not existing (anymore). The essential change here is the place where the ConfigValues are initialized.
* | Merge branch 'feature/bug_endblock_msg' of ↵Dimitri van Heesch2019-08-041-28/+28
|\ \ | | | | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_endblock_msg
| * | Correction warning messagealbert-github2019-06-011-28/+28
| | | | | | | | | | | | Consistency
* | | Merge branch 'feature/bug_gitversion' of ↵Dimitri van Heesch2019-07-301-2/+7
|\ \ \ | |_|/ |/| | | | | https://github.com/albert-github/doxygen into albert-github-feature/bug_gitversion
| * | Show git version informationalbert-github2019-05-311-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The original version has as features: - getting the git version number for usage in doxygen - making the doxygen version number inclusion dependent on the VERSION file The disadvantage of the chosen methodology was that an extra correction step was necessary, by defining getter methods to retrieve the values this correction can be hidden. The information is coming from different sources: - the VERSION file - the git "repository and build system (when present) Furthermore there are a couple of places where the version information is used (a.o. doxygen and doxywizard executable, though the doxygenwizard was only done "half hearted") The handling of the VERSION file has been made in such a way that it is comparable with the generation of the git version changes. For a better abstraction the version handling is all done in a separate directory.
| * | Show git version informationalbert-github2019-04-071-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | Show the git version on designated places (currently version, help and Doxyfile difference). The implementation is based on the git_watcher.cmake (https://github.com/andrew-hardin/cmake-git-version-tracking). The information is useful to see which. master, version of doxygen is used for a build on systems where a lot of builds are make (Fossies.org) or very regular builds are made (CGAL) Furthermore the tracking of the VERSION file was not done (when changed the version.cpp was not updated), this is corrected as well.
* | | Made MSCGEN_PATH obsolete now that mscgen code is part of doxygenDimitri van Heesch2019-06-241-24/+0
| |/ |/|
* | Count user comment linesalbert-github2019-04-141-2/+2
|/ | | | The user comment lines were not counted resulting in a wrong line number in case of an error message.
* Fixed regression after fixing memory leakDimitri van Heesch2018-12-261-2/+2
|
* Keyword register (in code) is deprecated since C++11albert-github2018-11-271-1/+1
| | | | | | The keyword `register` is deprecated since C++11: - for the Darwin platform it was already filtered (-Wno-deprecated-register) - CLan emits: 'register' storage class specifier is deprecated and incompatible with C++17 [-Wdeprecated-register]
* Merge pull request #6542 from albert-github/feature/bug_751700Dimitri van Heesch2018-10-271-2/+12
|\ | | | | Bug 751700 - Main page absent in TOC of CHM, if PROJECT_NAME is empty
| * Bug 751700 - Main page absent in TOC of CHM, if PROJECT_NAME is emptyalbert-github2018-10-081-2/+12
| | | | | | | | In case a string is empty the default should be taken and not left blank.
* | Enable comma as separator in configuration listsalbert-github2018-10-181-2/+2
|/ | | | | Loosely based on problems when users use a comma as separator in a list (as this is slightly suggested in the documentation). (https://stackoverflow.com/questions/43093051/doxygen-is-generating-empty-documentation)
* Difference between standard and used Doxyfile (list)albert-github2018-09-181-8/+57
| | | | The default (string) list can contain an empty elements (e.g. INPUT, STRIP_FROM_PATH) giving false positives. Removed empty elements from the checks.
* Difference between standard and used Doxyfilealbert-github2018-09-151-0/+60
| | | | | | Writes a the differences between the current configuration and the template configuration. Useful when communicating e.g. in forums.
* Clear header/footer information in ConfigImpl for postProcessArtur Kink2016-09-271-4/+4
|
* flex: use %option instead of command line options.Adrian Negreanu2016-09-211-0/+2
|
* Bug 766069 - Files with incorrect extensions (.doc) are picked up by doxygenDimitri van Heesch2016-05-161-21/+10
|
* Fix STRIP_FROM_PATH when running from drive rootFred Sundvik2016-04-041-10/+16
| | | | | | | | | | When running doxygen from the drive root, the STRIP_FROM_PATH, variable could get an extra slash. As a result no paths were stripped. This fix makes sure that a duplicate slash is not added both for the automatic generation, and when you specify a relative path that maps to the drive root in the configuration. Also change some tabs to spaces
* Changed configuration mechanism to directly access options in order to ↵Dimitri van Heesch2016-01-171-0/+1780
improve performance