Get Source Code of a http://... site?

Hi all

I want to download the source code of a website using Ruby? How can I
achieve this? …when searching with Google, I only get download links
for the Ruby source etc. :wink:

Thanks
Josh

2009/4/20 Joshua M. [email protected]:

I want to download the source code of a website using Ruby? How can I
achieve this? …when searching with Google, I only get download links
for the Ruby source etc. :wink:

The source code of a web site is usually not available apart from the
JavaScript you see in pages - for good reasons (security,
copyright…).

Cheers

robert

Robert K. wrote:

2009/4/20 Joshua M. [email protected]:

I want to download the source code of a website using Ruby? How can I
achieve this? …when searching with Google, I only get download links
for the Ruby source etc. :wink:

The source code of a web site is usually not available apart from the
JavaScript you see in pages - for good reasons (security,
copyright…).

Cheers

robert

Oh, I wasn’t clear enough, I just need the XHTML code, no
behind-the-scenes Ruby or PHP or stuff. :wink:

It’s because I want to use captchator.com and I need to check the result
(0 or 1) using an URL like this:

http://captchator.com/captcha/check_answer/#{captcha_code}/#{@comment.captcha}

2009/4/20 Joshua M. [email protected]:

Oh, I wasn’t clear enough, I just need the XHTML code, no
behind-the-scenes Ruby or PHP or stuff. :wink:

There are mechanize, hpricot and a few other alternatives that can
help you there.

Cheers

robert

Robert K. wrote:

2009/4/20 Joshua M. [email protected]:

Oh, I wasn’t clear enough, I just need the XHTML code, no
behind-the-scenes Ruby or PHP or stuff. :wink:

There are mechanize, hpricot and a few other alternatives that can
help you there.

Cheers

robert

Thanks, but that would be a big overkill I guess. I found the following
site which explains how to do it with just a few original methods:

If you just need to get it, for archive or something, and just chose
ruby, have a look at httrack. Not ruby, just its own app, but it
mirrors pages.

  • Daniel

Daniel Huckstep wrote:

If you just need to get it, for archive or something, and just chose
ruby, have a look at httrack. Not ruby, just its own app, but it
mirrors pages.

  • Daniel

Thanks, I know httrack… had some problems with it lately, though…
:wink: