vote up 0 vote down star

Hello, I've encountered the Iconv::IllegalSequence error on some web pages when using mechanize lib. Is there a way to make mechanize just omit ill encoded characters and return the "cut" page? I'm aware of the related thread, but I'd rather discard some characters on the page, then re-implement encoding guessing. TIA

flag

2 Answers

vote up 0 vote down

Thank you very much!

link|flag
check rubyforge.org/tracker/… – roddik Sep 9 at 12:42
vote up 0 vote down check

The solution is to change line 40 in util.rb from

Iconv.iconv(code, "UTF-8", s).join("")

to

Iconv.iconv("#{code}//IGNORE", "UTF-8", s).join("")

or

Iconv.conv("#{code}//IGNORE", "UTF-8", s)
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.