| 1 | |
|---|
| 2 | [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 |
|---|
| 12 | |
|---|
| 13 | [paste.composite_factory] |
|---|
| 14 | urlmap = paste.urlmap:urlmap_factory |
|---|
| 15 | cascade = paste.cascade:make_cascade |
|---|
| 16 | |
|---|
| 17 | [paste.filter_app_factory] |
|---|
| 18 | error_catcher = paste.exceptions.errormiddleware:make_error_middleware |
|---|
| 19 | cgitb = paste.cgitb_catcher:make_cgitb_middleware |
|---|
| 20 | flup_session = paste.flup_session:make_session_middleware [Flup] |
|---|
| 21 | gzip = paste.gzipper:make_gzip_middleware |
|---|
| 22 | httpexceptions = paste.httpexceptions:make_middleware |
|---|
| 23 | lint = paste.lint:make_middleware |
|---|
| 24 | printdebug = paste.debug.prints:PrintDebugMiddleware |
|---|
| 25 | profile = paste.debug.profile:make_profile_middleware [hotshot] |
|---|
| 26 | recursive = paste.recursive:make_recursive_middleware |
|---|
| 27 | # This isn't good enough to deserve the name egg:Paste#session: |
|---|
| 28 | paste_session = paste.session:make_session_middleware |
|---|
| 29 | wdg_validate = paste.debug.wdg_validate:make_wdg_validate_middleware [subprocess] |
|---|
| 30 | evalerror = paste.evalexception.middleware:make_eval_exception |
|---|
| 31 | auth_tkt = paste.auth.auth_tkt:make_auth_tkt_middleware |
|---|
| 32 | auth_basic = paste.auth.basic:make_basic |
|---|
| 33 | auth_digest = paste.auth.digest:make_digest |
|---|
| 34 | auth_form = paste.auth.form:make_form |
|---|
| 35 | grantip = paste.auth.grantip:make_grantip |
|---|
| 36 | openid = paste.auth.open_id:make_open_id_middleware [openid] |
|---|
| 37 | pony = paste.pony:make_pony |
|---|
| 38 | errordocument = paste.errordocument:make_errordocument |
|---|
| 39 | auth_cookie = paste.auth.cookie:make_auth_cookie |
|---|
| 40 | translogger = paste.translogger:make_filter |
|---|
| 41 | config = paste.config:make_config_filter |
|---|
| 42 | registry = paste.registry:make_registry_manager |
|---|
| 43 | |
|---|
| 44 | [paste.server_runner] |
|---|
| 45 | http = paste.httpserver:server_runner |
|---|
| 46 | |
|---|