Description
The JsxAction is converting automatically to UTF-8 although you can run your wiki in other encoding. This makes it impossible to put accents in a JS file in a ISO wiki.
The code is JsxAction.java
try
{ response.setContentLength(result.getBytes("UTF-8").length); response.getOutputStream().write(result.getBytes("UTF-8")); }catch (IOException ex)
{ LOG.warn("Failed to send JSX content: " + ex.getMessage()); }