You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
16 年之前
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. # mustache.js Changes
  2. ## 0.5.2-vcs
  3. * Fixed a scoping bug (thanks gjslick)
  4. * Added Mustache.format function (similar to String.format from C#)
  5. ## 0.5.1-vcs
  6. * Added Dot Notation Support
  7. ## 0.5.0-vcs
  8. * Added Compiled Template support
  9. * Correct Set Delimiter implementation
  10. * Implements & unescaping character
  11. * Multiline Comments
  12. * Syntactically Important Whitespace (Issues 25, 41, 48, and 67)
  13. * QUnit unit tests
  14. ## 0.3.0 (21-07-2010)
  15. * Improved whitespace handling.
  16. * Make IMPLICIT ITERATORS a first class feature.
  17. * Fix Rhino compat.
  18. * CommonJS packaging is no longer a special case.
  19. * DRY Rakefile.
  20. * Allow whitespace around tag names.
  21. * Fix partial scope.
  22. * Fix Comments.
  23. * Added inverted sections.
  24. * Avoid double encoding of entities.
  25. * Use sections to dereference subcontexts.
  26. * Added higher order sections.
  27. ## 0.2.3 (28-03-2010)
  28. * Better error message for missing partials.
  29. * Added more robust type detection.
  30. * Parse pragmas only once.
  31. * Throw exception when encountering an unknown pragma.
  32. * Ignore undefined partial contexts. Returns verbatim partials.
  33. * Added yui3 packaging.
  34. ## 0.2.2 (11-02-2010)
  35. * ctemplate compat: Partials are indicated by >, not <.
  36. * Add support for {{%PRAGMA}} to enable features.
  37. * Made array of strings an option. Enable with `{{%JSTACHE-ENABLE-STRING-ARRAYS}}`.
  38. * mustache compat: Don't barf on unknown variables.
  39. * Add `rake dojo` target to create a dojo package.
  40. * Add streaming api.
  41. * Rename JSTACHE-ENABLE-STRING-ARRAYS to IMPLICIT-ITERATOR.
  42. * Add support for pragma options.