Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | *: fixed includes | Rafael G. Martins | 2016-07-07 | 1 | -6/+2 |
| | | | | | this refactoring was done with the help of the 'include-what-you-use' program. if this breaks the build for you, please report! | ||||
* | renderer: utils: fixed memory bugs found by clang static analyzer | Rafael G. Martins | 2016-07-05 | 1 | -3/+5 |
| | |||||
* | template-parser: renderer: implemented 'else' support in templates | Rafael G. Martins | 2016-07-03 | 1 | -2/+47 |
| | | | | | | | | | yeah, this is stupid. after more than 320 commits and 26 releases, we finally support the 'else' statement in the template engine. I don't know if I'm dumb or what, but it took me that long to find a "simple" solution to this basic issue. yep, no more `{% ifdef FOO %}...{% endif %}{% ifndef FOO %}...{% endif %}` blocks. but seriously, who cares?! :/ | ||||
* | renderer: added support to truncate variables. | Rafael G. Martins | 2016-05-30 | 1 | -8/+54 |
| | | | | this commit also documents variable formatters properly. | ||||
* | remove squareball for good | Rafael G. Martins | 2016-04-27 | 1 | -1/+1 |
| | |||||
* | Revert "*: use squareball error infrastructure" | Rafael G. Martins | 2016-04-27 | 1 | -2/+2 |
| | | | | This reverts commit a2b3551dfb9460470bd79f5648bf597c517c40d4. | ||||
* | *: use squareball error infrastructure | Rafael G. Martins | 2016-03-13 | 1 | -2/+2 |
| | |||||
* | build: replace src/utils with squareball | Rafael G. Martins | 2016-02-26 | 1 | -34/+34 |
| | |||||
* | renderer: fix bug when 'if' evals to false after 'if' evals to true | Rafael G. Martins | 2016-01-25 | 1 | -5/+5 |
| | |||||
* | fixed copyright | Rafael G. Martins | 2016-01-08 | 1 | -1/+1 |
| | |||||
* | renderer: handle FOREACH_ITEM as a normal variable | Rafael G. Martins | 2016-01-08 | 1 | -9/+13 |
| | |||||
* | renderer: foreach variables should be splitted in spaces rather than commas | Rafael G. Martins | 2015-12-29 | 1 | -4/+8 |
| | |||||
* | man: renderer: template-parser: added foreach iterator support | Rafael G. Martins | 2015-12-29 | 1 | -0/+71 |
| | |||||
* | Revert "build: removing src/utils and replacing with squareball" | Rafael G. Martins | 2015-12-23 | 1 | -23/+23 |
| | | | | This reverts commit 950e6c9148eca244a89d18a21d4ae4e5c3d1c646. | ||||
* | build: removing src/utils and replacing with squareball | Rafael G. Martins | 2015-12-23 | 1 | -23/+23 |
| | | | | | squareball is a new general purpose library for C99, based on the code removed from src/utils | ||||
* | renderer: improved support for comparision between vars | Rafael G. Martins | 2015-10-28 | 1 | -59/+55 |
| | |||||
* | Allow {% if VALUE1 == VALUE2 %}, with two defines | Palmer Dabbelt | 2015-10-26 | 1 | -2/+20 |
| | | | | | | | | | | | | | | | I was surprised to see that blogc doesn't support testing for equality between two defined values, it just supports comparison between a variable and a constant string. I want to be able to compare two variables so I can build the same source with different "-D" argument on the command line to produce different outputs. This patch adds support for this pattern. I changed the parser to include the '"' at the beginning and end of a string, which allows the renderer to determine if the user passed in a string or a variable name. This is a bit hacky and causes some of the tests to fail -- these tests look at the string values coming out of the parser. I updated the tests to match the new behavior. | ||||
* | datetime-parser: improve error handling | Rafael G. Martins | 2015-10-24 | 1 | -21/+9 |
| | |||||
* | renderer: accept empty list of files with -l | Rafael G. Martins | 2015-10-07 | 1 | -1/+11 |
| | |||||
* | fixed copyright | Rafael G. Martins | 2015-05-25 | 1 | -1/+1 |
| | |||||
* | renderer: implemented if statements | Rafael G. Martins | 2015-05-18 | 1 | -8/+34 |
| | |||||
* | template-parser: if -> ifdef, if not -> ifndef | Rafael G. Martins | 2015-05-17 | 1 | -4/+4 |
| | |||||
* | added global variables with date/filename on first and last post | Rafael G. Martins | 2015-05-09 | 1 | -8/+28 |
| | |||||
* | renderer: respect local scope | Rafael G. Martins | 2015-05-08 | 1 | -2/+7 |
| | |||||
* | implemented datetime parsing/formatting | Rafael G. Martins | 2015-04-28 | 1 | -18/+73 |
| | |||||
* | added global variable support | Rafael G. Martins | 2015-04-27 | 1 | -31/+49 |
| | |||||
* | template parser: added "if not" support | Rafael G. Martins | 2015-04-23 | 1 | -2/+12 |
| | |||||
* | refactored blocks | Rafael G. Martins | 2015-04-21 | 1 | -14/+12 |
| | | | | | | | | | - changed block names: - single_source -> entry - multiple_sources -> listing - multiple_sources_once -> listing_once - added -t cli option, to build listing pages, instead of guess it from the number of source files provided. | ||||
* | remove specific type used to store sources | Rafael G. Martins | 2015-04-19 | 1 | -3/+3 |
| | |||||
* | added renderer, without tests | Rafael G. Martins | 2015-04-19 | 1 | -0/+145 |