How to Design XML Documents
Aug 27 2:51:29
Back online!
Jul 30 16:17:53
Response to "Knowledge Management 2.0"
Jul 18 2:45:52
Drupal Apps
Jun 3 7:17:00
Google Sites and the AJAX universe
May 21 1:18:39
Unfortunately E4X documentation is very thin on the ground, even on the official Mozilla Rhino site, which has left a lot of developers either scrabbling through source code or relying on examples.
An invaluable article on the principles and practice of E4X can be found on the DevX site.
In particular:
One method curiously left off the list of Page 4 which I find useful for debugging is XML.settings(). The following snippet will show you the current status of the XML engine:
for (var i in XML.settings()) {
print(i + ": " + XML.settings()[i]);
}