Commit d23da511 by Rodrigo Bernardo Pimentel

Merge branch 'development' of git://github.com/defunkt/pystache into development

parents d5df7f15 368f0dfd
History History
======= =======
0.5.0 (TBD) 0.5.0 (2012-04-03)
----------- ------------------
This version represents a major rewrite and refactoring of the code base This version represents a major rewrite and refactoring of the code base
that also adds features and fixes many bugs. All functionality and nearly that also adds features and fixes many bugs. All functionality and nearly
all unit tests have been preserved. However, some backwards incompatible all unit tests have been preserved. However, some backwards incompatible
changes to the API have been made. changes to the API have been made.
Below is a selection of some of the changes (not exhaustive).
Highlights: Highlights:
* Pystache now passes all tests in version 1.0.3 of the `Mustache spec`_. [pvande] * Pystache now passes all tests in version 1.0.3 of the `Mustache spec`_. [pvande]
...@@ -21,43 +23,30 @@ Highlights: ...@@ -21,43 +23,30 @@ Highlights:
* Introduced separation of concerns and removed circular dependencies (e.g. * Introduced separation of concerns and removed circular dependencies (e.g.
between Template and View classes, cf. `issue #13`_). between Template and View classes, cf. `issue #13`_).
* Unicode now used consistently throughout the rendering process. * Unicode now used consistently throughout the rendering process.
* Expanded test coverage: nosetests now includes doctests and ~105 test cases * Expanded test coverage: nosetests now runs doctests and ~105 test cases
from the Mustache spec (for a total of ~315 unit tests up from 56). from the Mustache spec (increasing the number of tests from 56 to ~315).
* Added rudimentary benchmarking script. * Added a rudimentary benchmarking script to gauge performance while refactoring.
* Extensive documentation added (e.g. docstrings).
TODO: complete the list of key changes.
Features:
* Views and Renderers accept a custom template loader. Also, this loader Other changes:
can be a dictionary of partials. [cjerdonek]
* Added a command-line interface. [vrde, cjerdonek]
* Custom escape function can now be passed to Template constructor. [cjerdonek]
* Template class can now handle non-ascii characters in non-unicode strings.
Added default_encoding and decode_errors to Template constructor arguments.
[cjerdonek]
* Loader supports a decode_errors argument. [cjerdonek]
API changes: * Added a command-line interface. [vrde]
* The main rendering class now accepts a custom partial loader (e.g. a dictionary)
* Removed output_encoding options. [cjerdonek] and a custom escape function.
* Removed automatic use of markupsafe, if available. [cjerdonek] * Non-ascii characters in str strings are now supported while rendering.
* Added string encoding, file encoding, and errors options for decoding to unicode.
* Removed the output encoding option.
* Removed the use of markupsafe.
Bug fixes: Bug fixes:
* Context values no longer processed as template strings. [jakearchibald] * Context values no longer processed as template strings. [jakearchibald]
* Passing ``**kwargs`` to ``Template()`` modified the context. [cjerdonek] * Whitespace surrounding sections is no longer altered, per the spec. [heliodor]
* Passing ``**kwargs`` to ``Template()`` with no context raised an exception. [cjerdonek] * Zeroes now render correctly when using PyPy. [alex]
* Whitespace surrounding sections is no longer altered, in accordance with
the mustache spec. [heliodor]
* Fixed an issue that affected the rendering of zeroes when using certain
implementations of Python (i.e. PyPy). [alex]
* Extensionless template files could not be loaded. [cjerdonek]
* Multline comments now permitted. [fczuardi] * Multline comments now permitted. [fczuardi]
* Extensionless template files are now supported.
Misc: * Passing ``**kwargs`` to ``Template()`` no longer modifies the context.
* Passing ``**kwargs`` to ``Template()`` with no context no longer raises an exception.
* Added some docstrings. [kennethreitz]
0.4.1 (2012-03-25) 0.4.1 (2012-03-25)
------------------ ------------------
......
...@@ -85,7 +85,7 @@ Unicode Handling ...@@ -85,7 +85,7 @@ Unicode Handling
This section describes Pystache's handling of unicode (e.g. strings and This section describes Pystache's handling of unicode (e.g. strings and
encodings). encodings).
Internally, Pystache uses only unicode strings. For input, Pystache accepts Internally, Pystache uses `only unicode strings`_. For input, Pystache accepts
both ``unicode`` and ``str`` strings. For output, Pystache's template both ``unicode`` and ``str`` strings. For output, Pystache's template
rendering methods return only unicode. rendering methods return only unicode.
...@@ -173,6 +173,7 @@ Author ...@@ -173,6 +173,7 @@ Author
.. _Mustache spec: https://github.com/mustache/spec .. _Mustache spec: https://github.com/mustache/spec
.. _mustache(5): http://mustache.github.com/mustache.5.html .. _mustache(5): http://mustache.github.com/mustache.5.html
.. _nose: http://somethingaboutorange.com/mrl/projects/nose/0.11.1/testing.html .. _nose: http://somethingaboutorange.com/mrl/projects/nose/0.11.1/testing.html
.. _only unicode strings: http://docs.python.org/howto/unicode.html#tips-for-writing-unicode-aware-programs
.. _PyPI: http://pypi.python.org/pypi/pystache .. _PyPI: http://pypi.python.org/pypi/pystache
.. _Pystache: https://github.com/defunkt/pystache .. _Pystache: https://github.com/defunkt/pystache
.. _semantically versioned: http://semver.org .. _semantically versioned: http://semver.org
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment