Tagged Questions

0
votes
2answers
34 views

Mark string as safe in Mako

I'm using Pylons with Mako templates and I want to avoid typing this all the time: ${ h.some_function_that_outputs_html() | n } I want to somehow mark the function, or a variable as safe (you can …
0
votes
1answer
30 views

Good way to pass variables for common elements to Mako templates?

I'm using Mako's inheritance features to factor out common page elements, like a header and footer, into a "base.mako" template. Page-specific controllers use their own templates, which inherit …
0
votes
9answers
534 views

What is the fastest template system for Python?

Jinja2 and Mako are both apparently pretty fast. How do these compare to (the less featured but probably good enough for what I'm doing) string.Template ?
1
vote
5answers
244 views

Should I use Mako for Templating?

I've been considering a templating solution, although my choices are between Mako and Genshi. I find templating in Genshi a bit ugly, so I'm shifting more towards Mako. I've gone to wonder: what is …
0
votes
2answers
134 views

How do I link relative to a Pylons application root?

In Pylons I have a mako template linking to /static/resource.css. How do I automatically link to /pylons/static/resource.css when I decide to map the application to a subdirectory on my web server?
1
vote
1answer
216 views

FormEncode, pylons, and mako example

I'm working in pylons with mako, and I'd like to create forms and validations with FormEncode for several parts of my application. I can't seem to find any good examples of the whole process. My …
2
votes
1answer
316 views

Form Initialization with ToscaWidgets

Question: How do I prefill a CheckBoxTable from ToscaWidgets with values. Background: I've looked everywhere and I can't seem to figure out how to initialize a particular form field with …
0
votes
1answer
91 views

Formatting with mako

Anyone know how to format the length of a string with Mako? The equivalent of print "%20s%10s" % ("string 1", "string 2")?
0
votes
2answers
129 views

How do I call template defs with names only known at runtime in the Python template language Mako?

I am trying to find a way of calling def templates determined by the data available in the context. Edit: A simpler instance of the same question. It is possible to emit the value of an object in …
2
votes
3answers
582 views

Syntax Highlight for Mako in Eclipse or TextMate?

Hi, does anyone know of a syntax highlight for mako templates for eclipse or for textmate? I know that there is a .mako syntax highlighter for the default text editor in ubuntu. Thanks a lot. …
8
votes
10answers
570 views

RDBMS & OOP-friendly Python web app framework?

Suppose your boss told you to choose a Python web application framework, and you would be wedded to it for at least the next 3 years. What would you recommend? Ground rules: Python: Yes, …
1
vote
3answers
110 views

Matching a pair of comments in HTML using regular expressions

I have a mako template that looks something like this: % if staff: <!-- begin staff --> ... <!-- end staff --> % endif That way if I pass the staff variable as being True, …
4
votes
2answers
494 views

How do you debug Mako templates?

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 …
2
votes
2answers
148 views

Trimming Mako output

I really like the Mako templating system that's used in Pylons and a couple other Python frameworks, and my only complaint is how much WS leaks through even a simple inheritance scheme. Is there …