You are viewing a plain text version of this content. The canonical link for it is here.
Posted to slide-dev@jakarta.apache.org by Ingo Brunberg <ib...@fiz-chemie.de> on 2003/08/19 12:05:19 UTC

AclMethod

Hello,

Slide server's AclMethod exhibits a problem, if a grant all privileges
request is processed. Slide then inserts a "/" instead of "/actions"
into the permissions table.

Attached is a small patch.

Regards,
Ingo

Index: src/webdav/server/org/apache/slide/webdav/method/AclMethod.java
===================================================================
RCS file: /home/cvspublic/jakarta-slide/src/webdav/server/org/apache/slide/webdav/method/AclMethod.java,v
retrieving revision 1.28
diff -r1.28 AclMethod.java
261c261
<                             addPermission(principal, "/", negative, inheritable);
---
>                             addPermission(principal, config.getDefaultAction().getUri(), negative, inheritable);