Package cherrypy :: Module _cpchecker :: Class Checker
[hide private]
[frames] | no frames]

Class Checker

source code

object --+
         |
        Checker

Instance Methods [hide private]
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
__call__(self)
Run all check_* methods.
source code
 
formatwarning(self, message, category, filename, lineno)
Function to format a warning.
source code
 
check_skipped_app_config(self) source code
 
check_static_paths(self) source code
 
_compat(self, config)
Process config and warn on each obsolete or deprecated entry.
source code
 
check_compatibility(self)
Process config and warn on each obsolete or deprecated entry.
source code
 
_known_ns(self, config) source code
 
check_config_namespaces(self)
Process config and warn on each unknown config namespace.
source code
 
_populate_known_types(self) source code
 
_known_types(self, config) source code
 
check_config_types(self)
Assert that config values are of the same type as default values.
source code

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables [hide private]
  on = True
  global_config_contained_paths = False
  obsolete = {'log_access_file': 'log.access_file', 'log_config_...
  deprecated = {}
  extra_config_namespaces = []
  known_config_types = {'engine.__class__': <type 'type'>, 'engi...
Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self)
(Constructor)

source code 
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
Overrides: object.__init__
(inherited documentation)

Class Variable Details [hide private]

obsolete

Value:
{'log_access_file': 'log.access_file',
 'log_config_options': None,
 'log_file': 'log.error_file',
 'log_file_not_found': None,
 'log_request_headers': 'tools.log_headers.on',
 'log_to_screen': 'log.screen',
 'profiler.on': 'cherrypy.tree.mount(profiler.make_app(cherrypy.Applic\
ation(Root())))',
...

known_config_types

Value:
{'engine.__class__': <type 'type'>,
 'engine.__dict__': <type 'dict'>,
 'engine.__doc__': <type 'str'>,
 'engine.__module__': <type 'str'>,
 'engine.autoreload_frequency': <type 'int'>,
 'engine.autoreload_match': <type 'str'>,
 'engine.autoreload_on': <type 'bool'>,
 'engine.deadlock_poll_freq': <type 'int'>,
...