Home
last modified time | relevance | path

Searched refs:start_response (Results 51 – 75 of 1458) sorted by relevance

12345678910>>...59

/dports/www/py-seafdav/seafdav-8.0.7-server/wsgidav/
H A Dhttp_authenticator.py191 def __call__(self, environ, start_response): argument
223 return self.next_app(environ, start_response)
236 return self.next_app(environ, start_response)
264 start_response(
274 def send_basic_auth_response(self, environ, start_response): argument
280 start_response(
291 def handle_basic_auth_request(self, environ, start_response): argument
307 return self.next_app(environ, start_response)
316 def send_digest_auth_response(self, environ, start_response): argument
337 start_response(
[all …]
H A Drequest_server.py70 def __call__(self, environ, start_response): argument
486 def do_MKCOL(self, environ, start_response): argument
525 def do_POST(self, environ, start_response): argument
745 def do_PUT(self, environ, start_response): argument
858 def do_COPY(self, environ, start_response): argument
861 def do_MOVE(self, environ, start_response): argument
1258 start_response(
1344 start_response(
1469 start_response("200 OK", headers)
1512 start_response("200 OK", headers)
[all …]
/dports/www/py-wsgidav/WsgiDAV-3.1.0/wsgidav/
H A Dhttp_authenticator.py190 def __call__(self, environ, start_response): argument
222 return self.next_app(environ, start_response)
235 return self.next_app(environ, start_response)
263 start_response(
273 def send_basic_auth_response(self, environ, start_response): argument
279 start_response(
290 def handle_basic_auth_request(self, environ, start_response): argument
306 return self.next_app(environ, start_response)
315 def send_digest_auth_response(self, environ, start_response): argument
338 start_response(
[all …]
H A Drequest_server.py69 def __call__(self, environ, start_response): argument
485 def do_MKCOL(self, environ, start_response): argument
524 def do_POST(self, environ, start_response): argument
744 def do_PUT(self, environ, start_response): argument
857 def do_COPY(self, environ, start_response): argument
860 def do_MOVE(self, environ, start_response): argument
1260 start_response(
1346 start_response(
1471 start_response("200 OK", headers)
1514 start_response("200 OK", headers)
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/catapult/third_party/Paste/paste/debug/
H A Dwatchthreads.py188 def __call__(self, environ, start_response): argument
193 return self.kill(environ, start_response)
195 return self.show(environ, start_response)
197 def show(self, environ, start_response): argument
198 start_response('200 OK', [('Content-type', 'text/html')])
239 def kill(self, environ, start_response): argument
244 return exc(environ, start_response)
252 return exc(environ, start_response)
257 return exc(environ, start_response)
335 def bad_app(environ, start_response): argument
[all …]
/dports/www/py-paste/Paste-3.4.6/paste/debug/
H A Dwatchthreads.py188 def __call__(self, environ, start_response): argument
193 return self.kill(environ, start_response)
195 return self.show(environ, start_response)
197 def show(self, environ, start_response): argument
198 start_response('200 OK', [('Content-type', 'text/html')])
239 def kill(self, environ, start_response): argument
244 return exc(environ, start_response)
252 return exc(environ, start_response)
257 return exc(environ, start_response)
335 def bad_app(environ, start_response): argument
[all …]
/dports/www/py-WebError/WebError-0.13.1/tests/
H A Dtest_error_middleware.py21 def clear_throw_errors(environ, start_response): argument
25 return start_response(status, headers, exc_info)
27 return start_response(status, headers)
42 def start_response_app(environ, start_response): argument
46 def after_start_response_app(environ, start_response): argument
47 start_response("200 OK", [('Content-type', 'text/plain')])
50 def iter_app(environ, start_response): argument
51 start_response("200 OK", [('Content-type', 'text/plain')])
/dports/www/py-bjoern/bjoern-3.1.0/tests/
H A Dall-kinds-of-errors.py3 def invalid_header_type(environ, start_response): argument
4 start_response('200 ok', None)
7 def invalid_header_tuple(environ, start_response): argument
9 start_response('200 ok', [tuples[random.randint(1, 3)]])
12 def invalid_header_tuple_item(environ, start_response): argument
13 start_response('200 ok', (object(), object()))
/dports/www/py-graphite-api/graphite-api-1.1.3/graphite_api/
H A Dmiddleware.py12 def __call__(self, environ, start_response): argument
15 return self.app(environ, start_response)
24 start_response('204 No Content', allow_origin)
29 return start_response(status, headers, exc_info)
31 custom_start_response = start_response
42 def __call__(self, environ, start_response): argument
46 return self.app(environ, start_response)
/dports/www/py-werkzeug/Werkzeug-2.0.2/tests/middleware/
H A Dtest_lint.py10 def dummy_application(environ, start_response): argument
11 start_response("200 OK", [("Content-Type", "text/plain")])
43 def my_dummy_application(environ, start_response): argument
44 start_response("20 OK", [("Content-Type", "text/plain")])
66 def my_dummy_application(environ, start_response): argument
67 start_response("200 OK", headers)
78 def my_dummy_application(environ, start_response): argument
79 start_response("200 OK", [("location", "foo")])
/dports/www/uwsgi/uwsgi-2.0.20/tests/
H A Dtestapp.py59 def application(env, start_response): argument
61 start_response('200 OK', [('Content-Type', 'text/plain')])
68 uwsgi.start_response('200 OK', [('Content-Type', 'text/html')])
76 uwsgi.start_response('200 OK', [('Content-Type', 'text/xml')])
81 uwsgi.start_response('200 OK', [('Content-Type', 'text/html')])
89 def reload(env, start_response): argument
91 start_response('200 OK', [('Content-Type', 'text/html')])
153 def remotemako(env, start_response): argument
154 start_response('200 OK', [('Content-Type', 'text/html')])
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/werkzeug/contrib/
H A Dfixers.py72 def __call__(self, environ, start_response):
74 return self.app(environ, start_response)
115 def __call__(self, environ, start_response):
124 return self.app(environ, start_response)
176 def __call__(self, environ, start_response):
183 return start_response(status, new_headers, exc_info)
250 def run_fixed(self, environ, start_response):
254 return start_response(status, headers.to_wsgi_list(), exc_info)
258 def __call__(self, environ, start_response):
261 return self.app(environ, start_response)
[all …]
/dports/www/py-werkzeug/Werkzeug-2.0.2/tests/
H A Dtest_test.py27 def cookie_app(environ, start_response): argument
33 return response(environ, start_response)
36 def redirect_loop_app(environ, start_response): argument
38 return response(environ, start_response)
53 return response(environ, start_response)
58 return response(environ, start_response)
66 return response(environ, start_response)
74 return response(environ, start_response)
693 self.start_response = start_response
729 def bar(environ, start_response): argument
[all …]
/dports/www/py-waitress/waitress-2.0.0/tests/
H A Dtest_task.py415 def app(environ, start_response): argument
416 start_response("200 OK", [])
417 start_response("200 OK", [])
424 def app(environ, start_response): argument
437 def app(environ, start_response): argument
452 def app(environ, start_response): argument
522 start_response(None, [])
551 start_response("200 OK", [])
561 start_response("200 OK", [])
675 start_response("200 OK", [])
[all …]
/dports/net-p2p/bazarr/bazarr-1.0.2/libs/engineio/
H A Dmiddleware.py45 def __call__(self, environ, start_response):
63 return self.engineio_app.handle_request(environ, start_response)
68 start_response(
74 return self.wsgi_app(environ, start_response)
75 return self.not_found(start_response)
77 def not_found(self, start_response):
78 start_response("404 Not Found", [('Content-Type', 'text/plain')])
/dports/textproc/translate-toolkit/translate-toolkit-3.5.1/translate/misc/
H A Dselector.py47 def method_not_allowed(environ, start_response): argument
49 start_response(
63 def not_found(environ, start_response): argument
154 def __call__(self, environ, start_response): argument
179 return app(environ, start_response)
432 def __call__(self, environ, start_response): argument
469 return app(environ, start_response)
515 environ, start_response
529 def wsgi_func(environ, start_response): argument
532 args.insert(0, start_response)
[all …]
/dports/www/py-selector/selector-0.10.1/
H A Dselector.py19 def method_not_allowed(environ, start_response): argument
21 start_response("405 Method Not Allowed",
29 def not_found(environ, start_response): argument
113 def __call__(self, environ, start_response): argument
137 return app(environ, start_response)
347 def __call__(self, environ, start_response): argument
365 def __call__(self, environ, start_response): argument
383 return app(environ, start_response)
446 def wsgi_func(environ, start_response): argument
449 args.insert(0, start_response)
[all …]
/dports/devel/py-wsgitools/wsgitools-0.3.1/wsgitools/
H A Dmiddlewares.py33 def __call__(self, environ, start_response): argument
54 return app(environ, start_response)
65 def __call__(self, environ, start_response): argument
114 start_response(status, headers)
118 start_response(status, headers)
143 def __call__(self, environ, start_response): argument
172 start_response(status, headers)
201 start_response(status, headers)
204 start_response(status, headers)
261 def __call__(self, environ, start_response): argument
[all …]
/dports/www/py-turbogears2/TurboGears2-2.3.12/tests/test_stack/
H A Dtest_registry.py13 def simpleapp(environ, start_response): argument
16 start_response(status, response_headers)
22 start_response(status, response_headers)
28 start_response(status, response_headers)
37 def __call__(self, environ, start_response): argument
44 start_response(status, response_headers)
52 def __call__(self, environ, start_response): argument
266 def app(environ, start_response): argument
284 def app(environ, start_response): argument
304 def app(environ, start_response): argument
[all …]
/dports/multimedia/tautulli/Tautulli-2.8.0/lib/cherrypy/
H A D_cpwsgi.py80 def __call__(self, environ, start_response): argument
88 return nextapp(environ, start_response)
99 def __call__(self, environ, start_response): argument
147 def __call__(self, environ, start_response): argument
151 start_response,
163 self.start_response = start_response
209 self.start_response(s, h, _sys.exc_info())
232 def __init__(self, environ, start_response, cpapp): argument
417 def tail(self, environ, start_response): argument
425 def __call__(self, environ, start_response): argument
[all …]
/dports/www/py-cherrypy/CherryPy-17.4.2/cherrypy/
H A D_cpwsgi.py82 def __call__(self, environ, start_response): argument
90 return nextapp(environ, start_response)
101 def __call__(self, environ, start_response): argument
149 def __call__(self, environ, start_response): argument
153 start_response,
165 self.start_response = start_response
215 self.start_response(s, h, _sys.exc_info())
238 def __init__(self, environ, start_response, cpapp): argument
433 def tail(self, environ, start_response): argument
441 def __call__(self, environ, start_response): argument
[all …]
/dports/audio/gsequencer/gsequencer-3.10.4/ags/audio/osc/controller/
H A Dags_osc_config_controller.c237 GList *start_response; in ags_osc_config_controller_real_apply_config() local
244 start_response = NULL; in ags_osc_config_controller_real_apply_config()
255 start_response = g_list_prepend(start_response, in ags_osc_config_controller_real_apply_config()
269 return(start_response); in ags_osc_config_controller_real_apply_config()
278 start_response = g_list_prepend(start_response, in ags_osc_config_controller_real_apply_config()
290 return(start_response); in ags_osc_config_controller_real_apply_config()
305 start_response = g_list_prepend(start_response, in ags_osc_config_controller_real_apply_config()
316 return(start_response); in ags_osc_config_controller_real_apply_config()
/dports/www/py-jonpy/jonpy-0.12/jon/
H A Dwsgi.py9 def _init(self, environ, start_response): argument
12 self._wsgi_start_response = start_response
24 def process(self, environ, start_response): argument
25 self._init(environ, start_response)
57 def __call__(self, environ, start_response): argument
59 environ, start_response)
80 def start_response(status, response_headers, exc_info=None): function
94 appiter = self.application[0](environ, start_response)
/dports/devel/py-pip/pip-20.3.4/tests/lib/
H A Dserver.py98 def adapter(environ, start_response): argument
101 responder = mock(environ, start_response)
104 return responder(environ, start_response)
170 def responder(environ, start_response): argument
172 start_response("200 OK", [
216 def responder(environ, start_response): argument
219 start_response(
233 def responder(environ, start_response): argument
236 start_response(
/dports/devel/py-fs/fs-0.5.4/fs/expose/wsgi/
H A Dwsgi.py19 def __init__(self, environ, start_response): argument
21 self.start_response = start_response
39 def __call__(self, environ, start_response): argument
41 request = Request(environ, start_response)
82 request.start_response(b'200 OK',
127 request.start_response(b'200 OK', [(b'Content-Type', b'text/html'),
135 request.start_response(b'404 NOT FOUND', [(b'Content-Type', b'text/html')])
140 request.start_response(b'500 INTERNAL SERVER ERROR', [(b'Content-Type', b'text/html')])

12345678910>>...59