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
36c526f3
Commit
36c526f3
authored
Jun 22, 1999
by
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added a fix to HTTPRequest.resolve_url, to correctly return an
object rather than it's default index_html.
parent
a9bee0fa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
7 deletions
+10
-7
lib/python/ZPublisher/HTTPRequest.py
lib/python/ZPublisher/HTTPRequest.py
+10
-7
No files found.
lib/python/ZPublisher/HTTPRequest.py
View file @
36c526f3
...
...
@@ -82,7 +82,7 @@
# attributions are listed in the accompanying credits file.
#
##############################################################################
__version__
=
'$Revision: 1.
7
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.
8
$'
[
11
:
-
2
]
import
regex
,
sys
,
os
from
string
import
lower
,
atoi
,
rfind
,
split
,
strip
,
join
,
upper
,
find
...
...
@@ -350,12 +350,15 @@ class HTTPRequest(BaseRequest):
# waaa - traversal may return a "default object"
# like an index_html document, though you really
# wanted to get a Folder back :(
if
callable
(
object
.
id
):
name
=
object
.
id
()
else
:
name
=
object
.
id
if
name
!=
os
.
path
.
split
(
path
)[
-
1
]
and
\
hasattr
(
object
,
'aq_parent'
):
return
object
.
aq_parent
if
hasattr
(
object
,
'id'
):
if
callable
(
object
.
id
):
name
=
object
.
id
()
else
:
name
=
object
.
id
elif
hasattr
(
object
,
'__name__'
):
name
=
object
.
__name__
else
:
name
=
''
if
name
!=
os
.
path
.
split
(
path
)[
-
1
]:
return
req
.
PARENTS
[
0
]
return
object
raise
rsp
.
errmsg
,
sys
.
exc_value
...
...
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