Commit 49905528 authored by Jérome Perrin's avatar Jérome Perrin

Localizer/patches: don't patch Globals.get_request

Globals module no longer exists. There are no users of
Globals.get_request anymore
parent 72392054
...@@ -41,6 +41,8 @@ logger = logging.getLogger('Localizer') ...@@ -41,6 +41,8 @@ logger = logging.getLogger('Localizer')
# PATCH 1: Global Request # PATCH 1: Global Request
# #
# This part is obsolete because, we now use zope.globalrequest
#
# The original purpose was to get the request object from places where the # The original purpose was to get the request object from places where the
# acquisition was disabled (within the __of__ method for example). It was # acquisition was disabled (within the __of__ method for example). It was
# inspired by the Tim McLaughlin's GlobalGetRequest proposal, see # inspired by the Tim McLaughlin's GlobalGetRequest proposal, see
...@@ -53,8 +55,6 @@ logger = logging.getLogger('Localizer') ...@@ -53,8 +55,6 @@ logger = logging.getLogger('Localizer')
# The request objects are stored in a dictionary in the Publish module, # The request objects are stored in a dictionary in the Publish module,
# whose keys are the thread id. # whose keys are the thread id.
# #
# Also, we keep the get_request method in the Globals module for backwards
# compatibility (with TranslationService for example).
def get_new_publish(zope_publish): def get_new_publish(zope_publish):
def publish(request, *args, **kwargs): def publish(request, *args, **kwargs):
...@@ -70,16 +70,11 @@ if patch is False: ...@@ -70,16 +70,11 @@ if patch is False:
patch = True patch = True
if six.PY2: # ZServer-specific patch if six.PY2: # ZServer-specific patch
logger.info('Install "Globals.get_request".')
# Apply the patch # Apply the patch TODO: zope4py2 is this really needed ?
from ZPublisher import Publish from ZPublisher import Publish
Publish.publish = get_new_publish(Publish.publish) Publish.publish = get_new_publish(Publish.publish)
# Add to Globals for backwards compatibility
import Globals
Globals.get_request = get_request
# PATCH 2: Accept # PATCH 2: Accept
# #
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment