Commit 0b1bdf0e authored by 's avatar

Added a fix for controlling the "secure" attribute of cookies.

parent 4ca4d3cf
...@@ -84,8 +84,8 @@ ...@@ -84,8 +84,8 @@
############################################################################## ##############################################################################
'''CGI Response Output formatter '''CGI Response Output formatter
$Id: HTTPResponse.py,v 1.23 1999/11/03 19:24:45 sroberts Exp $''' $Id: HTTPResponse.py,v 1.24 1999/11/11 16:45:39 brian Exp $'''
__version__='$Revision: 1.23 $'[11:-2] __version__='$Revision: 1.24 $'[11:-2]
import string, types, sys, regex import string, types, sys, regex
from string import find, rfind, lower, upper, strip, split, join, translate from string import find, rfind, lower, upper, strip, split, join, translate
...@@ -658,7 +658,7 @@ class HTTPResponse(BaseResponse): ...@@ -658,7 +658,7 @@ class HTTPResponse(BaseResponse):
elif name=='path': cookie = '%s; Path=%s' % (cookie,v) elif name=='path': cookie = '%s; Path=%s' % (cookie,v)
elif name=='max_age': cookie = '%s; Max-Age=%s' % (cookie,v) elif name=='max_age': cookie = '%s; Max-Age=%s' % (cookie,v)
elif name=='comment': cookie = '%s; Comment=%s' % (cookie,v) elif name=='comment': cookie = '%s; Comment=%s' % (cookie,v)
elif name=='secure': cookie = '%s; Secure' % cookie elif name=='secure' and v: cookie = '%s; Secure' % cookie
cookie_list.append(cookie) cookie_list.append(cookie)
# Should really check size of cookies here! # Should really check size of cookies here!
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment