Commit c8d4edda authored by Levin Zimmermann's avatar Levin Zimmermann

erp5_wendelin: Fix IngestionPolicyTool.unpack_lazy

This didn't work anymore in restricted python.
parent 3b08139f
...@@ -31,18 +31,6 @@ from Products.ERP5Type.Core.Folder import Folder ...@@ -31,18 +31,6 @@ from Products.ERP5Type.Core.Folder import Folder
from cStringIO import StringIO from cStringIO import StringIO
import msgpack import msgpack
class RestrictedUnpacker:
"""
A lazy Unpacker which works in zopes restricted environment
"""
def __init__(self, unpacker):
self.unpacker = unpacker
def __iter__(self):
return self
def next(self):
return self.unpacker.next()
class IngestionPolicyTool(Folder): class IngestionPolicyTool(Folder):
""" """
...@@ -83,4 +71,4 @@ class IngestionPolicyTool(Folder): ...@@ -83,4 +71,4 @@ class IngestionPolicyTool(Folder):
Setting use_list=False uses tuples instead of lists which is faster Setting use_list=False uses tuples instead of lists which is faster
""" """
data_file = StringIO(data) data_file = StringIO(data)
return RestrictedUnpacker(msgpack.Unpacker(data_file, use_list=use_list)) return (x for x in msgpack.Unpacker(data_file, use_list=use_list))
\ No newline at end of file \ No newline at end of file
...@@ -6,12 +6,6 @@ ...@@ -6,12 +6,6 @@
</pickle> </pickle>
<pickle> <pickle>
<dictionary> <dictionary>
<item>
<key> <string>_recorded_property_dict</string> </key>
<value>
<persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent>
</value>
</item>
<item> <item>
<key> <string>default_reference</string> </key> <key> <string>default_reference</string> </key>
<value> <string>IngestionPolicyTool</string> </value> <value> <string>IngestionPolicyTool</string> </value>
...@@ -55,28 +49,13 @@ ...@@ -55,28 +49,13 @@
<item> <item>
<key> <string>workflow_history</string> </key> <key> <string>workflow_history</string> </key>
<value> <value>
<persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent> <persistent> <string encoding="base64">AAAAAAAAAAI=</string> </persistent>
</value> </value>
</item> </item>
</dictionary> </dictionary>
</pickle> </pickle>
</record> </record>
<record id="2" aka="AAAAAAAAAAI="> <record id="2" aka="AAAAAAAAAAI=">
<pickle>
<global name="PersistentMapping" module="Persistence.mapping"/>
</pickle>
<pickle>
<dictionary>
<item>
<key> <string>data</string> </key>
<value>
<dictionary/>
</value>
</item>
</dictionary>
</pickle>
</record>
<record id="3" aka="AAAAAAAAAAM=">
<pickle> <pickle>
<global name="PersistentMapping" module="Persistence.mapping"/> <global name="PersistentMapping" module="Persistence.mapping"/>
</pickle> </pickle>
...@@ -89,7 +68,7 @@ ...@@ -89,7 +68,7 @@
<item> <item>
<key> <string>component_validation_workflow</string> </key> <key> <string>component_validation_workflow</string> </key>
<value> <value>
<persistent> <string encoding="base64">AAAAAAAAAAQ=</string> </persistent> <persistent> <string encoding="base64">AAAAAAAAAAM=</string> </persistent>
</value> </value>
</item> </item>
</dictionary> </dictionary>
...@@ -98,7 +77,7 @@ ...@@ -98,7 +77,7 @@
</dictionary> </dictionary>
</pickle> </pickle>
</record> </record>
<record id="4" aka="AAAAAAAAAAQ="> <record id="3" aka="AAAAAAAAAAM=">
<pickle> <pickle>
<global name="WorkflowHistoryList" module="Products.ERP5Type.Workflow"/> <global name="WorkflowHistoryList" module="Products.ERP5Type.Workflow"/>
</pickle> </pickle>
......
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