StringWriter tempString = new StringWriter();
PrintWriter pw = new PrintWriter(tempString);
logger.info("this.WYSIWYGProperties:" + this.WYSIWYGProperties);
VelocityTemplateProcessor vtp = new VelocityTemplateProcessor();
vtp.renderTemplate(parameters, pw, this.WYSIWYGProperties, true);
this.WYSIWYGProperties = tempString.toString();
this.getResponse().setContentType("text/javascript");
}
catch (Throwable t1)