0
votes
1answer
48 views
nokogiri multiple css classes
How is it possible to select an html element that have two classes.
For example, hot to select the element p bellow in an html document (given that it has two css classes) class='c …
0
votes
1answer
42 views
Fastest/One-liner way to get XML nodes into array of “path/to/nodes” in Ruby?
What is the fastest, one-liner/shortest way to get an Array of "strings/that/are/paths" from an XML file, using Nokogiri preferably. I'd like to build the array with an arbitrary …
1
vote
2answers
50 views
Ruby Nokogiri Parsing HTML table
I am using mechanize/nokogiri and need to parse out the following HTML string.
can anyone help me with the xpath syntax to do this or any other methods that would work?
<table …
0
votes
0answers
12 views
Validating XML using multiple XSD’s in Ruby
Hi
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 somet …
0
votes
1answer
38 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/">
<Sele …
0
votes
1answer
40 views
Scanning each HTML node with nokogiri
Hi,
How can we scan each element and sub-element of an HTML document with Nokogiri, and testing for each one if the current tag is a block?
According to http://wiki.github.com/te …
0
votes
1answer
20 views
Help with parsing XML document using ‘Reader’ and Nokogiri
Hi. I am a newbie when it comes to using Nokogirie reader to parse an xml file. Here is the xml file I want to parse and sample code:
<?xml version='1.0' encoding='UTF-8'?> …
0
votes
1answer
43 views
removing node with nokogiri
Hello.
How can I remove img tag/s using nokogiri?
I have the following code but it wont work:
f = Nokogiri::XML.fragment(str)
f.search('//img').each do |node|
node.remo …
0
votes
2answers
65 views
How to detect mailto links with Hpricot/Nokogiri
I want to match links like <a href="mailto:my@email.com">foo</a>, but this doesn't work only works in Nokogiri:
doc/'a[href ^="mailto:"]'
What's the right way of doi …
0
votes
2answers
27 views
nokogiri: processing just html fragment and returning it
Hello,
When I do the following thing with nokogiri:
some_html = '<img src="bleh.jpg"/>test<br/>'
f = Nokogiri::HTML(some_html)
#do some processing
puts f
It will pr …
2
votes
1answer
106 views
how can you manipulate an html page parsed via Nokogiri?
so i parsed an html page using nokogiri.
i want to wrap tags around each occurence of links
.wrap() doesn't appear to work properly.
puts doc.xpath("//a").wrap("<b></b …
0
votes
1answer
49 views
Disabled/Custom params_parser per action
Hi,
I have a create action that handles XML requests. Rather than using the built in params hash, I use Nokogiri to validate the XML against an XML schema. If this validation pass …
0
votes
1answer
115 views
Finding a text node in xml using xpath problem
I'm using rails and the Nokogiri parser. My xml is as below and I'm trying to get the 'Biology: 08:00' text into my view.
<rss version="2.0">
<channel>
…
2
votes
1answer
111 views
nokogiri: how to wrap html tags around given xpath elements ?
I have an xpath to grab each text node which is not surrounded by any html tags. Instead, they are separated via <br>. I would like to wrap these with <span> tags.
Nok …
1
vote
2answers
163 views
How to use nokogiri from Jruby on Windows?
Hello, I'm getting the following error when trying to use Nokogiri with Jruby on Windows 7
D:\code\h4>jruby -e "require 'rubygems'; require 'nokogiri'"
D:/jruby-1.3.1/bin/../li …
