Repository: roller Updated Branches: refs/heads/master 4692115a6 -> 3e7e4ca30
[ROL-2110] fix problem with some languages not rendering correctly, e.g. French characters. Project: http://git-wip-us.apache.org/repos/asf/roller/repo Commit: http://git-wip-us.apache.org/repos/asf/roller/commit/3e7e4ca3 Tree: http://git-wip-us.apache.org/repos/asf/roller/tree/3e7e4ca3 Diff: http://git-wip-us.apache.org/repos/asf/roller/diff/3e7e4ca3 Branch: refs/heads/master Commit: 3e7e4ca30e221a86f838ce5cc68c5a393adab7a1 Parents: 4692115 Author: Dave Johnson <[email protected]> Authored: Sat Jun 17 14:37:45 2017 -0400 Committer: Dave Johnson <[email protected]> Committed: Sat Jun 17 14:37:45 2017 -0400 ---------------------------------------------------------------------- app/src/main/webapp/WEB-INF/web.xml | 7 +++++++ 1 file changed, 7 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/roller/blob/3e7e4ca3/app/src/main/webapp/WEB-INF/web.xml ---------------------------------------------------------------------- diff --git a/app/src/main/webapp/WEB-INF/web.xml b/app/src/main/webapp/WEB-INF/web.xml index 7728cda..bd61a6d 100644 --- a/app/src/main/webapp/WEB-INF/web.xml +++ b/app/src/main/webapp/WEB-INF/web.xml @@ -482,6 +482,13 @@ <mapped-name>Session</mapped-name> </resource-ref> + <jsp-config> + <jsp-property-group> + <url-pattern>*.jsp</url-pattern> + <page-encoding>UTF-8</page-encoding> + </jsp-property-group> + </jsp-config> + <!-- Uncomment below to use SSL on sensitive pages. Alternatively, can lock up the entire site with this single element:
