dwww Home | Show directory contents | Find package

Temple expression documentation
===============================

Temple uses S-expressions to represent the parsed template code. The S-expressions
are passed from filter to filter until the generator. The generator transforms
the S-expression to a ruby code string. See the {file:README.md README} for an introduction.

In this document we documented all the expressions which are used by Temple. There is also
a formal grammar which can validate expressions.

The Core Abstraction
--------------------

The core abstraction is what every template evetually should be compiled
to. Currently it consists of six types:
multi, static, dynamic, code, newline and capture.

When compiling, there's two different strings we'll have to think about.
First we have the generated code. This is what your engine (from Temple's
point of view) spits out. If you construct this carefully enough, you can
make exceptions report correct line numbers, which is very convenient.

Then there's the result. This is what your engine (from the user's point
of view) spits out. It's what happens if you evaluate the generated code.

### [:multi, *sexp]

Multi is what glues everything together. It's simply a sexp which combines
several others sexps:

    [:multi,
      [:static, "Hello "],
      [:dynamic, "@world"]]

### [:static, string]

Static indicates that the given string should be appended to the result.

Example:

    [:static, "Hello World"]
is the same as:
    _buf << "Hello World"

    [:static, "Hello \n World"]
is the same as
    _buf << "Hello\nWorld"

### [:dynamic, ruby]

Dynamic indicates that the given Ruby code should be evaluated and then
appended to the result.

The Ruby code must be a complete expression in the sense that you can pass
it to eval() and it would not raise SyntaxError.

Example:

     [:dynamic, 'Math::PI * r**2']

### [:code, ruby]

Code indicates that the given Ruby code should be evaluated, and may
change the control flow. Any \n causes a newline in the generated code.

Example:

     [:code, 'area = Math::PI * r**2']

### [:newline]

Newline causes a newline in the generated code, but not in the result.

### [:capture, variable_name, sexp]

Evaluates the Sexp using the rules above, but instead of appending to the
result, it sets the content to the variable given.

Example:

    [:multi,
      [:static, "Some content"],
      [:capture, "foo", [:static, "More content"]],
      [:dynamic, "foo.downcase"]]
is the same as:
    _buf << "Some content"
    foo = "More content"
    _buf << foo.downcase

Control flow abstraction
------------------------

Control flow abstractions can be used to write common ruby control flow constructs.
These expressions are compiled to [:code, ruby] by Temple::Filters::ControlFlow

### [:if, condition, if-sexp, optional-else-sexp]

Example:

    [:if,
     "1+1 == 2",
     [:static, "Yes"],
     [:static, "No"]]
is the same as:
    if 1+1 == 2
      _buf << "Yes"
    else
      _buf << "No"
    end

### [:block, ruby, sexp]

Example:

    [:block,
     '10.times do',
     [:static, 'Hello']]
is the same as:
    10.times do
      _buf << 'Hello'
    end

### [:case, argument, [condition, sexp], [condition, sexp], ...]

Example:

    [:case,
     'value',
     ["1",   "value is 1"],
     ["2",   "value is 2"],
     [:else, "don't know"]]
is the same as:
    case value
    when 1
      _buf << "value is 1"
    when 2
      _buf << "value is 2"
    else
      _buf << "don't know"
    end

### [:cond, [condition, sexp], [condition, sexp], ...]

    [:cond,
     ["a",   "a is true"],
     ["b",   "b is true"],
     [:else, "a and b are false"]]
is the same as:
    case
    when a
      _buf << "a is true"
    when b
      _buf << "b is true"
    else
      _buf << "a and b are false"
    end

Escape abstraction
------------------

The Escape abstraction is processed by Temple::Filters::Escapable.

### [:escape, bool, sexp]

The boolean flag switches escaping on or off for the content sexp. Dynamic and static
expressions are manipulated.

Example:

    [:escape, true,
     [:multi,
      [:dynamic, "code"],
      [:static, "<"],
      [:escape, false, [:static, ">"]]]]
is transformed to
    [:multi,
     [:dynamic, 'escape_html(code)'],
     [:static, '&lt;'],
     [:static, '>']]

HTML abstraction
----------------

The HTML abstraction is processed by the html filters (Temple::HTML::Fast and Temple::HTML::Pretty).

### [:html, :doctype, string]

Example:
    [:html, :doctype, '5']
generates
    <!DOCTYPE html>

Supported doctypes:

<table>
<tr><td><b>Name</b></td><td><b>Generated doctype</b></td></tr>
<tr><td>1.1</td><td>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt;</td></tr>
<tr><td>html, 5</td><td>&lt;!DOCTYPE html></td></tr>
<tr><td>strict</td><td>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt;</td></tr>
<tr><td>frameset</td><td>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"&gt;</td></tr>
<tr><td>mobile</td><td>&lt;!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.2//EN" "http://www.openmobilealliance.org/tech/DTD/xhtml-mobile12.dtd"&gt;</td></tr>
<tr><td>basic</td><td>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML Basic 1.1//EN" "http://www.w3.org/TR/xhtml-basic/xhtml-basic11.dtd"&gt;</td></tr>
<tr><td>transitional</td><td>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;</td></tr>
</table>

### [:html, :comment, sexp]

Example:
    [:html, :comment, [:static, 'comment']]
generates:
    <!--comment-->

### [:html, :condcomment, condition, sexp]

Example:
    [:html, :condcomment, 'IE', [:static, 'comment']]
generates:
    <!--[if IE]>comment<![endif]-->

### [:html, :tag, identifier, attributes, optional-sexp]

HTML tag abstraction. Identifier can be a String or a Symbol. If the optional content Sexp is omitted
the tag is closed (e.g. `<br/>` `<img/>`). The tag is also closed if the content Sexp is empty
(consists only of :multi and :newline expressions) and the tag is registered as auto-closing.

Example:
    [:html, :tag, 'img', [:html, :attrs, [:html, :attr, 'src', 'image.png']]]
    [:html, :tag, 'p', [:multi], [:static, 'Content']]
generates:
    
    <img src="image.png"/>
    <p>Content</p>

### [:html, :attrs, attributes]

List of html attributes [:html, :attr, identifier, sexp]

### [:html, :attr, identifier, sexp]

HTML attribute abstraction. Identifier can be a String or a Symbol.

### [:html, :js, code]

HTML javascript abstraction which wraps the js code in a HTML comment or CDATA depending on document format.

Formal grammar
--------------

Validate expressions with Temple::Grammar.match? and Temple::Grammar.validate!

    Temple::Grammar.match? [:multi, [:static, 'Valid Temple Expression']]
    Temple::Grammar.validate! [:multi, 'Invalid Temple Expression']

The formal grammar is given in a Ruby DSL similar to EBNF and should be easy to understand if you know EBNF. Repeated tokens
are given by appending ?, * or + as in regular expressions.

* ? means zero or one occurence
* \* means zero or more occurences
* \+ means one or more occurences

<!-- Find a better way to include the grammar -->
<script src="http://gist-it.appspot.com/github/judofyr/temple/raw/master/lib/temple/grammar.rb"></script>

Generated by dwww version 1.15 on Fri Aug 29 22:34:50 CEST 2025.