# -*- coding: utf-8 -*- <%inherit file="content_layout.html"/> <%page args="toc, extension, paged"/> <%namespace name="formatting" file="formatting.html"/> <%namespace name="nav" file="nav.html"/> <%def name="title()">Mako Documentation - Syntax <%! filename = 'syntax' %> ## This file is generated. Edit the .txt files instead of this one. <%call expr="formatting.section(path='syntax',paged=paged,extension=extension,toc=toc)">

A Mako template is parsed from a text stream containing any kind of content, XML, HTML, email text, etc. The template can further contain Mako-specific directives which represent variable and/or expression substitutions, control structures (i.e. conditionals and loops), server-side comments, full blocks of Python code, as well as various tags that offer additional functionality. All of these constructs compile into real Python code. This means that you can leverage the full power of Python in almost every aspect of a Mako template.

<%call expr="formatting.section(path='syntax_expression',paged=paged,extension=extension,toc=toc)">

The simplest expression is just a variable substitution. The syntax for this is the <%text filter='h'>${} construct, which is inspired by Perl, Genshi, JSP EL, and others:

<%call expr="formatting.code()"><%text>this is x: ${x}

Above, the string representation of <%text filter='h'>x is applied to the template's output stream. If you're wondering where <%text filter='h'>x comes from, its usually from the <%text filter='h'>Context supplied to the template's rendering function. If <%text filter='h'>x was not supplied to the template and was not otherwise assigned locally, it evaluates to a special value <%text filter='h'>UNDEFINED. More on that later.

The contents within the <%text filter='h'>${} tag are evaluated by Python directly, so full expressions are OK:

<%call expr="formatting.code()"><%text>pythagorean theorem: ${pow(x,2) + pow(y,2)}

The results of the expression are evaluated into a string result in all cases before being rendered to the output stream, such as the above example where the expression produces a numeric result.

<%call expr="formatting.section(path='syntax_expression_expression',paged=paged,extension=extension,toc=toc)">

Mako includes a number of built-in escaping mechanisms, including HTML, URI and XML escaping, as well as a "trim" function. These escapes can be added to an expression substituion using the <%text filter='h'>| operator:

<%call expr="formatting.code()"><%text>${"this is some text" | u}

The above expression applies URL escaping to the expression, and produces <%text filter='h'>this+is+some+text. The <%text filter='h'>u name indicates URL escaping, whereas <%text filter='h'>h represents HTML escaping, <%text filter='h'>x represents XML escaping, and <%text filter='h'>trim applies a trim function.

Read more about built in filtering functions, including how to make your own filter functions, in <%call expr="nav.toclink(path='filtering',paged=paged,extension=extension,toc=toc)">.

<%call expr="formatting.section(path='syntax_control',paged=paged,extension=extension,toc=toc)">

A control structure refers to all those things that control the flow of a program - conditionals (i.e. if/else), loops (like while and for), as well as things like <%text filter='h'>try/except. In Mako, control structures are written using the <%text filter='h'>% marker followed by a regular Python control expression, and are "closed" by using another <%text filter='h'>% marker with the tag "<%text filter='h'>end", where "<%text filter='h'>" is the keyword of the expression:

<%call expr="formatting.code()"><%text>% if x==5: this is some output % endif

The <%text filter='h'>% can appear anywhere on the line as long as no text precedes it; indentation is not signficant. The full range of Python "colon" expressions are allowed here, including <%text filter='h'>if/elif/else, <%text filter='h'>while, <%text filter='h'>for, and even <%text filter='h'>def, although Mako has a built-in tag for defs which is more full-featured.

<%call expr="formatting.code()"><%text>% for a in ['one', 'two', 'three', 'four', 'five']: % if a[0] == 't': its two or three % elif a[0] == 'f': four/five % else: one %endif % endfor

The <%text filter='h'>% sign can also be "escaped", if you actually want to emit a percent sign as the first non whitespace character on a line, by escaping it as in <%text filter='h'>%%:

<%call expr="formatting.code()"><%text>%% some text %% some more text <%call expr="formatting.section(path='syntax_comments',paged=paged,extension=extension,toc=toc)">

Comments come in two varieties. The single line comment uses <%text filter='h'>## as the first non-space characters on a line:

<%call expr="formatting.code()"><%text>## this is a comment. ...text ...

A multiline version exists using <%text filter='h'><%doc> ...text... :

