Index: src/webapp/javascript/jetspeed/common.js =================================================================== --- src/webapp/javascript/jetspeed/common.js (revision 601590) +++ src/webapp/javascript/jetspeed/common.js (working copy) @@ -505,6 +505,9 @@ if(!this.mimetype){ this.mimetype="text/html"; } +if(!this.encoding){ +this.encoding="utf-8"; +} }; dojo.lang.extend(jetspeed.url.BindArgs,{createIORequest:function(){ var _50=new dojo.io.Request(this.url,this.mimetype); Index: src/webapp/javascript/jetspeed/common.src.js =================================================================== --- src/webapp/javascript/jetspeed/common.src.js (revision 601590) +++ src/webapp/javascript/jetspeed/common.src.js (working copy) @@ -634,6 +634,9 @@ if ( ! this.mimetype ) this.mimetype = "text/html"; + + if(!this.encoding) + this.encoding="utf-8"; }; dojo.lang.extend( jetspeed.url.BindArgs,