summaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Update doxygen copyright (year)Release_1_9_1Dimitri van Heesch2021-01-081-1/+1
|
* Fix coverity dead-code warningDimitri van Heesch2021-01-081-1/+1
|
* Slightly reworked the codeDimitri van Heesch2021-01-081-4/+2
|
* Merge branch 'feature/issue_8311' of ↵Dimitri van Heesch2021-01-081-0/+4
|\ | | | | | | https://github.com/albert-github/doxygen into albert-github-feature/issue_8311
| * issue #8311 Markdown table: double-quote ruins the outputalbert-github2021-01-071-0/+4
| | | | | | | | In case of an artificial line break and the string starting with a `"` reject the rule, so lonely `"` are handled properly.
* | Add valign attribute of table cells to xml output.Jan Theegarten2021-01-071-0/+5
| |
* | Adapt formattingJan Theegarten2021-01-071-3/+3
| |
* | Add width attribute of tables and table cells to xml output.Jan Theegarten2021-01-071-2/+16
| |
* | Implement alt="" for images in xml.Jan Theegarten2021-01-071-2/+6
| |
* | Add location to xml representation of pages.Jan Theegarten2021-01-061-0/+3
|\ \ | |/ |/|
| * Add location to xml representation of pages.Jan Theegarten2020-03-251-0/+3
| |
* | Various fixes based on coverity scan resultsDimitri van Heesch2021-01-0510-181/+215
| |
* | Merge branch 'master' of github.com:doxygen/doxygenDimitri van Heesch2021-01-053-5/+4
|\ \
| * \ Merge pull request #8303 from albert-github/feature/bug_util_warnDimitri van Heesch2021-01-051-1/+1
| |\ \ | | | | | | | | Compilation warning in util.cpp
| | * | Compilation warning in util.cppalbert-github2021-01-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When compiling util.cpp we get (on Windows 64-bit) the warning: ``` util.cpp(1075): warning C4267: 'argument': conversion from 'size_t' to 'int', possible loss of data ``` making it conform other calls.
| * | | Incorrect entries on treeviewalbert-github2021-01-051-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When having e.g. markdown files like: ``` 0.3.1.md 0.3.2.md ``` we get in the treeview twice the item "0" instead of the, more, expected "0.3.1" and "0.3.2". This is due to the fact that the filename is seen as `0` and the extension `.3.1.md` and `.3.2.md` instead of filename `0.3.1` and `0.3.2` and extension in both cases `.md`. The problem was found by Fossies in the Buildbot project.
| * | | Merge pull request #8306 from dhebbeker/feature/remove-check-of-isParentOfDimitri van Heesch2021-01-051-3/+2
| |\ \ \ | | | | | | | | | | Optimize: usedDir can not be parent of dd if they have the same parent.
| | * | | Optimize: usedDir can not be parent of dd if they have the same parent.David Hebbeker2021-01-021-3/+2
| | | | |
* | | | | issue #8296: LaTeX Error: File ... not found (for caffee project)Dimitri van Heesch2021-01-052-11/+3
|/ / / /
* | | | Refactoring: avoid copying MemberLists by not embedding them directlyDimitri van Heesch2021-01-049-112/+113
| | | |
* | | | issue #8304: compilation failureDimitri van Heesch2021-01-041-3/+3
| | | |
* | | | Revert "Refactoring: Embed MemberGroup objects directly in their container"Dimitri van Heesch2021-01-0411-126/+120
| | | | | | | | | | | | | | | | This reverts commit d37c654efbd5bb4ea19e1997d1daccb0b01de8b3.
* | | | Refactoring: Embed MemberGroup objects directly in their containerDimitri van Heesch2021-01-0411-120/+126
| | | |
* | | | Refactoring: modernize getMemberLists()Dimitri van Heesch2021-01-0415-358/+195
| | | |
* | | | Refactoring: replace MemberSDict by MemberLinkedRefMapDimitri van Heesch2021-01-0415-120/+49
| | | |
* | | | issue #8300: File naming changed in Doxygen 1.9.0Dimitri van Heesch2021-01-041-1/+12
| |/ / |/| |
* | | Compilation warning in groupdefalbert-github2021-01-031-1/+1
| | | | | | | | | | | | | | | | | | | | | When compiling groupdef.cpp we get (on Windows) the warning: ``` groupdef.cpp(1049): warning C4804: '>': unsafe use of type 'bool' in operation ```
* | | Refactoring: moderize Doxygen::dirRelationsDimitri van Heesch2021-01-025-13/+11
| | |
* | | Refactoring: remove unused DirSDict classDimitri van Heesch2021-01-022-16/+0
| | |
* | | Refactoring: change type of m_cacheDimitri van Heesch2021-01-021-18/+17
| | | | | | | | | | | | from SDict<FilterCacheItem> to std::unordered_map<std::string,FilterCacheItem>
* | | Refactoring: remove unused IndexFieldSDict classDimitri van Heesch2021-01-021-13/+0
| | |
* | | Refactoring: replace type of pack variable from SDict<QCString> to StringSetDimitri van Heesch2021-01-021-5/+3
| | |
* | | Refactoring: remove unused GenericsSDict classDimitri van Heesch2021-01-023-73/+0
| | |
* | | Refactoring: remove unused ClassListDimitri van Heesch2021-01-025-54/+0
| | |
* | | Refactoring: change type of vhdlSummaryTitles from SDict<QCString> to StringSetDimitri van Heesch2021-01-021-10/+5
| | |
* | | Corrected the location of [in,out] for the parameter documentationDimitri van Heesch2021-01-021-4/+4
| | |
* | | Merge branch 'feature/move_dependees_into_parent_directory' of ↵Dimitri van Heesch2021-01-021-31/+51
|\ \ \ | |/ / | | | | | | https://github.com/dhebbeker/doxygen into dhebbeker-feature/move_dependees_into_parent_directory
| * | Add documentation of parameters of new function.David Hebbeker2021-01-011-3/+3
| | |
| * | Rename variable.David Hebbeker2021-01-011-6/+6
| | |
| * | Draw sibling directories in parent directory.David Hebbeker2021-01-011-3/+25
| | |
| * | Outsource common code to draw directories.David Hebbeker2021-01-011-28/+26
| | |
* | | issue #8296: LaTeX Error: File ... not found.Dimitri van Heesch2021-01-022-1/+14
| | |
* | | Merge pull request #8298 from albert-github/feature/issue_8297Dimitri van Heesch2021-01-021-1/+1
|\ \ \ | | | | | | | | issue #8297 fails to parse list of INPUT files
| * | | issue #8297 fails to parse list of INPUT filesalbert-github2021-01-021-1/+1
| | | | | | | | | | | | | | | | The rule also caught a `\n` at the second position.
* | | | issue #8295: segmentation faultDimitri van Heesch2021-01-022-6/+10
|/ / /
* | | Refactoring: replace ExampleSDict by ExampleListDimitri van Heesch2021-01-018-106/+58
|/ /
* | Fixed compilation issue when use_libclang was disabledDimitri van Heesch2021-01-011-1/+1
| |
* | Renamed CLANG_INCLUDE_INPUT_PATHS to CLANG_ADD_INC_PATHSDimitri van Heesch2021-01-012-3/+3
| | | | | | | | The name is too long making the generated config file look ugly.
* | Refactoring: modernise Doxygen::clangUsrMapDimitri van Heesch2021-01-016-27/+31
| |
* | Refactoring: remove unused Doxygen::htmlDirMapDimitri van Heesch2021-01-013-43/+2
| |