blob: c381ef49c883ba6c89acf58e9d90999bc3a0b962 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<ste:mktag name="double"><ste:calc>2 * <ste:tagcontent /></ste:calc></ste:mktag>
<ste:mktag name="foo" mandatory="a|b">
<ste:set var="b">$_tag_parameters[b]</ste:set><ste:comment>Ugly hack, since STE does no scoping...</ste:comment>
<ste:for counter="i" start="0" stop="$_tag_parameters[a]">
<ste:if>
<ste:even>$i</ste:even>
<ste:then><ste:double>$i</ste:double></ste:then>
<ste:else>$b</ste:else>
</ste:if>
</ste:for>
</ste:mktag>
<ste:foo a="10" b="-" />
|