aboutsummaryrefslogtreecommitdiffstats
path: root/tests/blogc/check_loader.c
Commit message (Collapse)AuthorAgeFilesLines
* tests: upgrade deprecated cmocka test runnerRafael G. Martins2020-11-051-24/+24
|
* blogc: fix post sorting when mixing posts before and after `Sun Sep 9 ↵Rafael G. Martins2020-10-131-4/+4
| | | | 01:46:40 AM UTC 2001`
* blogc: generate table of contents treeRafael G. Martins2020-09-111-3/+85
| | | | | | | | | | | | | this commit allows users to use the `{{ TOCTREE }}` variable in their templates, to get automatically generated table of contents for entries. The variable is binded to each entry, so it can be used in any block that runs in entry context, like `{% block entry %}`. There's a small performance penalty for this, because the table of contents is rendered for any entry, despite being used or not, and not generated on-demand. still missing documentation. tests are good enough.
* blogc: added FILTER_SORT, to sort posts by DATERafael G. Martins2019-04-281-16/+179
|
* *: update copyrightRafael G. Martins2019-01-151-1/+1
|
* *: update copyrightRafael G. Martins2018-10-141-1/+1
|
* blogc: template parser refactoringRafael G. Martins2018-02-211-1/+1
| | | | mostly names and data structures.
* loader: added FILTER_REVERSERafael G. Martins2017-07-251-0/+47
|
* *: updated copyrightRafael G. Martins2017-02-251-1/+1
|
* runserver: reimplemented http server without libeventRafael G. Martins2016-09-251-1/+2
| | | | | | | | | yeah, this patch implements a "complete" http server for static files. It is not the best code possible, and would be easily DDoS'able if used in production, as it spawns a thread for each request, without limiting. I'm sickish and this is the best code I can deliver now. At least it works! ;)
* blogc: common: moved "file" to commonRafael G. Martins2016-09-091-111/+111
|
* file: do not call fprintf directlyRafael G. Martins2016-09-091-22/+8
|
* *: centralize error handlingRafael G. Martins2016-09-091-1/+0
|
* *: moved error handling to src/common/Rafael G. Martins2016-09-031-17/+18
|
* *: s/sb_/bc_/gRafael G. Martins2016-09-031-272/+272
|
* *: big code reorganization.Rafael G. Martins2016-09-031-0/+771
- source and tests are now splitted by target - utils lib is now called common still pending move error.c from blogc to common