search for: app_conf

Displaying 2 results from an estimated 2 matches for "app_conf".

2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...+ +__all__ = ['make_app'] + +# Use base_config to setup the necessary PasteDeploy application factory. +# make_base_app will wrap the TG2 app with all the middleware it needs. +make_base_app = base_config.setup_tg_wsgi_app(load_environment) + + +def make_app(global_conf, full_stack=True, **app_conf): + """ + Set server up with the settings found in the PasteDeploy configuration + file used. + + :param global_conf: The global settings for server (those + defined under the ``[DEFAULT]`` section). + :type global_conf: dict + :param full_stack: Should the w...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...- -__all__ = ['make_app'] - -# Use base_config to setup the necessary PasteDeploy application factory. -# make_base_app will wrap the TG2 app with all the middleware it needs. -make_base_app = base_config.setup_tg_wsgi_app(load_environment) - - -def make_app(global_conf, full_stack=True, **app_conf): - """ - Set server up with the settings found in the PasteDeploy configuration - file used. - - :param global_conf: The global settings for server (those - defined under the ``[DEFAULT]`` section). - :type global_conf: dict - :param full_stack: Should the w...