summaryrefslogtreecommitdiff
path: root/src/SimpleMustache.cc
AgeCommit message (Collapse)Author
2013-08-13Cleaning up the Handle API a bit.Nicolas "Pixel" Noble
2013-08-02Switching Handle's readU8() to be a Future, and using it in SimpleMustache.Nicolas "Pixel" Noble
2013-08-02Using SimpleContext in SimpleMustache's setTemplate, as it reads from a ↵Nicolas "Pixel" Noble
Handle using readU8. We'll switch readU8 to use a Future.
2012-04-06Small improvements on the SimpleMustache processor, in order to be able to ↵Pixel
make it const, and to construct template out of constant strings.
2011-12-04Reworked some things in the architecture, mainly exceptions and asserts.Pixel
-) Removed Assert() -) Added AAssert(), IAssert(), RAssert(), TAssert() and Failure() -) Reworked all asserts in the code, and added meaningful messages to them. -) Changed the way the startup code is generated; BALAU_STARTUP is no longer necessary.
2011-11-29Fixing Mustache's escaping (again).Pixel
2011-11-29Fixing a stupid bug in the escape() code of SimpleMustache.Pixel
2011-11-29Being a bit more laxist with Mustache's values, and accepting almost ↵Pixel
anything as a variable; also adding a checkTemplate() method to assert a few things onto a template after loading it.
2011-11-28Whoops: forgot to implement the escaping function.Pixel
2011-11-26Adding a few todo-like comments in the SimpleMustache code - not that I ↵Pixel
actually intend to implement them anyway...
2011-11-25Fixing a few bugs and warnings.Pixel
2011-11-25Adding a small documentation.Pixel
2011-11-25Making values other than bool always true.Pixel
2011-11-25Adding a simple 'Mustache' template processor in C++.Pixel