Commit 76fddebc authored by Andreas Jung's avatar Andreas Jung

- Collector #2497: SERVER_PROTOCOL variable is now compliant

          with the CGI specification and looks like "HTTP/1.1" instead
          of "1.1"
parent 2cfcb49c
......@@ -254,7 +254,7 @@ class zhttp_handler:
env['SERVER_PORT']=str(server.port)
env['SERVER_NAME']=server.server_name
env['SERVER_SOFTWARE']=server.SERVER_IDENT
env['SERVER_PROTOCOL']=request.version
env['SERVER_PROTOCOL']="HTTP/"+request.version
env['channel.creation_time']=request.channel.creation_time
if self.uri_base=='/':
env['SCRIPT_NAME']=''
......
......@@ -35,6 +35,14 @@ Zope Changes
so any WebDAV client was unable to unlock the destination
object. Locks are now cleared from the destination object.
- Error message AttributeError/_v_blocks when a DTMLfile is
not present or could not be read replaced by a more
informative message.
- Collector #2497: SERVER_PROTOCOL variable is now compliant
with the CGI specification and looks like "HTTP/1.1" instead
of "1.1"
Zope 2.4 beta 2
Bugs fixed
......
......@@ -254,7 +254,7 @@ class zhttp_handler:
env['SERVER_PORT']=str(server.port)
env['SERVER_NAME']=server.server_name
env['SERVER_SOFTWARE']=server.SERVER_IDENT
env['SERVER_PROTOCOL']=request.version
env['SERVER_PROTOCOL']="HTTP/"+request.version
env['channel.creation_time']=request.channel.creation_time
if self.uri_base=='/':
env['SCRIPT_NAME']=''
......
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