summaryrefslogtreecommitdiffstats
path: root/src/config.xml
Commit message (Collapse)AuthorAgeFilesLines
* Reintroducing the sidebar layout via new FULL_SIDEBAR option.Dimitri van Heesch2021-05-091-8/+26
| | | | | - This new page layout is only enabled if DISABLE_INDEX=YES, GENERATE_TREEVIEW=YES, and FULL_SIDEBAR=YES.
* Merge pull request #8501 from albert-github/feature/bug_docu_improvDimitri van Heesch2021-04-301-1/+2
|\ | | | | Some documentation improvements
| * Some documentation improvementsalbert-github2021-04-131-1/+2
| | | | | | | | Some small documentation improvements.
* | Merge pull request #8496 from albert-github/feature/issue_7346Dimitri van Heesch2021-04-271-6/+28
|\ \ | | | | | | issue #7346 Incompatibility with MathJax 3.0
| * | issue #7346 Incompatibility with MathJax 3.0albert-github2021-04-121-6/+28
| |/ | | | | | | | | | | | | Implementing the possibility to use MathJax versie 3 - Added setting MATHJAX_VERSION - made setting for MATHJAX_RELPATH so that is suited for version Mathjax version3, i.e. selecting right default - made setting for MATHJAX_FORMAT so that is suited for version Mathjax version3, automatic conversion between MathJax 2 and MathJax3 format setting
* | Fix typosOlivier Couet2021-04-261-4/+4
|/
* Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2021-03-181-3/+14
|\
| * Merge pull request #8412 from albert-github/feature/bug_docu_sqlite3Dimitri van Heesch2021-03-061-0/+9
| |\ | | | | | | Missing build note for sqlite3
| | * Missing build note for sqlite3albert-github2021-03-051-0/+9
| | | | | | | | | | | | The reference, analogous to what is present for clang, regarding the need of compiling doxygen with `-Duse_sqlite3=ON` was missing
| * | Issue #8405 Dead link in documentationalbert-github2021-03-051-3/+5
| |/ | | | | | | Correcting the link in the documentation to a wayback / archive machine.
* | Made OUTPUT_TEXT_DIRECTION option obsoleteDimitri van Heesch2021-03-051-13/+1
|/
* Merge branch 'master' into feature/bug_lexDimitri van Heesch2021-03-031-6/+17
|\
| * Merge pull request #8348 from albert-github/feature/bug_clang_dependencyDimitri van Heesch2021-03-031-3/+3
| |\ | | | | | | Missing CLANG dependency
| | * Missing CLANG dependencyalbert-github2021-01-201-3/+3
| | | | | | | | | | | | For the tag `CLANG_ADD_INC_PATHS` the dependency to the rag `CLANG_ASSISTED_PARSING` was missing, giving in the doxywizard the wrong impression about this tag.
| * | fix typo in config.xmlarwedus2021-02-131-1/+1
| | | | | | | | | | | | | | | | | | make docs failed because of outdated ref (I renamed the parameter to WARN_IF_INCOMPLETE_DOC to support generalizing the idea of "do not warn on incomplete doc of x".
| * | add config option WARN_IF_INCOMPLETE_DOCJames Wilcox2021-02-131-3/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | Add a new warning class, "INCOMPLETE_DOC", and warning option "WARN_IF_INCOMPLETE_DOC", to control whether you get a warning for only documenting some of your function parameters. All users who want to retain the current behavior set WARN_IF_INCOMPLETE_DOC to the value of WARN_IF_DOC_ERROR.
* | | Adding support for lex filesalbert-github2021-02-121-1/+2
|/ / | | | | | | | | | | Adding support for lex. The lex files consist of a mixture of lex specific structures, that are handled in the the lexcode.l and lexscanner.l, abd C code that is handled by the C parsers (hence the rules used are partly copied from scanner.l). Special attention has been paid to memberdef.cpp as the initial values should not be handled by the lex parsers but by the C parsers.
* | issue #8160 Use ^^ instead of \n in ALIASES ...DuyDang2021-01-261-2/+2
|/ | | | | document Fix the document.
* Spelling corrections configalbert-github2021-01-121-3/+3
| | | | | Some spelling corrections (found by Fossies)
* bug 668003 Default LaTeX header misses $-placeholdersalbert-github2021-01-051-29/+172
| | | | Create, analogous to HTML, also for LaTeX default header and footer files.
* Renamed CLANG_INCLUDE_INPUT_PATHS to CLANG_ADD_INC_PATHSDimitri van Heesch2021-01-011-2/+2
| | | | The name is too long making the generated config file look ugly.
* Add a CLANG_INCLUDE_INPUT_PATHS option which can be used to control whetherBryce Adelstein Lelbach aka wash2020-12-311-8/+17
| | | | | the directory of every input file is added as an include when using Clang assisted parsing.
* Refactoring: modernize class indexDimitri van Heesch2020-12-211-9/+1
|
* Incorrect link in doxygen documentationalbert-github2020-12-031-2/+2
| | | | | The link to mathjax is not correct anymore (config.xml), the latest version points to version 3.0 and here there is no output.html either. Setting it fixed to the 2.7 version. The other corrected links are just about redirections that are otherwise done.
* Merge pull request #8197 from albert-github/feature/issue_8023Dimitri van Heesch2020-12-021-1/+7
|\ | | | | issue #8023 Add option to exit with non-zero exit code on warnings even if WARN_AS_ERROR is OFF
| * issue #8023 Add option to exit with non-zero exit code on warnings even if ↵albert-github2020-11-231-1/+7
| | | | | | | | | | | | | | WARN_AS_ERROR is OFF In case we want for a Continuous integration system a non-zero exit status at the end of a doxygen we can now set `WARN_AS_ERRORS=FAIL_ON_WARNINGS`. The behavior for `NO` and `YES` remains as it was.
* | Introduce new DOT_UML_DETAIL setting "NONE"Tim Offermann2020-11-271-10/+10
| | | | | | | | | | Change of DOT_UML_DETAIL from bool to enum in order to avoid the creation of another, new configuration setting.
* | Enable UML diagrams without member fieldsTim Offermann2020-11-261-0/+9
| | | | | | | | | | | | | | | | | | The compartment for class attributes and the compartment for the operations are optional. By providing a new option "DOT_UML_SHOW_MEMBER" an user can configure to use the UML_LOOK but without the additional information regarding the content of the class.
* | Merge pull request #8198 from albert-github/feature/bug_dot_cleanupDimitri van Heesch2020-11-241-2/+5
|\ \ | | | | | | Making the use of DOT_CLEANUP more transparent
| * | Making the use of DOT_CLEANUP more transparentalbert-github2020-11-231-2/+5
| |/ | | | | | | | | - The setting `DOT_CLEANUP` is not only used for `dot` files but also for temporary `msc` and `plantuml` files, though this was not clear from the documentation. - For the docbook output format the removal of the `dot` and `msc` files was not don like in the output formats html / LatTeX / rtf.
* | issue #8184 Bad parsing of CMakeLists.txtalbert-github2020-11-241-2/+3
|/ | | | | | - Removing the `txt` and `doc` extension from the default list of `FILE_PATTERNS - Updating documentation - Incorrect parsing for the doxywizard of some \ref items (i.e. when the description contains a space, made compatible again with that happens in configgen.py).
* Unclear description of QHG_LOCATIONalbert-github2020-11-121-1/+3
| | | | | The description of `QHG_LOCATION` is a bit unclear (compare with `HHC_LOCATION`). (based on https://stackoverflow.com/questions/64795335/qhelpgenerator-with-doxygen-keep-showing-sh-1-permission-denied/64801829#64801829)
* Update config.xmlDimitri van Heesch2020-11-021-1/+1
| | | added missing "be"
* Update config.xmlDimitri van Heesch2020-11-021-10/+13
| | | Did rephrasing things a bit.
* Documentation correction for CASE_SENSE_NAMESalbert-github2020-11-021-6/+11
| | | | | In issue #8129 the problem of using different case of filenames was addressed, though in the documentation it was not clear what this meant for input files. This has been corrected (the underlying problem has been handled with different other commits a.o. 2b5a4541fb6f806c02a1f6e65a1ff2610f29751f ).
* Some tweaks & fixesDimitri van Heesch2020-10-201-16/+18
| | | | | | | - Changed DOT_MAX_FOLD to DOT_WRAP_THRESHOLD - Improved documentation - Applied DOT_WRAP_THRESHOLD to the whole string instead of individual parts.
* Merge branch 'test/uml' of https://github.com/cimeq/doxygen into cimeq-test/umlDimitri van Heesch2020-10-201-0/+15
|\
| * Merge branch 'master' into test/umlAlexandre Salconi2020-09-291-0/+9
| |\
| * | use boolean to add or remove uml detailsAlexandre Salconi2020-09-291-0/+8
| | |
| * | add variable for the fold lenghtAlexandre Salconi2020-09-291-0/+7
| | |
* | | Small layout improvement in documentation of CLANG_DATABASE_PATHalbert-github2020-10-201-2/+2
| | | | | | | | | | | | Small layout improvement in documentation of CLANG_DATABASE_PATH so some literal words are better shown.
* | | issue #8105 How do add (multiple files without extension) directory in INPUT ↵albert-github2020-10-161-1/+2
| |/ |/| | | | | | | | | field of doxygen configuration file Small explanation added as it is not clear what to use in case of `no_extension` in `FILE_PATTERNS`
* | Renamed EXTRACT_ANON_ARGUMENTS to RESOLVE_UNNAMED_PARAMS and enabled it by ↵Dimitri van Heesch2020-09-161-3/+4
| | | | | | | | default
* | Support commented out argument names in declarations controlled by new cofig ↵Szabi Tolnai2020-08-111-0/+8
|/ | | | EXTRACT_ANON_ARGUMENTS.
* Merge pull request #7575 from albert-github/feature/bug_py_docstrDimitri van Heesch2020-08-101-0/+10
|\ | | | | Using Python docstrings
| * Using Python docstringsalbert-github2020-02-071-0/+10
| | | | | | | | | | - making documentation a bit clearer - add configuration setting to have docstrings not as preformatted text but as normal documentation (default remains preformatted).
* | New option allowing processing using multiple threadsDimitri van Heesch2020-08-051-0/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Introduces new option NUM_PROC_THREADS. It specifies the number threads doxygen is allowed to use during processing. When set to 0 doxygen will based this on the number of cores available in the system. You can set it explicitly to a value larger than 0 to get more control over the balance between CPU load and processing speed. At this moment only the input processing can be done using multiple threads. I plan to extend this with more parallel processing in the future. Since this is still an experimental feature the default is set to 1, which efficively disables parallel processing. Please report any issues you encounter that appear when changing the default. Note that generating dot graphs in parallel is still controlled separately by the DOT_NUM_THREADS setting.
* | Added configuration options to better control the sqlite3 output.Dimitri van Heesch2020-07-301-5/+12
| | | | | | | | | | | | | | | | | | | | | | | | Still requires cmake -Duse_sqlite=YES to compile in support (and libsqlite3) New configuration options available: - GENERATE_SQLITE3 enable/disable SQLITE3 output - SQLITE3_OUTPUT configure directory where output is written to (default: sqlite3) - SQLITE3_RECREATE_DB controls if existing database file is overwritten (default: YES)
* | Prefer more inclusive languageGlenn Kasten2020-07-291-1/+1
| | | | | | | | | | | | | | Doxygen is used for some Android API documentation, hence: Update language to comply with Android’s inclusive language guidance. See https://source.android.com/setup/contribute/respectful-code for reference
* | Merge pull request #7869 from albert-github/feature/issue_7865Dimitri van Heesch2020-07-281-2/+5
|\ \ | | | | | | issue #7865 Update documentation of USE_PDFLATEX option