aboutsummaryrefslogtreecommitdiffstats
path: root/tests/blogc
Commit message (Collapse)AuthorAgeFilesLines
* blogc: template parser refactoringRafael G. Martins2018-02-213-390/+390
| | | | mostly names and data structures.
* Allow lines starting with * or **baylej2017-10-251-6/+6
| | | | | | | These are emphasizing markups per the "Markdown standard". A line containing two '*' or '+' or '-' are not valid horizontal rules. See: https://daringfireball.net/projects/markdown/syntax#hr
* loader: added FILTER_REVERSERafael G. Martins2017-07-251-0/+47
|
* allow source config keys without valueRafael G. Martins2017-06-281-7/+4
|
* *: updated copyrightRafael G. Martins2017-02-256-6/+6
|
* content-parser: source-parser: rename TITLE to FIRST_HEADERRafael G. Martins2017-02-152-13/+13
|
* content-parser: source-parser: extract TITLE from content headerRafael G. Martins2017-02-142-106/+320
| | | | | | | | | | | this patch implements support to using the first header found in source file as the TITLE variable. please note that if the TITLE variable is defined on the source file's variable section it takes precedence. this patch changes the old behaviour and can break some users' websites. if you have some '{% ifdef TITLE %}' blocks in your template, they will evaluate to true if you don't defined TITLE manually, but have a header in your content.
* tests: use absolute path for binariesRafael G. Martins2017-01-021-14/+14
|
* blogc: added some "integration" testsRafael G. Martins2016-10-151-0/+379
|
* 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-095-5/+0
|
* *: moved error handling to src/common/Rafael G. Martins2016-09-036-357/+253
|
* *: s/sb_/bc_/gRafael G. Martins2016-09-034-567/+567
|
* *: big code reorganization.Rafael G. Martins2016-09-037-0/+6643
- source and tests are now splitted by target - utils lib is now called common still pending move error.c from blogc to common