[REBOL] Re: object2XML
From: inetw3:mindspring at: 12-Mar-2004 10:09
Do you want the parsed xml displayed?
And if so, how are you wanting it to be
displayed.
I'm not familiar with seeing xml DOM's
showing parsed output xml unless it's
called with xml functions or through a
viewer/editor.
The functions chosen for %quickparse.r
are the ECMAscript binding functions, wich
I find a lot easier for use with webpages
and with inline javascript function calls in my
View browser,
ie...
<p id="p1"color="red">Change this text</p>
<input type="button"
onclick="getattribute(p1).setnodevalue({This text changed})" />
.....The changes are made in the html
paged and VID code wich can be saved .
and in rebol...
<input type="button"
onclick="p1/text.{This text changed}.show.p1" />
.....But the html is not changed and if the
paged is saved the original code remains.
There's no need to use parse-xml with
these functions because you can drill down
into any part of the xml/html file to make
changes and use them with Rebol code.
But in the spirit of Rebol,
"To each his/her own"