0
votes
1answer
16 views
hpricot in netbeans
hi
I am trying to use hpricot in JRuby.
My problem is the following. If I have this code:
#!ruby
require 'hpricot'
require 'open-uri'
# load the RedHanded home page
doc = Hp …
0
votes
1answer
94 views
HTML Scraping with Hpricot (Using Ruby on Rails)
hi, I have read a large deal of tutorials to help out and under Hpricot, the problem that i am finding out it is not scraping all the Html so to speak. I'll elaborate:
The website …
0
votes
2answers
54 views
Html / Script Scraping Google Map using Hpricot (Ruby On Rails)
Hi, I am having a problem Scraping Code i require to extract information for a Web MashUp i'm creating.
Basically, I am trying to Scrap Code from:
http://yellowpages.com.mt/Mera …
0
votes
1answer
60 views
Installing Hpricot on Ruby 1.9.1 on Windows
I am trying to install hpricot using the command:
>gem install hpricot -v 0.8.2
Building native extensions. This could take a while...
ERROR: Error installing hpricot:
ERROR …
0
votes
2answers
55 views
Scraping hidden HTML (when visible = false) using Hpricot (Ruby on Rails)
Hi, I've come across an issue which unfortunately I can't seem to surpass, I'm also just a newborn to Ruby on rails unfortunately hence the number of questions
I am attempting to …
1
vote
2answers
24 views
Hpricot looping with index ?
Hello,
I have the following HTML doc :
<ul>
<li><span>Some text</span></li>
<li><span>Some other text</span></li>
< …
0
votes
2answers
41 views
finding linked files with HPricot
I've been playing around with HPricot, but after a fair amount of searching, I've not been able to work this out.
I'm trying to parse a HTML page and find all tags with a href t …
0
votes
2answers
73 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
Checking emptiness of an element in hpricot
Let's say this is the location element:
<.location>blah...<./location>
It can be empty like this:
<.location/>
Is there a way to detect the backslash in the empty elemen …
0
votes
1answer
71 views
Parse XML with hpricot, get attributes.
My xml:
http://www.google.ru/ig/api?weather=Chelyabinsk
<forecast_information>
<city data="Chelyabinsk, Province of Chelyabinsk"/>
</forecast_information>
H …
0
votes
4answers
303 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 …
2
votes
1answer
253 views
Where can I find Hpricot documentation?
Now that http://github.com/why/hpricot/wikis/home no longer exists.
1
vote
2answers
69 views
Is it possible to create XML files using Hpricot?
I know I can parse XML using Hpricot, but is it also possible to create files? All the tutorials I found only demonstrate parsing.
1
vote
2answers
194 views
How do you know when to use an XML parser and when to use ActiveResource?
I tried using ActiveResource to parse a web service that was more like a HTML document and I kept getting a 404 error.
Do I need to use an XML parser for this task instead of Acti …
0
votes
1answer
20 views
Get the type of an element in Hpricot
I want to go through the children of an element and filter only the ones that are text or span, something like:
element.children.select {|child|
child.class == String || child.e …
