Commit 638b3969 authored by Emmy Vouriot's avatar Emmy Vouriot Committed by Jérome Perrin

WIP: Python 2 to 3 fixes - add py2 compatibility

parent a660b68f
...@@ -145,6 +145,8 @@ class ImageFieldWidget(Widget.TextWidget): ...@@ -145,6 +145,8 @@ class ImageFieldWidget(Widget.TextWidget):
if value in ('', None): if value in ('', None):
return None return None
path = '/'.join(REQUEST.physicalPathFromURL(value)) path = '/'.join(REQUEST.physicalPathFromURL(value))
if six.PY2:
path.encode()
image_object = field.getPortalObject().restrictedTraverse(path) image_object = field.getPortalObject().restrictedTraverse(path)
display = field.get_value('image_display') display = field.get_value('image_display')
format = field.get_value('image_format') format = field.get_value('image_format')
......
...@@ -1107,8 +1107,12 @@ class ODGStrategy(ODFStrategy): ...@@ -1107,8 +1107,12 @@ class ODGStrategy(ODFStrategy):
text_xpath = '//draw:frame[@draw:name="%s"]' % field.id text_xpath = '//draw:frame[@draw:name="%s"]' % field.id
node_list = element_tree.xpath(text_xpath, namespaces=element_tree.nsmap) node_list = element_tree.xpath(text_xpath, namespaces=element_tree.nsmap)
value = field.get_value('default') value = field.get_value('default')
if isinstance(value, bytes): if six.PY2:
value = value.decode('utf-8') if isinstance(value, str):
value = value.decode('utf-8')
else:
if isinstance(value, bytes):
value = value.decode('utf-8')
for target_node in node_list: for target_node in node_list:
# render the field in odg xml node format # render the field in odg xml node format
attr_dict = {} attr_dict = {}
......
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