summaryrefslogtreecommitdiff
path: root/pystache/template.py
Commit message (Expand)AuthorAgeFilesLines
* Added support for Python 2.4: issue #89 (wangtz) and issue #94 (jvantuyl).Chris Jerdonek2012-03-251-2/+6
* Merge branch 'development' of https://github.com/lambacck/pystache into devel...Carl Whittaker2011-05-311-3/+12
|\
| * Optionally support markupsafeChristopher Lambacher2011-04-041-3/+12
* | Merge branch 'master' into developmentCarl Whittaker2011-05-311-2/+5
|\ \ | |/ |/|
| * Inverted Sections For Empty ListYuest Wang2011-04-201-2/+2
| * adding support for implicit iteratorsMike O'Toole2011-03-081-3/+6
* | Made the modifiers registry a class attribute rather than a global.Zachary Voase2011-02-111-45/+54
* | Removing cruft.Carl Whittaker2011-01-271-3/+0
* | Adding exception handlerCarl Whittaker2011-01-271-0/+3
* | Adding support for context nested on any flavoured object.Carl Whittaker2011-01-271-2/+5
* | Removing cruft.Carl Whittaker2011-01-271-18/+0
* | Moving context logic into viewCarl Whittaker2011-01-271-22/+20
* | Fixed nested context in loops not being passed to partials.Carl Whittaker2011-01-181-11/+13
* | Fixed accessing mixed nested context objects. BOOM!Carl Whittaker2011-01-131-17/+22
* | Fixing regression on 0 values not being rendered.Carl Whittaker2011-01-131-2/+13
* | Adding support for nested contexts within View.Carl Whittaker2011-01-121-8/+8
* | Fixing views as attributes not being rendered before displayCarl Whittaker2011-01-121-8/+4
* | Adding support for template encoding and support for comment and delimeter tags.Carl Whittaker2011-01-121-3/+29
* | Adding template Loader classCarl Whittaker2011-01-121-0/+8
* | Adding support for callables and Negated values.Carl Whittaker2011-01-111-2/+9
* | Dictionaries and lists are now handled in sections.Carl Whittaker2011-01-111-1/+42
* | First test passing with {{ }}Carl Whittaker2011-01-111-114/+37
|/
* Use `isinstance(it, collections.Callable)` for callable checkChris Wanstrath2010-05-171-1/+2
* an object can have a __call__ attribute and not actually be callablePaul Bonser2010-05-151-1/+1
* add support for nested contexts as described in the "Non-False Values" sectio...Paul Bonser2010-05-151-0/+3
* get by key for dict-like objects, or try attribute access for other objectsPaul Bonser2010-05-151-3/+16
* Inverted sections.David Logie2010-05-041-2/+5
* Higher Order Sections.David Logie2010-05-041-1/+3
* Add {{& blah}} as an alias for {{{ blah }}}Chris Wanstrath2010-03-301-1/+2
* String conversions now use `unicode()`, are consistent. Fixes #5Chris Wanstrath2010-02-151-1/+1
* Don't render an empty string when a tag's value is 0.Eric Naeseth2010-02-091-1/+4
* Adding support for Unicode and non-ASCII-encoded bytestring output.Eric Naeseth2010-02-091-3/+6
* Bugfix: Methods returning False or None are not renderedChris Wanstrath2009-11-271-1/+1
* Be sure to cast value to a string for unescaped tags.Joshua Roesslein2009-11-171-1/+1
* Ensure we're dealing with strings, alwaysChris Wanstrath2009-11-131-1/+1
* add fancy @modifier decoratorChris Wanstrath2009-11-121-14/+23
* section and tag names can include aesthetic whitespaceChris Wanstrath2009-11-121-1/+3
* delimiter supportChris Wanstrath2009-11-121-6/+34
* implement partials, make test passChris Wanstrath2009-11-121-2/+13
* implement unescape tag, make escape tag actually escapeChris Wanstrath2009-11-121-2/+8
* e flo layeth the smack downethChris Wanstrath2009-11-111-1/+1
* slight tweaksChris Wanstrath2009-11-061-1/+1
* Add failing (but almost passing) ComplexView test. Fixes #2Chris Wanstrath2009-11-051-5/+3
* Merge remote branch 'ericflo/master'Chris Wanstrath2009-10-301-2/+2
|\
| * Assigning a default context argument actually creates a global, which I don'...Eric Florenzano2009-10-301-2/+2
* | whitespaceChris Wanstrath2009-10-301-3/+3
|/
* Flattened the render_sections loopEric Florenzano2009-10-291-12/+14
* String concatenation in Python is badEric Florenzano2009-10-291-3/+3
* Avoid code duplication by restructuring loops slightlyEric Florenzano2009-10-291-7/+10
* Get rid of vestigial regexesEric Florenzano2009-10-291-4/+0