CDATA in graph

Hello,

which is the terminology for the possibility to embed a code within the XML Graph description. Is that something extra Clover specific?
Is the syntax Java or Java script or only similar?
To embed: <![CDATA …?

I mean e.g.:


…
<Node enabled="enabled" guiHeight="0" guiName="Reformat" guiWidth="0" guiX="306" guiY="67" id="REFORMAT0" type="REFORMAT">
<attr name="transform"><![CDATA[string customer;
function transform(){
if (length($0.text)==36){
customer = substring($0.text,0,2);
}
$0.customer := customer;
$0.text := $0.text;
}
]]></attr>
</Node>

…

Thank you,

Kind regards,
P.[/code]

Hi,
this is standard xml syntax (see CDATA Sections) and is used to escape blocks of text containing characters which would otherwise be recognized as markup.