ll.ul4c provides templating for XML/HTML as well as any other text-based
format. A template defines placeholders for data output and basic logic (like
loops and conditional blocks), that define how the final rendered output will
look.
ll.ul4c compiles a template to a bytecode format, which makes it possible
to implement renderers for these templates in multiple programming languages.
Currently there's a compiler and renderer in Python and a compiler and renderer in Java. Also compilation to Javascript is supported in both the Python and the Java compiler.
Embedding
In the template source any text surrounded by <? and ?> is a "template
tag". The first word inside the tag is the tag type. It defines what the tag
does. For example <?print foo?> is a print tag (it prints the value of the
variable foo). A complete example template looks like this:
<?if data?> <ul> <?for item in data?> <li><?print xmlescape(item)?></li> <?end for?> </ul> <?end if?>
(For text formats where the delimiters <? and ?> collide with elements
that are used often or where using these delimiters is inconvenient it's
possible to specify a different delimiter pair when compiling the template.)
A complete Python program that compiles a template and renders it might look like this:
from ll import ul4c code = u'''<?if data?> <ul> <?for item in data?> <li><?print xmlescape(item)?></li> <?end for?> </ul> <?end if?>''' tmpl = ul4c.Template(code) print tmpl.renders(data=[u"Python", u"Java", u"PHP", u"C++"])
The variables that should be available to the template code can be passed to the
method Template.renders as keyword arguments. renders returns
the final rendered output as a string. Alternatively the method render
can be used, which is a generator and returns the output piecewise.
Supported data types
The following object types can be passed as variables to be used by the template code:
strings
integers
floats
date objects
color objects
The "null" value (
None)boolean values (
TrueandFalse)lists
dictionaries
templates
This is similar to what JSON supports (except for date objects, color objects and templates).
Note that depending on the implementation language of the renderer additional
types might be supported, e.g. a Python renderer will probably support tuples
and lists and anything supporting __getitem__ (or __iter__ when
the list is used in a loop) for lists, Java might support anything implementing
the List interface (or the Collection interface if the list is used in a
loop).
Objects of these types can either be passed to the template in the call to the render function, or the template can create objects of thoses types itself. The syntax for creating such a constant is very similar to Python's syntax.
The "null" constant
The "null" constant can be referred to via None.
Boolean constants
The boolean constants can be referred to via True and False.
Integer constants
Integer constants can be written in decimal, hexadecimal, octal and binary:
42, 0x2a, 0o52 and 0b101010 all refer to the integer value 42.
Float constants
Float constants must contain a decimal point or an exponential specifier,
e.g. 42., 4e23.
String constants
Strings are delimited with single or double quotes and support all escape
sequences that Python supports (except \N{}). Strings constants are always
unicode objects, so \uXXXX escaping is possible. Examples:
"abc"and'abc';"'"and'\''are single quotes;'"'and"\""are double quotes;"\n"is a line feed and"\t"is a tab;"\x61"and"\u0061"are lowercase "a"s;
Date constants
Date objects have a date and time including microseconds. Date constants can be created like this:
@2008-12-24T@2008-12-24T12:34@2008-12-24T12:34:56@2008-12-24T12:34:56.987654
Color constants
Color values are 8 bit red, green, blue and alpha values. Color constants can be created like this:
#fff#fff8#0063a8#0063a880
The variants with 3 or 6 hex digits will create a color object with an alpha value of 255.
List constants
Lists can be created like this:
[][1, 2, 3][None, 42, "foo", [False, True]]
Dictionary constants
Dictionaries can be created like this:
{}{1: 2, 3: 4}{"foo": 17, "bar": 23}
Also Python ** syntax for passing keyword arguments is supported for
creating dictionaries:
{"foo": 17, "bar": 23, **{1: 2, 3: 4}}With this it's possible to copy the content of one dictionary into another new
one. Keys are set from left to right, so later values overwrite former ones, so
{1: 2, 1: 3}[1] and {1: 2, **{1: 3}}[1] will both return 3 not 2.
Template code
The template code tries to mimic Python syntax as far as possible, but is limited to what is required for templates and does not allow executing arbitrary Python statements.
ll.ul4c supports the following tag types:
print
The print tag outputs the value of a variable or any other expression. If
the expression doesn't evaluate to a string it will be converted to a string
first. The format of the string depends on the renderer, but should follow
Python's unicode() output as much as possible (except that for None no
output may be produced):
<h1><?print person.lastname?>, <?print person.firstname?></h1>
printx
The printx tag outputs the value of a variable or any other expression and
escapes the characters <, >, &, ' and " with the appropriate
character or entity references for XML or HTML output.
for
The for tag can be used to loop over the items in a list, the characters in
a string or the keys in a dictionary. The end of the loop body must be marked
with an <?end for?> tag:
<ul> <?for person in data.persons?> <li><?print person.lastname?>, <?person.firstname?></li> <?end for?> </ul>
In for loops tuple unpacking is supported for tuples of length 1, 2 and 3,
so you can do the following:
<?for (key, value) in items?>
if items is an iterable containing lists with two elements.
break
The break tag can be used to break out of the innermost running loop.
continue
The continue tag can be used to skip the rest of the loop body of the
innermost running loop.
if
The if tag can be used to output a part of the template only when a
condition is true. The end of the if block must be marked with an
<?end if?> tag. The truth value of an object is the same as in Python:
Noneis false.The integer
0and the float value0.0are false.Empty strings, lists and dictionaries are false.
Falseis false.Anything else is true.
For example we can output the person list only if there are any persons:
<?if persons?> <ul> <?for person in persons?> <li><?print person.lastname?>, <?person.firstname?></li> <?end for?> </ul> <?end if?>
elif and else are supported too:
<?if persons?> <ul> <?for person in persons?> <li><?print person.lastname?>, <?person.firstname?></li> <?end for?> </ul> <?else?> <p>No persons found!</p> <?end if?>
or:
<?if len(persons)==0?> No persons found! <?elif len(persons)==1?> One person found! <?else?> <?print len(persons)?> persons found! <?end if?>
code
The code tag can be used to define or modify variables. Apart from the
assigment operator =, the following augmented assignment operators are
supported:
+=(adds a value to the variable)-=(subtracts a value from the variable)*=(multiplies the variable by a value)/=(divides the variable by a value)//=(divides the variable by a value, rounding down to the next smallest integer)&=(Does a modulo operation and replaces the variable value with the result)
For example the following template will output 40:
<?code x = 17?> <?code x += 23?> <?print x?>
render
The render tag allows one template to call other templates. The following Python code demonstrates this:
from ll import ul4c # Template 1 source1 = u"""\ <?if data?>\ <ul> <?for i in data?><?render itemtmpl(item=i)?><?end for?>\ </ul> <?end if?>\ """ tmpl1 = ul4c.Template(source1) # Template 2 source2 = u"<li><?print xmlescape(item)?></li>\n" tmpl2 = ul4c.Template(source2) # Data object for the outer template data = [u"Python", u"Java", u"PHP"] print tmpl1.renders(itemtmpl=tmpl2, data=data)
This will output:
<ul> <li>Python</li> <li>Java</li> <li>PHP</li> </ul>
I.e. templates can be passed just like any other object as a variable.
<?render itemtmpl(item=i)?> renders the itemtmpl template and passes the
i variable, which will be available in the inner template under the name
item.
def
The def tag defined a new template as a variable. Usage looks like this:
<?def quote?>"<?print text?>"<?end def?>
This template can be called like any other template, that has been passed to the outermost template:
<?render quote(text="foo")?>
note
A note tag is a comment, i.e. the content of the tag will be completely ignored.
Expressions
ll.ul4c supports many of the operators supported by Python. Getitem style
element access is available, i.e. in the expression a[b] the following type
combinations are supported:
string, integer: Returns the
bth character from the stringa. Note that negativebvalues are supported and are relative to the end, soa[-1]is the last character.list, integer: Returns the
bth list entry of the lista. Negativebvalues are supported too.dict, string: Return the value from the dictionary
acorresponding to the keyb. Note that some implementations might support keys other than strings too. (The Python and Java renderer do for example.)
Slices are also supported (for list and string objects). As in Python one or both of the indexes may be missing to start at the first or end at the last character/item. Negative indexes are relative to the end. Indexes that are out of bounds are simply clipped:
<?print "Hello, World!"[7:-1]?>printsWorld.<?print "Hello, World!"[:-8]?>printsHello.
The following binary operators are supported: +, -, *, / (true
division), // (truncating division) and & (modulo).
The usual boolean operators not, and and or are supported. However
and and or don't short-circuit, i.e. both operands will be evaluated.
However both and and or always return one of the operands). For example,
the following code will output the data.title object if it's true, else
data.id will be output:
<?print xmlescape(data.title or data.id)?>
The comparison operators ==, !=, <, <=, > and >= are
supported.
Containment test via the in operator can be done, in the expression
a in b the following type combinations are supported:
string, string: Checks whether
ais a substring ofb.any object, list: Checks whether the object
ais in the listb(comparison is done by value not by identity)string, dict: Checks whether the key
ais in the dictionaryb. (Note that some implementations might support keys other than strings too.)
The inverted containment test (via not in) is available too.
Attribute access in the template code maps the dictionary style getitem access in the data object:
from ll import ul4c
tmpl = ul4c.Template("<?print data.foo?>")
print tmpl.renders(data=dict(foo="bar"))However getitem style access in the template is still possible:
from ll import ul4c
tmpl = ul4c.Template("<?print data['foo']?>")
print tmpl.renders(data=dict(foo="bar"))Functions
ll.ul4c supports a number of functions.
now
now() returns the current date and time as a date object.
utcnow
utcnow() returns the current date and time as a date object in UTC.
vars
vars() returns a dictionary containing all currently defined variables
(i.e. variables passed to the template, defined via <?code?> tags or as
loop variables).
random
random() returns a random float value between 0 (included) and 1 (excluded).
randrange
randrange(start, stop, step) returns a random integer value between start
(included) and stop (excluded). step specifies the step size (i.e.
when r is the random value, (r-start) % step will always be 0.
step and start can be ommitted.
randchoice
randchoice(seq) returns a random item from the sequence seq.
isnone
isnone(foo) returns True if foo is None, else False is
returned:
data is <?if isnone(data)?>None<?else?>something else<?end if?>!
isbool
isbool(foo) returns True if foo is True or False, else
False is returned.
isint
isint(foo) returns True if foo is an integer object, else False
is returned.
isfloat
isfloat(foo) returns True if foo is a float object, else False
is returned.
isstr
isstr(foo) returns True if foo is a string object, else False
is returned.
isdate
isdate(foo) returns True if foo is a date object, else False
is returned.
islist
islist(foo) returns True if foo is a list object, else False
is returned.
isdict
isdict(foo) returns True if foo is a dictionary object, else
False is returned.
iscolor
iscolor(foo) returns True if foo is a color object, else False
is returned.
bool
bool(foo) converts foo to an boolean. I.e. True or False is
returned according to the truth value of foo.
int
int(foo) converts foo to an integer. foo can be a string, a float,
a boolean or an integer. int can also be called with two arguments. In this
case the first argument must be a string and the second is the number base for
the conversion.
float
float(foo) converts foo to a float. foo can be a string, a float,
a boolean or an integer.
str
str(foo) converts foo to a string. If foo is None the result
will be the empty string. For lists and dictionaries the exact format is
undefined, but should follow Python's repr format. For color objects the result
is a CSS expression (e.g. "#fff").
repr
repr(foo) converts foo to a string representation that is useful for
debugging proposes. The output is a constant expression that could be used to
recreate the object.
get
get(k, v) returns the global variable named k if it exists, else v
is returned. If v is not given, it defaults to None.
len
len(foo) returns the length of a string, or the number of items in a list
or dictionary.
enumerate
Enumerates the items of the argument (which must be iterable, i.e. a string, a list or dictionary). For example the following code:
<?for (i, c) in enumerate("foo")?><?print i?>=<?print c?>;<?end for?>prints:
0=f;1=o;2=o;
xmlescape
xmlescape takes a string as an argument. It returns a new string where the
characters &, <, >, ' and " are replaced with the
appropriate XML entity or character references. For example:
<?print xmlescape("<'foo' & 'bar'>")?>prints:
``<'foo' & ;'bar'>``
If the argument is not a string, it will be converted to a string first.
<?printx foo?> is a shortcut for <?print xmlescape(foo)?>.
sorted
sorted returns a sorted list with the items from it's argument. For example:
<?for c in sorted('bar')?><?print c?><?end for?>prints:
abr
Supported arguments are iterable objects, i.e. strings, lists, dictionaries and colors.
chr
chr(x) returns a one-character string with a character with the codepoint
x. x must be an integer. For example <?print chr(0x61)?> outputs
a.
ord
The argument for ord must be a one-character string. ord returns the
codepoint of that character as an integer. For example <?print ord('a')?>
outputs 97.
hex
Return the hexadecimal representation of the integer argument (with a leading
0x). For example <?print hex(42)?> outputs 0x2a.
oct
Return the octal representation of the integer argument (with a leading 0o).
For example <?print oct(42)?> outputs 0o52.
bin
Return the binary representation of the integer argument (with a leading 0b).
For example <?print bin(42)?> outputs 0b101010.
range
range returns an object that can be iterated and will produce consecutive
integers up to the specified argument. With two arguments the first is the start
value and the second is the stop value. With three arguments the third one is
the step size (which can be negative). For example the following template:
<?for i in range(2, 10, 2)?>(<?print i?>)<?end for?>
outputs:
(2)(4)(6)(8)
type
type returns the type of the object as a string. Possible return values are
"none", "bool", "int", "float", "str", "list",
"dict", "date", "color" and "template". (If the type isn't
recognized None is returned.)
rgb
rgb returns a color object. It can be called with
three arguments, the red, green and blue values. The alpha value will be set to 255;
four arguments, the red, green, blue and alpha values.
Methods
Objects in ll.ul4c support some methods too (depending on the type of the
object).
upper
The upper method of strings returns an uppercase version of the string for
which it's called:
<?print 'foo'.upper()?>
prints:
FOO
lower
The lower method of strings returns an lowercase version of the string for
which it's called.
capitalize
The capitalize method of strings returns a copy of the string for with its
first letter capitalized.
startswith
x.startswith(y) returns True if the string x starts with the string
y and False otherwise.
endswith
x.endswith(y) returns True if the string x ends with the string
y and False otherwise.
strip
The string method strip returns a copy of the string with leading and
trailing whitespace removed. If an argument chars is given and not None,
characters in chars will be removed instead.
lstrip
The string method lstrip returns a copy of the string with leading
whitespace removed. If an argument chars is given and not None,
characters in chars will be removed instead.
rstrip
The string method rstrip returns a copy of the string with trailing
whitespace removed. If an argument chars is given and not None,
characters in chars will be removed instead.
split
The string method split splits the string into separate "words" and returns
the resulting list. Without any arguments, the string is split on whitespace
characters. With one argument the argument specifies the separator to use. The
second optional argument specifies the maximum number of splits to do.
rsplit
The string method rsplit works like split, except that splitting starts
from the end (which is only relevant when the maximum number of splits is
given).
find
This string method searches for a substring of the string for which it's called
and returns the position of the first appearance of the substring or -1 if
the string can't be found. For example "foobar".find("bar") returns 3.
The optional second and third argument specify the start and end position for
the search.
replace
This string method replace has two arguments. It returns a new string where each occurrence of the first argument is replaced by the second argument.
get
get is a dictionary method. d.get(k, v) returns d[k] if the key
k is in d, else v is returned. If v is not given, it defaults
to None.
join
join is a string method. It returns a concatentation of the strings in the
argument sequence with the string itself as the separator, i.e.:
<?print "+".join([1, 2, 3, 4])?>
outputs:
1+2+3+4
render
The render method of template objects renders the template and returns the
output as a string. The parameter can be passed via keyword argument or via the
** syntax:
<?code output = template.render(a=17, b=23)?>
<?code data = {'a': 17, 'b': 23)?>
<?code output = template.render(**data)?>isoformat
isoformat is a date method. It returns the date object in ISO 8601 format,
i.e.:
<?print now().isoformat()?>
might output:
2010-02-22T18:30:29.569639
mimeformat
mimeformat is a date method. It returns the date object in MIME format
(assuming the date object is in UTC), i.e.:
<?print utcnow().mimeformat()?>
might output:
Mon, 22 Feb 2010 17:38:40 GMT
day, month, year, hour, minute, second, microsecond, weekday
Those methods are date methods. They return a specific attribute of a date
object. For example the following reproduces the mimeformat output from
above (except for the linefeeds of course):
<?code weekdays = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']?> <?code months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']?> <?code t = @2010-02-22T17:38:40.123456?> <?print weekdays[t.weekday()]?>, <?print format(t.day(), '02')?> <?print months[t.month()-1]?> <?print format(t.year(), '04')?> <?print format(t.hour(), '02')?>: <?print format(t.minute(), '02')?>: <?print format(t.second(), '02')?>. <?print format(t.microsecond(), '06')?> GMT
yearday
yearday is a date method. It returns the number of days since the beginning
of the year, so:
<?print @2010-01-01T.yearday()?>
prints 1 and
<?print 2010-12-31T.yearday()?>
prints 365.