Re: Website encoding

2004-11-27 Thread John Delacour
At 10:33 am +1100 18/11/04, Rick Measham wrote: That being the case, I grab the charset and use Encode's decode function to turn it into 'perl's internal format' .. which in 5.8.5 is utf8 right? I then store that in the db. What happens if you do something like this? : my $uri =

Re: Website encoding

2004-11-19 Thread Nick Ing-Simmons
Rick Measham [EMAIL PROTECTED] writes: That being the case, I grab the charset and use Encode's decode function to turn it into 'perl's internal format' .. which in 5.8.5 is utf8 right? As it happens the answer is maybe, but it is the _internal_ form it is none of your business ;-) - so

Website encoding

2004-11-17 Thread Rick Measham
Please forgive this going to both lists but I'm not sure where things are going wrong... I have many website around the world that I need to index. They're straight HTML pages rather than perl-served and thus the headers say the content-type is 'text/html' .. without mentioning the encoding. The

Re: Website encoding

2004-11-17 Thread Masanori HATA
Hello, Rick Measham wrote: My thought process is to convert them into utf8 and store that in the database. Then it's just a case of retrieving them later and outputting them all on one page marked as utf8. That being the case, I grab the charset and use Encode's decode function to turn it