diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-12-07 11:35:37 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-12-07 11:35:37 +0000 |
| commit | 265beb6d6a9c43348e133397ef2efb7c3343817d (patch) | |
| tree | bbdd03a826cb234c145431bb48bf13c2596778ab | |
| parent | bf1f3d4219e5bd616165c1095b2a6eb743840c10 (diff) | |
| download | pyramid-265beb6d6a9c43348e133397ef2efb7c3343817d.tar.gz pyramid-265beb6d6a9c43348e133397ef2efb7c3343817d.tar.bz2 pyramid-265beb6d6a9c43348e133397ef2efb7c3343817d.zip | |
Add a note about hooking the ZCA.
| -rw-r--r-- | docs/whatsnew-1.2.rst | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/whatsnew-1.2.rst b/docs/whatsnew-1.2.rst index 862bef375..ed849d105 100644 --- a/docs/whatsnew-1.2.rst +++ b/docs/whatsnew-1.2.rst @@ -196,6 +196,28 @@ Backwards Incompatibilites Deprecations and Behavior Differences ------------------------------------- +- If you disuse the legacy ``repoze.bfg.router.make_app`` function in + favor of ``repoze.bfg.configuration.Configurator.make_wsgi_app``, + and you also want to use the "global" ZCA API (``getUtility``, + ``getAdapter``, ``getSiteManager``, etc), you will need to "hook" + the ZCA before calling methods of the configurator using the + ``sethook`` method of the ``getSiteManager`` API, e.g.:: + + from zope.component import getSiteManager from + repoze.bfg.configuration import Configurator from + repoze.bfg.threadlocal import get_current_registry + from mypackage.models import get_root + + def app(global_config, **settings): + config = Configurator(root_factory=get_root, settings=settings) + getSiteManager.sethook(get_current_registry) + zcml_file = settings.get('configure_zcml', 'configure.zcml') + config.load_zcml(zcml_file) + return config.make_wsgi_app() + + The ``repoze.bfg.router.make_app`` function does this on your + behalf for backward compatibility purposes. + - The ``repoze.bfg.router.make_app`` function is now nominally deprecated. Its import and usage does not throw a warning, nor will it probably ever disappear. However, using a |
