Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make templated HTML output more similar to hardcoded output. | Dimitri van Heesch | 2021-05-20 | 1 | -0/+1 |
| | |||||
* | Template engine: allow listing list and struct variables as strings | Dimitri van Heesch | 2021-05-15 | 1 | -0/+37 |
| | | | | | For easier debugging one can do e.g. `{% msg %}value={{ variable }}{% endmsg %}` to list the value of a variable also when it is a list or struct. | ||||
* | Refactoring: remove implicit conversion from QCString to const char * | Dimitri van Heesch | 2021-04-22 | 1 | -40/+40 |
| | | | | | | | | | | | | | | | | | This commit changes the following in relation to string use - The implicit convert from 'QCString' to 'const char *' is removed - Strings parameters use 'const QCString &' as much as possible in favor over 'const char *' - 'if (s)' where s is a QCString has been replaced by 'if(!s.isEmpty())' - data() now always returns a valid C-string and not a 0-pointer. - when passing a string 's' to printf and related functions 'qPrint(s)' is used instead of 's.data()' - for empty string arguments 'QCString()' is used instead of '0' - The copy() operation has been removed - Where possible 'qstrcmp(a,b)==0' has been replaces by 'a==b' and 'qstrcmp(a,b)<0' has been replaced by 'a<b' - Parameters of string type that were default initialized with '= 0' are no initialized with '= QCString()' | ||||
* | Refactoring: cleanup unused qtools headers | Dimitri van Heesch | 2021-01-22 | 1 | -1/+0 |
| | |||||
* | Refactoring: modernize IncludeInfo list | Dimitri van Heesch | 2021-01-22 | 1 | -2/+5 |
| | |||||
* | Refactoring: modernize MemberList | Dimitri van Heesch | 2021-01-22 | 1 | -2/+2 |
| | |||||
* | Refactoring: replace MemberSDict by MemberLinkedRefMap | Dimitri van Heesch | 2021-01-04 | 1 | -4/+0 |
| | |||||
* | Refactoring: replace Doxygen::directories by Doxygen::dirLinkedMap | Dimitri van Heesch | 2021-01-01 | 1 | -4/+5 |
| | |||||
* | Refactoring: replace Doxygen::groupSDict by Doxygen::groupLinkedMap | Dimitri van Heesch | 2020-12-31 | 1 | -8/+12 |
| | |||||
* | Refactoring: replaced PageSDict by PageLinked*Map | Dimitri van Heesch | 2020-12-31 | 1 | -8/+10 |
| | |||||
* | Refactoring: change MemberGroupSDict to MemberGroupList | Dimitri van Heesch | 2020-12-30 | 1 | -7/+5 |
| | |||||
* | Refactoring: modernise MemberGroupList | Dimitri van Heesch | 2020-12-30 | 1 | -3/+3 |
| | |||||
* | Refactoring: Modernise client side part of searchindex | Dimitri van Heesch | 2020-12-29 | 1 | -18/+21 |
| | |||||
* | Refactoring: replace NamespaceSDict by NamespaceLinkedMap | Dimitri van Heesch | 2020-12-23 | 1 | -2/+2 |
| | |||||
* | Refactoring: replaced getNamespaceSDict() by getNamespaces() | Dimitri van Heesch | 2020-12-23 | 1 | -0/+2 |
| | |||||
* | Refactoring: replace ClassSDict by ClassLinkedMap/ClassLinkedRefMap | Dimitri van Heesch | 2020-12-19 | 1 | -2/+4 |
| | |||||
* | Refactoring: move ClassDefSet to the classdef header | Dimitri van Heesch | 2020-11-15 | 1 | -2/+0 |
| | |||||
* | Refactoring: remove isVisited/setVisited from context | Dimitri van Heesch | 2020-11-15 | 1 | -14/+19 |
| | |||||
* | Refactoring: modernize TooltipManager class and source reference lists | Dimitri van Heesch | 2020-10-20 | 1 | -0/+3 |
| | | | | | - Tooltips are now collected per file instead of globally - Source reference lists now use STL containers | ||||
* | Performance tweak: Pass BaseClassList by const reference | Dimitri van Heesch | 2020-10-17 | 1 | -4/+4 |
| | |||||
* | Refactoring: Modernize BaseClassList | Dimitri van Heesch | 2020-10-12 | 1 | -8/+5 |
| | |||||
* | Merge branch 'feature/change-DirList-container-to-std' of ↵ | Dimitri van Heesch | 2020-05-10 | 1 | -1/+1 |
|\ | | | | | | | https://github.com/dhebbeker/doxygen into dhebbeker-feature/change-DirList-container-to-std | ||||
| * | Include dirdef.h instead of forward declaration. | David Hebbeker | 2020-05-05 | 1 | -1/+1 |
| | | | | | | Forward declaration is not possible for an alias. | ||||
* | | Refactoring: migrate MemberNameInfoSDict to MemberNameInfoLinkedMap | Dimitri van Heesch | 2020-04-27 | 1 | -6/+3 |
| | | |||||
* | | Refactoring: Improve encapsulation of MemberInfo class | Dimitri van Heesch | 2020-04-27 | 1 | -3/+3 |
|/ | |||||
* | Replaced FileNameDict/FileNameList by FileNameLinkedMap | Dimitri van Heesch | 2020-04-06 | 1 | -2/+2 |
| | |||||
* | Enabled stricter compiler warnings and fixed all new warnings | Dimitri van Heesch | 2020-03-08 | 1 | -42/+42 |
| | |||||
* | Changed ArgumentList to be an STL container | Dimitri van Heesch | 2019-10-27 | 1 | -4/+4 |
| | |||||
* | Improved const correctness and added support for inline namespaces | Dimitri van Heesch | 2019-04-21 | 1 | -40/+40 |
| | |||||
* | Added generating template files and reading templates from disk if present | Dimitri van Heesch | 2016-05-28 | 1 | -0/+1 |
| | |||||
* | Fixed a number of memory leaks in the template engine | Dimitri van Heesch | 2015-09-13 | 1 | -1/+1 |
| | |||||
* | Template enhancements and various other small fixes | Dimitri van Heesch | 2015-09-08 | 1 | -8/+30 |
| | |||||
* | Added javascript search engine data to the template context | Dimitri van Heesch | 2015-08-27 | 1 | -1/+171 |
| | |||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Added graphical hierarchy support to template engine | Dimitri van Heesch | 2014-12-25 | 1 | -3/+27 |
| | |||||
* | Template context support for CREATE_SUBDIRS | Dimitri van Heesch | 2014-08-02 | 1 | -2/+2 |
| | |||||
* | Added member indexes to template context | Dimitri van Heesch | 2014-08-02 | 1 | -0/+57 |
| | |||||
* | Addition of module data to context and alphaIndex filter | Dimitri van Heesch | 2014-08-02 | 1 | -80/+32 |
| | |||||
* | Added mainpage to context and improved page tree | Dimitri van Heesch | 2014-08-02 | 1 | -2/+3 |
| | |||||
* | Added reference counting for all context objects | Dimitri van Heesch | 2014-03-11 | 1 | -192/+397 |
| | |||||
* | Added directory info to the context | Dimitri van Heesch | 2014-03-01 | 1 | -0/+18 |
| | |||||
* | Unified DirFileContext and NestingContext | Dimitri van Heesch | 2014-03-01 | 1 | -0/+6 |
| | |||||
* | Added dir tree nodes to the context | Dimitri van Heesch | 2014-03-01 | 1 | -2/+4 |
| | |||||
* | More context changes | Dimitri van Heesch | 2014-02-08 | 1 | -2/+4 |
| | |||||
* | More work on the template and context mechanisms | Dimitri van Heesch | 2013-12-29 | 1 | -1/+41 |
| | |||||
* | Template and context enhancements | Dimitri van Heesch | 2013-12-23 | 1 | -0/+52 |
| | |||||
* | Added more info to the context | Dimitri van Heesch | 2013-12-12 | 1 | -1/+45 |
| | |||||
* | More template and context enhancements | Dimitri van Heesch | 2013-12-12 | 1 | -0/+2 |
| | |||||
* | More context and template additions | Dimitri van Heesch | 2013-11-29 | 1 | -2/+38 |
| | |||||
* | More template and context updates | Dimitri van Heesch | 2013-11-11 | 1 | -0/+183 |
| |