Home
last modified time | relevance | path

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

/external/chromium-trace/catapult/third_party/Paste/paste/
Dcgitb_catcher.py36 display = converters.asbool(display)
111 from paste.deploy.converters import asbool
113 display = asbool(display)
115 global_conf['debug'] = asbool(global_conf['debug'])
Dtranslogger.py109 from paste.util.converters import asbool
119 setup_console_handler=asbool(setup_console_handler),
Dhttpserver.py1305 if converters.asbool(use_threadpool):
1320 if converters.asbool(start_loop):
1339 from paste.deploy.converters import asbool
1351 kwargs[name] = asbool(kwargs[name])
Derrordocument.py161 self.debug = converters.asbool(global_conf.get('debug', False))
Dcgiapp.py276 include_os_environ = converters.asbool(include_os_environ)
/external/chromium-trace/catapult/third_party/Paste/paste/debug/
Ddebugapp.py73 from paste.deploy.converters import asbool
77 progress=asbool(progress))
Dprints.py76 from paste.deploy.converters import asbool
77 print_wsgi_errors = asbool(print_wsgi_errors)
Dwatchthreads.py329 from paste.deploy.converters import asbool
330 return WatchThreads(allow_kill=asbool(allow_kill))
/external/chromium-trace/catapult/third_party/Paste/paste/auth/
Dgrantip.py98 from paste.deploy.converters import asbool
99 clobber_username = asbool(clobber_username)
Dopen_id.py399 from paste.deploy.converters import asbool
401 catch_401 = asbool(catch_401)
404 apply_auth_tkt = asbool(apply_auth_tkt)
Dauth_tkt.py420 from paste.deploy.converters import asbool
421 secure = asbool(secure)
422 include_ip = asbool(include_ip)
/external/chromium-trace/catapult/third_party/Paste/paste/exceptions/
Derrormiddleware.py99 debug = converters.asbool(global_conf.get('debug'))
101 …show_exceptions_in_wsgi_errors = converters.asbool(global_conf.get('show_exceptions_in_wsgi_errors…
102 self.debug_mode = converters.asbool(debug)
119 self.smtp_use_tls = smtp_use_tls or converters.asbool(global_conf.get('smtp_use_tls'))
/external/chromium-trace/catapult/third_party/Paste/paste/util/
Dconverters.py7 def asbool(obj): function