Home
last modified time | relevance | path

Searched refs:SCRIPT_NAME (Results 1 – 13 of 13) sorted by relevance

/external/autotest/frontend/
Dfrontend.wsgi22 environ['PATH_INFO'] = environ['SCRIPT_NAME'] + environ['PATH_INFO']
/external/chromium-trace/catapult/third_party/Paste/docs/
Ddo-it-yourself-framework.txt18 Explain SCRIPT_NAME/PATH_INFO better
50 specifically instead of just one path you two: ``SCRIPT_NAME`` (how
173 WSGI puts the requested path into two variables: ``SCRIPT_NAME`` and
174 ``PATH_INFO``. ``SCRIPT_NAME`` is everything that was used up
210 # Now fix up SCRIPT_NAME and PATH_INFO...
211 environ['SCRIPT_NAME'] += '/' + next
Durl-parsing-with-wsgi.txt45 in particular relate to URLs -- ``SCRIPT_NAME`` and ``PATH_INFO`` --
118 what's left to parse. ``SCRIPT_NAME`` represents where we are *now*;
143 It appends this to ``SCRIPT_NAME``, and strips it off ``PATH_INFO``
Dnews.txt534 ``SCRIPT_NAME`` and ``PATH_INFO``, as specified in the CGI spec.
/external/chromium-trace/catapult/third_party/WebOb/docs/
Dcomment-example.txt266 ``SCRIPT_NAME`` and ``PATH_INFO``. Everything in ``SCRIPT_NAME`` has
270 ``SCRIPT_NAME`` but nothing above it. The name for the URL without
273 wrapping may update ``SCRIPT_NAME`` and ``PATH_INFO``).
Ddo-it-yourself.txt32 …instance, goes in ``environ['HTTP_HOST']``. The path is in ``environ['SCRIPT_NAME']`` (which is t…
461SCRIPT_NAME``, which is the portion of the path that led up to this application. If you are writi…
463 The base URL using SCRIPT_NAME is ``req.application_url``. So, if we have access to the request we…
Dnews.txt293 with raw SCRIPT_NAME and PATH_INFO values, which caused nonsensical
298 decode the raw WSGI PATH_INFO and SCRIPT_NAME variables when the
303 SCRIPT_NAME from its WSGI-encoded values. If ``webob.url_encoding`` is not
306 PATH_INFO and SCRIPT_NAME.
353 of SCRIPT_NAME and PATH_INFO.
682 * Fix handling of WSGI environs with missing ``SCRIPT_NAME``
Dwiki-example.txt276 URLs, PATH_INFO, and SCRIPT_NAME
298 These correspond to the CGI environmental variables ``SCRIPT_NAME``
320 (SCRIPT_NAME) like ``req.relative_url('some/other/page', True)`` which
Dindex.txt135 The URL of the application (just the SCRIPT_NAME portion of the
Dreference.txt70 'SCRIPT_NAME': '',
892 SCRIPT_NAME: ''
/external/chromium-trace/catapult/third_party/Paste/paste/auth/
Ddigest.py137 fullpath = url_quote(SCRIPT_NAME(environ)) + url_quote(PATH_INFO(environ))
/external/chromium-trace/catapult/third_party/webapp2/docs/guide/
Dtesting.rst71 If defined, wsgi.url_scheme, HTTP_HOST and SCRIPT_NAME will be filled in
/external/chromium-trace/catapult/third_party/Paste/paste/
Dhttpheaders.py171 SCRIPT_NAME = EnvironVariable("SCRIPT_NAME") variable