Commit a093355c authored by Jérome Perrin's avatar Jérome Perrin

ods_style: fix pylint messages and enable coding style test

parent 21c0c204
from Products.ERP5Type.Message import Message
# XXX for now, we always use the default Base_getODSStyleSheet # XXX for now, we always use the default Base_getODSStyleSheet
# we use to have Base_getODSListStyleSheet with a line at the bottom of # we use to have Base_getODSListStyleSheet with a line at the bottom of
# the page, for better print display. Now we rather agreed that # the page, for better print display and also Base_getODSStyleSheetLandscape
# ods_style is a style for export, not report and the rendering appearance # when landscape mode is used.
# was not so important. # Now we rather agreed that ods_style is a style for export, not report and
# the rendering appearance was not so important.
return context.Base_getODSStyleSheet return context.Base_getODSStyleSheet
translate = lambda msg: Message('ui', msg)
request = context.REQUEST
landscape = int(request.get('landscape', 0))
if context.pt != 'form_list':
if landscape == 1:
#normal style sheet with preview of landscape
return context.Base_getODSStyleSheetLandscape
else:
#preview portrait(Default)
return context.Base_getODSStyleSheet
else:
if landscape == 1:
#style sheet for list, there is under line in preview
return context.Base_getODSListStyleSheetLandscape
else:
#preview portrait(Default)
return context.Base_getODSListStyleSheet
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