You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@struts.apache.org by "Lukasz Lenart (Jira)" <ji...@apache.org> on 2022/06/16 09:08:00 UTC

[jira] [Closed] (WW-2314) charset error with s:include

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

Lukasz Lenart closed WW-2314.
-----------------------------
    Fix Version/s:     (was: 6.1.0)
       Resolution: Fixed

> charset error with s:include
> ----------------------------
>
>                 Key: WW-2314
>                 URL: https://issues.apache.org/jira/browse/WW-2314
>             Project: Struts 2
>          Issue Type: Bug
>          Components: Plugin - Tags
>    Affects Versions: 2.0.8, 2.0.11
>            Reporter: Diego Sanchez
>            Priority: Major
>
> the characters with accents are transform if using s:include:
> example ( file testAccent.jsp ):
> <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
> <p>
> test accents : é è à 
> </p>
> the displayed result is "test accents : é è à"
> if now i do in an other file : 
> <%@ taglib prefix="s" uri="/struts-tags" %>
> <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
>     pageEncoding="ISO-8859-1"%>
> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
> <title>Insert title here</title>
> </head>
> <body>
> 	<s:include value="/testAccent.jsp"></s:include>
> </body>
> </html>
> the result will be " test accents : ? ? ?" and not "test accents : é è à"



--
This message was sent by Atlassian Jira
(v8.20.7#820007)