Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
Zope
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
Zope
Commits
1293523a
Commit
1293523a
authored
Mar 09, 1999
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
243635da
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
lib/python/webdav/NullResource.py
lib/python/webdav/NullResource.py
+8
-1
No files found.
lib/python/webdav/NullResource.py
View file @
1293523a
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment