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
83f6a3ad
Commit
83f6a3ad
authored
Jun 12, 2006
by
Andreas Jung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Collector #1944: HTTPRequest.resolve_url has error in raising errors
parent
ac58f839
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
doc/CHANGES.txt
doc/CHANGES.txt
+2
-0
lib/python/ZPublisher/HTTPRequest.py
lib/python/ZPublisher/HTTPRequest.py
+1
-1
lib/python/ZPublisher/tests/testHTTPRequest.py
lib/python/ZPublisher/tests/testHTTPRequest.py
+13
-0
No files found.
doc/CHANGES.txt
View file @
83f6a3ad
...
...
@@ -33,6 +33,8 @@ Zope Changes
- Collector #2073: fixed misbehaviour of OFS.Owned.changeOwnership
- Collector #1944: HTTPRequest.resolve_url has error in raising errors
Zope 2.10.0 beta 1 (2006/05/30)
Restructuring
...
...
lib/python/ZPublisher/HTTPRequest.py
View file @
83f6a3ad
...
...
@@ -1042,7 +1042,7 @@ class HTTPRequest(BaseRequest):
except
:
rsp
.
exception
()
if
object
is
None
:
req
.
close
()
raise
rsp
.
errmsg
,
sys
.
exc_info
()[
1
]
raise
sys
.
exc_info
()[
0
],
rsp
.
errmsg
# The traversal machinery may return a "default object"
# like an index_html document. This is not appropriate
...
...
lib/python/ZPublisher/tests/testHTTPRequest.py
View file @
83f6a3ad
...
...
@@ -701,6 +701,19 @@ class RequestTests( unittest.TestCase ):
f
.
seek
(
0
)
self
.
assertEqual
(
f
.
xreadlines
(),
f
)
def
testResolveUrl
(
self
):
# Check that ResolveUrl really raises the same error
# it received from ZPublisher.BaseRequest.traverse
# collector entry 1944
from
ZPublisher.HTTPRequest
import
HTTPRequest
from
zExceptions
import
NotFound
env
=
TEST_ENVIRON
.
copy
()
req
=
HTTPRequest
(
None
,
env
,
None
)
req
[
'PARENTS'
]
=
[
'Nobody'
,
'cares'
,
'here'
]
testmethod
=
req
.
resolve_url
self
.
assertRaises
(
NotFound
,
testmethod
,
'http://localhost/does_not_exist'
)
def
testDebug
(
self
):
TEST_ENVIRON
=
{
'REQUEST_METHOD'
:
'GET'
,
...
...
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