Displaying 2 results from an estimated 2 matches for "make_app".
2010 Feb 11
1
[PATCH] Provides a reference implementation management server.
...c., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+
+"""WSGI middleware initialization for the server application."""
+
+from ovirtserver.config.app_cfg import base_config
+from ovirtserver.config.environment import load_environment
+
+
+__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):
+ ""...
2010 Feb 17
0
[PATCH] Provides the new node lifecycle events.
...c., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-
-"""WSGI middleware initialization for the server application."""
-
-from ovirtserver.config.app_cfg import base_config
-from ovirtserver.config.environment import load_environment
-
-
-__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):
- ""...