summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* pod coverageJesse Luehrs2013-01-022-4/+23
|
* update caveatsJesse Luehrs2013-01-021-4/+0
|
* implement passing new context to partialsJesse Luehrs2013-01-022-27/+58
|
* fix .. in block helpersJesse Luehrs2013-01-022-9/+18
|
* depend on newer xslateJesse Luehrs2013-01-021-0/+1
|
* gfx doesn't want to support a render_string opcodeJesse Luehrs2013-01-022-5/+11
|
* find_file and suffix are now opcodesJesse Luehrs2013-01-022-11/+17
|
* simplify the logic for template suffixesJesse Luehrs2013-01-022-39/+13
| | | | | | | now, anything that doesn't contain a '.' will have the suffix appended unconditionally, rather than looking for both the suffixed and unsuffixed versions. this is more in line with how text::xslate typically works.
* move most of find_file into the compilerJesse Luehrs2013-01-022-8/+41
|
* simplifyJesse Luehrs2013-01-021-10/+12
|
* avoid calling find_file multiple timesJesse Luehrs2013-01-021-8/+20
|
* don't constant-fold render_stringJesse Luehrs2013-01-021-1/+3
|
* merge_hash is now an opcodeJesse Luehrs2013-01-022-5/+22
|
* reimplement new_vars_for in terms of merge_hashJesse Luehrs2013-01-022-28/+149
|
* turned render_string into an opcodeJesse Luehrs2013-01-022-11/+5
|
* reimplement run_code in terms of render_stringJesse Luehrs2013-01-022-11/+74
|
* is_code_ref can now be an opcode tooJesse Luehrs2013-01-022-7/+14
|
* this weaken is unnecessaryJesse Luehrs2012-10-151-2/+1
|
* simplifyJesse Luehrs2012-10-141-13/+6
|
* this doesn't need to be a function eitherJesse Luehrs2012-10-142-11/+53
|
* neither does make_hashJesse Luehrs2012-10-142-5/+11
|
* make_array doesn't need to be a functionJesse Luehrs2012-10-142-6/+12
|
* generate the opcodes for this directlyJesse Luehrs2012-10-141-1/+44
|
* pod coverageJesse Luehrs2012-10-082-0/+37
|
* remove the abstract hereJesse Luehrs2012-10-081-1/+0
|
* docsJesse Luehrs2012-10-081-0/+155
|
* make this a bit more explicitJesse Luehrs2012-10-082-1/+7
|
* this is already a built-in thingJesse Luehrs2012-10-082-5/+1
|
* check partial suffix at runtime, not compile timeJesse Luehrs2012-10-082-17/+4
|
* move more code into the compilerJesse Luehrs2012-10-082-143/+143
|
* simplifyJesse Luehrs2012-10-082-10/+21
|
* move more bits into the compilerJesse Luehrs2012-10-082-16/+41
|
* implement hash args for normal helpersJesse Luehrs2012-10-082-3/+10
|
* implement hash parameters for block helpersJesse Luehrs2012-10-083-2/+54
|
* make block helpers recognizable as helpersJesse Luehrs2012-10-082-8/+8
|
* move this earlierJesse Luehrs2012-10-051-10/+10
|
* and... didn't need these parts of that fileJesse Luehrs2012-10-051-8/+0
|
* whoops, forgot to add this file a while agoJesse Luehrs2012-10-051-0/+22
|
* rename a few thingsJesse Luehrs2012-10-052-6/+6
|
* move lambda checking for keys out of the parserJesse Luehrs2012-10-052-43/+64
|
* simplify the parsing logic significanly by redefining expressionJesse Luehrs2012-10-051-50/+25
| | | | | the handlebars language isn't a typical infix-style thing, so it makes sense that expressions will have differerent meanings here
* simplifyJesse Luehrs2012-10-051-8/+12
|
* restructure this to mirror expression() more closelyJesse Luehrs2012-10-051-1/+2
|
* this went away a while agoJesse Luehrs2012-10-051-3/+1
|
* since functions and helpers are different, drop this special caseJesse Luehrs2012-10-052-5/+14
|
* change back to defining helpers and functions separatelyJesse Luehrs2012-10-053-0/+37
| | | | | | helpers are different from functions because they implicitly receive the current context as the first argument, so they need to be declared differently. they work identically to functions in all other respects.
* why was i defining things there?Jesse Luehrs2012-10-051-23/+20
|
* remove debugging codeJesse Luehrs2012-10-051-1/+0
|
* hack to make normal helpers work for nowJesse Luehrs2012-10-051-2/+11
| | | | | | | | thinking about it some more, defining helpers separately from builtin functions is a better idea, because helpers have to automatically receive the context object, which makes them different from normal functions. right now, i'm just special-casing mark_raw to avoid passing the context object to it, but it needs to be more general than that
* special case {{{.}}} (not dealing with {{foo . bar}} in general)Jesse Luehrs2012-10-051-10/+16
|