Your message dated Sat, 28 Feb 2009 08:41:37 +0800
with message-id <[email protected]>
and subject line Re: Bug#410260: lwpcook.3pm.gz: get() mangles UTF-8
has caused the Debian Bug report #410260,
regarding lwpcook.3pm.gz: get() mangles UTF-8
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
410260: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=410260
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libwww-perl
Version: 5.805-1
Severity: wishlist
File: /usr/share/man/man3/lwpcook.3pm.gz
$doc=get "$URI"; #$doc now contains mangled UTF-8
$doc=`GET "$URI"`; #$doc now contains proper UTF-8
Perhaps say why, there on the man page.
--- End Message ---
--- Begin Message ---
Apparently I was unhappy that one was making bad UTF-8, but apparently
it is not doing that anymore. Hence closing.
Tested with
use LWP::Simple;
$u = 'http://transgender-taiwan.org/';
$a = get $u;
$b = `GET $u`;
for ($a, $b){print}; #$a and $b are the same now.
--- End Message ---