[CalendarServer-changes] [9484] CalendarServer/branches/users/gaya/inviteclean/twistedcaldav/sharing .py

source_changes at macosforge.org source_changes at macosforge.org
Mon Jul 23 15:44:56 PDT 2012


Revision: 9484
          http://trac.macosforge.org/projects/calendarserver/changeset/9484
Author:   gaya at apple.com
Date:     2012-07-23 15:44:56 -0700 (Mon, 23 Jul 2012)
Log Message:
-----------
in SharedCollectionMixin.shareeAccessControlList(), remove access tests against "read-write-schedule"

Modified Paths:
--------------
    CalendarServer/branches/users/gaya/inviteclean/twistedcaldav/sharing.py

Modified: CalendarServer/branches/users/gaya/inviteclean/twistedcaldav/sharing.py
===================================================================
--- CalendarServer/branches/users/gaya/inviteclean/twistedcaldav/sharing.py	2012-07-23 22:42:26 UTC (rev 9483)
+++ CalendarServer/branches/users/gaya/inviteclean/twistedcaldav/sharing.py	2012-07-23 22:44:56 UTC (rev 9484)
@@ -332,13 +332,13 @@
             
         userprivs = [
         ]
-        if access in ("read-only", "read-write", "read-write-schedule",):
+        if access in ("read-only", "read-write",):
             userprivs.append(element.Privilege(element.Read()))
             userprivs.append(element.Privilege(element.ReadACL()))
             userprivs.append(element.Privilege(element.ReadCurrentUserPrivilegeSet()))
         if access in ("read-only",):
             userprivs.append(element.Privilege(element.WriteProperties()))
-        if access in ("read-write", "read-write-schedule",):
+        if access in ("read-write",):
             userprivs.append(element.Privilege(element.Write()))
         proxyprivs = list(userprivs)
         try:
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20120723/4d4f5537/attachment.html>


More information about the calendarserver-changes mailing list