Tagged Questions

Mako is a template library written in Python. It provides a familiar, non-XML syntax which compiles into Python modules for maximum performance. Conceptually, Mako is an embedded Python (i.e. Python Server Page) language.

learn more… | top users | synonyms

21
votes
9answers
7k 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 ?
20
votes
2answers
2k 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?
15
votes
3answers
4k views

Mako or Jinja2?

I didn't find a good comparison of jinja2 and Mako. What would you use for what tasks ? I personnaly was satisfied by mako (in a pylons web app context) but am curious to know if jinja2 has some ...
8
votes
10answers
1k 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, ...
5
votes
1answer
94 views

Choose Mako preprocessor based on file extension?

I would like to somehow instrument a mako.lookup.TemplateLookup such that it applies certain preprocessors only for certain file extensions. Specifically, I have a haml.preprocessor that I would like ...
5
votes
5answers
3k 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 ...
5
votes
5answers
3k views

Syntax Highlight for Mako in Eclipse or TextMate?

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. Claudio.
4
votes
1answer
133 views

Dictionary literals in Mako expressions

The following throws a syntax error, "unexpected EOF while parsing": ${foo({'bar':'baz'})} which I guess is from the inner closing curly brace. This works fine: ${foo(dict(bar='baz'))} but ...
4
votes
2answers
936 views

Insert javascript at top of including file in Jinja 2

In Jinja2, I would like the following to work as it looks like it should, by running: from jinja2 import Environment, FileSystemLoader env = Environment(loader=FileSystemLoader('.')) template = ...
4
votes
2answers
393 views

Best Practices for Python UnicodeDecodeError

I use Pylons framework, Mako template for a web based application. I wasn't really bother too deep into the way Python handles the unicode strings. I had tense moment when I did see my site crash when ...
4
votes
1answer
527 views

How can I configure vim syntax highlighting for mako templates?

I'd like to get the HTML elements highlighted as well as the MAKO / Python elements. Thanks.
3
votes
1answer
75 views

How to include CSS file in Mako?

I'm using Mako template for a project. How can I add a CSS file in Mako? I try to use <link type="stylesheet" type="text/css" href="<%include file='test.css' />" /> in the <head> ...
3
votes
3answers
175 views

how do I specify extended ascii (i.e. range(256)) in the python magic encoding specifier line?

I'm using mako templates to generate specialized config files. Some of these files contain extended ASCII chars (>127), but mako chokes saying that the chars are out of range when I use: ## -*- ...
3
votes
1answer
132 views

Mako Templates : How to find the name of the template which the current template is included by?

I have multiple templates that include each other, such as : t1.html : ... <%include file="t2.html" args="docTitle='blablabla'" /> ... t2.html: <%page args="docTitle='Undefined'"/> ...
3
votes
1answer
990 views

how to deal with unicode in mako?

I constantly get this error using mako: UnicodeEncodeError: 'ascii' codec can't encode character u'\xe0' in position 6: ordinal not in range(128) I've told mako I'm using unicode in any possible ...
3
votes
1answer
694 views

Mako templates inline if statement

I have a template variable, c.is_friend, that I would like to use to determine whether or not a class is applied. For example: if c.is_friend is True <a href="#" class="friend">link</a> ...
3
votes
3answers
372 views

What should I use - Mako or Django?

I'm making a website that mail users when a movie or a pc game has released. It isn't too complex - users can sign up, choose movies/music or a genre and save the settings. When the movie/music is ...
3
votes
1answer
1k 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 ...
2
votes
1answer
33 views

mako modules via the templatelookup function. what are “modules”? are they available via Pyramid's render or render_to_response functions?

I'm looking at Mako's documentation and I found a TemplateLookup function for Mako: Using TemplateLookup. However, I've never seen this in Pyramid's documentation since I've never had to specify a ...
2
votes
1answer
58 views

Mako: passing variables to base and child templates

Goal: To access myargs in both base and child templates. Currently I can only access them in one or the other. Call: child.render(myargs={'a':2, b:'5'}) Base excerpt: <%page args="myargs=None, ...
2
votes
2answers
118 views

404 error handling with mako template

Trying to display template rendered by mako on 404 errors, but it still displays standart error page with cherrypy footer and additional message: |In addition, the custom error page failed: TypeError: ...
2
votes
1answer
50 views

Inline if statement escapes HTML characters

So I'm playing with Mako on Pyramid and I'm trying to do inline if statements. <li>${'<a href="#">Opinions</a></li>' if whichnav == 'opinions' else 'Opinions'} Outputs: ...
2
votes
1answer
76 views

Mako with Google App Engine - What do you do about temporary files?

I modified my Google App Engine app to work with Mako. To do this, I followed this answer including the comments: Mako templates with Google App Engine However, once you get to loading templates ...
2
votes
1answer
267 views

Python module in path: ImportError raised in mako template

There is an ImportError that has the potential to drive me mad. The situation looks like this: tests/ testWebsite.py website/ __init__.py __main__.py _webtools/ __init__.py ...
2
votes
1answer
116 views

WTForms - display property value instead of HTML field

I want to re-use a template I have with my WTForms form: <th>${form.name.label}</th> <td>${form.name()}</td> ... However, on my edit page, I want the input fields to display ...
2
votes
2answers
92 views

Is there any way to pass all variables in the current scope to Mako as a context?

I have a method like so: def index(self): title = "test" return render("index.html", title=title) Where render is a function that automatically renders the given template file with the rest ...
2
votes
2answers
183 views

