You could also use JavaScripts built in decodeURI, then escape the
spaces with a backslash.
Thank you for this idea ... now I do it like this:
uri = uri.replace(/file:\/\/localhost/,'');
uri = decodeURIComponent(uri);
uri = uri.replace(/ /g,'\\ '); // spaces
After some tests it is working okay ... hoping in the future too :)
greetings
Dirk Einecke
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Dashboard-dev mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
http://lists.apple.com/mailman/options/dashboard-dev/email@hidden