Commit 53cb9c2d authored by Mame Coumba Sall's avatar Mame Coumba Sall

Modifications to include height and width scaling


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@18547 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 295d27c0
......@@ -217,7 +217,9 @@ class ManageModule:
default_groups.append(page_number)
# default_groups list completed, need to update the form_groups
# renaming form default group with list's first item
form_view_id_object.rename_group('Default',default_groups[0])
form_view_id_object.rename_group('Default',
default_groups[0]
)
# adding all other items
for group in default_groups[0:]:
form_view_id_object.add_group(group)
......@@ -637,9 +639,8 @@ class ManageFiles:
# in our case the result of the ls.
# splitting this string to get the list of objects
for image in result[1].split('\n'):
temp_jpg = open('/tmp/%s' % image, 'r')
form_page_id = ob
ject_names['page'] + str(image_number)
temp_jpg = open('%s%s' % (directory_tmp,image), 'r')
form_page_id = object_names['page'] + str(image_number)
addImage = skin_folder.manage_addProduct['OFSP'].manage_addImage
addImage(form_page_id,temp_jpg,"background image")
image_number += 1
......
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