| Commit message (Expand) | Author | Age | Files | Lines |
| * | - The range of Python identifiers that | Mike Bayer | 2010-11-10 | 2 | -0/+130 |
| * | - New flag on Template, TemplateLookup - | Mike Bayer | 2010-11-09 | 2 | -2/+57 |
| * | - adjust the new multiline ${} in tag feature to allow trailing whitespace, | Mike Bayer | 2010-09-02 | 1 | -1/+6 |
| * | - ${} expressions embedded in tags, | Mike Bayer | 2010-08-11 | 1 | -3/+31 |
| * | petite | Mike Bayer | 2010-07-13 | 13 | -64/+64 |
| * | - The <%namespace> tag allows expressions | Mike Bayer | 2010-06-30 | 2 | -2/+26 |
| * | - Now using MarkupSafe for HTML escaping, | Mike Bayer | 2010-06-22 | 2 | -9/+33 |
| * | py3k test fixes | Mike Bayer | 2010-06-22 | 2 | -3/+8 |
| * | - Fixed call to "unicode.strip" in | Mike Bayer | 2010-06-22 | 1 | -4/+16 |
| * | - Added conditional to RichTraceback | Mike Bayer | 2010-05-31 | 4 | -12/+43 |
| * | fix test to use correct parameter | Mike Bayer | 2010-04-21 | 1 | -2/+2 |
| * | - Fixed error formatting when a stacktrace | Mike Bayer | 2010-04-17 | 1 | -0/+10 |
| * | - Calling a def from the top, viarel_0_3_2 | Mike Bayer | 2010-03-11 | 1 | -0/+3 |
| * | README cleanup, fix a new test for py3k | Mike Bayer | 2010-03-05 | 1 | -1/+1 |
| * | - TemplateLookup raises TopLevelLookupException for | Mike Bayer | 2010-03-05 | 1 | -0/+7 |
| * | - Windows paths are handled correctly if a Template | Mike Bayer | 2010-03-05 | 1 | -0/+63 |
| * | - defs declared within a <%namespace> section, an | Mike Bayer | 2010-03-05 | 1 | -17/+77 |
| * | - The <%page args> tag can now be used in a base | Mike Bayer | 2010-03-05 | 1 | -0/+53 |
| * | - Template accepts empty control structure, i.e. | Mike Bayer | 2010-03-05 | 1 | -1/+11 |
| * | - A percent sign can be emitted as the first | Mike Bayer | 2010-03-05 | 1 | -0/+15 |
| * | - RichTraceback(), html_error_template().render(), | Mike Bayer | 2010-03-05 | 1 | -4/+24 |
| * | - merged -r481:499 of py3k branch. | Mike Bayer | 2010-03-04 | 12 | -193/+540 |
| * | use builtin set() completely | Mike Bayer | 2010-03-02 | 2 | -39/+24 |
| * | missing file | Mike Bayer | 2010-03-02 | 1 | -0/+10 |
| * | - ensure lru threading test doesn't run | Mike Bayer | 2010-03-02 | 2 | -2/+28 |
| * | begin to modernize testing. in particular, get rid of test_htdocs as well as... | Mike Bayer | 2010-03-02 | 28 | -283/+1530 |
| * | some more unicode tests | Mike Bayer | 2010-03-02 | 1 | -1/+31 |
| * | - Unit tests now run with nose. [ticket:127] | Mike Bayer | 2010-02-05 | 19 | -795/+727 |
| * | Further fixes to unicode handling of .py files with the | Philip Jenvey | 2010-01-22 | 1 | -0/+9 |
| * | fix mako function decorators to preserve the original function's name in all | Philip Jenvey | 2009-11-01 | 1 | -3/+41 |
| * | support the <%namespacename:defname> syntax in the babel extractor | Philip Jenvey | 2009-09-22 | 1 | -1/+5 |
| * | - Removed errant "lower()" in the lexer which | Mike Bayer | 2009-04-19 | 3 | -26/+30 |
| * | - Fixed namespace.__getattr__() to raise | Mike Bayer | 2009-03-19 | 1 | -1/+16 |
| * | - Added a "decorator" kw argument to <%def>, | Mike Bayer | 2009-03-19 | 2 | -0/+76 |
| * | - Fixed lexing support for whitespace | Mike Bayer | 2009-02-26 | 1 | -1/+11 |
| * | don't assume dict ordering | Philip Jenvey | 2008-12-05 | 1 | -2/+6 |
| * | - fixed bug whereby an <%included> template with | Mike Bayer | 2008-11-18 | 1 | -1/+37 |
| * | put parenthesis around expressions from ${} blocks inside of attributes to | Mike Bayer | 2008-11-16 | 2 | -0/+20 |
| * | support blank tag attributes | Mike Bayer | 2008-11-16 | 1 | -2/+9 |
| * | - RichTraceback() now accepts an optional traceback object | Mike Bayer | 2008-11-16 | 1 | -12/+5 |
| * | - the <%namespacename:defname> syntax described at | Mike Bayer | 2008-11-15 | 2 | -1/+94 |
| * | don't assume dict ordering | Philip Jenvey | 2008-11-07 | 1 | -1/+9 |
| * | - beaker bump | Mike Bayer | 2008-10-25 | 1 | -0/+16 |
| * | cache sends in a "defname" parameter so that the cache can map settings to th... | Mike Bayer | 2008-10-17 | 1 | -1/+1 |
| * | - added "cache" accessor to Template, Namespace. | Mike Bayer | 2008-09-27 | 1 | -0/+46 |
| * | o fix compatibility with babel 0.9.3: stripping comment tags is now optional | Philip Jenvey | 2008-09-18 | 1 | -4/+4 |
| * | - fixed cache code to work with Beaker 1.0.1, which is now the required versi... | Mike Bayer | 2008-09-07 | 2 | -2/+38 |
| * | fix the html_error_template not handling tracebacks from normal .py files with | Philip Jenvey | 2008-07-08 | 1 | -0/+9 |
| * | - cached blocks now use the current context when renderingrel_0_2_2 | Mike Bayer | 2008-06-23 | 1 | -0/+16 |
| * | - fixed a critical issue regarding caching, whereby | Mike Bayer | 2008-06-23 | 1 | -0/+18 |