summaryrefslogtreecommitdiff
path: root/pystache
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #161 from pombredanne/patch-1HEADmasterChris Jerdonek2014-09-301-1/+1
|\ | | | | Fixed typo in docstring
| * Fixed typo in docstringPhilippe Ombredanne2014-04-151-1/+1
| |
* | Bumping version number.Kevin Carrogan2014-05-091-1/+1
| |
* | Making test OS agnostic.Kevin Carrogan2014-05-091-2/+2
|/
* Allow tox to run from a downloaded sdist (i.e. without spec tests).Chris Jerdonek2012-11-032-17/+25
|
* Bump version to 0.5.3 in preparation for push to PyPI.Chris Jerdonek2012-11-031-1/+1
|
* Bump version to 0.5.3-rc prior to merge to master.Chris Jerdonek2012-10-201-1/+1
|
* Prevent test_pystache.py from expecting spec tests if spec test directory ↵Chris Jerdonek2012-10-201-2/+9
| | | | | | | not present. Prior to this commit, running test_pystache.py from a downloaded sdist has a test failure because the spec tests are not found.
* Tweak merged patch.Chris Jerdonek2012-10-201-9/+17
|
* Merge remote-tracking branch ↵Chris Jerdonek2012-10-202-2/+62
|\ | | | | | | | | | | 'BreakawayConsulting/issue-135-default-delimiters' into issue-135 This is the initial patch for issue #135 from @bennoleslie.
| * Improve patch based on pull request feedbackBen Leslie2012-09-191-18/+10
| | | | | | | | | | | | Replace 'config' with 'context'. Use assertRaises correctly.
| * Enable defaults.DELIMITERS to be monkey-patched by module users.Ben Leslie2012-09-182-2/+70
| | | | | | | | | | | | | | | | | | | | | | This updates the way in which default.DELIMITERS is used to enable simple monkey-patching should a user desire. Monkey-patching isn't the preferred approach however, it can at times be useful and it simple to support. Additionally, test cases are added to ensure certain defaults can be monkey-patched at run-time.
* | Address issue #130: allow string coercion to be customized.Chris Jerdonek2012-10-204-9/+116
| |
* | Rename variable name from "val" to "node".Chris Jerdonek2012-10-191-4/+4
| |
* | Rename variable for return value of RenderEngine.fetch_section_data().Chris Jerdonek2012-10-192-2/+6
| |
* | Adjust ParsedTemplate docstrings.Chris Jerdonek2012-10-171-4/+12
| |
* | Address issue #122: add Renderer.render_name().Chris Jerdonek2012-10-164-3/+25
| | | | | | | | | | This commit adds a Renderer.render_name() method that lets one render a template given its name.
* | Add TemplateSpec.template_path for issue #41.Chris Jerdonek2012-10-163-11/+27
| |
* | Reorder TemplateSpec attributes and add to docstring.Chris Jerdonek2012-10-161-12/+15
|/
* Add unit tests for Loader.load_file() and Loader.load_name().Chris Jerdonek2012-07-232-6/+19
|
* Adjust docstring for Locator constructor.Chris Jerdonek2012-07-231-3/+3
|
* Adjust code comment.Chris Jerdonek2012-07-231-1/+1
|
* Fix the Loader.load_file() and Loader.load_name() docstrings.Chris Jerdonek2012-07-231-4/+0
|
* Add a unit test for Locator.find_file().Chris Jerdonek2012-07-232-1/+12
|
* Adjust Locator.find_file() docstring and argument names.Chris Jerdonek2012-07-231-2/+14
|
* Merge pull request #127 from @xgecko into issue-127Chris Jerdonek2012-07-232-1/+26
|\ | | | | | | | | | | | | | | | | From: https://github.com/xgecko/pystache/commit/a111e91673bcc7c7ec765e6c92aa2395f7e5eafe This request adds support for loading and locating template files by file name rather than template name. Thanks @xgecko!
| * Added find_file function, and remove extension check logic from make_file_namexgecko2012-07-211-1/+8
| |
| * Added load_file functionxgecko2012-07-211-1/+19
| |
| * Condensed nested if statementsxgecko2012-07-201-3/+2
| |
| * Updated to not append template_extension if it is already there.xgecko2012-07-201-1/+2
| |
* | Add support for PyPy (issue #125).Chris Jerdonek2012-06-291-1/+11
| |
* | Bump version to v0.5.3-alpha.Chris Jerdonek2012-06-291-1/+1
| |
* | Merge branch 'master' into developmentChris Jerdonek2012-06-291-1/+1
|\ \ | |/
| * Bump version to 0.5.2 prior to push to PyPI.v0.5.2Chris Jerdonek2012-05-061-1/+1
| |
* | Add make_extra_tests() function.Chris Jerdonek2012-05-191-14/+20
| |
* | Simplify pystache.tests.main by using a closure instead of a class attribute.Chris Jerdonek2012-05-141-33/+50
| |
* | Completed `python setup.py prep` command to generate .rst from .md.Chris Jerdonek2012-05-061-1/+1
| |
* | Renderer.render() now accepts ParsedTemplate instances.Chris Jerdonek2012-05-063-30/+55
| |
* | Added a TODO.Chris Jerdonek2012-05-061-0/+4
| |
* | ParsedTemplate docstring udpates and removed RenderEngine.render_parsed().Chris Jerdonek2012-05-063-27/+12
| |
* | Simplified ParsedTemplate.__repr__().Chris Jerdonek2012-05-061-1/+1
| |
* | README tweaks and added a TODO.Chris Jerdonek2012-05-061-0/+1
| |
* | Documented parse().Chris Jerdonek2012-05-053-3/+4
| |
* | Added a TODO.Chris Jerdonek2012-05-051-0/+1
| |
* | Added pretty-printing to the nodes of the ParsedTemplate.Chris Jerdonek2012-05-051-8/+45
| |
* | Reduced the number of elements in the parse tree.Chris Jerdonek2012-05-051-5/+4
| |
* | Moved the default delimiters into pystache.defaults.Chris Jerdonek2012-05-053-10/+16
| |
* | Added parse() function and made parser classes private.Chris Jerdonek2012-05-052-18/+26
| |
* | Parser no longer requires a RenderEngine instance to parse.Chris Jerdonek2012-05-053-95/+93
| |
* | More progress on removing RenderEngine from Parser.Chris Jerdonek2012-05-052-42/+57
| |