diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ba32daa..e04faf71 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ * Allow tracing successful test. * Adding FlagType.SUCCESS in API. +* Added more logging. +* Updating version of no.difi.commons:commons-schematron. +* Functionality to sign validation artifacts defined by parameters. +* Fixing UTF-8 thing in presentation of rendered documents in sample application. ## 2.0.0-RC2 diff --git a/validator-web/src/main/java/no/difi/vefa/validator/controller/ValidationController.java b/validator-web/src/main/java/no/difi/vefa/validator/controller/ValidationController.java index 713e6914..fb270bbd 100644 --- a/validator-web/src/main/java/no/difi/vefa/validator/controller/ValidationController.java +++ b/validator-web/src/main/java/no/difi/vefa/validator/controller/ValidationController.java @@ -68,7 +68,7 @@ public FileSystemResource presentSource(@PathVariable String identifier, HttpSer } @ResponseBody - @RequestMapping(value = "/view", produces = MediaType.TEXT_HTML_VALUE) + @RequestMapping(value = "/view", produces = MediaType.TEXT_HTML_VALUE + "; charset=utf-8") public FileSystemResource presentView(@PathVariable String identifier) throws Exception { if (!workspaceService.exists(identifier)) throw new Exception("Workspace not found.");