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
fbbd6da5
Commit
fbbd6da5
authored
Mar 09, 1999
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
parent
bee1b7cf
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
9 deletions
+9
-9
lib/python/webdav/NullResource.py
lib/python/webdav/NullResource.py
+4
-4
lib/python/webdav/Resource.py
lib/python/webdav/Resource.py
+5
-5
No files found.
lib/python/webdav/NullResource.py
View file @
fbbd6da5
...
...
@@ -85,7 +85,7 @@
"""WebDAV support - null resource objects."""
__version__
=
'$Revision: 1.
7
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
8
$'
[
11
:
-
2
]
import
sys
,
os
,
string
,
mimetypes
import
Acquisition
,
OFS
.
content_types
...
...
@@ -105,15 +105,15 @@ class NullResource(Persistent, Acquisition.Implicit, Resource):
self
.
__parent__
=
parent
self
.
__roles__
=
parent
.
__roles__
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
# 404 Not Found, per [WebDAV 8.3.1].
try
:
return
getattr
(
self
,
name
)
except
:
pass
method
=
REQUEST
.
get
(
'REQUEST_METHOD'
,
'GET'
)
if
method
in
(
'MKCOL'
,):
raise
'Conflict'
,
`name`
# raise 'Conflict', 'Collection ancestors must already exist.'
raise
'Conflict'
,
'Collection ancestors must already exist.'
raise
'Not Found'
,
'The requested resource was not found.'
def
HEAD
(
self
,
REQUEST
,
RESPONSE
):
...
...
lib/python/webdav/Resource.py
View file @
fbbd6da5
...
...
@@ -85,7 +85,7 @@
"""WebDAV support - resource objects."""
__version__
=
'$Revision: 1.
8
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
9
$'
[
11
:
-
2
]
import
sys
,
os
,
string
,
mimetypes
,
xmlcmds
from
common
import
absattr
,
aq_base
,
urlfix
,
rfc1123_date
...
...
@@ -104,12 +104,12 @@ class Resource:
'MOVE'
,
)
def
dav__init
(
self
,
r
):
def
dav__init
(
self
,
r
equest
,
response
):
# Init expected HTTP 1.1 / WebDAV headers which are not
# currently set by the response object automagically.
r
.
setHeader
(
'Connection'
,
'close'
)
r
.
setHeader
(
'Date'
,
rfc1123_date
())
r
.
setHeader
(
'DAV'
,
'1'
)
r
esponse
.
setHeader
(
'Connection'
,
'close'
)
r
esponse
.
setHeader
(
'Date'
,
rfc1123_date
())
r
esponse
.
setHeader
(
'DAV'
,
'1'
)
dav__locks
=
()
...
...
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