| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | - 2014 | Mike Bayer | 2014-01-09 | 1 | -940/+9 |
| | | | | | - move CHANGES to changelog.rst | ||||
| * | - 0.9.2 | Mike Bayer | 2014-01-09 | 1 | -0/+10 |
| | | | | | - changelog for pullreq #2 | ||||
| * | - changelog for [ticket:225] | Mike Bayer | 2013-12-24 | 1 | -0/+4 |
| | | |||||
| * | - changelog | Mike Bayer | 2013-10-08 | 1 | -0/+3 |
| | | | | | - fix test to work under py3.2 | ||||
| * | - [bug] Fixed issue where an old lexer rule prevented a template line | Mike Bayer | 2013-10-01 | 1 | -0/+3 |
| | | | | | which looked like "#*" from being correctly parsed. [ticket:224] | ||||
| * | - changelog | Mike Bayer | 2013-09-10 | 1 | -0/+3 |
| | | | | | | - [bug] Fixed an AST issue that was preventing correct operation under alpha versions of Python 3.4. Pullreq courtesy Zer0-. | ||||
| * | - changelog for Martin Geisler's coding/utf-8 fixes | Mike Bayer | 2013-08-28 | 1 | -0/+6 |
| | | | | | - version bump 0.9.1 | ||||
| * | - fix #190 for py2.4rel_0_9_0 | Mike Bayer | 2013-08-04 | 1 | -1/+2 |
| | | | | | - other 2.4 ism | ||||
| * | - [bug] The Context.locals_() method becomes a private underscored | Mike Bayer | 2013-08-03 | 1 | -0/+6 |
| | | | | | | | | method, as this method has a specific internal use. The purpose of Context.kwargs has been clarified, in that it only delivers top level keyword arguments originally passed to template.render(). [ticket:219] | ||||
| * | - [bug] Fixed Py3K bug where a "lambda" expression was not | Mike Bayer | 2013-08-03 | 1 | -0/+3 |
| | | | | | interpreted correctly within a template tag. [ticket:190] | ||||
| * | - [bug] Using <%namespace import="*" module="somemodule"/> now | Mike Bayer | 2013-08-03 | 1 | -0/+5 |
| | | | | | | | skips over module elements that are not explcitly callable, avoiding TypeError when trying to produce partials. [ticket:207] | ||||
| * | there was a ticket! | Mike Bayer | 2013-08-03 | 1 | -0/+1 |
| | | |||||
| * | - [bug] The Babel plugin has been repaired to work on Python 3. | Mike Bayer | 2013-08-03 | 1 | -0/+2 |
| | | |||||
| * | - changelog | Mike Bayer | 2013-08-03 | 1 | -0/+8 |
| | | | | | - guess this is 0.9.0 | ||||
| * | - [bug] Changed setup.py to skip installing markupsaferel_0_8_1 | Mike Bayer | 2013-05-24 | 1 | -0/+5 |
| | | | | | | | if Python version is < 2.6 or is between 3.0 and less than 3.3, as Markupsafe now only supports 2.6->2.X, 3.3->3.X. [ticket:216] | ||||
| * | - [bug] Fixed regression where "entity" filter wasn't | Mike Bayer | 2013-04-15 | 1 | -0/+4 |
| | | | | | | converted for py3k properly (added tests.) [ticket:214] | ||||
| * | - [bug] Cleaned up all the various deprecation/ | Mike Bayer | 2013-04-13 | 1 | -0/+5 |
| | | | | | | | file warnings when running the tests under various Pythons with warnings turned on. [ticket:213] | ||||
| * | - [bug] Fixed bug where mako-render script wasn't | Mike Bayer | 2013-04-13 | 1 | -0/+4 |
| | | | | | compatible with Py3k. [ticket:212] | ||||
| * | - will call this 0.8.0 | Mike Bayer | 2013-03-21 | 1 | -1/+1 |
| | | | | | - add gpg sig | ||||
| * | changelog | Mike Bayer | 2013-03-21 | 1 | -0/+5 |
| | | |||||
| * | - [bug] Fixed bug whereby an exception in Python 3 | Mike Bayer | 2013-02-20 | 1 | -0/+5 |
| | | | | | | | against a module compiled to the filesystem would fail trying to produce a RichTraceback due to the content being in bytes. [ticket:209] | ||||
| * | - [bug] Change default for compile()->reserved_names | Mike Bayer | 2013-02-15 | 1 | -0/+4 |
| | | | | | | from tuple to frozenset, as this is expected to be a set by default. [ticket:208] | ||||
| * | - [feature] Added lexer_cls argument to Template, | Mike Bayer | 2012-11-12 | 1 | -0/+4 |
| | | | | | | TemplateLookup, allows alternate Lexer classes to be used. | ||||
| * | changelog | Mike Bayer | 2012-11-11 | 1 | -0/+3 |
| | | |||||
| * | - version bump | Mike Bayer | 2012-11-10 | 1 | -0/+5 |
| | | | | | - changelog | ||||
| * | - [bug] legacy_html_escape function, used whenrel_0_7_3 | Mike Bayer | 2012-11-02 | 1 | -0/+5 |
| | | | | | | | Markupsafe isn't installed, was using an inline-compiled regexp which causes major slowdowns on Python 3.3; is now precompiled. | ||||
| * | - [bug] Fixed bug in plugin loader to correctly | Mike Bayer | 2012-09-16 | 1 | -0/+4 |
| | | | | | | raise exception when non-existent plugin is specified. | ||||
| * | - [bug] Fixed the "filter" attribute of the | Mike Bayer | 2012-08-29 | 1 | -0/+5 |
| | | | | | | | <%text> tag so that it pulls locally specified identifiers from the context the same way as that of <%block> and <%filter>. | ||||
| * | - [bug] Fixed Py3K bug in the Babel extension. | Mike Bayer | 2012-08-29 | 1 | -0/+3 |
| | | |||||
| * | - [bug] AST supporting now supports tuple-packed | Mike Bayer | 2012-08-03 | 1 | -0/+5 |
| | | | | | | function arguments inside pure-python def or lambda expressions. [ticket:201] | ||||
| * | - [bug] Fixed regression in 0.7.1 where ASTrel_0_7_2 | Mike Bayer | 2012-07-20 | 1 | -0/+5 |
| | | | | | | parsing for Py2.4 was broken. [ticket:193] | ||||
| * | - [bug] Fixed some long-broken scoping behavior | Mike Bayer | 2012-07-07 | 1 | -0/+6 |
| | | | | | | | | involving variables declared in defs and such, which only became apparent when the strict_undefined flag was turned on. [ticket:192] | ||||
| * | - [bug] Can now use strict_undefined at the | Mike Bayer | 2012-07-07 | 1 | -0/+5 |
| | | | | | | | same time args passed to def() are used by other elements of the <%def> tag. [ticket:191] | ||||
| * | epic trailing whitespace removal | Mike Bayer | 2012-07-07 | 1 | -155/+155 |
| | | |||||
| * | - [feature] Control lines with no bodies will | Mike Bayer | 2012-04-03 | 1 | -0/+6 |
| | | | | | | | now succeed, as "pass" is added for these when no statements are otherwise present. Courtesy Ben Trofatter [ticket:146] | ||||
| * | - UNDEFINED is a reserved word too, fix docs, add testsrel_0_7_0 | Mike Bayer | 2012-03-30 | 1 | -1/+1 |
| | | |||||
| * | - merge the mako-loop branch, bump to 0.7 | Mike Bayer | 2012-03-29 | 1 | -1/+16 |
| |\ | |||||
| | * | - add a path to disable the loop feature - enable_loop=False | Mike Bayer | 2012-03-29 | 1 | -1/+4 |
| | | | | | | | | | | | - fix up links, formatting in docs - remove some repetition in the _compile logic | ||||
| | * | - apply the #125 patch | Mike Bayer | 2012-03-24 | 1 | -1/+13 |
| | | | | | | | | | - changelog | ||||
| * | | - [feature] Added class-level flag to CacheImpl | Mike Bayer | 2012-03-24 | 1 | -0/+6 |
| |/ | | | | | | | "pass_context"; when True, the keyword argument 'context' will be passed to get_or_create() containing the Mako Context object. [ticket:185] | ||||
| * | oh we have his name | Mike Bayer | 2012-03-24 | 1 | -1/+1 |
| | | |||||
| * | changelog | Mike Bayer | 2012-03-24 | 1 | -0/+3 |
| | | |||||
| * | - [feature] The html_error_template() will now | Mike Bayer | 2012-03-12 | 1 | -0/+6 |
| | | | | | | | | apply Pygments highlighting to the source code displayed in the traceback, if Pygments if available. Courtesy Ben Trofatter [ticket:95] | ||||
| * | - [feature] Added support for context managers, | Mike Bayer | 2012-03-12 | 1 | -0/+4 |
| | | | | | | i.e. "% with x as e:/ % endwith" support. Courtesy Ben Trofatter [ticket:147] | ||||
| * | - [bug] Fixed endless recursion bug when | Mike Bayer | 2012-03-08 | 1 | -0/+4 |
| | | | | | | nesting multiple def-calls with content. Thanks to Jeff Dairiki. [ticket:186] | ||||
| * | - [bug] Fixed some Py3K resource warnings due | Mike Bayer | 2012-02-21 | 1 | -0/+5 |
| | | | | | | to filehandles being implicitly closed. [ticket:182] | ||||
| * | Fix for [ticket:20] and [ticket:86] much thanks to Eevee | Mike Bayer | 2012-02-02 | 1 | -0/+6 |
| | | |||||
| * | - [bug] Added special compatibility for the 0.5.0 | Mike Bayer | 2012-01-28 | 1 | -0/+6 |
| | | | | | | | Cache() constructor, which was preventing file version checks and not allowing Mako 0.6 to recompile the module files. | ||||
| * | - [bug] The "benchmark" example is now Python 3 compatiblerel_0_6_0 | Mike Bayer | 2012-01-21 | 1 | -0/+4 |
| | | | | | | (even though several of those old template libs aren't available on Py3K, so YMMV) [ticket:175] | ||||
| * | - [feature] Added support for Beaker cache regions | Mike Bayer | 2012-01-21 | 1 | -0/+5 |
| | | | | | | | | | in templates. Usage of regions should be considered as superseding the very obsolete idea of passing in backend options, timeouts, etc. within templates. - rewrite the cache docs again which had a lot of misleading/inaccurate info. | ||||
