mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-05 22:27:36 +03:00
Use collection URL instead of main folder as user's main URL (see #32)
This commit is contained in:
parent
a617c4db26
commit
fe1cd1d44d
1 changed files with 4 additions and 1 deletions
|
@ -296,7 +296,10 @@ def _propfind_response(path, item, props, user):
|
||||||
# pylint: enable=W0511
|
# pylint: enable=W0511
|
||||||
elif tag == _tag("D", "current-user-principal") and user:
|
elif tag == _tag("D", "current-user-principal") and user:
|
||||||
tag = ET.Element(_tag("D", "href"))
|
tag = ET.Element(_tag("D", "href"))
|
||||||
tag.text = _href("/%s/" % user)
|
if item.resource_type == "addressbook":
|
||||||
|
tag.text = _href("/%s/addressbook.vcf/" % user)
|
||||||
|
else:
|
||||||
|
tag.text = _href("/%s/calendar.ics/" % user)
|
||||||
element.append(tag)
|
element.append(tag)
|
||||||
elif tag == _tag("D", "current-user-privilege-set"):
|
elif tag == _tag("D", "current-user-privilege-set"):
|
||||||
privilege = ET.Element(_tag("D", "privilege"))
|
privilege = ET.Element(_tag("D", "privilege"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue