Tagged Questions

1
vote
2answers
73 views

Parsing namespaced XML using libxml-ruby

I'm attempting to parse XML in the following format (from the European Central Bank data feed) using libxml-ruby: <?xml version="1.0" encoding="UTF-8"?> <gesmes:Envelope …
0
votes
1answer
43 views

How can I stop parse when find the 1st element ?

I would like to stop parse when find 1st element even there is more same element after that. I use libxml,SAX on ruby. This code show every <usr> element. But I want to stop parse when find 1st …
1
vote
1answer
149 views

How do I tell libxml-ruby about external entity files?

I'm trying to validate using libxml-ruby's DTD#validate, but I keep getting the following warnings: Warning: failed to load external entity "xhtml-lat1.ent" at :29. Warning: failed to load external …
0
votes
0answers
17 views

libxml-ruby and multiple namespaces

having this xml declaration: <didl:DIDL xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:didl="urn:mpeg:mpeg21:2002:02-DIDL-NS" …
0
votes
2answers
485 views

Convert a Nokogiri document to a Ruby Hash

Is there an easy way to convert a Nokogiri XML document to a Hash? Something like Rails' Hash.from_xml.
1
vote
1answer
57 views

Clear Unwanted Namespaces with LibXML-Ruby

I would like to parse an Atom Feed and create an Atom-compliant cache of each Entry. The problem is that some feeds (this one for example) have many namespaces other than the Atom one. Is it …
0
votes
1answer
188 views

libxml-ruby parsing HELP…

Alright, switching from working Hpricot to Libxml-ruby due to speed and well the disappearance of _why, looked at Nokogiri for a second but decided to look at Libxml-ruby for speed and longevity. I …
1
vote
2answers
525 views

Ruby: libxml-ruby and adding nicely-formatted sibling nodes

Given my existing XML (test.xml): <root> <element> <child id="1" /> <child id="2" /> <child id="3" /> </element> </root> And my ruby code: …
1
vote
1answer
288 views

libxml-ruby on windows xp problem

About a month ago I installed libxml-ruby using gem install libxml-ruby and it worked fine. Then i went to install it on another machine today and it failed with this error: …
1
vote
1answer
251 views

Ruby: Can’t save document with Libxml-ruby

From the libxml-ruby API docs (http://libxml.rubyforge.org/rdoc/index.html), under LibXML::XML::Document, I tried the following: filename = 'something.xml' stats_doc = XML::Document.new() …