Re: Unicode Perl Dependencies

2002-11-12 Thread Karl Matthias
On Tue, 12 Nov 2002, Jarkko Hietaniemi wrote: > On Mon, Nov 11, 2002 at 02:10:43PM -0500, Karl Matthias wrote: > > > > of the files I actually need. The whole unicode tree is somewhere near > > 5MB which would be about 25% of our entire ditribution. That's not > > 5MB? Really? That small? A

Re: Unicode Perl Dependencies

2002-11-12 Thread Jarkko Hietaniemi
On Mon, Nov 11, 2002 at 02:10:43PM -0500, Karl Matthias wrote: > > > All-- > I am having trouble tracking down some information which I was > hoping to get some help with. > Our company has an embedded firewall device on which we run a > number of perl scripts. We have a shrunken per

Re: Problems with XML - What exactly does "Cannot decode string with wide characters" mean?

2002-11-12 Thread Andreas J. Koenig
> On Mon, 11 Nov 2002 23:37:12 -0800, Daisuke Maki <[EMAIL PROTECTED]> said: >utf82euc( $xml->findvalue( 'foobar' ) ); > where utf82euc() is a convenience function that I wrote which does: >my $octets = decode( 'utf8', $text ); Decode doesn't return octets. >

Re: Problems with XML - What exactly does "Cannot decode string with wide characters" mean?

2002-11-12 Thread Daisuke Maki
Daisuke Maki wrote: Would/should doing is_utf8( $xml->findvalue( 'foobar' ) ) before calling decode() help, then ? --d Yep, it did. That was easy :) thanks! --d

Re: Problems with XML - What exactly does "Cannot decode string with wide characters" mean?

2002-11-12 Thread Daisuke Maki
Would/should doing is_utf8( $xml->findvalue( 'foobar' ) ) before calling decode() help, then ? --d Dan Kogai wrote: On Tuesday, Nov 12, 2002, at 16:37 Asia/Tokyo, Daisuke Maki wrote: I've recently converted to Perl5.8, and thus migrated all of my Japanese encoding conversion routines to Encod