Tagged Questions
An HTML, XML, SAX, & Reader parser with the ability to search documents via XPath or CSS3 selectors… and much more
15
votes
3answers
2k views
nokogiri vs hpricot?
Which one would you choose? My important attributes are (not in order)
Support & Future enhancements
Community & general knowledge
base (on the Internet)
Comprehensive (i.e proven to
parse a ...
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.
8
votes
4answers
177 views
Is there something similar to Nokogiri for parsing Ruby code?
Nokogiri is awesome. I can do things like #css('.bla') which will return the first matching element.
Right now we need to do some parsing of Ruby source code - finding all methods within a class etc. ...
7
votes
2answers
671 views
error installing nokogiri 1.5.0 with rails 3.1.0 and ubuntu
Here is the error running bundle install vendor/gems on server:
Installing nokogiri (1.5.0) with native extensions
Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
...
7
votes
1answer
1k views
rspec errors, missing libraries after installing homebrew and uninstalling macports
I may have taken one step to far beyond my knowledge.
I installed homebrew and after it continued to give me warnings about having macports installed I uninstalled that. But now my rspec tests don't ...
7
votes
8answers
2k views
Installing nokogiri fails / libiconv missing
I've been trying to install nokogiri on Snow Leopard and whatever I try, the install fails in the end with libiconv is missing. please visit…
After following a lot of help found around the web ...
7
votes
2answers
880 views
How can I create a nokogiri case insensitive Xpath selector?
I'm using nokogiri to select the 'keywords' attribute like this:
puts page.parser.xpath("//meta[@name='keywords']").to_html
One of the pages I'm working with has the keywords label with a capital ...
7
votes
2answers
2k views
How do I validate XHTML with nokogiri?
I've found a few posts alluding to the fact that you can validate XHTML against its DTD using the nokogiri gem. Whilst I've managed to use it to parse XHTML successfully (looking for 'a' tags etc.), ...
6
votes
2answers
1k views
Nokogiri/Xpath namespace query
I'm trying to pull out the dc:title element using an xpath. I can pull out the metadata using the following code.
doc = <<END
<?xml version="1.0" encoding="UTF-8"?>
<package ...
6
votes
4answers
2k views
How do I pretty-print HTML with Nokogiri?
I wrote a web crawler in Ruby and I'm using Nokogiri::HTML to parse the page. I need to print the page out and while messing around in IRB I noticed a pretty_print method. However it takes a parameter ...
6
votes
1answer
2k views
Creating an XML document with a namespaced root element with Nokogiri builder
I'm implementing an exporter for an XML data format that requires namespaces. I'm using the Nokogiri XML Builder (version 1.4.0) to do this.
However, I can't get Nokogiri to create a root node with a ...
6
votes
2answers
2k views
Why doesn't Nokogiri xpath like xmlns declarations
I'm using Nokogiri::XML to parse responses from Amazon SimpleDB. The response is something like:
<SelectResponse xmlns="http://sdb.amazonaws.com/doc/2007-11-07/">
<SelectResult>
...
6
votes
1answer
724 views
nokogiri: why is this an invalid xpath?
//br/preceding-sibling::normalize-space(text())
i am getting invalid xpath expression with nokogiri
6
votes
2answers
2k views
Convert latin1 string to utf8?
how can I convert a string, that contains latin1 characters to utf8?
The string is a document, that is opened by open-uri and that contains these special characters.
Best regards
6
votes
4answers
3k views
Strip text from HTML document using Ruby
There are lots of examples of how to strip HTML tags from a document using Ruby, Hpricot and Nokogiri have inner_text methods that remove all HTML for you easily and quickly.
What I am trying to do ...
6
votes
3answers
1k views
Find tag with id including [] with Nokogiri
I have an html element like:
<div id="spam[500]">
I want to search for this element by id, but it seems that nokogiri is getting confused by the []. I'm trying:
doc.css("#spam[#{eggs.id}]")
...
6
votes
2answers
2k views
How can I get Nokogiri to parse and return an XML document?
A sample of some oddness:
#!/usr/bin/ruby
require 'rubygems'
require 'open-uri'
require 'nokogiri'
print "without read: ", Nokogiri(open('http://weblog.rubyonrails.org/')).class, "\n"
print "with ...
6
votes
5answers
8k views
Nokogiri: Navigating the DOM
I'm trying to fill the variables parent_element_h1 and parent_element_h2. Can anyone help me use the Nokogiri Gem to get the information I need into those variables?
require 'rubygems'
require ...
5
votes
1answer
188 views
creating large file xml in ruby
I want to write some data to XML file ( XML file would come to ~50 MB ).
I found nokogiri (1.5.0) gem to be the most efficient to parse (Just read and not write). Nokogiri is not a good option to ...
5
votes
2answers
458 views
Cleaning HTML with Nokogiri (instead of Tidy)
The tidy gem is no longer maintained and has multiple memory leak issues.
Some people suggested using Nokogiri.
I'm currently cleaning the HTML using:
...
5
votes
1answer
575 views
How can I use Nokogiri to write a HUGE XML file?
I have a Rails application that uses delayed_job in a reporting feature to run some very large reports. One of these generates a massive XML file and it can take literally days in the bad, old way the ...
5
votes
7answers
518 views
XPath axis, get all following nodes until
I have the following example of HTML:
<!-- lots of html -->
<h2>Foo bar</h2>
<p>lorem</p>
<p>ipsum</p>
<p>etc</p>
<h2>Bar baz</h2>
...
5
votes
2answers
846 views
how to make Nokogiri not to convert to space
i fetch one html fragment like
"<li>市 场 价"
which contains " ", but after calling to_s of Nokogiri NodeSet, it becomes
"<li>市 场 价"
, i want to keep the ...
5
votes
2answers
2k views
Parsing simple XML with Nokogiri
Let's say I have the following XML :
<links>
<item>
<title>Title 1</title>
<url>http://www.example.com/url-1</url>
</item>
<item>
...
5
votes
2answers
2k views
Nokogiri: How to select nodes by matching text?
If I have a bunch of elements like:
<p>A paragraph <ul><li>Item 1</li><li>Apple</li><li>Orange</li></ul></p>
Is there a built in ...
5
votes
3answers
3k views
Nokogiri (RubyGem): Find and replace HTML tags
I have the following HTML:
<html>
<body>
<h1>Foo</h1>
<p>The quick brown fox.</p>
<h1>Bar</h1>
<p>Jumps over the lazy dog.</p>
...
4
votes
2answers
84 views
Can I incorporate system libraries (e.g. libxml2) I compile against into a gem (e.g. nokogiri) that I can deploy to Heroku?
Nokogiri has a problem with translating to and from UTF-8 characters that turns out to come from libxml2, specifically version 2.7.6, which is the highest supported version on Ubuntu 10.04 LTS. The ...
4
votes
1answer
149 views
Nokogiri leaving HTML entities untouched
I want Nokogiri to leave HTML entities untouched, but it seems to be converting the entities into the actual symbol. For example:
Nokogiri::HTML.fragment('<p>®</p>').to_s
...
4
votes
3answers
647 views
WARNING: Nokogiri was built against LibXML version 2.7.8, but has dynamically loaded 2.7.3
I have done all kinds of research and tried many different things. I know this question has been answered many times, but none of the suggested solutions are working for me.
After upgrading to lion I ...
4
votes
5answers
285 views
Getting all links of a webpage using Ruby
I'm trying to retrieve every external link of a webpage using Ruby. I'm using String.scan with this regex:
/href="https?:[^"]*|href='https?:[^']*/i
Then, I can use gsub to remove the href part:
...
4
votes
1answer
452 views
How do I use Nokogiri and Ruby to scrape values from HTML with nested tables?
I am trying to extract the name, ID, Phone, Email, Gender, Ethnicity, DOB, Class, Major, School and GPA from a page I am parsing with Nokogiri.
I tried some different xpath's but everything I try ...
4
votes
1answer
268 views
Nokogiri vs Goliath…or, can they get along?
I have a project that needs to parse literally hundreds of thousands of HTML and XML documents.
I thought this would be a perfect opportunity to learn Ruby fibers and the new Goliath framework.
...
4
votes
3answers
727 views
Cannot sign in using form with Mechanize
I am trying to submit a form with mechanize. But nothing happens on submit. I just get the login page again.
The form:
http://affilate.mikkelsenmedia.dk/partnersystem/mylogins.php
require ...
4
votes
1answer
663 views
Using Nokogiri HTML Builder to create fragment with multiple root nodes
Well I have a simple problem with Nokogiri. I want to make Nokogiri::HTML::Builder to make an html fragment of the following form:
<div>
#Some stuff in here
</div>
<div>
#Some other ...
4
votes
3answers
208 views
Can any of Ruby's HTML Parsers do Javascript to see the resulting DOM?
When trying Hpricot and Nokogiri, the HTML can be fetched and parsed, but can they also execute the Javascript as well so that the content shows on the page? (shows up in the the DOM). That's ...
4
votes
2answers
484 views
using xpath on single Nokogiri node returns elements in all nodes
I am parsing an XML doc that looks something like this:
<MyBook>
<title>Favorite Poems</title>
<issn>123-456</issn>
<pages>45</pages>
...
4
votes
1answer
3k views
How to access attributes using Nokogiri
I have a simple task of accessing the values of some attributes. Below is a simple script that uses Nokogiri::XML::Builder to create a simple xml doc.
require 'nokogiri'
builder = ...
4
votes
1answer
5k views
Ruby Nokogiri Parsing HTML table II
I have just installed ruby+mechanize. It seems to me that it is posible in ruby nokogiri what I want to do but I do not know how to do it.
What about this table? It is just part of html of vBulletin ...
4
votes
3answers
978 views
Nokogiri::XML::Builder with hypen in element name
I am trying to build an XML document using Nokogiri. Some of the elements have hyphens in them. To illustrate the problem is an example:
require "nokogiri"
builder = Nokogiri::XML::Builder.new do ...
4
votes
1answer
637 views
Validating XML using multiple XSD's in Ruby
I'm generating a lot of XMPP stanzas, and want to validate them against the specs available here in my unit tests.
At the moment I am using Nokogiri to achieve this with something like
xml = ...
4
votes
3answers
298 views
possible to select multiple options with xpath?
/html/body/form/select/option[@val = '1' and @val = '3']
so that means select the first and third option in a select-multiple form ?
4
votes
2answers
5k views
extract links (URLs), with nokogiri in ruby, from a href html tags?
I want to extract from a webpage all URLs how can I do that with nokogiri?
example:
<div class="heat">
<a href='http://example.org/site/1/'>site 1</a>
<a ...
3
votes
2answers
56 views
Nokogiri xpath() 'or' operator?
Is there a way I can accomplish the following using Nokogiri's xpath() ?
doc.xpath("//pod[@id=or('anid','anotherid')]")
3
votes
1answer
104 views
What are some examples of using Nokogiri?
I am trying to understand Nokogiri. Does anyone have a link to a basic example of Nokogiri parse/scrape showing the resultant tree. Think it would really help my understanding.
3
votes
1answer
43 views
Interrupt Nokogiri SAX Parser?
I'm using a Nokogiri SAX parser to find a specific fragment in an XML document, but once I'm done there's no reason to continue scanning the document.
Is there a way to immediately terminate parsing?
...
3
votes
1answer
128 views
XPath or CSS parsing faster (for Nokogiri on HTML files)?
I would like to know if Nokogiri XPath or CSS parsing works faster with HTML files. How is the speed different?
3
votes
2answers
103 views
How can I get XML sub-tags using a regexp for its contents without knowing it's name
I have XML which looks like this when simplified:
node_set = Nokogiri::XML('
<PARENT>
<SOME_TAG>12:12:1222</SOME_TAG>
<HOLY_TAG>12:12:1222</HOLY_TAG>
...
3
votes
3answers
166 views
How does Nokogiri handle unclosed HTML tags like <br>?
When parsing HTML document, how Nokogiri handle <br> tags? Suppose we have document that looks like this one:
<div>
Hi <br>
How are you? <br>
</div>
Do Nokogiri ...
3
votes
1answer
66 views
Nokogiri Namespace confusion
Using this snippet of XML:
<?xml version="1.0"?>
<package xmlns="http://www.idpf.org/2007/opf" version="2.0" unique-identifier="p9781449617424">
<metadata ...
3
votes
1answer
274 views
How to Get the Page Source with Mechanize/Nokogiri
I'm logged into a webpage/servlet using Mechanize.
I have a page object
jobShortListPg = agent.get(addressOfPage)
When i use the following
puts jobShortListPg
I get the "mechanized" version of ...