Description
I propose adding URL encoding method which invokes ClickUtils#encodeUrl() to net.sf.click.util.Format.
This method is useful to assemble link URLs in the HTML template.
========
public String encodeUrl(Object object){
return ClickUtils.encodeUrl(object, Context.getThreadLocalContext());
}
========
<a href="test.htm?name=$format.encodeUrl($name)">Link</a>