{{{#!div class="important" ** Warning ** The following documentation corresponds to an experimental branch ([[Proposals/Jinja]] / [log:cboos.git@jinja2]). }}} [[PageOutline(2-3)]] = Porting Templates from Genshi to Jinja2 The following documentation is primarily targeted at plugin developers who wish to adapt their Genshi templates to the Jinja2 template engine that will be used in Trac 1.4. For migrating your own templates, a good way to start is to learn from examples. Compare the 'j...' Jinja templates found in source:cboos.git/trac/templates@jinja2 with their corresponding Genshi ones. Note that Genshi will **not** be supported concurrently with Jinja2. If for some reason you're stuck to having to support Genshi templates, you'll have to stick to Trac 1.2.x. But you really should make the transition effort as Jinja2 templates are 5-10x faster than their Genshi equivalent, for a 1/5th of the cost in memory usage. == Changes in the template syntax Most of the time, the porting is a straightforward operation. === expand a variable - Genshi [[xml($the_variable)]] - Jinja2 [[xml(${the_variable})]] Tip: {{{#!shell sed -ie 's,\$\([a-z_][a-z._]*\),${\1},g' template.html }}} === expand a simple computation - Genshi [[xml(${the_variable + 1})]] - Jinja2 [[xml(${the_variable + 1})]] However, Jinja2 expressions are only //similar// to Python expressions, there are a few differences and limitations, see [http://jinja.pocoo.org/docs/dev/templates/#expressions expressions] doc. === include another template - Genshi [[xml()]] - Jinja2 [[xml(# include "the_file.html" ignore missing)]] See [http://jinja.pocoo.org/docs/dev/templates/#include include] doc. === simple if...then (no else) - Genshi [[xml(OK)]] or simply: [[xml(OK)]] - Jinja2 {{{#!html+jinja # if flag: OK # endif }}} See [http://jinja.pocoo.org/docs/dev/templates/#if if] doc. === if...then...else - Genshi {{{ #!xml OK !!! }}} or simply: {{{ #!xml OK !!! }}} - Jinja2 {{{ #!xml # if flag: OK # else: !!! # endif }}} If you really have to, you can also use the block style: {{{#!html+jinja {% if flag %}OK{% else %}!!!{% endif %} }}} However this goes against readability and processing via the [#jinjachecker] tool, so we really advise that you stick to the use of //[http://jinja.pocoo.org/docs/dev/templates/#line-statements line statements]//. === iterate over a collection - Genshi {{{ #!xml }}} or simply: {{{ #!xml }}} - Jinja2 {{{ #!xml }}} See [http://jinja.pocoo.org/docs/dev/templates/#for for] doc. ==== No need for `enumerate` - Genshi: {{{#!html+genshi ${section.name} }}} - Jinja2: {{{#!html+jinja # for option in section.options: # if loop.first: ${section.name} }}} All common uses (and more) for such an `idx` variable are addressed by the special `loop` variable. See [http://jinja.pocoo.org/docs/dev/templates/#for loop] doc. === define a macro - Genshi {{{#!html+genshi
$key
$val
}}} - Jinja2 {{{#!html+jinja # macro entry(key, val='--')
${key}
${val}
# endmacro }}} See [http://jinja.pocoo.org/docs/dev/templates/#macros macros] doc. === set a variable - Genshi {{{#!html+genshi We have ${count > 10 and 'too much' or count} elements. }}} Note that we had to use `>` in Genshi, we can't use `>` directly. - Jinja2 {{{#!html+jinja # set count = len(collection) We have ${'too much' if count is greaterthan(10) else count} elements. }}} Note that we avoid using `>` in Jinja2 expressions as well, but simply to avoid that XML/HTML text editors get confused. We added a few custom tests for that (`greaterthan`, `greaterthanorequal`, `lessthan`, `lessthanorequal`). See [http://jinja.pocoo.org/docs/dev/templates/#tests tests] doc. === set HTML attributes In Genshi, an attribute with a `None` value wouldn't be output. However, Jinja2 doesn't know what an attribute is (or anything else about HTML, XML for that matter), so we have to use a special filter, `htmlattr`, to reproduce this behavior: - Genshi: {{{#!html+genshi }}} - Jinja2: {{{#!html+jinja # set components = plugin.modules|map(attribute='components')|flatten }}} Note that Jinja2 expressions are a subset of Python expressions, and for the sake of simplicity the generator expressions are not part of that subset. This limitation often requires one to make creative use of [http://jinja.pocoo.org/docs/dev/templates/#filters filters], [http://jinja.pocoo.org/docs/dev/templates/#builtin-filters built-in] or custom (`min`, `max`, `trim`, `flatten`). A few more examples: ||= Genshi ||= Jinja2 || || `${', '.join([p.name for p in faulty_plugins])}` || \ || `${faulty_plugins|map('name')|join(', ')}` || || ... || ... || === conditional wrappers There's no direct equivalent to the `py:strip`, but it can often be emulated with an `if/else/endif`. - Genshi {{{#!html+genshi $plugin.name }}} - Jinja2 {{{#!html+jinja # if url: ${plugin.name} # else: ${plugin.name} # endif }}} If the repeated content is complex, one can use a //block assignment// (see below). === i18n Genshi had a pretty good notion of what was a piece of translatable text within an HTML template, but Jinja2 doesn't, so there's no "guessing" and no i18n will happen unless explicitly asked. This can be done in two ways. First, with translation expressions, using the familiar `_()` gettext function (`gettext` and `ngettext` also supported). - Genshi: [[xml(Trac detected an internal error:)]] - Jinja2: [[xml(${_("Trac detected an internal error:")})]] Second, using `trans` directives. - Genshi: {{{#!html+genshi

Otherwise, please ${create_ticket(tracker)} a new bug report describing the problem and explain how to reproduce it.

}}} - Jinja2: {{{#!html+jinja

# trans create = create_ticket(tracker) Otherwise, please ${create} a new bug report describing the problem and explain how to reproduce it. # endtrans

}}} Note that only direct variable expansions are supported in `trans` blocks, nothing more complex. So one way to deal with complex translatable content is to factor out the complex parts in variable blocks. See [http://jinja.pocoo.org/docs/dev/templates/#block-assignments block assignments] doc. - Genshi: {{{#!html+genshi

There was an internal error in Trac. It is recommended that you notify your local Trac administrator with the information needed to reproduce the issue.

}}} - Jinja2: {{{#!html+jinja

# set trac_admin = _("Trac administrator") # set project_admin # if project.admin: ${trac_admin} # else: ${trac_admin} # endif # endset # trans project_admin = project_admin|safe There was an internal error in Trac. It is recommended that you notify your local ${project_admin} with the information needed to reproduce the issue. # endtrans

}}} (the need for the `|safe` filter in the above might go away once the following issue //[https://github.com/mitsuhiko/jinja2/issues/490 Should set blocks be safe by default]// gets fixed) === Examples === Let's first take a simple full-contained example from the Trac source, the simple index.html / jindex.html templates. - Genshi [source:sandbox/genshi/templates/index.html@3728 index.html]: {{{#!html+genshi Available Projects

Available Projects

}}} - Jinja [source:cboos.git/trac/templates/jindex.html@jinja2 jindex.html]: {{{#!html+jinja ${_("Available Projects")}

${_("Available Projects")}

}}} In this small example, there's no common Trac layout used (as the index is a bit special). For how a "normal" template looks like, see for example [source:trac/templates/jdiff_form.html@jinja2 jdiff_form.html], another small template. Note that a Jinja2 .html template can usually be rendered directly in the browser, to have a rough taste of how it will look like: {{{#!div style="border: 1px solid #999; margin: 1em" {{{#!html (html mode on purpose here!)

${_("Available Projects")}

}}} }}} Though there's no absolutely no constraints on a Jinja2 template, it helps to have an .xml or .html template be itself '''a well-formed XML document'''. **Never** go back to the bad old Clearsilver habits were sometimes the logic in those templates took advantage of the lack of well-formedness constraints, e.g. by conditionally inserting end/start pairs of tags. Such templates were hard to maintain, and you always have cleaner alternatives. The [#jinjachecker] tool should also help you maintain well-formed templates. == Changes in the controllers == === Implementing the `IRequestHandler` interface === With Genshi, the data for the template is basically a `dict`, which has to be returned by `process_request` at the same time as the template name. This hasn't changed with Jinja2. === Generating content === When one wants to directly render a template, the Chrome component facilities can be used, as before: {{{#!py return Chrome(self.env).render_template( req, 'query_results.html', data, None, fragment=True) }}} //implementing [source:cboos.git/trac/ticket/query.py@jinja2#L1403 Ticket Query] macro (''table'' mode)// [[comment(//Sending notification e-mails//)]]