summaryrefslogtreecommitdiff
path: root/docu
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2014-05-24 13:07:19 +0200
committerKevin Chabowski <kevin@kch42.de>2014-05-24 13:07:19 +0200
commit9f86139b7604ea782a35e09bf9d0c55154197051 (patch)
treeee1202b8539a177f3c240d1fd2c898d7f259ef5e /docu
parentf7ddc264d832d163494904da67ca96856335487b (diff)
downloadste-9f86139b7604ea782a35e09bf9d0c55154197051.tar.gz
ste-9f86139b7604ea782a35e09bf9d0c55154197051.tar.bz2
ste-9f86139b7604ea782a35e09bf9d0c55154197051.zip
Added ste:setlocal and refined test_scope.
Diffstat (limited to 'docu')
-rw-r--r--docu/language_definition.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/docu/language_definition.html b/docu/language_definition.html
index 84232de..a296395 100644
--- a/docu/language_definition.html
+++ b/docu/language_definition.html
@@ -445,6 +445,9 @@
<code><pre>&lt;ste:set var="temp"&gt;&lt;ste:foo /&gt;&lt;/ste:set&gt;<br />&lt;ste:bar baz="$temp" /&gt;</pre></code>
</p>
+ <h3 id="builtin_setlocal">ste:set</h3>
+ <p>ste:setlocal is used like <a href="#builtin_set">ste:set</a>, but only a local variable will be set (ste:set would overwrite a variable, if it was declared in a parent scope).
+
<h3 id="builtin_get">ste:get</h3>
<p>ste:get will return the content of a variable. The parameter <code>var</code> takes the name of the variable to get. Useful, if you want to get a variable which name is stored in a variable.</p>
<p>