[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

REXML raw all doesn't seem to work

Mr_Tibs

4/14/2009 9:47:00 PM

Hi,

I'm trying to modify the contents of an XML document (read from file,
add nodes, write to file) and I have to make sure that I do NOT escape
any characters. The REXML documentation says that you should use :raw
=> :all as such:

doc = REXML::Document.new( source, { :raw => :all })

If I have doc = REXML::Document.new("<group name='Blah &amp; Foo'>Bar</
group>", { :raw => :all }), when I do doc.write($stdout, 2), I get
"<group name='Blah &amp;amp; Foo'>Bar</group>". I see that raw-all
works for Text and Element, but it doesn't work for Document. I looked
at the source code, and I just don't see how it could possibly work.
The Document's context should apply to @children, yet no such code
exists.

Am I using it wrong, or is this a bug?

Thanks,
Tiberiu