aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_block.py
Commit message (Collapse)AuthorAgeFilesLines
* Use tox / zimportsMike Bayer2019-05-311-138/+217
| | | | Change-Id: Ia047c7052a6d242c2cf1c7a83981f1e38ea4d928
* 2.4-3.3 pass in placeMike Bayer2012-11-111-59/+59
|
* - first pass at running a py3k compatible base in py2k as well.Mike Bayer2012-11-111-7/+7
| | | | | having some weird unicode issues I can't debug; the meaning of str.encode() seems to be changing globally somehow
* - New tag: <%block>. A variant on <%def> thatMike Bayer2011-04-061-0/+569
evaluates its contents in-place. Can be named or anonymous, the named version is intended for inheritance layouts where any given section can be surrounded by the <%block> tag in order for it to become overrideable by inheriting templates, without the need to specify a top-level <%def> plus explicit call. Modified scoping and argument rules as well as a more strictly enforced usage scheme make it ideal for this purpose without at all replacing most other things that defs are still good for. Lots of new docs. [ticket:164]