Searched refs:paste (Results 1 – 25 of 257) sorted by relevance
1234567891011
2 [paste.app_factory]3 cgi = paste.cgiapp:make_cgi_application [subprocess]4 static = paste.urlparser:make_static5 pkg_resources = paste.urlparser:make_pkg_resources6 urlparser = paste.urlparser:make_url_parser7 proxy = paste.proxy:make_proxy8 test = paste.debug.debugapp:make_test_app9 test_slow = paste.debug.debugapp:make_slow_app10 transparent_proxy = paste.proxy:make_transparent_proxy11 watch_threads = paste.debug.watchthreads:make_watch_threads[all …]
25 docs/paste-httpserver-threadpool.txt29 docs/_static/paste.css85 paste/__init__.py86 paste/cascade.py87 paste/cgiapp.py88 paste/cgitb_catcher.py89 paste/config.py90 paste/errordocument.py91 paste/fileapp.py92 paste/fixture.py[all …]
17 <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 …]
14 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 …]
8 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 …]
9 * #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 …]
9 <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 …]
1 :mod:`paste.exceptions` -- Catch, display, and notify for exceptions4 .. automodule:: paste.exceptions.errormiddleware13 :mod:`paste.exceptions.collector` -- Collection information from exceptions16 .. automodule:: paste.exceptions.collector24 :mod:`paste.exceptions.formatter` -- Format exception information27 .. automodule:: paste.exceptions.formatter37 :mod:`paste.exceptions.reporter` -- Report exceptions40 .. automodule:: paste.exceptions.reporter
1 :mod:`paste.debug.watchthreads` -- watch thread workers in paste.httpserver4 .. automodule:: paste.debug.watchthreads
1 #define paste(x,y) x ## y macro2 paste(a,b)3 paste(a,)4 paste(,b)5 paste(,)
1 #define paste(x) success_ ## x macro2 paste(1) paste(2) paste(3)
1 #define paste(x,y) x ## y macro2 paste(1,2)3 paste(1,000)4 paste(identifier,2)
1 #define paste(a,b) a ## b macro2 paste(one , token)
22 from paste.request import construct_url23 from paste.httpexceptions import HTTPSeeOther, HTTPForbidden95 from paste.wsgilib import dump_environ96 from paste.httpserver import serve97 from paste.httpexceptions import *
63 import paste.request64 from paste import httpexceptions126 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 asbool400 from paste.util import import_string410 from paste.auth import auth_tkt
24 from paste.httpexceptions import HTTPUnauthorized25 from paste.httpheaders import *113 from paste.util.import_string import eval_import
5 from paste.auth.digest import *6 from paste.wsgilib import raw_interactive7 from paste.httpexceptions import *8 from paste.httpheaders import AUTHORIZATION, WWW_AUTHENTICATE, REMOTE_USER65 from paste.debug.testserver import serve
8 from paste.auth import cookie9 from paste.wsgilib import raw_interactive, dump_environ10 from paste.response import header_value11 from paste.httpexceptions import *
6 `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…
1 from paste.fixture import *2 from paste.exceptions.errormiddleware import ErrorMiddleware3 from paste import lint4 from paste.util.quoting import strip_html
4 from paste.fileapp import FileApp5 from paste.response import header_value, remove_header101 from paste.debug.debugapp import SimpleApplication103 from paste.httpserver import serve
1 from paste.fixture import *2 from paste.cgitb_catcher import CgitbMiddleware3 from paste import lint
4 from paste.fixture import *5 from paste.request import *6 from paste.wsgiwrappers import WSGIRequest
23 from paste.util import threadedprint24 from paste import wsgilib25 from paste import response76 from paste.deploy.converters import asbool