Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Adding partial htmlhelp support to template system | Dimitri van Heesch | 2016-06-02 | 1 | -19/+80 |
| | |||||
* | Added generating template files and reading templates from disk if present | Dimitri van Heesch | 2016-05-28 | 1 | -1/+26 |
| | |||||
* | Added support for encoding tag to the template engine used for HTML help indices | Dimitri van Heesch | 2016-05-28 | 1 | -13/+174 |
| | |||||
* | Disabled debug prints | Dimitri van Heesch | 2016-05-28 | 1 | -2/+2 |
| | |||||
* | Fixed a number of memory leaks in the template engine | Dimitri van Heesch | 2015-09-13 | 1 | -3/+39 |
| | |||||
* | Made several improvements to the performance of template engine | Dimitri van Heesch | 2015-09-13 | 1 | -228/+46 |
| | |||||
* | Template enhancements and various other small fixes | Dimitri van Heesch | 2015-09-08 | 1 | -5/+34 |
| | |||||
* | Avoid using Resource::data as string, as it is not null terminated. | Dimitri van Heesch | 2015-08-31 | 1 | -12/+9 |
| | |||||
* | Started with generating LaTeX output via the template engine | Dimitri van Heesch | 2015-08-27 | 1 | -48/+193 |
| | |||||
* | Add mathjax support to template & context. | Dimitri van Heesch | 2015-08-27 | 1 | -0/+20 |
| | |||||
* | Added javascript search engine data to the template context | Dimitri van Heesch | 2015-08-27 | 1 | -10/+32 |
| | |||||
* | Fixed various issues found by PVS-Studio. | Dimitri van Heesch | 2015-08-18 | 1 | -9/+6 |
| | |||||
* | Bump copyright year | Dimitri van Heesch | 2015-02-26 | 1 | -1/+1 |
| | |||||
* | Merge pull request #272 from albert-github/feature/bug_unused | Dimitri van Heesch | 2015-01-03 | 1 | -1/+0 |
|\ | | | | | Remove unused local and static global variables | ||||
| * | Remove unused local and static global variables | albert-github | 2014-12-27 | 1 | -1/+0 |
| | | | | | | | | Remove unused local and static global variables. Variables have been identified by Understand (version 758) from Scitools. | ||||
* | | Fixed a couple of cases where sharing string data could lead to corruption | Dimitri van Heesch | 2015-01-02 | 1 | -2/+2 |
|/ | | | | | Also made dangerous string access more visible by introducing rawData(). This replaces data() which will now return a constant string. | ||||
* | Added graphical hierarchy support to template engine | Dimitri van Heesch | 2014-12-25 | 1 | -4/+25 |
| | |||||
* | Fixed several Coverity warnings | Dimitri van Heesch | 2014-11-15 | 1 | -26/+44 |
| | |||||
* | Introduced template directory for template and resource files and resource ↵ | Dimitri van Heesch | 2014-11-13 | 1 | -47/+145 |
| | | | | compiler & manager | ||||
* | Fixed a number of issues (resource leaks, uninitialized members, etc) found ↵ | Dimitri van Heesch | 2014-08-31 | 1 | -6/+6 |
| | | | | by coverity | ||||
* | Bug 735499 - [PATCH] Fix potential modulo by zero in src/template.cpp | Dimitri van Heesch | 2014-08-30 | 1 | -1/+9 |
| | |||||
* | Template context support for CREATE_SUBDIRS | Dimitri van Heesch | 2014-08-02 | 1 | -0/+21 |
| | |||||
* | Added get filter, unified index properties | Dimitri van Heesch | 2014-08-02 | 1 | -0/+24 |
| | |||||
* | Added groupby filter and some more context info | Dimitri van Heesch | 2014-08-02 | 1 | -30/+98 |
| | |||||
* | Added lists for indices to template context | Dimitri van Heesch | 2014-08-02 | 1 | -1/+1 |
| | |||||
* | Addition of module data to context and alphaIndex filter | Dimitri van Heesch | 2014-08-02 | 1 | -2/+162 |
| | |||||
* | Minor fixes to the template context | Dimitri van Heesch | 2014-08-02 | 1 | -1/+0 |
| | |||||
* | changed append filter and added index and path attributes to node | Dimitri van Heesch | 2014-08-02 | 1 | -2/+57 |
| | |||||
* | Added flatten, listsort and paginate filters | Dimitri van Heesch | 2014-08-02 | 1 | -0/+182 |
| | |||||
* | Added last and first attributes to index tree node | Dimitri van Heesch | 2014-04-20 | 1 | -0/+7 |
| | |||||
* | Add index support to context | Dimitri van Heesch | 2014-03-23 | 1 | -13/+269 |
| | |||||
* | Added reference counting for all context objects | Dimitri van Heesch | 2014-03-11 | 1 | -43/+100 |
| | |||||
* | Extension specific filtering | Dimitri van Heesch | 2014-03-04 | 1 | -7/+27 |
| | |||||
* | Added support for range tag in the template language | Dimitri van Heesch | 2014-02-09 | 1 | -1/+173 |
| | |||||
* | Added support for elif to the template language | Dimitri van Heesch | 2014-02-08 | 1 | -14/+55 |
| | |||||
* | Added basic arithmetic operations to the template expressions, and made the ↵ | Dimitri van Heesch | 2014-02-08 | 1 | -167/+357 |
| | | | | expression lexer faster | ||||
* | Fixed potential crash caused by overloading the variadic warn function | Dimitri van Heesch | 2014-01-18 | 1 | -2/+2 |
| | |||||
* | Reduced and improved functionality of QList | Dimitri van Heesch | 2013-12-30 | 1 | -4/+4 |
| | | | | | | | | | - operations on current index and node (next(), prev(), last(), first()) have been removed. - access to internal nodes has been removed. - old QList has been renamed to QInternalList for use inside qtools only. - added type safe compare, new, and delete operations (compareValues(), newValue(), deleteValue()). - add compareValues also to QDict for consistency. - changed doxygen's implementation to comply with the new QList and QDict interface. | ||||
* | More work on the template and context mechanisms | Dimitri van Heesch | 2013-12-29 | 1 | -124/+264 |
| | |||||
* | Template and context enhancements | Dimitri van Heesch | 2013-12-23 | 1 | -34/+103 |
| | |||||
* | More template and context enhancements | Dimitri van Heesch | 2013-12-12 | 1 | -13/+11 |
| | |||||
* | More context and template additions | Dimitri van Heesch | 2013-11-29 | 1 | -8/+162 |
| | |||||
* | More template and context updates | Dimitri van Heesch | 2013-11-11 | 1 | -158/+376 |
| | |||||
* | Added rudimentary support for django like template system for output creation. | Dimitri van Heesch | 2013-10-21 | 1 | -0/+2968 |