Merge branch 'master' of git://gitorious.org/radicale/radicale
This commit is contained in:
commit
9d012fb76f
9
NEWS
9
NEWS
@ -6,6 +6,15 @@
|
|||||||
NEWS
|
NEWS
|
||||||
------
|
------
|
||||||
|
|
||||||
|
0.5 - *Not released yet*
|
||||||
|
========================
|
||||||
|
|
||||||
|
* Calendar depth
|
||||||
|
* MacOS and Windows support
|
||||||
|
* HEAD requests management
|
||||||
|
* htpasswd user from calendar path
|
||||||
|
|
||||||
|
|
||||||
0.4 - Hot Days Back
|
0.4 - Hot Days Back
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
13
TODO
13
TODO
@ -9,9 +9,16 @@
|
|||||||
0.5
|
0.5
|
||||||
===
|
===
|
||||||
|
|
||||||
* Calendar collections
|
* iCal and iPhone support
|
||||||
* Group calendars
|
|
||||||
* [IN PROGRESS] Windows and MacOS tested support
|
|
||||||
|
0.6
|
||||||
|
===
|
||||||
|
|
||||||
|
* [IN PROGRESS] Group calendars
|
||||||
|
* [IN PROGRESS] LDAP and databases auth support
|
||||||
|
* CalDAV rights
|
||||||
|
* Read-only access for foreign users
|
||||||
|
|
||||||
|
|
||||||
1.0
|
1.0
|
||||||
|
@ -27,8 +27,6 @@ in them for XML requests (all but PUT).
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
# TODO: Manage depth and calendars/collections
|
|
||||||
|
|
||||||
import xml.etree.ElementTree as ET
|
import xml.etree.ElementTree as ET
|
||||||
|
|
||||||
from radicale import client, config, ical
|
from radicale import client, config, ical
|
||||||
@ -153,6 +151,12 @@ def propfind(path, xml_request, calendar, depth, request):
|
|||||||
element.text = "%s://%s%s" % (
|
element.text = "%s://%s%s" % (
|
||||||
request.server.PROTOCOL, request.headers["Host"],
|
request.server.PROTOCOL, request.headers["Host"],
|
||||||
request.path)
|
request.path)
|
||||||
|
elif tag == _tag("C", "calendar-home-set"):
|
||||||
|
tag = ET.Element(_tag("D", "href"))
|
||||||
|
tag.text = "%s://%s%s" % (
|
||||||
|
request.server.PROTOCOL, request.headers["Host"],
|
||||||
|
request.path)
|
||||||
|
element.append(tag)
|
||||||
|
|
||||||
prop.append(element)
|
prop.append(element)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user