Re: mod_perl unicode, cgi and binmode

2004-09-27 Thread Markus Wichitill
Stas Bekman wrote: STDIN is not used with mod_perl. It depends on how you write your program. When you don't qualify your read and print calls with $r, then you do use STDIN, though mod_perl overrides it, and does the qualified $r->read() calls behind the scenes (via the perlio layer), but esse

Re: mod_perl unicode, cgi and binmode

2004-09-27 Thread Stas Bekman
Markus Wichitill wrote: peter pilsl wrote: I need to process and output data delivered via a webbrowser using the CGI-interface. To deal with "real" unicode-data I set the whole STDIN and STDOUT to utf8 with binmode (as recommended at http://www.perldoc.com/perl5.8.0/pod/perluniintro.html. My sc

Re: mod_perl unicode, cgi and binmode

2004-09-27 Thread Markus Wichitill
peter pilsl wrote: I need to process and output data delivered via a webbrowser using the CGI-interface. To deal with "real" unicode-data I set the whole STDIN and STDOUT to utf8 with binmode (as recommended at http://www.perldoc.com/perl5.8.0/pod/perluniintro.html. My script would not work oth

mod_perl unicode, cgi and binmode

2004-09-27 Thread peter pilsl
I need to process and output data delivered via a webbrowser using the CGI-interface. To deal with "real" unicode-data I set the whole STDIN and STDOUT to utf8 with binmode (as recommended at http://www.perldoc.com/perl5.8.0/pod/perluniintro.html. My script would not work otherwise) While this