Commit 1fa8daeb authored by Alexandre Boeglin's avatar Alexandre Boeglin

revert iHotfix patch that forces PageTemplate to output a string instead of a unicode object

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@18209 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 076ea409
...@@ -54,6 +54,7 @@ from Products.ERP5Type.patches import PersistencePatch ...@@ -54,6 +54,7 @@ from Products.ERP5Type.patches import PersistencePatch
from Products.ERP5Type.patches import PersistentMapping from Products.ERP5Type.patches import PersistentMapping
from Products.ERP5Type.patches import DateTimePatch from Products.ERP5Type.patches import DateTimePatch
from Products.ERP5Type.patches import PythonScript from Products.ERP5Type.patches import PythonScript
from Products.ERP5Type.patches import iHotfix
# for python2.3 compatibility # for python2.3 compatibility
import threading import threading
......
from Products import iHotfix
from Products.PageTemplates.PageTemplate import PageTemplate
from TAL.TALInterpreter import TALInterpreter, FasterStringIO
# revert iHotfix patch that forces PageTemplate to output a string instead of
# a unicode object
TALInterpreter.StringIO = FasterStringIO
PageTemplate.StringIO = FasterStringIO
...@@ -75,6 +75,7 @@ ZopeTestCase.installProduct('MailHost', quiet=install_product_quiet) ...@@ -75,6 +75,7 @@ ZopeTestCase.installProduct('MailHost', quiet=install_product_quiet)
ZopeTestCase.installProduct('PageTemplates', quiet=install_product_quiet) ZopeTestCase.installProduct('PageTemplates', quiet=install_product_quiet)
ZopeTestCase.installProduct('PythonScripts', quiet=install_product_quiet) ZopeTestCase.installProduct('PythonScripts', quiet=install_product_quiet)
ZopeTestCase.installProduct('ExternalMethod', quiet=install_product_quiet) ZopeTestCase.installProduct('ExternalMethod', quiet=install_product_quiet)
ZopeTestCase.installProduct('ZopeProfiler', quiet=install_product_quiet)
try: try:
# Workaround iHotFix patch that doesn't work with # Workaround iHotFix patch that doesn't work with
# ZopeTestCase REQUESTs # ZopeTestCase REQUESTs
......
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