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
ce9c1099
Commit
ce9c1099
authored
Mar 02, 1999
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug in traversal when HTTP methods that disallow acquisition are used.
parent
2f3bb364
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
lib/python/ZPublisher/BaseRequest.py
lib/python/ZPublisher/BaseRequest.py
+9
-4
No files found.
lib/python/ZPublisher/BaseRequest.py
View file @
ce9c1099
...
...
@@ -82,7 +82,7 @@
# file.
#
##############################################################################
__version__
=
'$Revision: 1.
2
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
3
$'
[
11
:
-
2
]
from
string
import
join
,
split
,
find
,
rfind
,
lower
,
upper
from
urllib
import
quote
...
...
@@ -279,14 +279,19 @@ class BaseRequest:
else
:
try
:
if
baseflag
and
hasattr
(
object
,
'aq_base'
):
subobject
=
getattr
(
object
.
aq_base
,
entry_name
)
else
:
subobject
=
getattr
(
object
,
entry_name
)
if
hasattr
(
object
.
aq_base
,
entry_name
):
subobject
=
getattr
(
object
,
entry_name
)
else
:
raise
AttributeError
,
entry_name
else
:
subobject
=
getattr
(
object
,
entry_name
)
except
AttributeError
:
got
=
1
try
:
subobject
=
object
[
entry_name
]
except
(
KeyError
,
IndexError
,
TypeError
,
AttributeError
):
if
debug_mode
:
if
entry_name
==
'.'
:
subobject
=
object
elif
entry_name
==
'..'
and
parents
:
subobject
=
parents
[
-
1
]
elif
debug_mode
:
return
response
.
debugError
(
"Cannot locate object at: %s"
%
URL
)
else
:
return
response
.
notFoundError
(
URL
)
...
...
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