vote up 4 vote down star
2

So far I've found it impossible to produce usable tracebacks when Mako templates aren't coded correctly.

Is there any way to debug templates besides iterating for every line of code?

Edit: Per the comments, it seems switching to Jinja2 might be the best solution.

flag
I found this general problem with Mako. Perhaps you should try Jinja2, for which 1. tracebacks go into the templating code, and 2. there is a better separation of view and model, with sandboxing. – Ali A Dec 24 '08 at 9:41
I don't really like Jinja's blocks (which are similar to Mako's defs) because they're echoed where they're called /and/ where they're defined. Mako decouples them - they're only echoed where they're called. That said, I'm getting really frustrated with Mako, so I'll try Jinja soon. Thanks. – Nikhil Chelliah Dec 24 '08 at 22:20
Also maybe worth considering moving more complex logic out of the template layer and into one of the other layers of your application. – Prairiedogg Dec 25 '08 at 0:13
@Nikhil: Jinja2 has the equivalent to Mako's defs too. They are called macros: jinja.pocoo.org/2/documentation/…. – nosklo Dec 26 '08 at 16:07
@Prairie Dogg: Perhaps it's just inexperience with Mako syntax, then, as I'm not coding logic into the templates. @nosklo: That's perfect. Thanks! – Nikhil Chelliah Dec 27 '08 at 4:47

2 Answers

vote up 3 vote down check

Mako actually provides a VERY nice way to track down errors in a template:

from mako import exceptions

try:
    template = lookup.get_template(uri)
    print template.render()
except:
    print exceptions.html_error_template().render()
link|flag
vote up 1 vote down

I break them down into pieces, and then reassemble the pieces when I've found the problem.

Not good, but it's really hard to tell what went wrong in a big, complex template.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.