flask-genshi
flask-genshi copied to clipboard
Genshi templating for Flask
``` … File "…/env/lib/python3.3/site-packages/flaskext/genshi.py", line 223, in generate_template for key, value in current_app.jinja_env.globals.iteritems(): AttributeError: 'dict' object has no attribute 'iteritems' ``` Obviously `:%s/iteritems/items/` fixes this.
Genshi allows different behaviors when looking up variables in a template. By default this is 'strict' meaning an undefined variable will trigger an exception when rendering the template. They also...
Rewrite templates to Genshi and to use Flask-Genshi. Include as examples for Flask-Genshi.
Support in Flask-Genshi or separate extension?