5 Mar
2013
5 Mar
'13
10:16 a.m.
On 03/05/2013 09:58 AM, Hans Hagen wrote:
lookuptable[mytype] = mytype .. " = " .. myvalue inspect(lookuptable)
the .. triggers a tostring on myvalue which in turn serializes the xml
lookuptable[mytype] = { mytype = myvalue }
would keep myvalue as xml node
Hans, thanks a lot, the explanation makes sense, but your suggestion is not yet clear enough for me: how would I then process the node? context(lookuptable[mytype]["mytype"]) gives again the serialized xml. Thomas