Example 2: Create a new fragment, Create and set an Attribute
This is a more complex example showing how to generate and set a value on a fragment and also how
to create and set an attribute value.
First we create a new fragment b/c with the leaf node <c>
given a value pony. The fragment is attached to the root node <a>.
Secondly we add a new attribute, food with value grass, to the newly
created <c> element.
<idoc> <seq> <instr> <type>stm</type> <operand>doc.xml</operand> <operator> <stm:group xmlns:stm="http://1060.org/stm"> <stm:create-path newpath="b/c" select="." xpath="/a">
pony
</stm:create-path> <stm:create-path newpath="@food" select="." xpath="/a/b[3]/c">
grass
</stm:create-path> </stm:group> </operator> <target>this:response</target> </instr> </seq> </idoc>
Try it
 |