<%call expr="formatting.code()"><%text><%doc> these are comments more comments <%call expr="formatting.section(path='syntax_newline',paged=paged,extension=extension,toc=toc)">

The backslash ("<%text filter='h'>\") character, placed at the end of any line, will consume the newline character before continuing to the next line:

<%call expr="formatting.code()"><%text>here is a line that goes onto \ another line.

The above text evaluates to:

<%call expr="formatting.code()"><%text>here is a line that goes onto another line. <%call expr="formatting.section(path='syntax_python',paged=paged,extension=extension,toc=toc)">

Any arbitrary block of python can be dropped in using the <%text filter='h'><% %> tags:

<%call expr="formatting.code()"><%text>this is a template <% x = db.get_resource('foo') y = [z.element for z in x if x.frobnizzle==5] %> % for elem in y: element: ${elem} % endfor

Within <%text filter='h'><% %>, you're writing a regular block of Python code. While the code can appear with an arbitrary level of preceding whitespace, it has to be consistently formatted with itself. Mako's compiler will adjust the block of Python to be consistent with the surrounding generated Python code.

<%call expr="formatting.section(path='syntax_python_module-level',paged=paged,extension=extension,toc=toc)">

A variant on <%text filter='h'><% %> is the module-level code block, denoted by <%text filter='h'><%! %>. Code within these tags is executed at the module level of the template, and not within the rendering function of the template. Therefore, this code does not have access to the template's context and is only executed when the template is loaded into memory (which can be only once per application, or more, depending on the runtime environment). Use the <%text filter='h'><%! %> tags to declare your template's imports, as well as any pure-Python functions you might want to declare:

<%call expr="formatting.code()"><%text><%! import mylib import re def filter(text): return re.sub(r'^@', '', text) %>

Any number of <%text filter='h'><%! %> blocks can be declared anywhere in a template; they will be rendered in the resulting module in the order that they appear.

<%call expr="formatting.section(path='syntax_tags',paged=paged,extension=extension,toc=toc)">

The rest of what Mako offers takes place in the form of tags. All tags use the same syntax, which is similar to an XML tag except that the first character of the tag name is a <%text filter='h'>% character. The tag is closed either by a contained slash character, or an explicit closing tag:

<%call expr="formatting.code()"><%text><%include file="foo.txt"/> <%def name="foo" buffered="True"> this is a def

All tags have a set of attributes which are defined for each tag. Some of these attributes are required. Also, many attributes support evaluation, meaning you can embed an expression (using <%text filter='h'>${}) inside the attribute text:

<%call expr="formatting.code()"><%text><%include file="/foo/bar/${myfile}.txt"/>

Whether or not an attribute accepts runtime evaluation depends on the type of tag and how that tag is compiled into the template. The best way to find out if you can stick an expression in is to try it ! The lexer will tell you if its not valid.

Heres a quick summary of all the tags:

<%call expr="formatting.section(path='syntax_tags_page',paged=paged,extension=extension,toc=toc)">

This tag defines general characteristics of the template, including caching arguments, and optional lists of arguments which the template expects when invoked.

<%call expr="formatting.code()"><%text><%page args="x, y, z='default'"/>

Or a page tag that defines caching characteristics:

<%call expr="formatting.code()"><%text><%page cached="True" cache_type="memory"/>

Currently, only one <%text filter='h'><%page> tag gets used per template, the rest get ignored. While this will be improved in a future release, for now make sure you have only one <%text filter='h'><%page> tag defined in your template, else you may not get the results you want. The details of what <%text filter='h'><%page> is used for are described further in <%call expr="nav.toclink(path='namespaces_body',paged=paged,extension=extension,toc=toc)"> as well as <%call expr="nav.toclink(path='caching',paged=paged,extension=extension,toc=toc)">.

<%call expr="formatting.section(path='syntax_tags_include',paged=paged,extension=extension,toc=toc)">

A tag that is familiar from other template languages, %include is a regular joe that just accepts a file argument and calls in the rendered result of that file:

<%call expr="formatting.code()"><%text><%include file="header.html"/> hello world <%include file="footer.html"/>

Include also accepts arguments which are available as <%text filter='h'><%page> arguments in the receiving template:

<%call expr="formatting.code()"><%text><%include file="toolbar.html" args="current_section='members', username='ed'"/> <%call expr="formatting.section(path='syntax_tags_def',paged=paged,extension=extension,toc=toc)">

The <%text filter='h'>%def tag defines a Python function which contains a set of content, that can be called at some other point in the template. The basic idea is simple:

<%call expr="formatting.code()"><%text><%def name="myfunc(x)"> this is myfunc, x is ${x} ${myfunc(7)}

The %def tag is a lot more powerful than a plain Python def, as the Mako compiler provides many extra services with %def that you wouldn't normally have, such as the ability to export defs as template "methods", automatic propagation of the current <%text filter='h'>Context, buffering/filtering/caching flags, and def calls with content, which enable packages of defs to be sent as arguments to other def calls (not as hard as it sounds). Get the full deal on what %def can do in <%call expr="nav.toclink(path='defs',paged=paged,extension=extension,toc=toc)">.

<%call expr="formatting.section(path='syntax_tags_namespace',paged=paged,extension=extension,toc=toc)">

%namespace is Mako's equivalent of Python's <%text filter='h'>import statement. It allows access to all the rendering functions and metadata of other template files, plain Python modules, as well as locally defined "packages" of functions.

<%call expr="formatting.code()"><%text><%namespace file="functions.html" import="*"/>

The underlying object generated by %namespace, an instance of <%text filter='h'>mako.runtime.Namespace, is a central construct used in templates to reference template-specific information such as the current URI, inheritance structures, and other things that are not as hard as they sound right here. Namespaces are described in <%call expr="nav.toclink(path='namespaces',paged=paged,extension=extension,toc=toc)">.

<%call expr="formatting.section(path='syntax_tags_inherit',paged=paged,extension=extension,toc=toc)">

Inherit allows templates to arrange themselves in inheritance chains. This is a concept familiar in many other template languages.

<%call expr="formatting.code()"><%text><%inherit file="base.html"/>

When using the %inherit tag, control is passed to the topmost inherited template first, which then decides how to handle calling areas of content from its inheriting templates. Mako offers a lot of flexbility in this area, including dynamic inheritance, content wrapping, and polymorphic method calls. Check it out in <%call expr="nav.toclink(path='inheritance',paged=paged,extension=extension,toc=toc)">.

<%call expr="formatting.section(path='syntax_tags_namespacename:defname',paged=paged,extension=extension,toc=toc)">

As of Mako 0.2.3, any user-defined "tag" can be created against a namespace by using a tag with a name of the form namespacename:defname. The closed and open formats of such a tag are equivalent to an inline expression and the <%text filter='h'><%call> tag, respectively.

<%call expr="formatting.code()"><%text><%mynamespace:somedef param="some value"> this is the body

To create custom tags which accept a body, see <%call expr="nav.toclink(path='defs_defswithcontent',paged=paged,extension=extension,toc=toc)">.

<%call expr="formatting.section(path='syntax_tags_call',paged=paged,extension=extension,toc=toc)">

The call tag is the "classic" form of a user-defined tag, and is roughly equiavlent to the <%text filter='h'><%namespacename:defname> syntax described above. This tag is also described in <%call expr="nav.toclink(path='defs_defswithcontent',paged=paged,extension=extension,toc=toc)">.

<%call expr="formatting.section(path='syntax_tags_doc',paged=paged,extension=extension,toc=toc)">

The doc tag handles multiline comments:

<%call expr="formatting.code()"><%text><%doc> these are comments more comments

Also the <%text filter='h'>## symbol as the first non-space characters on a line can be used for single line comments.

<%call expr="formatting.section(path='syntax_tags_text',paged=paged,extension=extension,toc=toc)">

This tag suspends the Mako lexer's normal parsing of Mako template directives, and returns its entire body contents as plain text. It is used pretty much to write documentation about Mako:

<%call expr="formatting.code()"><%text><%text filter="h"> heres some fake mako ${syntax} <%def name="x()">${x} %CLOSETEXT <%call expr="formatting.section(path='syntax_returning',paged=paged,extension=extension,toc=toc)">

Sometimes you want to stop processing a template or <%text filter='h'><%def> method in the middle and just use the text you've accumulated so far. You can use a <%text filter='h'>return statement inside a Python block to do that.

<%call expr="formatting.code()"><%text>% if not len(records): No records found. <% return %> % endif

Or perhaps:

<%call expr="formatting.code()"><%text><% if not len(records): return %>