Tagged Questions
The libxml-ruby tag has no wiki summary.
15
votes
8answers
6k 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.
3
votes
2answers
105 views
Add comment nodes outside root with ruby-libxml
I am writing an xml exporter in ruby and I am using libxml package for it.
I want to write some comment nodes outside the root element
<?xml version="1.0" encoding="UTF-8"?>
<!-- comment ...
3
votes
3answers
2k views
Processing large XML file with libxml-ruby chunk by chunk
I'd like to read a large XML file that contains over a million small bibliographic records (like <article>...</article>) using libxml in Ruby. I have tried the Reader class in combination ...
2
votes
4answers
1k views
libxml-ruby failed to load at x86_64
We are having problem with libxml-ruby gem at the server side
Possible because it uses x86_64 architecture:
$ uname -a
Linux ip-10-228-171-64 2.6.21.7-2.fc8xen-ec2-v1.0 #1 SMP Tue Sep 1 10:25:30 EDT ...
2
votes
1answer
525 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 ...
2
votes
1answer
2k 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
192 views
Declaring namespaces using libxml-ruby
I am using libxml-ruby for parsing XML.
I can able to create the xml file using libxml-ruby, but the problem is I am not able to declare the namespace for generated XML document.
Please help me how ...
1
vote
2answers
898 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 ...
1
vote
1answer
280 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 ...
1
vote
2answers
1k 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
2answers
832 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()
...
0
votes
1answer
160 views
libxml-ruby parse file and get required informations from xml
I am using libxml-ruby gem to read a xml string.
I am unable to extract the required info from xml string.
Currently i have following xml
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
1answer
114 views
Make a dependecy gem use libxml-jruby instead libxml-ruby using Bundler
I'm switching from ree+nginx to jruby+torquebox in my Rails 2.3 app, but I am having issues with some of my gems that use libxml-ruby.
I can't install libxml-ruby using jruby, so after some search at ...
0
votes
1answer
285 views
RoR - installing gem - libxml-ruby-1.1.4
I'm trying install libxml-ruby-1.1.4 (via Bundler, but same thing happens when I do a gem install) and I get a huge list of errors.
I'm running Mac OSX 10.6 on a Unibody MacBook.
The errors start ...
0
votes
2answers
991 views
Problem installing LibCurl + LibXML + FeedZirra on Windows XP
I am rails newbie. I am working on Windows XP.
I have this version of ruby.
ruby 1.8.7 (2010-08-16 patchlevel 302) [i386-mingw32]
I have Rails 2.3.8 installed.
I am trying to install feedzirra ...
0
votes
1answer
653 views
Bus Error - What causes this in Ruby?
I have run into this error 5 or 10 times over the past few years and have never found a clear answer to this problem. Here is the error:
$ rake db:migrate
...
0
votes
1answer
209 views
Libxml Ruby : Do I need to manually garbage collect node sets returned by doucment#find?
The documentation for LibXML::XML::Document#find mentions that following code style needs to be used to avoid seg faults:
nodes = doc.find('/header')
nodes.each do |node|
... do stuff ...
end
Is ...
0
votes
1answer
351 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 ...
0
votes
2answers
1k 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 ...