# HG changeset patch # User Christophe de Vienne # Date 1436185015 -7200 # Node ID c7a25122af4dc6cb7160ff19d5b3d6760e0bee5f # Parent 7d6d4edc0ed0e5c9278d4771764a5007112c3cd9 [config] Move most config code to a includeme() The goal is to make it easier to use pyramid_cubicweb from a pyramid application. diff -r 7d6d4edc0ed0 -r c7a25122af4d pyramid_cubicweb/__init__.py --- a/pyramid_cubicweb/__init__.py Mon Jul 06 13:17:07 2015 +0200 +++ b/pyramid_cubicweb/__init__.py Mon Jul 06 14:16:55 2015 +0200 @@ -44,27 +44,9 @@ break config = Configurator(settings=settings) - if cwconfig.debugmode: - try: - config.include('pyramid_debugtoolbar') - except ImportError: - warn('pyramid_debugtoolbar package not available, install it to ' - 'get UI debug features', RuntimeWarning) config.registry['cubicweb.config'] = cwconfig - config.registry['cubicweb.repository'] = repo = cwconfig.repository() - config.registry['cubicweb.registry'] = repo.vreg + config.include('pyramid_cubicweb') - if asbool(config.registry.settings.get('cubicweb.defaults', True)): - config.include('pyramid_cubicweb.defaults') - - for name in aslist(config.registry.settings.get('cubicweb.includes', [])): - config.include(name) - - config.include('pyramid_cubicweb.tools') - config.include('pyramid_cubicweb.core') - - if asbool(config.registry.settings.get('cubicweb.bwcompat', True)): - config.include('pyramid_cubicweb.bwcompat') return config @@ -151,3 +133,50 @@ cwconfig = cwcfg.config_for(instance_name, debugmode=debug) return wsgi_application_from_cwconfig(cwconfig) + + +def includeme(config): + """Set-up a CubicWeb instance. + + The CubicWeb instance can be set in several ways: + + - Provide an already loaded CubicWeb config instance in the registry: + + .. code-block:: python + + config.registry['cubicweb.config'] = your_config_instance + + - Provide an instance name in the pyramid settings with + :confval:`cubicweb.instance`. + + """ + cwconfig = config.registry.get('cubicweb.config') + + if cwconfig is None: + debugmode = asbool( + config.registry.settings.get('cubicweb.debug', False)) + cwconfig = cwcfg.config_for( + config.registry.settings['cubicweb.instance'], debugmode=debugmode) + config.registry['cubicweb.config'] = cwconfig + + if cwconfig.debugmode: + try: + config.include('pyramid_debugtoolbar') + except ImportError: + warn('pyramid_debugtoolbar package not available, install it to ' + 'get UI debug features', RuntimeWarning) + + config.registry['cubicweb.repository'] = repo = cwconfig.repository() + config.registry['cubicweb.registry'] = repo.vreg + + if asbool(config.registry.settings.get('cubicweb.defaults', True)): + config.include('pyramid_cubicweb.defaults') + + for name in aslist(config.registry.settings.get('cubicweb.includes', [])): + config.include(name) + + config.include('pyramid_cubicweb.tools') + config.include('pyramid_cubicweb.core') + + if asbool(config.registry.settings.get('cubicweb.bwcompat', True)): + config.include('pyramid_cubicweb.bwcompat')