Home
last modified time | relevance | path

Searched refs:url_encoding (Results 1 – 3 of 3) sorted by relevance

/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
Ddescriptors.py88 encoding = req.url_encoding
91 encoding = req.url_encoding
95 encoding = req.url_encoding
98 encoding = req.url_encoding
Drequest.py314 url_encoding = environ_getter('webob.url_encoding', 'UTF-8') variable in BaseRequest
469 bscript_name = bytes_(self.script_name, self.url_encoding)
477 bpath_info = bytes_(self.path_info, self.url_encoding)
485 bscript = bytes_(self.script_name, self.url_encoding)
486 bpath = bytes_(self.path_info, self.url_encoding)
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/
Dnews.txt297 variable: ``webob.url_encoding``. ``webob.url_encoding`` will be used to
302 ``url_encoding``. ``url_encoding`` will be used to decode PATH_INFO and
303 SCRIPT_NAME from its WSGI-encoded values. If ``webob.url_encoding`` is not
304 set in the environ and ``url_encoding`` is not passed to the Request
308 Note that passing ``url_encoding`` will cause the WSGI environment variable
309 ``webob.url_encoding`` to be set.