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
dbc3c1dc
Commit
dbc3c1dc
authored
Mar 09, 1999
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
1293523a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
8 deletions
+3
-8
lib/python/webdav/NullResource.py
lib/python/webdav/NullResource.py
+3
-8
No files found.
lib/python/webdav/NullResource.py
View file @
dbc3c1dc
...
...
@@ -85,7 +85,7 @@
"""WebDAV support - null resource objects."""
__version__
=
'$Revision: 1.
6
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
7
$'
[
11
:
-
2
]
import
sys
,
os
,
string
,
mimetypes
import
Acquisition
,
OFS
.
content_types
...
...
@@ -105,12 +105,6 @@ 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
...
...
@@ -118,7 +112,8 @@ class NullResource(Persistent, Acquisition.Implicit, Resource):
# 404 Not Found, per [WebDAV 8.3.1].
method
=
REQUEST
.
get
(
'REQUEST_METHOD'
,
'GET'
)
if
method
in
(
'MKCOL'
,):
raise
'Conflict'
,
'Collection ancestors must already exist.'
raise
'Conflict'
,
`name`
# raise 'Conflict', 'Collection ancestors must already exist.'
raise
'Not Found'
,
'The requested resource was not found.'
def
HEAD
(
self
,
REQUEST
,
RESPONSE
):
...
...
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