pyramid_cubicweb/core.py
changeset 11504 8701caf9edf0
parent 11502 e4682c567e86
child 11508 ef8b9021b47b
equal deleted inserted replaced
11503:ddf61aa73384 11504:8701caf9edf0
    57         self.path = request.upath_info
    57         self.path = request.upath_info
    58 
    58 
    59         vreg = request.registry['cubicweb.registry']
    59         vreg = request.registry['cubicweb.registry']
    60         https = request.scheme == 'https'
    60         https = request.scheme == 'https'
    61 
    61 
    62         post = request.params
    62         post = request.params.mixed()
    63         headers_in = request.headers
    63         headers_in = request.headers
    64 
    64 
    65         super(CubicWebPyramidRequest, self).__init__(vreg, https, post,
    65         super(CubicWebPyramidRequest, self).__init__(vreg, https, post,
    66                                                      headers=headers_in)
    66                                                      headers=headers_in)
    67 
    67