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
2a1aa075
Commit
2a1aa075
authored
Nov 11, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Moved setting of RESPONSE key in REQUEST to be ealier in the process.
parent
666ef861
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
4 deletions
+7
-4
lib/python/ZPublisher/Publish.py
lib/python/ZPublisher/Publish.py
+7
-4
No files found.
lib/python/ZPublisher/Publish.py
View file @
2a1aa075
...
...
@@ -370,7 +370,7 @@ Publishing a module using CGI
containing the module to be published) to the module name in the
cgi-bin directory.
$Id: Publish.py,v 1.6
4 1997/11/07 15:01:30
jim Exp $"""
$Id: Publish.py,v 1.6
5 1997/11/11 19:31:18
jim Exp $"""
#'
# Copyright
#
...
...
@@ -425,7 +425,7 @@ $Id: Publish.py,v 1.64 1997/11/07 15:01:30 jim Exp $"""
# See end of file for change log.
#
##########################################################################
__version__
=
'$Revision: 1.6
4
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.6
5
$'
[
11
:
-
2
]
def
main
():
...
...
@@ -555,7 +555,8 @@ class ModulePublisher:
request
=
self
.
request
=
Request
(
environ
,
other
,
stdin
)
request
.
form
=
form
if
cookies
is
not
None
:
request
.
cookies
=
cookies
self
.
response
=
Response
(
stdout
=
stdout
,
stderr
=
stderr
)
self
.
response
=
response
=
Response
(
stdout
=
stdout
,
stderr
=
stderr
)
request
[
'RESPONSE'
]
=
response
self
.
stdin
=
stdin
self
.
stdout
=
stdout
self
.
stderr
=
stderr
...
...
@@ -888,7 +889,6 @@ class ModulePublisher:
except
:
return
response
.
setBody
(
object
)
request
[
'RESPONSE'
]
=
response
request
[
'URL'
]
=
URL
request
[
'PARENT_URL'
]
=
URL
[:
rfind
(
URL
,
'/'
)]
if
parents
:
...
...
@@ -1366,6 +1366,9 @@ def publish_module(module_name,
#
# $Log: Publish.py,v $
# Revision 1.65 1997/11/11 19:31:18 jim
# Moved setting of RESPONSE key in REQUEST to be ealier in the process.
#
# Revision 1.64 1997/11/07 15:01:30 jim
# Updated bobo traverse machinery and fixed bug in setting return status
# when exceptions occur.
...
...
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