[Zope-Checkins] CVS: Zope/lib/python/webdav - Resource.py:1.55
Andreas Jung
andreas@andreas-jung.com
Mon, 3 Feb 2003 05:59:57 -0500
Update of /cvs-repository/Zope/lib/python/webdav
In directory cvs.zope.org:/tmp/cvs-serv15781/lib/python/webdav
Modified Files:
Resource.py
Log Message:
- Collector #790: WebDAV access is granted by default only
to Managers and Authenticated users instead to Anonymous users.
This restricts access to the Control_Panel and especially
to the Products management to trusted users.
=== Zope/lib/python/webdav/Resource.py 1.54 => 1.55 ===
--- Zope/lib/python/webdav/Resource.py:1.54 Thu Sep 19 11:30:19 2002
+++ Zope/lib/python/webdav/Resource.py Mon Feb 3 05:59:54 2003
@@ -43,7 +43,7 @@
__ac_permissions__=(
('View', ('HEAD',)),
('WebDAV access', ('PROPFIND',),
- ('Anonymous', 'Manager')),
+ ('Authenticated', 'Manager')),
('Manage properties', ('PROPPATCH',)),
('Delete objects', ('DELETE',)),
('WebDAV Lock items', ('LOCK',)),