Jan Lehnardt
497be8d81f
update changes
16 years ago
Jan Lehnardt
5c08642838
Make IMPLICIT ITERATORS a first class feature.
Closes #39 .
16 years ago
Jan Lehnardt
87c7ff84bd
whitespacin’
16 years ago
Jan Lehnardt
88f2e7e200
open FaQ, answer dot notation question
16 years ago
Jan Lehnardt
0b10ab0db8
Regex: \w includes "_". Thanks Leeoniya.
16 years ago
Jan Lehnardt
e33d4f8bf8
whitespacin'
16 years ago
Jan Lehnardt
e3911963f3
JSLint hurt my feelings.
16 years ago
Jan Lehnardt
53ec2d559b
less cat
16 years ago
Jan Lehnardt
7be0692b2f
pedantry
16 years ago
Jan Lehnardt
2bab7be637
Less code per line, fix Rhino compat.
16 years ago
Jan Lehnardt
86ed681de7
more pedantry
16 years ago
Jan Lehnardt
c6fc49c783
Add package.json to CommonJS package (`rake commonjs`).
Use fancy regex to auto-fill the version number.
Closes #37 .
16 years ago
Jan Lehnardt
3abfafa553
Fix typo in comment. #pedantry
16 years ago
Jan Lehnardt
4466a47561
whoopsiedupecode
16 years ago
Jan Lehnardt
1f0ca2fe50
Add test case for recursive partial. If it weren't for complex.html
it could be neat and there'd be s/kids/children/ — Oh well.
16 years ago
Jan Lehnardt
1e7fce2e7a
Remove expensive merge() method. Context lookups for nested sections
and partials are now performed on the current context and the top-
level view object. This avoids a ton of copying and duplication of
view objects and contexts.
16 years ago
endor
dd19083d5f
tests for partial recursion
16 years ago
Jan Lehnardt
885501df7d
Add test case to close #11 . No bugfix necessary.
16 years ago
Jan Lehnardt
4e01d9faf6
update THANKS, CHANGES
16 years ago
Aaron Gibralter
53e9b2692b
Partials within list sections did not seem to be functioning
correctly. Since a list section pushes a sub-object of the
"view" into the "current" context, a partial should recognize
this altered context. The one-line change in mustache.js does
exactly this.
Closes #35 .
16 years ago
Aaron Gibralter
e25eeaebb8
Allow arbitrary whitespace within tags. Closes #34 .
16 years ago
Jan Lehnardt
595f3fbf35
Revert "Merge remote branch 'rbriank/master'"
This reverts commit c2f886602af6ff2d6790b33f87445fc2a5677e0e, reversing
changes made to 88d3d9cf32 .
16 years ago
Jan Lehnardt
73b463a30e
Revert "fix expected output"
This reverts commit f1f55138a4 .
16 years ago
Jan Lehnardt
f1f55138a4
fix expected output
16 years ago
Jan Lehnardt
c2f886602a
Merge remote branch 'rbriank/master'
* rbriank/master:
simple iterator adding \n bug
16 years ago
Jan Lehnardt
88d3d9cf32
fix rake commonjs part 2
16 years ago
Jan Lehnardt
90f93aa7e3
fix rake commonjs
16 years ago
Jan Lehnardt
a7464db373
remove lib, use rake commonjs for a commonjs package
16 years ago
Jan Lehnardt
f226c0b437
Merge remote branch 'jhs/master'
* jhs/master:
Output the "Done" message as before
Actually ignore comment tags; and correct the expected output in the test case
Refactor template-style builds into a common function
Execute commands properly. You can see what's happening, and errors halt the build
Build CommonJS just like any other target, using "pre" and "post" wrappers
16 years ago
Jason Smith
c5a114bf88
Reset the buffer only for new renderings, not e.g. partials
16 years ago
Jan Lehnardt
000f4823bb
update CHANGES, THANKS
16 years ago
Jason Smith
bc447d8722
Actually ignore comment tags; and correct the expected output in the test case
16 years ago
Jason Smith
0117a42532
Output the "Done" message as before
16 years ago
Jason Smith
d82a1174d7
Actually ignore comment tags; and correct the expected output in the test case
16 years ago
Jason Smith
01272005fe
Refactor template-style builds into a common function
16 years ago
Jason Smith
f54312e879
Execute commands properly. You can see what's happening, and errors halt the build
16 years ago
Jason Smith
43587531c8
Build CommonJS just like any other target, using "pre" and "post" wrappers
16 years ago
Jan Lehnardt
6e4bd7f86b
Clear buffer before rendering. Closes #26 .
16 years ago
Jan Lehnardt
328724ad43
whitespace
16 years ago
Alexander Lang
c12ba296ab
added testcase for issue #26
16 years ago
Jan Lehnardt
4eebb4ba4f
Merge branch 'master' of github.com:janl/mustache.js
* 'master' of github.com:janl/mustache.js:
allow using sections as context. Patch by dpree.
Conflicts:
CHANGES.md
README.md
mustache.js
16 years ago
Jan Lehnardt
a6de1a3bdd
add inverted sections. Closes #17 and #24 . Patch by defunkt.
16 years ago
Jan Lehnardt
a1d5fcddfa
less line noise
16 years ago
Jan Lehnardt
9f0c741c50
whitespace
16 years ago
Jan Lehnardt
78f2bd4e39
update
16 years ago
Jan Lehnardt
8df3bef014
don't doublt encode entities. Closes #19 . Patch by Leeoniya
16 years ago
Jan Lehnardt
2085b5f5a0
allow using sections as context. Patch by dpree.
16 years ago
Jan Lehnardt
38ca0cef68
allow using sections as context. Patch by dpree.
16 years ago
Chris Wanstrath
e2e8f16845
Higher Order Sections
If a section key returns a function, it will be called
and passed both the unrendered block of text and a renderer
convenience function.
Given this JS:
"name": "Tater",
"bolder": function() {
return function(text, render) {
return "<b>" + render(text) + '</b>'
}
}
And this template:
{{#bolder}}Hi {{name}}.{{/bolder}}
We'll get this output:
<b>Hi Tater.</b>
As you can see, we're pre-processing the text in the block.
This can be used to implement caching, filters (like syntax
highlighting), etc.
You can use `this.name` to access the attribute `name` from
your view.
16 years ago
Jan Lehnardt
b76120acb4
Merge remote branch 'defunkt/rake'
* defunkt/rake:
Add descriptions to rake tasks (`rake -T` to see all)
print => puts
16 years ago