kpdecker
d8825b1961
this parameter tests
2012-07-30 21:12:03 -05:00
kpdecker
eb509a4b8b
Execute mocha test from npm test
2012-07-23 13:47:52 -05:00
kpdecker
09ac8ac24b
Make jshint happy(er)
2012-07-23 13:45:53 -05:00
kpdecker
adb8486e5f
Use suite rather than module for module decl
2012-07-23 13:44:45 -05:00
Yehuda Katz
efb1e25690
Update for change in TRR API
2012-07-12 08:15:10 -07:00
Yehuda Katz
46c04fa71e
Make deep @data trigger the data option
2012-07-05 23:05:55 -07:00
Yehuda Katz
72e05d623c
Add support for @data variables
2012-07-05 22:43:05 -07:00
tomhuda
0afc8b58d2
Clean up parser tests and AST printer
2012-05-28 19:06:26 -07:00
tomhuda
175c6fae0f
More cleanup
...
* Make block and inverse use the main helper path
* Eliminate separate inverse AST node
2012-05-28 17:00:41 -07:00
Yehuda Katz
8786a6c6e2
Start doing earlier work on helpers
2012-05-28 00:15:52 -07:00
Yehuda Katz
246325085f
Simple spec for isolation analysis
2012-05-26 22:17:31 -07:00
tomhuda
facefe8fed
Several improvements to compiled output:
...
* Eliminate legacy support for an options hash
that doubles as a function. This prevented us
from building the hash as a literal, and added
a bunch of code weight
* Create a new "stack literal" construct, that
allows an opcode to push a literal expression
onto the stack. This will not allocate a new
stack variable, and when popped, will simply
return the literal expression as a String.
2012-05-26 14:51:41 -07:00
Brian Palmer
bd9a84a0b7
properly handle amperstands when HTML escaping
...
escapeExpression, when given a string like ">", was simply returning
">", not escaping the amperstand. This is incorrect, and makes it
impossible to have Handlebars properly escape a
string like "Escaped, <b> looks like: <b>"
If the intention of the user is to not escape these characters, then
{{{}}} or {{&}} should be used
2012-02-29 11:25:51 -07:00
Yehuda Katz
730c2617af
Differentiate between lambdas in the context (which should have mustache semantics) and helpers (which have Handlebars helper semantics).
2011-12-31 13:51:54 -08:00
Yehuda Katz
757d5250dc
Rename "vm" to "runtime" for clarity
2011-12-27 18:15:44 -08:00
Yehuda Katz
c79c761460
Add support for escaping mustaches
2011-12-27 17:04:59 -08:00
Yehuda Katz
e474e56b80
data should be passed through to partials. closes #111 .
2011-12-27 15:57:08 -08:00
Yehuda Katz
69307d0e2b
Allow function parameters to #if. This was originally disallowed because it is decidedly not idiomatic Handlebars, which would prefer that you use helpers for these cases, not pollute your context objects with functions to call from your template, but enough people asked for it that I'll give in.
...
I will personally not be using this feature and still strongly recommend that people use helpers in this case.
2011-12-27 15:47:45 -08:00
Yehuda Katz
373d10edb1
Literal square-bracket path segments cannot have ] in them. TODO: Allow escaped path segments.
2011-12-27 01:21:53 -08:00
Yehuda Katz
bd0f74fbd9
Test that the hello world mustache example works
2011-12-27 00:43:30 -08:00
Yehuda Katz
e57e626480
Fix bug where inverse section was being passed to subsequent helpers
2011-12-27 00:30:46 -08:00
Peter Wagenet
43431d2a78
Added 'log' helper - See #97
2011-10-24 19:41:41 -07:00
Peter Wagenet
b36776f4c6
Better errors for 'equals' test
2011-10-24 19:12:54 -07:00
Alan Johnson
6b18873d23
Fixed errors occurring because of undefined properties on nested paths.
2011-09-02 10:56:37 -04:00
Alan Johnson
c1c455acc8
Reproduced undefined property error.
2011-09-02 10:47:05 -04:00
Alan Johnson
f2f1f5f9bd
Wrote a quick test for partials with literal paths.
2011-09-02 10:36:59 -04:00
Alan Johnson
7212e2b7d7
Got more complex literal expressions working.
2011-09-02 09:10:20 -04:00
Alan Johnson
fc84308cc9
Got simple literal expressions added into paths.
2011-09-02 09:04:41 -04:00
kpdecker
f53737ef23
knownHandlers and knownHandlersOnly compile options.
2011-07-31 21:00:44 -05:00
kpdecker
993c793565
Avoid eval when running in VM+Compiler mode
2011-07-30 16:55:26 -05:00
kpdecker
3af9de7407
Update partial testing for the various modes
2011-07-30 16:12:20 -05:00
kpdecker
d641dae5f1
Full context and compileWithPartials test helper
2011-07-30 16:02:11 -05:00
kpdecker
ccf32821df
Throw a handlebars exception when attempting to use template partials in VM mode.
2011-07-30 16:01:43 -05:00
kpdecker
8e23ce87d3
Use CompilerContext.compile for tests rather than Handlebars.compile.
...
This prevents false negatives on the partial tests.
2011-07-30 15:54:57 -05:00
kpdecker
aaec001931
Split the tests into compiler and vm tests
2011-07-30 15:26:21 -05:00
kpdecker
3d9e5070f5
Move mismatched block test from quint to parser tests.
2011-07-30 15:25:25 -05:00
kpdecker
5e611205ac
Create compiler base file.
2011-07-30 10:38:36 -05:00
kpdecker
8c49721c70
Move visitor into compiler subdir
2011-07-30 10:28:31 -05:00
kpdecker
2fc01ff73a
Move art into compiler dir
2011-07-30 10:25:30 -05:00
kpdecker
bba08ad95f
Move printer into compiler dir
2011-07-30 10:23:37 -05:00
kpdecker
034dafddac
Move parser file into compiler subdir
2011-07-30 10:14:59 -05:00
kpdecker
f2dccb753f
Break compiler and vm logic into separate files.
2011-07-30 10:11:13 -05:00
kpdecker
a927125909
Can access context variables masked by helpers by scoping with 'this.'
2011-07-29 20:53:47 -05:00
kpdecker
9062cac3f0
Add missing messages in equal tests
2011-07-29 20:45:17 -05:00
tomhuda
059a80661d
* Remove legacy support for inverse sections as additional parameters.
...
* Unify inverse and normal block helpers
* Make Handlebars.Exception inherit from JS Error
2011-07-07 23:09:33 -07:00
Alan Johnson
37e36bf137
Merge pull request #66 from rgrove/fix-empty-array-if
...
The "if" block helper shouldn't treat empty arrays as truthy
2011-06-27 03:15:50 -07:00
tomhuda
1482f1ae72
Add BOOLEAN support
2011-06-01 22:57:22 -07:00
tomhuda
0f78345d0c
Add support for INTEGER expressions
2011-06-01 22:33:48 -07:00
Yehuda Katz
f07f70ca42
Merge pull request #68 from rgrove/fix-escaping
...
Add ", ', and ` to the list of chars that need HTML escaping.
2011-05-25 17:05:54 -07:00
wycats
a4ca50533d
Add support for line-breaks in mustaches
2011-05-12 12:23:15 -07:00