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
15388227
Commit
15388227
authored
Nov 05, 1997
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed bug that broke cookies.
parent
06153d92
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
lib/python/ZPublisher/Publish.py
lib/python/ZPublisher/Publish.py
+9
-7
No files found.
lib/python/ZPublisher/Publish.py
View file @
15388227
...
...
@@ -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
2 1997/10/30 19:35:38
jim Exp $"""
$Id: Publish.py,v 1.6
3 1997/11/05 14:48:07
jim Exp $"""
#'
# Copyright
#
...
...
@@ -425,7 +425,7 @@ $Id: Publish.py,v 1.62 1997/10/30 19:35:38 jim Exp $"""
# See end of file for change log.
#
##########################################################################
__version__
=
'$Revision: 1.6
2
$'
[
11
:
-
2
]
__version__
=
'$Revision: 1.6
3
$'
[
11
:
-
2
]
def
main
():
...
...
@@ -547,11 +547,10 @@ class ModulePublisher:
cookies
=
{}
if
environ
.
has_key
(
'HTTP_COOKIE'
):
d
=
parse_cookie
(
self
.
environ
[
'HTTP_COOKIE'
])
for
k
,
item
in
d
.
items
():
cookies
[
k
]
=
item
if
not
form
.
has_key
(
k
):
form
[
k
]
=
item
parse_cookie
(
self
.
environ
[
'HTTP_COOKIE'
],
cookies
)
for
k
,
item
in
cookies
.
items
():
if
not
other
.
has_key
(
k
):
other
[
k
]
=
item
request
=
self
.
request
=
Request
(
environ
,
other
,
stdin
)
request
.
form
=
form
...
...
@@ -1362,6 +1361,9 @@ def publish_module(module_name,
#
# $Log: Publish.py,v $
# Revision 1.63 1997/11/05 14:48:07 jim
# Fixed bug that broke cookies.
#
# Revision 1.62 1997/10/30 19:35:38 jim
# Fixed bug in cookie handling. :-(
#
...
...
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