If i manually remove the escaped sections in the url then it is correctly added as a Network Location in the Explorer. Is there a possibility to create a unescaped link or string of a space in Alfresco. I tried using a FTL template to recreate the webdav url
"Company Home" gets inserted in the url by ${space.displayPath}, when looking at the Webdav url, "Company Home" is not part of the url. Is there a way to get a unescaped url or the path of the space without the "Company Home" part?
You could use a simple substring operation to remove the "/Company Home" part of the displaypath. FreeMarker has a substring and you can also use array access to the elements in a string.
Thanks you for the pointer in using the substring method, feeling myself a bit ashamed i didn't think of this. When finished I will post the Freemarker template in this thread.