forked from jdiamond/Nustache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HISTORY.txt
58 lines (47 loc) · 2.25 KB
/
HISTORY.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
2013-08-22:
- Tests now include official Mustache specs and code was updated
so that they all pass.
- Getting specs to pass included adding ampersand escapes and custom
delimiters and many small whitespace fixes.
- Added option for throwing when keys reference undefined values
thanks to Mark deVilliers (mdevilliers).
- Nustache.Compilation project thanks to Jon Wingfield (jonwingfield).
2013-06-20:
- Support dictionaries that implement IDictionary<K, V>, but not
IDictionary thanks to Matthew Schaad (mschaad).
- Check for keys containing dots before splitting on dots. Reported
by joeyjbarrett.
- Allow whitespace inside markers like {{ #foo }} and {{ /foo }}.
2013-05-12:
- Allow spaces in template includes thanks to Tim Schmidt (taschmidt).
- Configurable value getters thanks to Mattias Rydengren (mrydengren).
- Simpler XML processing thanks to Bruce Lindsay (bruce-lindsay).
- Nustache.Core.dll is signed.
2012-04-29:
- Fixed RootContext not being honored when rendering partials
from Razor templates.
- Fixed whitespace not allowed in triple stashes.
- Use HttpUtility.HttpEncode in MVC since it does smarter encoding.
- Fixed null values not preventing looking up the data stack.
2012-03-06:
- New lines are stripped from lines that only contain markers.
- Added support for paths in variable references.
- Fixed dictionaries (deserialized JSON) not working.
- No more dependency on System.Web so can be used with the
Client Profile.
- MVC view engine now uses ViewData is the inital context and not
ViewData.Model like before. This makes it more like Razor and
is now possible because we can use paths to get values. This
may break some templates if you were implicitly getting values
form your model.
- When adding the NustacheViewEngine to your project, you can
set RootContext to NustacheViewEngineRootContext.Model to use
the Model instead of ViewData as your initial context.
- MVC view engine now supports masters and sections. See the
Nustache.Mvc3.Example project to see how.
- {{>foo}} now looks for partial views with the MVC view engine.
- The view engine now caches templates unless they've changed on disk.
2012-02-10:
- Removed old MVC projects and examples.
I can add them back if you really need them.
- First push to NuGet by me.