Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.3.1 (Alpha)
-
Fix Version/s: 1.3.2 (Beta)
-
Component/s: Web - UI
-
Labels:None
-
Environment:Win XP
Firefox 3
-
Complexity:Intermediate
-
Number of attachments :
Description
In the Continuum web interface some special french characters are displayed as "?".
This is especially the case in the menu and in the connection header (from redback).
Sample:
Se d?connecter
L?gende
Construction r?ussie
I checked the localization resource files and the encoding is ok (unicode is encoded as ASCII).
This bug is related to the Improvement CONTINUUM-2027. When this that is updated, it will solve encoding problems. while you can add to the next filter in your web.xml
<filter>
<filter-name>encodingFilter</filter-name>
<filter-class> org.springframework.web.filter.CharacterEncodingFilter</filter-class>
<init-param>
<param-name>encoding</param-name>
<param-value>UTF-8</param-value>
</init-param>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>