On Thu, 16 Sep 1999, Oleg Broytmann wrote:
> From: Oleg Broytmann <phd@xxxxxxxxxx>
> Subject: Re: [apache-talk] Re: [apache-rus] UTF-8
>
> On Thu, 16 Sep 1999, Victor Wagner wrote:
> > UTF8 или %uXXXX? Просьба не путать эти два способа представления Unicode.
>
> Я не стал вникать - оно мне не нужно. Мне бы избавиться от этого...
Избавиться, как видим, не получается. Остается корректно обработать.
У Андреева в скрипте, который он вроде даже отлаживал с utf8-страничками,
это выглядит вот так:
# Pointers to persistent objects from Unicode::String and Unicode::Map8
$::map = '';
$::str = '';
sub utf2koi
{
if (!$ICE::Cp::map or !$ICE::Cp::str) {
# need to init the Unicode objects
require Unicode::Map8;
require Unicode::String;
$::map = Unicode::Map8->new("koi8-r") ||
die "Can not loadkoi8 map table";
$::str = Unicode::String->utf8() ||
die "Can not init unicode string";
}
$::str->utf8($_[0]);
$_[0] = $::map->to8( $::str->utf16 );
}
Скрипт выполняется с CharsetRecodeMultipartForm Off, а форма была
именно multipart.
--------------------------------------------------
Victor Wagner vitus@xxxxxx
Programmer Office:7-(095)-203-51-19
Institute for Commerce Home: 7-(095)-135-46-61
Engineering http://www.ice.ru/~vitus
=============================================================================
= Apache-Talk@xxxxxxxxxxxxx mailing list =
Mail "unsubscribe apache-talk" to majordomo@xxxxxxxxxxxxx if you want to quit.
= Archive avaliable at http://www.lexa.ru/apache-talk =
"Russian Apache" includes software developed
by the Apache Group for use in the Apache HTTP server project
(http://www.apache.org/) See
Apache LICENSE.
Copyright (C) 1995-2001 The Apache Group. All rights reserved.
Copyright (C) 1996 Dm. Kryukov; Copyright (C)
1997-2009 Alex Tutubalin. Design (C) 1998 Max Smolev.