[CalendarServer-changes] [945] CalendarServer/branches/users/cdaboo/cuproxy-857/twistedcaldav/ directory/calendar.py

source_changes at macosforge.org source_changes at macosforge.org
Fri Jan 5 13:20:19 PST 2007


Revision: 945
          http://trac.macosforge.org/projects/calendarserver/changeset/945
Author:   cdaboo at apple.com
Date:     2007-01-05 13:20:18 -0800 (Fri, 05 Jan 2007)

Log Message:
-----------
Principal resources are now collections.

Modified Paths:
--------------
    CalendarServer/branches/users/cdaboo/cuproxy-857/twistedcaldav/directory/calendar.py

Modified: CalendarServer/branches/users/cdaboo/cuproxy-857/twistedcaldav/directory/calendar.py
===================================================================
--- CalendarServer/branches/users/cdaboo/cuproxy-857/twistedcaldav/directory/calendar.py	2007-01-05 21:03:56 UTC (rev 944)
+++ CalendarServer/branches/users/cdaboo/cuproxy-857/twistedcaldav/directory/calendar.py	2007-01-05 21:20:18 UTC (rev 945)
@@ -284,14 +284,14 @@
             aces += (
                 # DAV:read access for this principal's calendar-proxy-read users.
                 davxml.ACE(
-                    davxml.Principal(davxml.HRef(joinURL(myPrincipal.principalURL(), "calendar-proxy-read"))),
+                    davxml.Principal(davxml.HRef(joinURL(myPrincipal.principalURL(), "calendar-proxy-read/"))),
                     davxml.Grant(davxml.Privilege(davxml.Read())),
                     davxml.Protected(),
                     TwistedACLInheritable(),
                 ),
                 # DAV:read/DAV:write access for this principal's calendar-proxy-write users.
                 davxml.ACE(
-                    davxml.Principal(davxml.HRef(joinURL(myPrincipal.principalURL(), "calendar-proxy-write"))),
+                    davxml.Principal(davxml.HRef(joinURL(myPrincipal.principalURL(), "calendar-proxy-write/"))),
                     davxml.Grant(davxml.Privilege(davxml.Read()), davxml.Privilege(davxml.Write())),
                     davxml.Protected(),
                     TwistedACLInheritable(),

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20070105/95f8b698/attachment.html


More information about the calendarserver-changes mailing list