47
I Use This!
Very Low Activity

Commits : Listings

Analyzed about 7 hours ago. based on code collected about 18 hours ago.
May 21, 2023 — May 21, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
- added a path normalization step to lookup so URIs like "/foo/bar/../etc/../foo" pre-process the ".." tokens before checking the filesystem More... about 17 years ago
further fix to previous ast enhancement; dont log identifiers as "declared" once we're traversing inside functions since they are local to the function. More... about 17 years ago
- fix to variable scoping for identifiers only referenced within functions More... about 17 years ago
- fixes to code parsing/whitespace adjusting where plain python comments may contain quote characters [ticket:23] More... about 17 years ago
- got defs-within-defs to be cacheable More... about 17 years ago
- added "preprocessor" argument to Template, TemplateLookup - is a single callable or list of callables which will be applied to the template text before lexing. given the text as an argument, returns the new text. - added mako.ext.preprocessors package, contains one preprocessor so far: 'convert_comments', which will convert single # comments to the new ## format More... about 17 years ago
fixed comment to new style More... about 17 years ago
- added lexer error for unclosed control-line (%) line More... over 17 years ago
multiline comment syntax now <%doc> More... over 17 years ago
- improvement to scoping of "caller" variable when using <%call> tag More... over 17 years ago
- fix to text parsing to not yank "#" on the first col of the line - doc adjustments, changeset adjustments, modified unicode tests to use ## instead of # for magic encoding comment. # will still work for now. - unsure whether we are going with #* *# or <%doc> for multiline comments, looking like <%doc>. More... over 17 years ago
got the multiline comments to highlight More... over 17 years ago
comments moved to "##" "#* *#" syntax. still have to get pygment plugin to work. More... over 17 years ago
- UNDEFINED evaluates to False More... over 17 years ago
Fixing conditional to properly check templatename. More... over 17 years ago
0.1.2 More... over 17 years ago
- got "top level" def calls to work, i.e. template.get_def("somedef").render() More... over 17 years ago
updates More... over 17 years ago
changed around filtering so you can just say "decode.utf8" or "decode.<whatever>" for generic expression decoding More... over 17 years ago
docs, added the unicode chapter More... over 17 years ago
- all template lexing converts the template to unicode first, to immediately catch any encoding issues and ensure internal unicode representation. More... over 17 years ago
- support for CRLF templates...whoops ! welcome to all the windows users. [ticket:16] - cleanup in unit tests More... over 17 years ago
fixed typo More... over 17 years ago
- small fix to local variable propigation for locals that are conditionally declared More... over 17 years ago
some expression generator things missing, fixes [ticket:18] More... over 17 years ago
xtra test More... over 17 years ago
- "expression_filter" argument in <%page> applies only to expressions - added "default_filters" argument to Template, TemplateLookup. applies only to expressions, gets prepended to "expression_filter" arg from <%page>. defaults to ["unicode"], so that all expressions get stringified into u'' by default (this is what Mako already does). By setting to [], expressions are passed through raw. - added "imports" argument to Template, TemplateLookup. so you can predefine a list of import statements at the top of the template. can be used in conjunction with default_filters. More... over 17 years ago
unit tests for input_encoding, non double-decode of unicode object More... over 17 years ago
- added optional input_encoding flag to Template, to allow sending a unicode() object with no magic encoding comment More... over 17 years ago
platform independent path fixies More... over 17 years ago