You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by "Juergen Donnerstag (JIRA)" <ji...@apache.org> on 2008/12/07 11:57:44 UTC

[jira] Resolved: (WICKET-1566) AbstractTransformerBehavior doesn't honor character encoding

     [ https://issues.apache.org/jira/browse/WICKET-1566?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Juergen Donnerstag resolved WICKET-1566.
----------------------------------------

    Resolution: Invalid

As written by Carlos, it was a bug in his code

> AbstractTransformerBehavior doesn't honor character encoding
> ------------------------------------------------------------
>
>                 Key: WICKET-1566
>                 URL: https://issues.apache.org/jira/browse/WICKET-1566
>             Project: Wicket
>          Issue Type: Bug
>          Components: wicket
>    Affects Versions: 1.3.3
>            Reporter: Carlos Pita
>            Assignee: Juergen Donnerstag
>
> Fix:
> do
> String charset = component.getApplication().getMarkupSettings().getDefaultMarkupEncoding();
> webResponse.write(new ByteArrayInputStream(output).getBytes(charset)));  
> instead of
> webResponse.write(output);

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.