You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Martin Koci (JIRA)" <my...@incubator.apache.org> on 2005/04/28 11:32:25 UTC

[jira] Commented: (MYFACES-218) Javascript alert Should not display UnicodeEncoder dispose result

     [ http://issues.apache.org/jira/browse/MYFACES-218?page=comments#action_63961 ]
     
Martin Koci commented on MYFACES-218:
-------------------------------------

I have same problem with custom messages renderer with optional layout "alert" which is rendering messages in javascript alert. 

Problem is in HtmlResponseWriterImpl.writeText(Object text, String componentPropertyName) where following is used:
        if (isScriptOrStyle())
        {
            _writer.write(UnicodeEncoder.encode(strValue, false, false));
        }
        else
        {
            _writer.write(HTMLEncoder.encode(strValue, false, false));
        }

isScriptOrStyle()  returns true when start tag is SCRIPT and so unicode escaping is used. 

Is there any way to use something like writer.write("some text", null, dontEscape) ?

> Javascript alert Should not display UnicodeEncoder dispose result
> -----------------------------------------------------------------
>
>          Key: MYFACES-218
>          URL: http://issues.apache.org/jira/browse/MYFACES-218
>      Project: MyFaces
>         Type: Wish
>     Versions: 1.0.9 beta
>  Environment: Tomcat 5.5.7,myfaces 1.0.9 rc3
>     Reporter: wuhaixing

>
> When use core-jsf validator component(a client validator tag based on commons-validator),I found output warn message is disposed by UnicodeEncoder,so,when validateForm occured,The prompt message is not what I want,but as sequence &#2598 and so on.Could MyFaces provide a choice for normal output as fmt:message or others jsp output?

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira