Commit 13c8886e authored by Fabien Morin's avatar Fabien Morin

improve typo, adding space in good places and make lines 80 caracters max long


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@18920 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 3832fae0
def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None, def ERP5Site_createModuleScribus(self,
portal_skins_folder=None, object_portal_type=None, object_title=None, module_id=None, form_id=None,
module_title=None, selection_index=None, selection_name=None, import_scribus_file=None, module_portal_type=None,
import_pdf_file=None, option_html=None,desired_height=None, desired_width=None, import_image_1=None, import_image_2=None, portal_skins_folder=None,
object_portal_type=None,
object_title=None,
module_id=None,
module_title=None,
selection_index=None,
selection_name=None,
import_scribus_file=None,
import_pdf_file=None,
option_html=None,
desired_height=None,
desired_width=None,
import_image_1=None,
import_image_2=None,
import_image_3=None, **kw) : import_image_3=None, **kw) :
""" Creates a module, portal_type and ERP5Form from a scribus and """ Creates a module, portal_type and ERP5Form from a scribus and
PDFForm file""" PDFForm file"""
...@@ -38,9 +51,9 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None, ...@@ -38,9 +51,9 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None,
portal = context.getPortalObject() portal = context.getPortalObject()
portal_types = portal.portal_types portal_types = portal.portal_types
object_portal_type_id = object_portal_type object_portal_type_id = object_portal_type
desired_height= desired_height desired_height = desired_height
desired_width= desired_width desired_width = desired_width
resolution= 300 # JPS-XXX - hardcoded resolution = 300 # JPS-XXX - hardcoded
option_html = option_html option_html = option_html
# DECLARING NAMES # DECLARING NAMES
...@@ -145,16 +158,18 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None, ...@@ -145,16 +158,18 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None,
# testing if final rendering is PDF-like # testing if final rendering is PDF-like
if option_html ==1 : if option_html == 1 :
print " createmodule > generating background" print " createmodule > generating background"
## BACKGROUND GENERATOR ## BACKGROUND GENERATOR
# extract background pictures from the PDF document, convert them in the right # extract background pictures from the PDF document, convert them in the right
# format (JPG) and add them to the skin folder as Image objects. # format (JPG) and add them to the skin folder as Image objects.
# used only with option_html == 1 # used only with option_html == 1
# recover image_size # recover image_size
image_size=ManageFiles.setBackgroundPictures(import_pdf_file,object_names,skin_folder,desired_height,desired_width,resolution) image_size = ManageFiles.setBackgroundPictures(import_pdf_file,
object_names,skin_folder,desired_height,desired_width,resolution)
page_height,page_width,original_page_height,original_page_width = image_size page_height, page_width, original_page_height, original_page_width = \
image_size
print " height = " + str(page_height) print " height = " + str(page_height)
print " width = " + str(page_width) print " width = " + str(page_width)
...@@ -192,14 +207,16 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None, ...@@ -192,14 +207,16 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None,
width_groups,height_groups = ManageFiles.getPageattributes( width_groups,height_groups = ManageFiles.getPageattributes(
global_properties, global_properties,
import_pdf_file) import_pdf_file)
properties_css_dict,properties_page,actual_width,actual_height = ManageCSS.setPageProperties( properties_css_dict, properties_page, actual_width, actual_height = \
properties_css_dict, ManageCSS.setPageProperties( properties_css_dict,
page_iterator, page_iterator,
page_id, page_id,
page_height, page_height,
page_width, page_width,
original_page_width, original_page_width,
original_page_height,width_groups,height_groups) original_page_height,
width_groups,
height_groups)
# RESUME DATA INTERPRETATION # RESUME DATA INTERPRETATION
# iterating pageobjects in page # iterating pageobjects in page
...@@ -208,7 +225,7 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None, ...@@ -208,7 +225,7 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None,
# testing each page_content # testing each page_content
if properties_field.has_key('type'): if properties_field.has_key('type'):
if option_html ==1: if option_html == 1:
# CSS FIELD PROPERTIES # CSS FIELD PROPERTIES
# get CSS class properties related to the actual page_object # get CSS class properties related to the actual page_object
# in the page (position, size, color, etc.) and add them to # in the page (position, size, color, etc.) and add them to
...@@ -223,7 +240,9 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None, ...@@ -223,7 +240,9 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None,
keep_page, keep_page,
0, 0,
0, 0,
properties_page,actual_width,actual_height) properties_page,
actual_width,
actual_height)
# recover useful page_object attributes from scribus dict # recover useful page_object attributes from scribus dict
...@@ -236,7 +255,7 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None, ...@@ -236,7 +255,7 @@ def ERP5Site_createModuleScribus(self, form_id=None, module_portal_type=None,
global_properties) global_properties)
# CSS CLASS (generateOutputContent) # CSS CLASS (generateOutputContent)
if option_html ==1: if option_html == 1:
# add last properties to css dict, including implementation # add last properties to css dict, including implementation
# of a n+1 page to prevent bug when rendering under Konqueror # of a n+1 page to prevent bug when rendering under Konqueror
......
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