Problems with Encode

2003-07-31 Thread Nathan Ollerenshaw
Hi there, I am not sure if this is the right place to ask, if not please shoot me in the right direction :) I'm trying to compile the Encode module, and it fails here during testing: t/enc_module.# Failed test (t/enc_module.t at line 58) # got: 'å‡å­å' # expected: 'å‡å­å #

Re: Fallback problems with Encode

2002-12-28 Thread Earl Hood
On December 28, 2002 at 20:51, Nick Ing-Simmons wrote: > >BTW, in the t/fallbacks.t test case of Encode, 8-bit characters are > >used for the ascii test, and entity references are generated for the > >8-bit characters. > > > >As I stated in my original post, the problem is that t/fallbacks.t > >te

Re: Fallback problems with Encode

2002-12-28 Thread Nick Ing-Simmons
Earl Hood <[EMAIL PROTECTED]> writes: >> >ISO-8859-3 -> ISO-8859-8 >> > !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_` >> > >abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ >> > >‘’“”•–—˜™š›œžŸ Ħ˘Â£Â¤\xA5Ĥ§¨ > >Look more close

Re: Fallback problems with Encode

2002-12-23 Thread Earl Hood
On December 23, 2002 at 22:41, Nick Ing-Simmons wrote: > >Prints out the following: > > > >1.83 > > > >ASCII -> UTF8 > > !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_` > >abcdefghijklmnopqrstuvwxyz{|}~\x80\x81\x82\x83\x84\x85\x86\x87 > >\x88\x89\x8A\x8B\x8C\x

Re: Fallback problems with Encode

2002-12-23 Thread Nick Ing-Simmons
Earl Hood <[EMAIL PROTECTED]> writes: >Take the following code snippet: > >use Encode q(:all); >print $Encode::VERSION, "\n"; > >my $org = ''; >for my $i (0x20..0xFF){ > $org .= chr($i); >} >my $src = $org; >print "\nASCII -> UTF8\n"; >from_to($src, 'ascii', 'u

Fallback problems with Encode

2002-12-19 Thread Earl Hood
Take the following code snippet: use Encode q(:all); print $Encode::VERSION, "\n"; my $org = ''; for my $i (0x20..0xFF){ $org .= chr($i); } my $src = $org; print "\nASCII -> UTF8\n"; from_to($src, 'ascii', 'utf8', FB_XMLCREF); print $src, "\n"; Prints