[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

inserting raw xml into a rexml document

Ara.T.Howard

12/11/2005 5:00:00 AM

2 Answers

ES

12/11/2005 6:42:00 AM

0

On 2005.12.11 14:00, "Ara.T.Howard" <ara.t.howard@noaa.gov> wrote:
>
>
> how can i do this:
>
>
> [ahoward@localhost xhtml-0.0.0]$ irb -r rexml/document
> irb(main):001:0> REXML::Text::new("<foobar>", respect_whitespace=false, parent=nil, raw=false).to_s
> => "&lt;foobar&gt;"
>
> irb(main):002:0> REXML::Text::new("<foobar>", respect_whitespace=false, parent=nil, raw=nil).to_s
> => "&lt;foobar&gt;"
>
> irb(main):003:0> REXML::Text::new("<foobar>", respect_whitespace=false, parent=nil, raw=true).to_s
> /usr/local/lib/ruby/1.8/rexml/text.rb:90:in `initialize': Illegal character '<' in raw string "<foobar>" (Exception)
> from (irb):3:in `new'
> from (irb):3:in `irb_binding'
> from /usr/local/lib/ruby/1.8/irb/workspace.rb:52:in `irb_binding'
> from /usr/local/lib/ruby/1.8/irb/workspace.rb:52
>
>
> is there no way to subvert the call to allow placing raw strings containing
> __any__ chars into the output?

Are you actually trying to create new elements in the doc? (If not, then
the entity conversion is the correct behaviour.) If you want to insert
elements, the simplest way is probably to just create a new document
from the string and then insert that as a child of your current
element.

> regards.
>
> -a

E


Ara.T.Howard

12/11/2005 7:16:00 AM

0