Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| | * | | | | add config option WARN_IF_INCOMPLETE_DOC | James Wilcox | 2021-02-13 | 4 | -10/+30 | |
| | | |_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | |||||
| * | | | | Get preprocessor output without line numbers | albert-github | 2021-02-16 | 3 | -4/+7 | |
| |/ / / | | | | | | | | | | | | | | | | | | | | | For easier comparison of the original source with a doxygen preprocessed source the line numbers can be a bit of an obstacle. To remove the line numbers in the preprocessor output the option `NoLineno` has been added. (In case `Preprocessor` is not invoked, `NoLineno` has no effect). | |||||
| * | | | Merge pull request #8376 from whatacold/fix-using-namespace-callgraph | Dimitri van Heesch | 2021-02-12 | 1 | -101/+99 | |
| |\ \ \ | | | | | | | | | | | Fix no callgraph being generated if having multiple 'using namespace' directives. | |||||
| | * | | | code.l: replace printf with DBG_CTX for easily toggling it. | Guangwang Huang | 2021-02-09 | 1 | -97/+97 | |
| | | | | | ||||||
| | * | | | issue #8011: No callgraph if having more than one 'using namespace's. | Guangwang Huang | 2021-02-09 | 1 | -4/+2 | |
| | | | | | ||||||
* | | | | | Adding support for lex files | albert-github | 2021-02-18 | 14 | -270/+397 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | - Correct handling of C comment start and end tokens as well as Cpp comment start in rules. These tokes can give "Reached end of file while still inside a (nested) comment..." - Correct other warnings in respect to lex files | |||||
* | | | | | Adding support for lex files | albert-github | 2021-02-12 | 17 | -142/+2453 | |
|/ / / / | | | | | | | | | | | | | | | | | | | | | 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 #7772: Regression - Class list missing in Group page [1.8.16 -> 1.8.17] | Dimitri van Heesch | 2021-02-09 | 1 | -3/+4 | |
|/ / / | ||||||
* | | | Regression: invalid LaTeX output for file index | Dimitri van Heesch | 2021-02-08 | 1 | -2/+4 | |
| | | | | | | | | | | | | | | | - found when running tests with TEST_FLAGS="--pdf" - due to an empty list when using FULL_PATH_NAMES = YES | |||||
* | | | Merge branch 'refactor_constexp' | Dimitri van Heesch | 2021-02-06 | 8 | -92/+77 | |
|\ \ \ | ||||||
| * | | | Refactoring: replace QCString with std::string in constexp | Dimitri van Heesch | 2021-02-06 | 8 | -92/+77 | |
| | | | | ||||||
* | | | | Fixed missing include for util.cpp when building for Windows | Dimitri van Heesch | 2021-02-06 | 1 | -0/+1 | |
|/ / / | ||||||
* | | | Refactoring: replace/remove the use of QDateTime | Dimitri van Heesch | 2021-02-06 | 1 | -28/+23 | |
| | | | ||||||
* | | | Refactoring: Move xml parser to a separate directory | Dimitri van Heesch | 2021-02-06 | 5 | -564/+7 | |
| | | | ||||||
* | | | Refactoring: qtools cleanup + remove QDateTime use from rtfgen.cpp | Dimitri van Heesch | 2021-02-05 | 3 | -6/+9 | |
| | | | ||||||
* | | | Fixed a couple of issues found by running Coverity | Dimitri van Heesch | 2021-02-05 | 4 | -6/+9 | |
| | | | ||||||
* | | | issue #8370: Doxygen 1.9.1 confused by C++ using/typedef declaration | Dimitri van Heesch | 2021-02-05 | 1 | -4/+2 | |
| | | | ||||||
* | | | issue #8371: @defgroup contained in the markdown mainpage.md are not ↵ | Dimitri van Heesch | 2021-02-04 | 2 | -3/+3 | |
|/ / | | | | | | | including the @ingroup marked classes in the generated documentation. | |||||
* | | Regression: Fixed compilation issue in sqlite3gen after merging PR #8359 | Dimitri van Heesch | 2021-01-28 | 1 | -1/+1 | |
| | | ||||||
* | | Regression: fixed crash due to uninitialized pointer in ↵ | Dimitri van Heesch | 2021-01-28 | 1 | -14/+10 | |
| | | | | | | | | dotgroupcollaboration.cpp | |||||
* | | Merge pull request #8356 from DuyDang007/patch-1 | Dimitri van Heesch | 2021-01-28 | 1 | -2/+2 | |
|\ \ | | | | | | | issue #8160 Use ^^ instead of \n in ALIASES documentation | |||||
| * | | issue #8160 Use ^^ instead of \n in ALIASES ... | DuyDang | 2021-01-26 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | document Fix the document. | |||||
* | | | Merge pull request #8359 from albert-github/feature/issue_8357 | Dimitri van Heesch | 2021-01-28 | 6 | -9/+10 | |
|\ \ \ | | | | | | | | | issue #8357 XML output does not include cross-references in code-fragments | |||||
| * | | | issue #8357 XML output does not include cross-references in code-fragments | albert-github | 2021-01-27 | 6 | -9/+10 | |
| |/ / | | | | | | | | | | | | | | | | | | | In case of explicit code samples the language was not specified for the code and the code was parsed verbatim. Same was valid for code in the Docbook output. The LaTeX version has been taken as reference for the implementation. | |||||
* | | | Extension during mapping not correctly replaced. | albert-github | 2021-01-28 | 1 | -1/+1 | |
|/ / | | | | | | | | | When searching whether the extension is already in the list of mapped extensions the input extension is used but when inserting the eventually corrected extension (extName) is used. In all cases the inserted extension contains a dot (`.`) , but for the input extension this is not necessarily the case. This can cause problems when searching for an extension as the search will always search wit a dot and thus find the first (is old) value. | |||||
* | | Merge branch 'master' of github.com:doxygen/doxygen | Dimitri van Heesch | 2021-01-25 | 1 | -1/+1 | |
|\ \ | ||||||
| * \ | Merge pull request #8353 from albert-github/feature/bug_spel_htmlattrib | Dimitri van Heesch | 2021-01-23 | 1 | -1/+1 | |
| |\ \ | | | | | | | | | Spelling correction | |||||
| | * | | Spelling correction | albert-github | 2021-01-23 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | Some spelling corrections. | |||||
* | | | | Regression: fix incorrect warning regarding 'unable to resolve link' | Dimitri van Heesch | 2021-01-25 | 1 | -1/+1 | |
|/ / / | ||||||
* | | | Regression. Pages appeared in the wrong order in the menu bar | Dimitri van Heesch | 2021-01-23 | 1 | -1/+1 | |
| | | | | | | | | | | | | - prepend flag was interpreted wrongly | |||||
* | | | Regression: fixed potential crash in ftvhelp.cpp | Dimitri van Heesch | 2021-01-23 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | - Found while running doxygen on the gmic project - Cause: vector.back() was called on an empty vector | |||||
* | | | Regression: fixed potential crash in docparser.cpp | Dimitri van Heesch | 2021-01-23 | 1 | -1/+1 | |
|/ / | | | | | | | | | - Found when running doxygen on the reportlab project - Cause: top() was called on an empty stack. | |||||
* | | Fix size_t related compiler errors & warnings for win64 | Dimitri van Heesch | 2021-01-22 | 8 | -57/+54 | |
| | | ||||||
* | | Refactoring: cleanup unused qtools headers | Dimitri van Heesch | 2021-01-22 | 23 | -109/+70 | |
| | | ||||||
* | | Refactoring: template.cpp (part 4) | Dimitri van Heesch | 2021-01-22 | 1 | -77/+47 | |
| | | ||||||
* | | Refactoring: template.cpp (part 3) | Dimitri van Heesch | 2021-01-22 | 1 | -130/+108 | |
| | | ||||||
* | | Refactoring: template.cpp (part 2) | Dimitri van Heesch | 2021-01-22 | 1 | -59/+64 | |
| | | ||||||
* | | Refactoring: template.cpp (part 1) | Dimitri van Heesch | 2021-01-22 | 1 | -154/+115 | |
| | | ||||||
* | | Refactoring: modernized context.cpp | Dimitri van Heesch | 2021-01-22 | 1 | -17/+16 | |
| | | ||||||
* | | Refactoring: fix for potentially uninitialized variables | Dimitri van Heesch | 2021-01-22 | 1 | -6/+6 | |
| | | ||||||
* | | Refactoring: modernize vhdldocgen | Dimitri van Heesch | 2021-01-22 | 2 | -300/+244 | |
| | | ||||||
* | | Refactoring: modernize PlantumlManager | Dimitri van Heesch | 2021-01-22 | 8 | -137/+79 | |
| | | ||||||
* | | Refactoring: modernize Statistics & time keeping | Dimitri van Heesch | 2021-01-22 | 5 | -46/+34 | |
| | | ||||||
* | | Refactoring: modernize FTVHelp | Dimitri van Heesch | 2021-01-22 | 2 | -77/+65 | |
| | | ||||||
* | | Refactoring: modernize condStack | Dimitri van Heesch | 2021-01-22 | 1 | -12/+13 | |
| | | ||||||
* | | Refactoring: modernize commentStack | Dimitri van Heesch | 2021-01-22 | 1 | -25/+30 | |
| | | ||||||
* | | Refactoring: modernize g_lexerStack | Dimitri van Heesch | 2021-01-22 | 1 | -13/+10 | |
| | | ||||||
* | | Refactoring: modernizing PerlModOutput::m_saved | Dimitri van Heesch | 2021-01-22 | 1 | -3/+4 | |
| | | ||||||
* | | Refactoring: replace QList<CommentInPrepass> by std::vector | Dimitri van Heesch | 2021-01-22 | 1 | -153/+152 | |
| | | ||||||
* | | Refactoring: modernize LatexDocVisitor::m_tableStateStack | Dimitri van Heesch | 2021-01-22 | 2 | -58/+45 | |
| | |