This is certainly possible. An ACL method to accomplish that task
would have something like the following as the request body:

<D:acl xmlns:D="DAV:">
  <!-- read and write privileges for all users -->
  <D:ace>
    <D:principal>
      <D:all/>
    </D:principal>
    <D:grant>
      <D:privilege> <D:read/> </D:privilege>
      <D:privilege> <D:write/> </D:privilege>
    </D:grant>
  </D:ace>

  <!-- manage permissions for the owner -->
  <D:ace>
    <D:principal>
      <D:property> <D:owner/> </D:property>
    </D:principal>
    <D:grant>
      <D:privilege> <D:read-acl/> </D:privilege>
      <D:privilege> <D:write-acl/> </D:privilege>
    </D:grant>
  </D:ace>
</D:acl>

Regards,
Ingo

> Hello,
> 
> we are trying to setup the permissions on a collection to give
> all users read and write permissions and the owner (creator) of
> the resources in the collection the permission to manage (e.g.
> manage permissions).
> 
> Is there a way to do that?
> 
> thanks in advance.
> 
> Stefan L�tzkendorf


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to