Home
last modified time | relevance | path

Searched refs:paste (Results 1 – 25 of 257) sorted by relevance

1234567891011

/external/chromium-trace/catapult/third_party/Paste/Paste.egg-info/
Dentry_points.txt2 [paste.app_factory]
3 cgi = paste.cgiapp:make_cgi_application [subprocess]
4 static = paste.urlparser:make_static
5 pkg_resources = paste.urlparser:make_pkg_resources
6 urlparser = paste.urlparser:make_url_parser
7 proxy = paste.proxy:make_proxy
8 test = paste.debug.debugapp:make_test_app
9 test_slow = paste.debug.debugapp:make_slow_app
10 transparent_proxy = paste.proxy:make_transparent_proxy
11 watch_threads = paste.debug.watchthreads:make_watch_threads
[all …]
DSOURCES.txt25 docs/paste-httpserver-threadpool.txt
29 docs/_static/paste.css
85 paste/__init__.py
86 paste/cascade.py
87 paste/cgiapp.py
88 paste/cgitb_catcher.py
89 paste/config.py
90 paste/errordocument.py
91 paste/fileapp.py
92 paste/fixture.py
[all …]
DPKG-INFO17 <https://bitbucket.org/ianb/paste/>`_
36 in ``paste.fixture``
39 ``paste.fixture``
41 * Check components for WSGI-compliance in ``paste.lint``
47 response) in ``paste.cascade``
50 ``paste.urlmap``
53 internally, in ``paste.recursive``
58 * Run CGI programs as WSGI applications in ``paste.cgiapp``
61 static files), in ``paste.urlparser``
63 * Serve static directories of files, also in ``paste.urlparser``; also
[all …]
/external/chromium-trace/catapult/third_party/Paste/docs/
Dfuture.txt14 paste.fixture:
18 paste.lint:
21 paste.exceptions and paste.evalexception:
24 paste.util.template:
31 paste.httpserver and paste.debug.watchthreads:
34 paste.cascade and paste.errordocuments:
37 paste.urlmap, paste.deploy.config.PrefixMiddleware:
40 paste.proxy:
43 paste.fileapp, paste.urlparser.StaticURLParser, paste.urlparser.PkgResourcesParser:
46 paste.cgiapp, wphp.fcgi_app:
[all …]
Ddeveloper-features.txt8 in :class:`paste.fixture.TestApp`
11 :class:`paste.fixture.TestFileEnvironment`
13 * Check components for WSGI-compliance in :mod:`paste.lint`
15 * Check filesystem changes, with :mod:`paste.debug.fsdiff`
20 * A threaded HTTP server in :mod:`paste.httpserver`
23 :mod:`paste.debug.watchthreads`
29 response) in :mod:`paste.cascade`
32 :mod:`paste.urlmap`
35 internally, in :mod:`paste.recursive`
38 :mod:`paste.errordocument`.
[all …]
Dnews.txt9 * #22: Fix improper commas in request headers in wsgi_environ (https://bitbucket.org/ianb/paste/pul…
10 …Fixes issue #4 ("WSGI environ totally borked") (https://bitbucket.org/ianb/paste/issue/4/wsgi-envi…
12 * #24: test_wsgirequest_charset: Use UTF-8 instead of iso-8859-1 (https://bitbucket.org/ianb/paste/…
13 …Fixes issue #7 ("Python 3 test failure") (https://bitbucket.org/ianb/paste/issue/7/python-3-test-f…
15 * #23: Replace cgi.parse_qsl w/ six.moves.urllib.parse.parse_qsl (https://bitbucket.org/ianb/paste/…
16 …Fixes issue #8 ("cgi.parse_qsl is pending deprecation") (https://bitbucket.org/ianb/paste/issue/8/…
18 * #20: Escape CGI environment variables in HTTP 404 responses (https://bitbucket.org/ianb/paste/pul…
20 * #6: Add HTTP exception for new code 429 "Too Many Requests" (https://bitbucket.org/ianb/paste/pul…
22 * #25: replace ``has_key`` method to ``in`` operator #9 (https://bitbucket.org/ianb/paste/pull-requ…
23 …Fixes #9 ("used methods removed from py3") (https://bitbucket.org/ianb/paste/issue/9/used-methods-…
[all …]
/external/chromium-trace/catapult/third_party/Paste/
DREADME.rst9 <https://bitbucket.org/ianb/paste/>`_
28 in ``paste.fixture``
31 ``paste.fixture``
33 * Check components for WSGI-compliance in ``paste.lint``
39 response) in ``paste.cascade``
42 ``paste.urlmap``
45 internally, in ``paste.recursive``
50 * Run CGI programs as WSGI applications in ``paste.cgiapp``
53 static files), in ``paste.urlparser``
55 * Serve static directories of files, also in ``paste.urlparser``; also
[all …]
DPKG-INFO17 <https://bitbucket.org/ianb/paste/>`_
36 in ``paste.fixture``
39 ``paste.fixture``
41 * Check components for WSGI-compliance in ``paste.lint``
47 response) in ``paste.cascade``
50 ``paste.urlmap``
53 internally, in ``paste.recursive``
58 * Run CGI programs as WSGI applications in ``paste.cgiapp``
61 static files), in ``paste.urlparser``
63 * Serve static directories of files, also in ``paste.urlparser``; also
[all …]
/external/chromium-trace/catapult/third_party/Paste/docs/modules/
Dexceptions.txt1 :mod:`paste.exceptions` -- Catch, display, and notify for exceptions
4 .. automodule:: paste.exceptions.errormiddleware
13 :mod:`paste.exceptions.collector` -- Collection information from exceptions
16 .. automodule:: paste.exceptions.collector
24 :mod:`paste.exceptions.formatter` -- Format exception information
27 .. automodule:: paste.exceptions.formatter
37 :mod:`paste.exceptions.reporter` -- Report exceptions
40 .. automodule:: paste.exceptions.reporter
Ddebug.watchthreads.txt1 :mod:`paste.debug.watchthreads` -- watch thread workers in paste.httpserver
4 .. automodule:: paste.debug.watchthreads
/external/mesa3d/src/glsl/glcpp/tests/
D058-token-pasting-empty-arguments.c1 #define paste(x,y) x ## y macro
2 paste(a,b)
3 paste(a,)
4 paste(,b)
5 paste(,)
D072-token-pasting-same-line.c1 #define paste(x) success_ ## x macro
2 paste(1) paste(2) paste(3)
D059-token-pasting-integer.c1 #define paste(x,y) x ## y macro
2 paste(1,2)
3 paste(1,000)
4 paste(identifier,2)
D040-token-pasting.c1 #define paste(a,b) a ## b macro
2 paste(one , token)
/external/chromium-trace/catapult/third_party/Paste/paste/auth/
Dcas.py22 from paste.request import construct_url
23 from paste.httpexceptions import HTTPSeeOther, HTTPForbidden
95 from paste.wsgilib import dump_environ
96 from paste.httpserver import serve
97 from paste.httpexceptions import *
Dopen_id.py63 import paste.request
64 from paste import httpexceptions
126 request['base_url'] = paste.request.construct_url(environ, with_path_info=False,
131 request['query'] = dict(paste.request.parse_querystring(environ))
169 redir_url = paste.request.construct_url(environ, with_path_info=False,
399 from paste.deploy.converters import asbool
400 from paste.util import import_string
410 from paste.auth import auth_tkt
Dbasic.py24 from paste.httpexceptions import HTTPUnauthorized
25 from paste.httpheaders import *
113 from paste.util.import_string import eval_import
/external/chromium-trace/catapult/third_party/Paste/tests/test_auth/
Dtest_auth_digest.py5 from paste.auth.digest import *
6 from paste.wsgilib import raw_interactive
7 from paste.httpexceptions import *
8 from paste.httpheaders import AUTHORIZATION, WWW_AUTHENTICATE, REMOTE_USER
65 from paste.debug.testserver import serve
Dtest_auth_cookie.py8 from paste.auth import cookie
9 from paste.wsgilib import raw_interactive, dump_environ
10 from paste.response import header_value
11 from paste.httpexceptions import *
/external/chromium-trace/catapult/third_party/Paste/docs/community/
Dmailing-list.txt6 `paste-users@googlegroups.org <http://groups.google.com/group/paste-users>`_:
7 …//groups.google.com/group/paste-users/topics>`_ `old posts are in their own archive <http://python…
/external/chromium-trace/catapult/third_party/Paste/tests/test_exceptions/
Dtest_error_middleware.py1 from paste.fixture import *
2 from paste.exceptions.errormiddleware import ErrorMiddleware
3 from paste import lint
4 from paste.util.quoting import strip_html
/external/chromium-trace/catapult/third_party/Paste/paste/cowbell/
D__init__.py4 from paste.fileapp import FileApp
5 from paste.response import header_value, remove_header
101 from paste.debug.debugapp import SimpleApplication
103 from paste.httpserver import serve
/external/chromium-trace/catapult/third_party/Paste/tests/
Dtest_cgitb_catcher.py1 from paste.fixture import *
2 from paste.cgitb_catcher import CgitbMiddleware
3 from paste import lint
Dtest_request.py4 from paste.fixture import *
5 from paste.request import *
6 from paste.wsgiwrappers import WSGIRequest
/external/chromium-trace/catapult/third_party/Paste/paste/debug/
Dprints.py23 from paste.util import threadedprint
24 from paste import wsgilib
25 from paste import response
76 from paste.deploy.converters import asbool

1234567891011