Commit 1293523a authored by 's avatar

*** empty log message ***

parent 243635da
......@@ -85,7 +85,7 @@
"""WebDAV support - null resource objects."""
__version__='$Revision: 1.5 $'[11:-2]
__version__='$Revision: 1.6 $'[11:-2]
import sys, os, string, mimetypes
import Acquisition, OFS.content_types
......@@ -105,6 +105,13 @@ class NullResource(Persistent, Acquisition.Implicit, Resource):
self.__parent__=parent
self.__roles__=parent.__roles__
def __getitem__(self, key):
if hasattr(self, 'REQUEST'):
method=self.REQUEST.get('REQUEST_METHOD', 'GET')
if method in ('MKCOL',):
raise 'Conflict', 'Collection ancestors must already exist.'
raise 'Not Found', 'The requested resource was not found.'
def __bobo_traverse__(self, REQUEST, name=None):
# We must handle traversal so that we can recognize situations
# where a 409 Conflict must be returned instead of the normal
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment