[Calypso] [PATCH 1/2] Remove special-casing of item URL path,	instead rely on property.
    Jelmer Vernooij 
    jelmer at jelmer.uk
       
    Mon May  9 13:35:31 PDT 2016
    
    
  
From: Jelmer Vernooij <jelmer at jelmer.uk>
---
 calypso/xmlutils.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/calypso/xmlutils.py b/calypso/xmlutils.py
index e01fcb0..d692b32 100644
--- a/calypso/xmlutils.py
+++ b/calypso/xmlutils.py
@@ -146,7 +146,7 @@ def propfind(path, xml_request, collection, depth, context):
         multistatus.append(response)
 
         href = ET.Element(_tag("D", "href"))
-        href.text = collection_name if is_collection else "/".join([collection_name, item.name])
+        href.text = item.urlpath
         response.append(href)
 
         propstat = ET.Element(_tag("D", "propstat"))
-- 
2.8.1
    
    
More information about the Calypso
mailing list