Search Results

2
votes
3answers
116 views

Overriding grails.views.default.codec=’html’ config back to ‘none’

If I leave grails.views.default.code='none' in the grails Config.groovy, it's up to me to HTML encode my expressions explicitly in the GSP files: ${myValue?.encodeAsHTML()} …
1
vote

Overriding grails.views.default.codec=’html’ config back to ‘none’

I may have a solution. I'm not sure how accepted it is, though. I can set the default codec for expressions to HTML, but then use <%=myValue%> notation in GSP instead of ${} expressions …
2
votes

Overriding grails.views.default.codec=’html’ config back to ‘none’

To summarize the various levels at which the codec can be applied: Set Config.groovy's grails.views.default.codec='html' to get HTML escaping by default on all ${expressi …