Commit 68a964a9 authored by Fred Drake's avatar Fred Drake

a null resource locked by WebDAV should not acquire index_html; it should act

just like it does not exist
parent 6af55f43
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
"""WebDAV support - null resource objects.""" """WebDAV support - null resource objects."""
__version__='$Revision: 1.41 $'[11:-2] __version__='$Revision: 1.42 $'[11:-2]
import sys, Globals, davcmds import sys, Globals, davcmds
import Acquisition, OFS.content_types import Acquisition, OFS.content_types
...@@ -63,6 +63,7 @@ class NullResource(Persistent, Acquisition.Implicit, Resource): ...@@ -63,6 +63,7 @@ class NullResource(Persistent, Acquisition.Implicit, Resource):
# Most methods return 404 (Not Found) for null resources. # Most methods return 404 (Not Found) for null resources.
DELETE=TRACE=PROPFIND=PROPPATCH=COPY=MOVE=HEAD DELETE=TRACE=PROPFIND=PROPPATCH=COPY=MOVE=HEAD
index_html = HEAD
def _default_PUT_factory( self, name, typ, body ): def _default_PUT_factory( self, name, typ, body ):
# Return DTMLDoc/PageTemplate/Image/File, based on sniffing. # Return DTMLDoc/PageTemplate/Image/File, based on sniffing.
......
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