author | Rémi Cardona <remi.cardona@logilab.fr> |
Tue, 22 Sep 2015 14:42:33 +0200 | |
changeset 10727 | 3fb9111d521f |
parent 10673 | 9924fd69bcba |
child 10739 | 27f946cfe350 |
permissions | -rw-r--r-- |
7879
9aae456abab5
[pylint] fix pylint detected errors and tweak it so that pylint -E will be much less verbose next time (+ update some copyrights on the way)
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5426
diff
changeset
|
1 |
# copyright 2003-2011 LOGILAB S.A. (Paris, FRANCE), all rights reserved. |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
2 |
# contact http://www.logilab.fr/ -- mailto:contact@logilab.fr |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
3 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
4 |
# This file is part of CubicWeb. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
5 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
6 |
# CubicWeb is free software: you can redistribute it and/or modify it under the |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
7 |
# terms of the GNU Lesser General Public License as published by the Free |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
8 |
# Software Foundation, either version 2.1 of the License, or (at your option) |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
9 |
# any later version. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
10 |
# |
5424
8ecbcbff9777
replace logilab-common by CubicWeb in disclaimer
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
5421
diff
changeset
|
11 |
# CubicWeb is distributed in the hope that it will be useful, but WITHOUT |
5421
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
12 |
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
13 |
# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
14 |
# details. |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
15 |
# |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
16 |
# You should have received a copy of the GNU Lesser General Public License along |
8167de96c523
proper licensing information (LGPL-2.1). Hope I get it right this time.
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
4212
diff
changeset
|
17 |
# with CubicWeb. If not, see <http://www.gnu.org/licenses/>. |
0 | 18 |
"""WSGI request adapter for cubicweb |
19 |
||
20 |
NOTE: each docstring tagged with ``COME FROM DJANGO`` means that |
|
21 |
the code has been taken (or adapted) from Djanco source code : |
|
22 |
http://www.djangoproject.com/ |
|
23 |
||
24 |
""" |
|
25 |
||
26 |
__docformat__ = "restructuredtext en" |
|
27 |
||
9942
4b99196102f0
[wsgi] Add missing import
Christophe de Vienne <christophe@unlish.com>
parents:
9941
diff
changeset
|
28 |
import tempfile |
4b99196102f0
[wsgi] Add missing import
Christophe de Vienne <christophe@unlish.com>
parents:
9941
diff
changeset
|
29 |
|
10673 | 30 |
from io import BytesIO |
10603
65ad6980976e
[py3k] import URL mangling functions using six.moves
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10594
diff
changeset
|
31 |
|
65ad6980976e
[py3k] import URL mangling functions using six.moves
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10594
diff
changeset
|
32 |
from six.moves.urllib.parse import parse_qs |
0 | 33 |
|
9995
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
34 |
from cubicweb.multipart import ( |
10594 | 35 |
copy_file, parse_form_data, parse_options_header) |
9995
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
36 |
from cubicweb.web import RequestError |
0 | 37 |
from cubicweb.web.request import CubicWebRequestBase |
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
38 |
from cubicweb.wsgi import pformat, normalize_header |
0 | 39 |
|
40 |
||
41 |
class CubicWebWsgiRequest(CubicWebRequestBase): |
|
8752
e19f4bba89cd
Add CubicWebRequestBase.content (closes #2742453)
Julien Cristau <julien.cristau@logilab.fr>
parents:
8316
diff
changeset
|
42 |
"""most of this code COMES FROM DJANGO |
0 | 43 |
""" |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
44 |
|
8309
48ef505aa9f9
[request] gather all base_url logic in a single place (closes #2200756)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
7879
diff
changeset
|
45 |
def __init__(self, environ, vreg): |
9943
a4aeee690bff
[wsgi] Set self.vreg
Christophe de Vienne <christophe@unlish.com>
parents:
9942
diff
changeset
|
46 |
# self.vreg is used in get_posted_data, which is called before the |
a4aeee690bff
[wsgi] Set self.vreg
Christophe de Vienne <christophe@unlish.com>
parents:
9942
diff
changeset
|
47 |
# parent constructor. |
a4aeee690bff
[wsgi] Set self.vreg
Christophe de Vienne <christophe@unlish.com>
parents:
9942
diff
changeset
|
48 |
self.vreg = vreg |
a4aeee690bff
[wsgi] Set self.vreg
Christophe de Vienne <christophe@unlish.com>
parents:
9942
diff
changeset
|
49 |
|
0 | 50 |
self.environ = environ |
51 |
self.path = environ['PATH_INFO'] |
|
52 |
self.method = environ['REQUEST_METHOD'].upper() |
|
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
53 |
|
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
54 |
# content_length "may be empty or absent" |
9563
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
55 |
try: |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
56 |
length = int(environ['CONTENT_LENGTH']) |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
57 |
except (KeyError, ValueError): |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
58 |
length = 0 |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
59 |
# wsgi.input is not seekable, so copy the request contents to a temporary file |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
60 |
if length < 100000: |
10673 | 61 |
self.content = BytesIO() |
9563
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
62 |
else: |
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
63 |
self.content = tempfile.TemporaryFile() |
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
64 |
copy_file(environ['wsgi.input'], self.content, maxread=length) |
9563
48f0ff3e2a32
[wsgi] make sure request.content is available for consumption
Julien Cristau <julien.cristau@logilab.fr>
parents:
8752
diff
changeset
|
65 |
self.content.seek(0, 0) |
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
66 |
environ['wsgi.input'] = self.content |
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
67 |
|
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
68 |
headers_in = dict((normalize_header(k[5:]), v) for k, v in self.environ.items() |
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
69 |
if k.startswith('HTTP_')) |
9939
46a8ed48636f
[wsgi] Honor the 'CONTENT_TYPE' wsgi variable
Christophe de Vienne <christophe@unlish.com>
parents:
9735
diff
changeset
|
70 |
if 'CONTENT_TYPE' in environ: |
46a8ed48636f
[wsgi] Honor the 'CONTENT_TYPE' wsgi variable
Christophe de Vienne <christophe@unlish.com>
parents:
9735
diff
changeset
|
71 |
headers_in['Content-Type'] = environ['CONTENT_TYPE'] |
9737
c6f47e635845
[wsgi] look at wsgi.url_scheme to decide if we're on https
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
72 |
https = self.is_secure() |
9941
8dc1c96d29f1
[wsgi] Fix https detection
Christophe de Vienne <christophe@unlish.com>
parents:
9940
diff
changeset
|
73 |
if self.path.startswith('/https/'): |
8dc1c96d29f1
[wsgi] Fix https detection
Christophe de Vienne <christophe@unlish.com>
parents:
9940
diff
changeset
|
74 |
self.path = self.path[6:] |
8dc1c96d29f1
[wsgi] Fix https detection
Christophe de Vienne <christophe@unlish.com>
parents:
9940
diff
changeset
|
75 |
self.environ['PATH_INFO'] = self.path |
8dc1c96d29f1
[wsgi] Fix https detection
Christophe de Vienne <christophe@unlish.com>
parents:
9940
diff
changeset
|
76 |
https = True |
8dc1c96d29f1
[wsgi] Fix https detection
Christophe de Vienne <christophe@unlish.com>
parents:
9940
diff
changeset
|
77 |
|
0 | 78 |
post, files = self.get_posted_data() |
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
79 |
|
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
80 |
super(CubicWebWsgiRequest, self).__init__(vreg, https, post, |
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
81 |
headers= headers_in) |
9940
292f786009ba
[wsgi] Re-set the request content after calling the inherited constructor.
Christophe de Vienne <christophe@unlish.com>
parents:
9939
diff
changeset
|
82 |
self.content = environ['wsgi.input'] |
0 | 83 |
if files is not None: |
10662
10942ed172de
[py3k] dict.iteritems → dict.items
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10603
diff
changeset
|
84 |
for key, part in files.items(): |
9988
623707a0c404
[wsgi] Fix posted files filename reading
Christophe de Vienne <christophe@unlish.com>
parents:
9944
diff
changeset
|
85 |
self.form[key] = (part.filename, part.file) |
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
86 |
|
0 | 87 |
def __repr__(self): |
88 |
# Since this is called as part of error handling, we need to be very |
|
89 |
# robust against potentially malformed input. |
|
90 |
form = pformat(self.form) |
|
91 |
meta = pformat(self.environ) |
|
92 |
return '<CubicWebWsgiRequest\FORM:%s,\nMETA:%s>' % \ |
|
93 |
(form, meta) |
|
94 |
||
95 |
## cubicweb request interface ################################################ |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
96 |
|
0 | 97 |
def http_method(self): |
98 |
"""returns 'POST', 'GET', 'HEAD', etc.""" |
|
99 |
return self.method |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
100 |
|
0 | 101 |
def relative_path(self, includeparams=True): |
102 |
"""return the normalized path of the request (ie at least relative |
|
2476
1294a6bdf3bf
application -> instance where it makes sense
Sylvain Thénault <sylvain.thenault@logilab.fr>
parents:
1977
diff
changeset
|
103 |
to the instance's root, but some other normalization may be needed |
0 | 104 |
so that the returned path may be used to compare to generated urls |
105 |
||
106 |
:param includeparams: |
|
107 |
boolean indicating if GET form parameters should be kept in the path |
|
108 |
""" |
|
109 |
path = self.environ['PATH_INFO'] |
|
110 |
path = path[1:] # remove leading '/' |
|
111 |
if includeparams: |
|
112 |
qs = self.environ.get('QUERY_STRING') |
|
113 |
if qs: |
|
114 |
return '%s?%s' % (path, qs) |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
115 |
|
0 | 116 |
return path |
117 |
||
118 |
## wsgi request helpers ################################################### |
|
1802
d628defebc17
delete-trailing-whitespace + some copyright update
Adrien Di Mascio <Adrien.DiMascio@logilab.fr>
parents:
0
diff
changeset
|
119 |
|
0 | 120 |
def is_secure(self): |
9741
b6cc9da206df
[wsgi] the spec says wsgi.url_scheme *must* be provided
Julien Cristau <julien.cristau@logilab.fr>
parents:
9737
diff
changeset
|
121 |
return self.environ['wsgi.url_scheme'] == 'https' |
0 | 122 |
|
123 |
def get_posted_data(self): |
|
8314
cfd6ab461849
[Web-Request] Use rich header (closes #2204164)
Pierre-Yves David <pierre-yves.david@logilab.fr>
parents:
8309
diff
changeset
|
124 |
# The WSGI spec says 'QUERY_STRING' may be absent. |
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
125 |
post = parse_qs(self.environ.get('QUERY_STRING', '')) |
0 | 126 |
files = None |
127 |
if self.method == 'POST': |
|
9995
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
128 |
content_type = self.environ.get('CONTENT_TYPE') |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
129 |
if not content_type: |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
130 |
raise RequestError("Missing Content-Type") |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
131 |
content_type, options = parse_options_header(content_type) |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
132 |
if content_type in ( |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
133 |
'multipart/form-data', |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
134 |
'application/x-www-form-urlencoded', |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
135 |
'application/x-url-encoded'): |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
136 |
forms, files = parse_form_data( |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
137 |
self.environ, strict=True, |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
138 |
mem_limit=self.vreg.config['max-post-length']) |
c9f1111e0ee8
[wsgi] If multipart cannot parse the POST content, let it pass.
Christophe de Vienne <christophe@unlish.com>
parents:
9988
diff
changeset
|
139 |
post.update(forms.dict) |
9735
b71158815bc8
[wsgi] avoid reading the entire request body in memory
Julien Cristau <julien.cristau@logilab.fr>
parents:
9563
diff
changeset
|
140 |
self.content.seek(0, 0) |
0 | 141 |
return post, files |
9944
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
142 |
|
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
143 |
def setup_params(self, params): |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
144 |
# This is a copy of CubicWebRequestBase.setup_params, but without |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
145 |
# converting unicode strings because it is partially done by |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
146 |
# get_posted_data |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
147 |
self.form = {} |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
148 |
if params is None: |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
149 |
return |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
150 |
encoding = self.encoding |
10662
10942ed172de
[py3k] dict.iteritems → dict.items
Rémi Cardona <remi.cardona@logilab.fr>
parents:
10603
diff
changeset
|
151 |
for param, val in params.items(): |
9944
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
152 |
if isinstance(val, (tuple, list)): |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
153 |
val = [ |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
154 |
unicode(x, encoding) if isinstance(x, str) else x |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
155 |
for x in val] |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
156 |
if len(val) == 1: |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
157 |
val = val[0] |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
158 |
elif isinstance(val, str): |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
159 |
val = unicode(val, encoding) |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
160 |
if param in self.no_script_form_params and val: |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
161 |
val = self.no_script_form_param(param, val) |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
162 |
if param == '_cwmsgid': |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
163 |
self.set_message_id(val) |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
164 |
else: |
9b3b21b7ff3e
[wsgi] Fix multiple variables reading in params
Christophe de Vienne <christophe@unlish.com>
parents:
9943
diff
changeset
|
165 |
self.form[param] = val |