access variable declared in child template or controller-wide variables

I have a small hierarchy of mako templates that go something like: base.mako <h1>${self.view()}</h1> ${listactions(self.mainactions)} ${self.body()} <%def ...
2
votes
1answer
153 views

How can I get a Django Template to render itself within a Mako Template?

We made the decision quite awhile ago to use Mako Templates in our Django project. We're also supporting Django Templates, since a lot of reusable apps (obviously) assume that Django Templating is ...
2
votes
2answers
1k views

Using Mako with Pyramid causes an error

When trying to use Mako with the Pyramid framework, by going into the development.ini file, and adding the line mako.directories = TestProject:templates in: [app:TestProject] and then creating ...
2
votes
2answers
262 views

Pylons mako templates: debugging “Internal Server Error” / “NoneType” errors

I frequently encounter this error in Mako templates using Pylons 0.9.7: AttributeError: 'NoneType' object has no attribute 'decode' Usually I've entered a variable name that doesn't exist, tried to ...
2
votes
1answer
365 views

Django integration with Mako Jinja2 template comparison using : render_to_response. Problem?

I am using Django to build up my web project. As known that mako and Jinja2 template are faster that the one Django's given, I start finding way to integrate mako and Jinja2 into Django with using the ...
2
votes
6answers
194 views

Is there a reason I should be dissuaded from using an alternative templating engine in my Django app?

I've done a few small-ish Django projects, and each time I've been struck by the apparent limitations of Django's templating language. Just as a random example, I was shocked to learn that if, in the ...
2
votes
1answer
426 views

Mako templates with Google App Engine

I want to use Mako templates with GAE instead of Django templates. I found this post http://blog.pansapiens.com/2008/06/24/mako-templates-in-google-app-engine-seems-to-work-for-me/ I downloaded Mako ...
2
votes
1answer
477 views

Mako templates using Django template tags

Our Django site is built using Mako templates. We want to use a third party project called django-socialregistration, but its template tags use Django's templates. If we used Django templates we could ...
2
votes
3answers
363 views

How can I strip whitespace and newlines with Mako templates? My 12362 line HTML file is killing IE

I'm using the Mako template system in my Pylons website and am having some issues with stripping whitespace. My reasoning for stripping whitespace is the generated HTML file comes out as 12363 lines ...
2
votes
2answers
222 views

How do I get some string values from Pylons controller be assigned to JavaScript variables with Mako?

I'm developing under Pylons using Mako templates. The problem is that I need to assign a string from some attribute of tmpl_context to a JavaScript variable in a page body. The additional problem is ...
2
votes
1answer
57 views

Better error reporting mako

Is there a way to add tempate string which contains error to mako`s error trace?
2
votes
1answer
777 views

Pylons/Routes Did url_for() change within templates?

I'm getting an error: GenerationException: url_for could not generate URL. Called with args: () {} from this line of a mako template: <p>Your url is ${h.url_for()}</p> Over in my ...
2
votes
3answers
515 views

Converting \n to <br> in mako files

I'm using python with pylons I want to display the saved data from a textarea in a mako file with new lines formatted correctly for display Is this the best way of doing it? > ...
2
votes
2answers
577 views

How to properly escape output (for XHTML) in mako?

Despite offering a nice way to escape output using filters, none of them do the right thing. Taking the string: x=u"&\u0092" The filters do the following: x Turns the & into an ...
2
votes
1answer
255 views

Turbogears, mako form displaying as plain text

Hi I'm generating a sprox form with Turbogears 2.1 and trying to display it in a mako template. Here is my code: To define the form: class NewUserForm(AddRecordForm): model = User newuserform = ...
2
votes
2answers
953 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 ...
2
votes
2answers
458 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 ...
1
vote
1answer
88 views

How to make sure a script runs once and only once

I am writing a widget template, which will be included in a page where it is installed. One may install several of the same kind of widget in one page, so my template may get included several times. ...
1
vote
1answer
40 views

Checking to see if any parameters exist within function call in Pylons

How can I find out the number of parameters (if any at all) that were passed in. I'm using Mako and I'm calling the template function with: ...
1
vote
1answer
49 views

Mako csrf_token like in Django templates

I my recent Django-project I use mako templates. About Cross Site Request Forgery CSRF. In django templates there is the tag {% csrf_token %} to protect from hackers. What about mako templates? Is ...
1
vote
1answer
46 views

Using “class” as an option to a Mako Macro

I am writing a Mako extension that assist in rendering forms. I was making excellent progress until I ran into one big stumbling block regarding css classes. I want to write code that looks like this: ...
1
vote
2answers
113 views

Python functions in Mako templates (not in module-level blocks)

I'm using Pyramid and Mako for templating. It is possible to define a (semi-anonymous) function within a Mako block <% and %>. I know it can be done with a module-level block <%! and %>, ...
1
vote
1answer
136 views

Mako template inheritance error TypeError: 'Undefined' object is not callable

I have 2 files base_table.html table_body.html base_table.html <%block name="bodytable"> <table cellspacing="0" cellpadding="0" border="1" width="100%"> <%block ...
1
vote
1answer
127 views

Python+mako Unicode problem

I am trying to read a DB table contents and display it as a web page using mako and bottle. The table has some Unicode (utf-8) fields in it. UnicodeDecodeError('ascii', 'MOTOROLA ...

1 2 3