From 6fec211488f87f9207fda9c39b21e83c6359c727 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Mon, 23 Nov 2009 04:51:35 +0000 Subject: - The ``repoze.bfg.scripting.get_root`` API now uses a 'real' WebOb request rather than a FakeRequest when it sets up the request as a threadlocal. - The ``repoze.bfg.traversal.traverse`` API now uses a 'real' WebOb request rather than a FakeRequest when it calls the traverser. - The ``repoze.bfg.request.FakeRequest`` class has been removed. ``repoze.bfg.url.route_url`` ``repoze.bfg.url.model_url`` ``repoze.bfg.url.static_url`` ``repoze.bfg.traversal.virtual_root`` Each of these functions now expects to be called with a request object that has a ``registry`` attribute which represents the current ZCA registry. Get rid of extraneous uses of ZCA threadlocal API. --- repoze/bfg/settings.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'repoze/bfg/settings.py') diff --git a/repoze/bfg/settings.py b/repoze/bfg/settings.py index e9a03ad0b..500c4503c 100644 --- a/repoze/bfg/settings.py +++ b/repoze/bfg/settings.py @@ -1,10 +1,11 @@ import os -from zope.component import queryUtility from zope.interface import implements from repoze.bfg.interfaces import ISettings +from repoze.bfg.threadlocal import get_current_registry + class Settings(dict): """ Deployment settings. Update application settings (usually from PasteDeploy keywords) with framework-specific key/value pairs @@ -62,7 +63,8 @@ def get_settings(): For backwards compatibility, dictionary keys can also be looked up as attributes of the settings object. """ - return queryUtility(ISettings) + reg = get_current_registry() + return reg.queryUtility(ISettings) def asbool(s): s = str(s).strip() -- cgit v1.2.3