summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* | Removed now unnecessary parse() arguments.Chris Jerdonek2012-05-051-6/+6
* | More parser simplifications.Chris Jerdonek2012-05-051-10/+7
* | Created _make_interpolation_node() and _make_section_node().Chris Jerdonek2012-05-051-10/+19
* | Reduced use of recursion in Parser.parse().Chris Jerdonek2012-05-051-5/+17
* | Reordered if block.Chris Jerdonek2012-05-051-3/+4
* | Work with ParsedTemplate instance instead of parse_tree list.Chris Jerdonek2012-05-052-9/+12
* | Refactoring parser: removed a local variable (index) from parse().Chris Jerdonek2012-05-051-6/+5
* | More parser refactoring: further simplified _handle_tag_type().Chris Jerdonek2012-05-051-27/+22
* | More parser refactoring: eliminated _parse_section().Chris Jerdonek2012-05-051-38/+7
* | Continued refactoring the parsing code: simplified _handle_tag_type().Chris Jerdonek2012-05-051-29/+32
* | Moved more code (partial-related code) from parser to renderengine.Chris Jerdonek2012-05-042-7/+13
* | Improved byte-string handling in Python 3.Chris Jerdonek2012-05-045-26/+68
* | Tweaks to renderengine.py.Chris Jerdonek2012-05-041-15/+15
* | Shared code between RenderEngine's _make_get_section() and _get_string_value().Chris Jerdonek2012-05-042-19/+31
* | Switched from using _parse() to _render() inside _make_get_section().Chris Jerdonek2012-05-041-4/+4
* | Fixed issue #118: "Handle lambda section values returning non-ascii, non-unic...Chris Jerdonek2012-05-043-0/+20
* | Refactored some of the parsing logic: delayed template slicing.Chris Jerdonek2012-05-042-9/+10
* | Merge branch 'master' into developmentChris Jerdonek2012-05-045-9/+24
|\ \ | |/
| * Merged branch 'hotfix-v0.5.2-rc.1-mixed-lambda-list' to master.Chris Jerdonek2012-05-045-9/+24
| |\
| | * Bumped version from 0.5.2-rc to 0.5.2-rc.1.Chris Jerdonek2012-05-042-2/+2
| | * Fixed unittest warnings with Python 3: assertEquals() is deprecated.Chris Jerdonek2012-05-041-5/+5
| | * Fixed an issue with list section values mixing lambdas and non-lambdas.Chris Jerdonek2012-05-042-2/+17
| |/
| * Merge branch 'development' into 'master': staging v0.5.2-rcChris Jerdonek2012-05-0325-220/+701
| |\
* | | Reordered the documentation in the Renderer.__init__() docstring.Chris Jerdonek2012-05-041-24/+23
* | | Added missing_tags attribute validation.Chris Jerdonek2012-05-042-1/+21
* | | Fixed a missing_tags unit test for Python 3.Chris Jerdonek2012-05-041-2/+12
* | | Merge branch 'issue-110-not-found-tags' into 'development':Chris Jerdonek2012-05-0410-129/+298
|\ \ \
| * | | Tweaked HISTORY update.Chris Jerdonek2012-05-041-1/+2
| * | | Updated HISTORY for missing tags strict support.Chris Jerdonek2012-05-041-0/+1
| * | | Finished implementing strict mode for missing tags.Chris Jerdonek2012-05-044-49/+108
| * | | Simplified Renderer._make_resolve_partial().Chris Jerdonek2012-05-041-29/+30
| * | | Added to Renderer class support for missing_tags (not finished yet).Chris Jerdonek2012-05-044-31/+79
| * | | RenderEngine constructor now accepts resolve_partial() instead of load_partia...Chris Jerdonek2012-05-044-57/+85
| * | | Context.get() now raises KeyNotFoundError instead of returning default value.Chris Jerdonek2012-05-043-30/+22
| * | | Getting "." from an empty context stack now raises a KeyNotFoundError.Chris Jerdonek2012-05-042-8/+45
| * | | Added RenderEngine.resolve_context().Chris Jerdonek2012-05-042-6/+8
| * | | Moved the partial-loading code from the parser module to the renderengine mod...Chris Jerdonek2012-05-042-8/+8
|/ / /
* | | Tweaked history note.Chris Jerdonek2012-05-041-2/+2
* | | Fixed part of issue #110: accessing from context a property raising an except...Chris Jerdonek2012-05-033-1/+34
| |/ |/|
* | Bump version from v0.5.1 to v0.5.2-rc prior to merge to master.Chris Jerdonek2012-05-033-4/+4
* | Added a TODO regarding changing name of context variable to stack.Chris Jerdonek2012-05-031-0/+1
* | Addressed issue #115: "Match spec expectation for partials not found"Chris Jerdonek2012-05-0313-27/+79
* | Addressed the TODO to combine the get() and _get_simple() docstrings.Chris Jerdonek2012-05-031-53/+45
* | Added a TODO.Chris Jerdonek2012-05-031-0/+1
* | Moved the definition of context hash and object to the module docstring.Chris Jerdonek2012-05-031-24/+23
* | Renamed value to result in ContextStack.get().Chris Jerdonek2012-05-021-5/+5
* | Replaced the context module's use of _is_callable() with Python's built-in ca...Chris Jerdonek2012-05-021-6/+3
* | Renamed item to context in the context module's _get_value().Chris Jerdonek2012-05-021-9/+8
* | Merge branch 'issue-99-dot-notation' into development:Chris Jerdonek2012-05-028-38/+250
|\ \
| * | Updated HISTORY file for dot notation support.Chris Jerdonek2012-05-021-3/+3