You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Rohan Nandode <rn...@yahoo.com> on 2001/11/09 17:41:57 UTC

UTF-8 support

Hi All,

  Does apache(APR library) support UTF-8 character
set? Could anybody give me any hints to support 
UTF-8 charset.

Thanks in advance,
Rohan.


__________________________________________________
Do You Yahoo!?
Find a job, post your resume.
http://careers.yahoo.com

Re: UTF-8 support

Posted by "William A. Rowe, Jr." <wr...@covalent.net>.
From: "Rohan Nandode" <rn...@yahoo.com>
Sent: Friday, November 09, 2001 10:41 AM


> Hi All,
> 
>   Does apache(APR library) support UTF-8 character
> set? Could anybody give me any hints to support 
> UTF-8 charset.

Which functions are you asking about?  UTF-8 is character data, so yes,
utf-8 strings are accepted virtually everywhere.  Conversion is handled
by the apr_xlate functions which is a wrapper around iconv.  iconv has
been hacked for apr portability in the apr_iconv repository, although 
that subproject is far from complete.  Your question is rather vague,
please elaborate.

Please don't email APR API questions @httpd, the dev@apr.apache.org list 
is for APR library discussion.

Bill




Re: UTF-8 support

Posted by Greg Ames <gr...@remulak.net>.
Rohan Nandode wrote:
> 
> Hi All,
> 
>   Does apache(APR library) support UTF-8 character
> set? Could anybody give me any hints to support
> UTF-8 charset.

Take a look at modules/experimental/mod_charset_lite.c  It does all
sorts of charset translation. 

Greg