sqlalchemy-bot
sqlalchemy-bot
**Migrated issue, originally created by eevee ([@eevee](https://github.com/eevee))** For big projects with big collections of big templates, having a set of super-global variables that aren't documented and might vary by caller...
**Migrated issue, originally created by theblackcat ([@theblackcat](https://github.com/theblackcat))** mako uses the mock package. However, mock is not compatible with python 3.4. Python 3.4 has its own build-in mock tool instead. It...
**Migrated issue, originally created by Anonymous** Today I (finally) got how "buffering" works. I think documentation could do better at explaining how this things work behind mako scenes. First of...
**Migrated issue, originally created by Anonymous** I'm not quite positive that this is a bug, but I’m pretty sure it is. When Template.render_context() is called, it sets context['self']. So, if...
**Migrated issue, originally created by Anonymous** Traceback (most recent call last): File "/Users/vm/ws/mako/test/test_tgplugin.py", line 48, in test_render assert result_lines(tl.render({}, template=u'/index.html')) == [ File "/Users/vm/ws/mako/mako/ext/turbogears.py", line 57, in render return template.render(**info)...
**Migrated issue, originally created by Anonymous** A SyntaxError (unexpected EOF) is raised when trying to pass a dict. I am using mako 0.8.1, python 2.7 on OSX 10.8. A workaround...
**Migrated issue, originally created by Anonymous** In line with the discussion here: http://groups.google.com/group/mako-discuss/browse_thread/thread/835ab6db0bb0cdb4 The pertinent parts quoted: However, if the case is that Jinja2's (% if %}, because it has...
**Migrated issue, originally created by Anonymous** Analyzing the generated .py files from my current project, there's lots of this pattern, as my default_filters are `['h', 'unicode']`: __M_writer(unicode(filters.html_escape(x))) __M_writer(u'some_constant_stuff') __M_writer(unicode(filters.html_escape(y))) __M_writer(u'more_constant_stuff')...
**Migrated issue, originally created by Anonymous** Mako provide cool filters, but I think documentation can be enhanced explaining, in HTML, where to use which filter. I mean, how to filter...
**Migrated issue, originally created by Anonymous** I'm searching if render can take an "object" like with properties, of a "dict" like with values, or only parameters, and I can't find...