I am feeling not so stoopid :-).
I found solution for the problem with attachement with names in UTF and with white-space. Here is a short description:
On line 331 add:
--- cut --
document.ssrc = "http://"+this.getAlfUrl()+nodes[i].data.shortlink+"?ticket="+this.getTicket();
--- cut ---
On line 399 add:
--- cut ---
var src = doc.ssrc;
--- cut ---
On line 406 change from:
--- cut ---
AjxStringUtil.urlComponentEncode (src) +
--- cut ---
на
--- cut ---
AjxStringUtil.urlComponentEncode (ssrc) +
--- cut ---
And it should work! |