This repository was archived by the owner on Jun 13, 2018. It is now read-only.

Description
It's unclear from documentation how to iterate over attributes of a given XML node.
I tried the following, without success:
.global.xxx = xml.load_string ("<a value = \"2\" x=\"1\">Hello</a>")
.for xxx. as i
echo i
.endfor
This prints:
2015/11/13 13:32:55: gsl/4 M: Hello
What I need is an iterator that would iterate through all attributes of "a" node: "value", "x".
Any help?