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
76fccc3c
Commit
76fccc3c
authored
Aug 01, 2006
by
Alec Mitchell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge the fix in r69331 from 2.10 branch (WebDAV/HEAD request acquisition issue)
parent
0a97af04
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
30 additions
and
4 deletions
+30
-4
lib/python/OFS/Traversable.py
lib/python/OFS/Traversable.py
+14
-2
lib/python/OFS/tests/testTraverse.py
lib/python/OFS/tests/testTraverse.py
+16
-2
No files found.
lib/python/OFS/Traversable.py
View file @
76fccc3c
...
...
@@ -26,6 +26,7 @@ from Acquisition import Acquired, aq_inner, aq_parent, aq_base
from
zExceptions
import
NotFound
from
ZODB.POSException
import
ConflictError
from
OFS.interfaces
import
ITraversable
import
webdav
from
zope.interface
import
implements
,
Interface
from
zope.component
import
queryMultiAdapter
...
...
@@ -165,6 +166,7 @@ class Traversable:
else
:
obj
=
self
resource
=
_marker
try
:
while
path
:
name
=
path_pop
()
...
...
@@ -237,6 +239,13 @@ class Traversable:
else
:
try
:
next
=
obj
[
name
]
# The item lookup may return a NullResource,
# if this is the case we save it and return it
# if all other lookups fail.
if
isinstance
(
next
,
webdav
.
NullResource
.
NullResource
):
resource
=
next
raise
KeyError
(
name
)
except
AttributeError
:
# Raise NotFound for easier debugging
# instead of AttributeError: __getitem__
...
...
@@ -267,6 +276,9 @@ class Traversable:
next
=
getattr
(
obj
,
name
,
_marker
)
except
AttributeError
:
raise
e
if
next
is
_marker
:
# If we have a NullResource from earlier use it.
next
=
resource
if
next
is
_marker
:
# Nothing found re-raise error
raise
e
...
...
lib/python/OFS/tests/testTraverse.py
View file @
76fccc3c
...
...
@@ -597,6 +597,20 @@ def test_view_doesnt_shadow_attribute():
>>> self.folder.ftf.unrestrictedTraverse('mouse')()
u'The mouse has been eaten by the eagle'
Head requests have some unusual behavior in Zope 2, in particular, a failed
item lookup on an ObjectManager returns a NullResource, rather
than raising a KeyError. We need to make sure that this doesn't
result in acquired attributes being shadowed by the NullResource,
but that unknown names still give NullResources:
>>> self.app.REQUEST.maybe_webdav_client = True
>>> self.app.REQUEST['REQUEST_METHOD'] = 'HEAD'
>>> self.folder.ftf.unrestrictedTraverse('mouse')()
u'The mouse has been eaten by the eagle'
>>> self.folder.ftf.unrestrictedTraverse('nonsense')
<webdav.NullResource.NullResource object at ...>
Clean up:
>>> from zope.app.testing.placelesssetup import tearDown
...
...
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