KM> have you tried this:
KM> http://wiki.apache.org/tapestry/Tapestry5Utf8Encoding

It does not work. In URLCodec (commons-codec-1.3) method

    public String decode(String pString, String charset)
        throws DecoderException, UnsupportedEncodingException 
    {
        if (pString == null) {
            return null;
        }
        return new String(decode(pString.getBytes(StringEncodings.US_ASCII)), 
charset);
    }

pString normal russian text in UTF-8, after 
pString.getBytes(StringEncodings.US_ASCII) it is bad text.
Testing in Opera9, IE6 and FireFox2 on Tomcat 5.5


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to