Commit 41580f79 authored by Sebastien Robin's avatar Sebastien Robin

many improvements made by Jonathan


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@2954 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c04d4356
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
# #
############################################################################## ##############################################################################
import string, types, sys import string, types, sys
from Form import BasicForm from Form import BasicForm
from Products.Formulator.Field import ZMIField from Products.Formulator.Field import ZMIField
...@@ -34,8 +35,8 @@ from Products.Formulator.MethodField import BoundMethod ...@@ -34,8 +35,8 @@ from Products.Formulator.MethodField import BoundMethod
from DateTime import DateTime from DateTime import DateTime
from Products.Formulator import Widget, Validator from Products.Formulator import Widget, Validator
from Products.Formulator.Errors import FormValidationError, ValidationError from Products.Formulator.Errors import FormValidationError, ValidationError
from Selection import Selection, DomainSelection
from SelectionTool import makeTreeList from SelectionTool import makeTreeList
from Selection import Selection, DomainSelection
import OFS import OFS
from AccessControl import ClassSecurityInfo from AccessControl import ClassSecurityInfo
from zLOG import LOG from zLOG import LOG
...@@ -51,20 +52,23 @@ from Products.CMFCore.utils import getToolByName ...@@ -51,20 +52,23 @@ from Products.CMFCore.utils import getToolByName
class PlanningBoxValidator(Validator.StringBaseValidator): class PlanningBoxValidator(Validator.StringBaseValidator):
def validate(self, field, key, REQUEST): def validate(self, field, key, REQUEST):
list_value={}
try: try:
for lang in list_value.keys(): for lang in list_value.keys():
list_value[lang] = int(list_value[lang]) list_value[lang] = int(list_value[lang])
except ValueError: except ValueError:
self.raise_error('not an integer', field) self.raise_error('not an integer', field)
return list_value return list_value
PlanningBoxValidatorInstance=PlanningBoxValidator() PlanningBoxValidatorInstance=PlanningBoxValidator()
def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_method, def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_method,
here,report_root_list,y_axis_width,width_line,space_line, here,report_root_list,y_axis_width,width_line,space_line,
height_global_div,height_header,height_axis_x,form,current_top): height_global_div,height_header,height_axis_x,form,current_top,portal_types):
report_sections = [] report_sections = []
filtered_portal_types = map(lambda x: x[0], portal_types)
if len(filtered_portal_types) == 0:
filtered_portal_types = None
section_index = 0 section_index = 0
if len(report_sections) > section_index: if len(report_sections) > section_index:
current_section = report_sections[section_index] current_section = report_sections[section_index]
...@@ -75,6 +79,7 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth ...@@ -75,6 +79,7 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth
filtered_meta_types = map(lambda x: x[0], meta_types) filtered_meta_types = map(lambda x: x[0], meta_types)
params = selection.getParams() params = selection.getParams()
sort = field.get_value('sort') sort = field.get_value('sort')
selection.edit(default_sort_on = sort)
kw=params kw=params
report_depth = REQUEST.get('report_depth', None) report_depth = REQUEST.get('report_depth', None)
is_report_opened = REQUEST.get('is_report_opened', selection.isReportOpened()) is_report_opened = REQUEST.get('is_report_opened', selection.isReportOpened())
...@@ -82,12 +87,38 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth ...@@ -82,12 +87,38 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth
portal_categories = getattr(form, 'portal_categories', None) portal_categories = getattr(form, 'portal_categories', None)
if 'select_expression' in kw: if 'select_expression' in kw:
del kw['select_expression'] del kw['select_expression']
if hasattr(list_method, 'method_name'): if hasattr(list_method, 'method_name'):
list_method = here.objectValues #add **************
kw = copy(params) if list_method.method_name == 'objectValues':
kw['spec'] = filtered_meta_types list_method = here.objectValues
kw = copy(params)
kw['spec'] = filtered_meta_types
else:
# The Catalog Builds a Complex Query
kw = {}
if REQUEST.form.has_key('portal_type'):
kw['portal_type'] = REQUEST.form['portal_type']
elif REQUEST.has_key('portal_type'):
kw['portal_type'] = REQUEST['portal_type']
elif filtered_portal_types is not None:
kw['portal_type'] = filtered_portal_types
elif filtered_meta_types is not None:
kw['meta_type'] = filtered_meta_types
elif kw.has_key('portal_type'):
if kw['portal_type'] == '':
del kw['portal_type']
# Remove useless matter
for cname in params.keys():
if params[cname] != '' and params[cname]!=None:
kw[cname] = params[cname]
# Try to get the method through acquisition
try:
list_method = getattr(here, list_method.method_name)
except:
pass
#add ****************
elif list_method in (None, ''): # Use current selection elif list_method in (None, ''): # Use current selection
# Use previously used list method
list_method = None list_method = None
select_expression = '' select_expression = ''
default_selection_report_path = report_root_list[0][0].split('/')[0] default_selection_report_path = report_root_list[0][0].split('/')[0]
...@@ -104,7 +135,7 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth ...@@ -104,7 +135,7 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth
report_tree_list = makeTreeList(here, form, None,selection_report_path,None,0, report_tree_list = makeTreeList(here, form, None,selection_report_path,None,0,
selection_report_current, form.id, selection_name, selection_report_current, form.id, selection_name,
report_depth,is_report_opened, sort_on=selection.sort_on) report_depth,is_report_opened, sort_on=selection.sort_on)
# Update report list if report_depth was specified
if report_depth is not None: if report_depth is not None:
report_list = map(lambda s:s[0].getRelativeUrl(), report_tree_list) report_list = map(lambda s:s[0].getRelativeUrl(), report_tree_list)
selection.edit(report_list=report_list) selection.edit(report_list=report_list)
...@@ -136,22 +167,25 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth ...@@ -136,22 +167,25 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth
# Prepare query # Prepare query
selection.edit( params = kw ) selection.edit( params = kw )
if list_method not in (None, ''): if list_method not in (None, ''):
object_list = selection(method = list_method, context=here, REQUEST=REQUEST, selection.edit(exception_uid_list=s.getExceptionUidList())
s=s, object_list= object_list) object_list = selection(method = list_method, context=here, REQUEST=REQUEST)
else: else:
object_list = here.portal_selections.getSelectionValueList(selection_name, object_list = here.portal_selections.getSelectionValueList(selection_name,
context=here, REQUEST=REQUEST) context=here, REQUEST=REQUEST)
selection.edit(report=None) selection.edit(report=None)
index = 0 index = 0
# we start to build our line object structure right here. # we start to build our line object structure right here.
#for x in report_sections:
# print x.getObject().getTitle()
for l in report_sections: for l in report_sections:
stat_result = {} stat_result = {}
stat_context = l.getObject().asContext(**stat_result) stat_context = l.getObject().asContext(**stat_result)
stat_context.domain_url = l.getObject().getRelativeUrl() stat_context.domain_url = l.getObject().getRelativeUrl()
stat_context.absolute_url = lambda x: l.getObject().absolute_url() stat_context.absolute_url = lambda x: l.getObject().absolute_url()
url=getattr(stat_context,'domain_url','') url=getattr(stat_context,'domain_url','')
if l.getDepth() == 0: if l.getDepth() == 0:
paternity = 0 paternity = 0
if len(l.getObject().objectValues())!=0: if len(l.getObject().objectValues())!=0:
...@@ -165,28 +199,33 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth ...@@ -165,28 +199,33 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth
height=height, height=height,
top=current_top,color='#ffffff', top=current_top,color='#ffffff',
paternity=paternity,url=url) paternity=paternity,url=url)
list_object.append(line) list_object.append(line)
if paternity == 0:
if paternity == 0: height=(height_global_div-height_header-height_axis_x-
current_top=current_top+((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)) + (space_line) ((nbr_line-1)*space_line))/(float(nbr_line)) + (space_line)
current_top=current_top+height
else: else:
if (index+1)<=(len(report_sections)-1): if (index+1)<=(len(report_sections)-1):
if report_sections[index+1].getDepth()==0: if report_sections[index+1].getDepth()==0:
#current_top=current_top+((height_global_div-height_header-height_axis_x)/float(nbr_line)) + (space_line) height=((height_global_div-height_header-height_axis_x-
current_top=current_top+((height_global_div-height_header-height_axis_x-(((nbr_line-1))*space_line))/float(nbr_line))+ (space_line) (((nbr_line-1))*space_line))/float(nbr_line))+ (space_line)
current_top=current_top+height
else: else:
height=((height_global_div-height_header-height_axis_x-
current_top=current_top+((height_global_div-height_header-height_axis_x-(((nbr_line-1))*space_line))/float(nbr_line)) (((nbr_line-1))*space_line))/float(nbr_line))
current_top=current_top+height
else: else:
current_index = 0 current_index = 0
while l.getDepth() == report_sections[index-current_index].getDepth(): while l.getDepth() == report_sections[index-current_index].getDepth():
current_index += 1 current_index += 1
if report_sections[index-current_index].getDepth() == 0: if report_sections[index-current_index].getDepth() == 0:
current_top=list_object[len(list_object)-1].createLineChild(report_sections,field,current_top,y_axis_width,width_line,space_line,height_global_div,height_header,height_axis_x,nbr_line,index,url) current_top=list_object[len(list_object)-1].createLineChild(report_sections,field,
current_top,y_axis_width,width_line,space_line,height_global_div,
height_header,height_axis_x,nbr_line,index,url)
else : # in this case wee add a soon to a soon else : # in this case wee add a soon to a soon
depth=0 depth=0
...@@ -194,7 +233,9 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth ...@@ -194,7 +233,9 @@ def createLineObject(meta_types,selection,selection_name,field,REQUEST,list_meth
while depth != (l.getDepth()-1): while depth != (l.getDepth()-1):
current_soon=list_object[len(list_object)-1].soon[len(list_object[len(list_object)-1].soon)-1] current_soon=list_object[len(list_object)-1].soon[len(list_object[len(list_object)-1].soon)-1]
depth+=1 depth+=1
current_top=current_soon.createLineChild(report_sections,field,current_top,y_axis_width,width_line,space_line,height_global_div,height_header,height_axis_x,nbr_line,index,url) current_top=current_soon.createLineChild(report_sections,field,current_top,y_axis_width,
width_line,space_line,height_global_div,height_header
,height_axis_x,nbr_line,index,url)
index += 1 index += 1
indic_line+=1 indic_line+=1
return (list_object,nbr_line,report_sections) return (list_object,nbr_line,report_sections)
...@@ -214,12 +255,13 @@ def createGraphicCall(current_line,graphic_call): ...@@ -214,12 +255,13 @@ def createGraphicCall(current_line,graphic_call):
return graphic_call return graphic_call
#class planningboxwidget *********************************
class PlanningBoxWidget(Widget.Widget): class PlanningBoxWidget(Widget.Widget):
property_names = Widget.Widget.property_names +\ property_names = Widget.Widget.property_names +\
['height_header', 'height_global_div','height_axis_x', 'width_line','space_line','list_method','report_tree','report_root_list','selection_name','portal_types','meta_types','sort','title_line','y_unity','y_axis_width','y_range','x_range','x_axis_script_id','x_start_bloc','x_stop_bloc','y_axis_method','info_block_method','security_index'] ['height_header', 'height_global_div','height_axis_x', 'width_line','space_line'
,'list_method','report_tree','report_root_list','selection_name','portal_types',
'meta_types','sort','title_line','y_unity','y_axis_width','y_range','x_range',
'x_axis_script_id','x_start_bloc','x_stop_bloc','y_axis_method','info_center',
'info_topleft','info_topright','info_backleft','info_backright','security_index']
default = fields.TextAreaField('default', default = fields.TextAreaField('default',
title='Default', title='Default',
...@@ -376,13 +418,43 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -376,13 +418,43 @@ class PlanningBoxWidget(Widget.Widget):
default='', default='',
required=0) required=0)
info_block_method = fields.StringField('info_block_method',
title='specific method for inserting infos in Block', info_center = fields.StringField('info_center',
description=('Method for inserting info' title='specific method of data called for inserting info in block center',
description=('Method for displaying info in the center of a block'
'objects'),
default='',
required=0)
info_topright = fields.StringField('info_topright',
title='specific method of data called for inserting info in block topright',
description=('Method for displaying info in the topright of a block'
'objects'), 'objects'),
default='', default='',
required=0) required=0)
info_topleft = fields.StringField('info_topleft',
title='specific method of data called for inserting info in block topleft',
description=('Method for displaying info in the topleft corner of a block'
'objects'),
default='',
required=0)
info_backleft = fields.StringField('info_backleft',
title='specific method of data called for inserting info in block backleft',
description=('Method for displaying info in the backleft of a block'
'objects'),
default='',
required=0)
info_backright = fields.StringField('info_backright',
title='specific method of data called for inserting info in block backright',
description=('Method for displaying info in the backright of a block'
'objects'),
default='',
required=0)
security_index = fields.IntegerField('security_index', security_index = fields.IntegerField('security_index',
title='variable depending of the type of web browser :', title='variable depending of the type of web browser :',
description=("This variable is used because the rounds of each web browser seem to work differently"), description=("This variable is used because the rounds of each web browser seem to work differently"),
...@@ -406,18 +478,30 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -406,18 +478,30 @@ class PlanningBoxWidget(Widget.Widget):
meta_types = field.get_value('meta_types') meta_types = field.get_value('meta_types')
x_range=field.get_value('x_range') x_range=field.get_value('x_range')
here = REQUEST['here'] here = REQUEST['here']
title=field.get_value('title')
list_method = field.get_value('list_method') list_method = field.get_value('list_method')
report_tree = field.get_value('report_tree') report_tree = field.get_value('report_tree')
report_root_list = field.get_value('report_root_list') report_root_list = field.get_value('report_root_list')
y_axis_method=field.get_value('y_axis_method') y_axis_method=field.get_value('y_axis_method')
script=getattr(here,field.get_value('x_axis_script_id'),None) script=getattr(here,field.get_value('x_axis_script_id'),None)
info_block_method = getattr(here,field.get_value('info_block_method'),None) #info inside a block
info_center = field.get_value('info_center')
info_topleft = field.get_value('info_topleft')
info_topright = field.get_value('info_topright')
info_backleft = field.get_value('info_backleft')
info_backright = field.get_value('info_backright')
#*******
object_start_method_id = field.get_value('x_start_bloc') object_start_method_id = field.get_value('x_start_bloc')
object_stop_method_id= field.get_value('x_stop_bloc') object_stop_method_id= field.get_value('x_stop_bloc')
form = field.aq_parent form = field.aq_parent
sort = field.get_value('sort')
x_occurence=[] # contains datas of start and stop of each block like this [ [ [x1,x2],[x1,x2] ],[ [x1,x2],[x1,x2] ],.....] it is not directly coordinate but datas. x_occurence=[] # contains datas of start and stop of each block like
x_axe=[] # will contain what wee need to display in X-axis. contains: (data used for construction, display of x-axis) # this [ [ [x1,x2],[x1,x2] ],[ [x1,x2],[x1,x2] ],.....]
#it is not directly coordinate but datas.
x_axe=[] # will contain what wee need to display in X-axis. contains:
#(data used for construction, display of x-axis)
yrange=[] # we store the value in Y-axis of each block yrange=[] # we store the value in Y-axis of each block
nbr=1 nbr=1
y_max=1 y_max=1
...@@ -426,20 +510,27 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -426,20 +510,27 @@ class PlanningBoxWidget(Widget.Widget):
list_object=[] #in this list we store all the objects of type Line list_object=[] #in this list we store all the objects of type Line
giant_string='' #will contain all the html code. giant_string='' #will contain all the html code.
report_sections=[] report_sections=[]
# END DATA DEFINITION ########################################### # END DATA DEFINITION ##########################################
# we fetch fold/unfold datas ###################### # we fetch fold/unfold datas ######################
#here.portal_selections.setSelectionFor(selection_name, None)#put selection to null
#here.portal_selections.setSelectionFor(selection_name, None)#uncoment to put selection to null
selection = here.portal_selections.getSelectionFor(selection_name, REQUEST=REQUEST) selection = here.portal_selections.getSelectionFor(selection_name, REQUEST=REQUEST)
default_params = {} default_params = {}
sort = ()
if selection is None: if selection is None:
selection = Selection(params=default_params, default_sort_on = sort) selection = Selection(params=default_params, default_sort_on = sort)
domain_list = list(selection.getDomainList()) #domain_list = list(selection.getDomainList())
#here.portal_selections.setSelectionFor(selection_name, selection, REQUEST=REQUEST)
else:
selection.edit(default_sort_on = sort)
selection.edit(sort_on = sort)
here.portal_selections.setSelectionFor(selection_name, selection, REQUEST=REQUEST) here.portal_selections.setSelectionFor(selection_name, selection, REQUEST=REQUEST)
######################## ########################
#we build line *************************** #we build line ***************************
(list_object,nbr_line,report_sections)=createLineObject(meta_types,selection,selection_name,field,REQUEST,list_method,here,report_root_list,y_axis_width,width_line,space_line,height_global_div,height_header,height_axis_x,form,current_top) (list_object,nbr_line,report_sections)=createLineObject(meta_types,selection,selection_name
,field,REQUEST,list_method,here,report_root_list,
y_axis_width,width_line,space_line,height_global_div,
height_header,height_axis_x,form,current_top,portal_types)
# end build line #################################################### # end build line ####################################################
...@@ -456,15 +547,19 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -456,15 +547,19 @@ class PlanningBoxWidget(Widget.Widget):
x_axe=script(x_occurence,x_range) #we call this script for the range in X-Axis x_axe=script(x_occurence,x_range) #we call this script for the range in X-Axis
################################################## ##################################################
# we add mobile block to the line object ################################### # we add mobile block to the line object ###################################
indic_line=0 indic_line=0
#for o report_sections: while indic_line != len(report_sections):
for o in list_object: for o in list_object:
if list_object != []: if o.title == report_sections[indic_line].getObject().getTitle():
list_object[indic_line].insertActivityBlock(report_sections[indic_line].getObject(),object_start_method_id,object_stop_method_id,x_axe,field) if list_object != [] and report_sections[indic_line].getDepth()==0:
indic_line+=1 o.insertActivityBlock(report_sections[indic_line].getObject(),object_start_method_id,
object_stop_method_id,x_axe,field,info_center,info_topright,info_topleft,
info_backleft,info_backright)
break
indic_line+=1
# ############################################################# # #############################################################
# at this point list_object contains our tree of datas. Then wee add others object for the graphic. # at this point list_object contains our tree of datas. Then we add others objects for the graphic.
#one constructs the vertical dotted line ********************** #one constructs the vertical dotted line **********************
marge_left=y_axis_width+width_line/float(len(x_axe[1])) marge_left=y_axis_width+width_line/float(len(x_axe[1]))
...@@ -478,7 +573,8 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -478,7 +573,8 @@ class PlanningBoxWidget(Widget.Widget):
marge_top=10 marge_top=10
if y_range!=0: if y_range!=0:
for i in list_object: for i in list_object:
i.appendHorizontalDottedLine(marge_top,maximum_y,height_global_div,height_header,height_axis_x,nbr_line,y_range,y_max,current_section) i.appendHorizontalDottedLine(marge_top,maximum_y,height_global_div,height_header,
height_axis_x,nbr_line,y_range,y_max,current_section)
#end construct of horizontal dotted line ******************************************************** #end construct of horizontal dotted line ********************************************************
...@@ -489,15 +585,15 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -489,15 +585,15 @@ class PlanningBoxWidget(Widget.Widget):
current_top=height_header current_top=height_header
idx=0 idx=0
for i in list_object: for i in list_object:
current_top=i.buildYtype(way,y,level,y_axis_width,height_global_div,height_header,height_axis_x,nbr_line,current_top,space_line,y_max,y_range,y_unity,selection_name,form) current_top=i.buildYtype(way,y,level,y_axis_width,height_global_div,height_header,
height_axis_x,nbr_line,current_top,space_line,y_max,y_range,
#current_top=y[len(y)-1].top+((height_global_div-height_header-height_axis_x)/float(nbr_line))+space_line y_unity,selection_name,form)
current_top=y[len(y)-1].top+((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line))+space_line
height=((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line))+space_line
current_top=y[len(y)-1].top+height
idx+=1 idx+=1
list_object=y+list_object #we need to add the y-axis block at the beginning of our structure otherwise the display is not correct list_object=y+list_object #we need to add the y-axis block at the beginning of our structure
#otherwise the display is not correct
#************************end construct y-axis #************************end construct y-axis
...@@ -505,7 +601,7 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -505,7 +601,7 @@ class PlanningBoxWidget(Widget.Widget):
list_object.append(Line('','axis_x',y_axis_width,width_line,height_axis_x,current_top-space_line)) list_object.append(Line('','axis_x',y_axis_width,width_line,height_axis_x,current_top-space_line))
list_object[len(list_object)-1].createXAxis(x_axe,width_line,y_axis_width) list_object[len(list_object)-1].createXAxis(x_axe,width_line,y_axis_width)
#*************************** #***************************
x_subdivision=width_line/float(len(x_axe[1]))
SESSION = REQUEST.SESSION SESSION = REQUEST.SESSION
SESSION.set('total',list_object) SESSION.set('total',list_object)
SESSION.set('width_line',width_line) SESSION.set('width_line',width_line)
...@@ -514,8 +610,9 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -514,8 +610,9 @@ class PlanningBoxWidget(Widget.Widget):
SESSION.set('report_tree',report_tree) SESSION.set('report_tree',report_tree)
SESSION.set('report_root_list',report_root_list) SESSION.set('report_root_list',report_root_list)
SESSION.set('selection_name',selection_name) SESSION.set('selection_name',selection_name)
SESSION.set('title',title)
for i in list_object: for i in list_object:
giant_string+=i.render_css(y_axis_width,security_index) giant_string+=i.render_css(y_axis_width,security_index,x_subdivision)
return giant_string return giant_string
...@@ -532,16 +629,22 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -532,16 +629,22 @@ class PlanningBoxWidget(Widget.Widget):
report_tree=SESSION.get('report_tree') report_tree=SESSION.get('report_tree')
report_root_list=SESSION.get('report_root_list') report_root_list=SESSION.get('report_root_list')
selection_name=SESSION.get('selection_name') selection_name=SESSION.get('selection_name')
title=SESSION.get('title')
giant_string='<input type=\"hidden\" name=\"list_selection_name\" value='+selection_name+' />\n' giant_string='<input type=\"hidden\" name=\"list_selection_name\" value='+selection_name+' />\n'
"""giant_string+='<div id=\"global_block\" style=\"position:absolute;width:'+str(width_line+y_axis_width)\
giant_string+='<div id=\"global_block\" style=\"position:absolute;width:'+str(width_line+y_axis_width)+'px;height:'+str(height_global_div)+'px;background:#d5e6de;margin-left:-99px;border-style:solid;border-color:#000000;border-width:1px;margin-top:-21px\">\n' +'px;height:'+str(height_global_div)+'px;background:#d5e6de;margin-left:-99px;\
border-style:solid;border-color:#000000;border-width:1px;margin-top:px\">\n'"""
#header of the graphic****************************************** giant_string+='<div id=\"global_block\" style=\"position:absolute;width:'+str(width_line+y_axis_width)\
giant_string+='<div id=\"header\" style=\"position:absolute;width:'+str(width_line+y_axis_width)+'px;height:'+str(height_global_div)+'px;background:#d5e6de;margin-left:20px;border-style:solid;border-color:#000000;border-width:1px;margin-top:1px\">' +'px;height:'+str(height_global_div)+'px;background:#d5e6de;margin-left:-2px;\
border-style:solid;border-color:#000000;border-width:1px;margin-top:-1px\">\n'
#header of the graphic******************************************
giant_string+='<div id=\"header\" style=\"position:absolute;width:'+str(width_line+y_axis_width)+\
'px;height:'+str(height_global_div)+'px;background:#d5e6de;margin-left:0px;\
border-style:solid;border-color:#000000;border-width:1px;margin-top:1px\">\
<table><tr><td><h3><u>'+title+'</h3></u></td><td>'
##########################report tree ##########################report tree
# Create the header of the table with the name of the columns
# Create also Report Tree Column if needed
if report_tree: if report_tree:
selection = here.portal_selections.getSelectionFor(selection_name, REQUEST=REQUEST) selection = here.portal_selections.getSelectionFor(selection_name, REQUEST=REQUEST)
selection_report_path = selection.getReportPath() selection_report_path = selection.getReportPath()
...@@ -554,7 +657,7 @@ class PlanningBoxWidget(Widget.Widget): ...@@ -554,7 +657,7 @@ class PlanningBoxWidget(Widget.Widget):
report_tree_options += """<option value="%s">%s</option>\n""" % (c[0], c[1]) report_tree_options += """<option value="%s">%s</option>\n""" % (c[0], c[1])
report_popup = """<select name="report_root_url" report_popup = """<select name="report_root_url"
onChange="submitAction(this.form,'%s/portal_selections/setReportRoot')"> onChange="submitAction(this.form,'%s/portal_selections/setReportRoot')">
%s</select></div>""" % (here.getUrl(),report_tree_options) %s</select></td></tr></table></div>""" % (here.getUrl(),report_tree_options)
giant_string += report_popup giant_string += report_popup
else: else:
report_popup = '' report_popup = ''
...@@ -584,7 +687,8 @@ onChange="submitAction(this.form,'%s/portal_selections/setReportRoot')"> ...@@ -584,7 +687,8 @@ onChange="submitAction(this.form,'%s/portal_selections/setReportRoot')">
if current_object.soon!=[]: if current_object.soon!=[]:
giant_string+=createGraphicCall(current_object,graphic_call) giant_string+=createGraphicCall(current_object,graphic_call)
giant_string+='\"lefttop\"+CURSOR_NW_RESIZE, \"righttop\"+CURSOR_NE_RESIZE, \"rightbottom\"+CURSOR_SE_RESIZE, \"leftbottom\"+CURSOR_SW_RESIZE);\n' giant_string+='\"lefttop\"+CURSOR_NW_RESIZE, \"righttop\"+CURSOR_NE_RESIZE, \"rightbottom\"+CURSOR_SE_RESIZE,\
\"leftbottom\"+CURSOR_SW_RESIZE);\n'
giant_string+='</script>\n </div> ' giant_string+='</script>\n </div> '
return giant_string return giant_string
#*************************************************** #***************************************************
...@@ -615,28 +719,31 @@ class Line: ...@@ -615,28 +719,31 @@ class Line:
html_render='<div id=\"'+self.name+'\"></div>\n' html_render='<div id=\"'+self.name+'\"></div>\n'
for j in self.content: for j in self.content:
if j.types=='activity': if j.types=='activity':
if ((j.width*self.width)+(self.begin+j.begin*self.width)>self.width+y_axis_width): #checks if the block is too large for the end of the line if it is the case, one cuts the block #checks if the block is too large for the end of the line if it is the case, one cuts the block
html_render+='<div id=\"'+j.name+'\" ondblclick=\"showGrips()\" onclick=\"dd.elements.'+j.name+'.resizeTo('+str(round(j.width*self.width))+','+ str(j.height*(self.height-10))+') \">' if ((j.width*self.width)+(self.begin+j.begin*self.width)>self.width+y_axis_width):
html_render+='<div id=\"'+j.name+'\" ondblclick=\"showGrips()\" onclick=\"dd.elements.'\
+j.name+'.resizeTo('+str(round(j.width*self.width))+','+ str(j.height*(self.height-10))+') \">'
elif ((self.begin+j.begin*self.width) < self.begin): #checks if the block starts before the beginning of the line elif ((self.begin+j.begin*self.width) < self.begin): #checks if the block starts before the beginning of the line
html_render+='<div id=\"'+j.name+'\" ondblclick=\"showGrips()\" onclick=\"if (dd.elements.'+j.name+'.moved==0){dd.elements.'+j.name+'.moveBy('+str(round(j.begin*self.width))+',0);dd.elements.'+j.name+'.resizeTo('+str(round(j.width*self.width))+','+ str(j.height*(self.height-10))+');dd.elements.'+j.name+'.moved=1} \">' # "done" is used because otherwise everytime we move the block it will execute moveby() html_render+='<div id=\"'+j.name+'\" ondblclick=\"showGrips()\" onclick=\"if (dd.elements.'\
+j.name+'.moved==0){dd.elements.'+j.name+'.moveBy('+str(round(j.begin*self.width))\
+',0);dd.elements.'+j.name+'.resizeTo('+str(round(j.width*self.width))+','\
+ str(j.height*(self.height-10))+');dd.elements.'+j.name+'.moved=1} \">'
# "done" is used because otherwise everytime we move the block it will execute moveby()
else: else:
html_render+='<div id=\"'+j.name+'\" ondblclick=\"showGrips()\">' html_render+='<div id=\"'+j.name+'\" ondblclick=\"showGrips()\">'
# we add info Block inside the div thanks to the render method of the Block class
html_render+=j.render(self.width,self.height,portal_url,self.begin,y_axis_width) # we add info Block inside the div html_render+=j.render(self.width,self.height,portal_url,self.begin,y_axis_width,self)
html_render+='</div>\n' html_render+='</div>\n'
elif j.types!='info': elif j.types!='info':
html_render+='<div id=\"'+j.name+'\">'+str(j.text)+'</div>\n' html_render+='<div id=\"'+j.name+'\">'+str(j.text)+'</div>\n'
if self.soon!=[]: if self.soon!=[]:
for i in self.soon: for i in self.soon:
html_render+=i.render(portal_url,y_axis_width) html_render+=i.render(portal_url,y_axis_width)
return html_render return html_render
def render_css(self,y_axis_width,security_index): def render_css(self,y_axis_width,security_index,x_subdivision):
css_render='#'+self.name+'{position:absolute;\nborder-style:solid;\nborder-color:#53676e;\nborder-width:1px;\n' css_render='#'+self.name+'{position:absolute;\nborder-style:solid;\nborder-color:#53676e;\nborder-width:1px;\n'
if self.color!='': if self.color!='':
css_render+='background:'+str(self.color)+';\n' css_render+='background:'+str(self.color)+';\n'
...@@ -651,19 +758,22 @@ class Line: ...@@ -651,19 +758,22 @@ class Line:
elif self.y_type=='soon2': elif self.y_type=='soon2':
css_render+='border-top-width:0px;' css_render+='border-top-width:0px;'
css_render+='width:'+str(self.width)+'px;\n}' css_render+='width:'+str(self.width)+'px;\n}'
for j in self.content: #we generate block's css for j in self.content: #we generate block's css
if j.types=='activity': if j.types=='activity':
css_render+='#'+j.name+'{position:absolute;\nbackground:#bdd2e7;\nborder-style:solid;\nborder-color:#53676e;\nborder-width:1px;\n' css_render+='#'+j.name+'{position:absolute;\nbackground:#bdd2e7;\nborder-style:solid;\
css_render+='height:'+str((j.height*(self.height-10))-security_index)+'px;\n' #-10 because wee don't want a block sticked to border-top of the line \nborder-color:#53676e;\nborder-width:1px;\n'
# text=str('%.2f' %maximum_y)+y_unity css_render+='height:'+str((j.height*(self.height-10))-security_index)+'px;\n'
#-10 because wee don't want a block sticked to border-top of the line
if ((self.begin+j.begin*self.width) < self.begin): #checks if the block starts before the beginning of the line
if ((self.begin+j.begin*self.width) < self.begin):
#checks if the block starts before the beginning of the line
css_render+='margin-left:'+str(self.begin)+'px;\n' css_render+='margin-left:'+str(self.begin)+'px;\n'
css_render+='width:'+str((j.width*self.width+j.begin*self.width))+'px;\n' css_render+='width:'+str((j.width*self.width+j.begin*self.width))+'px;\n'
elif ((j.width*self.width)+(self.begin+j.begin*self.width)>self.width+y_axis_width): #checks if the block is too large for the end of the line. if it is the case, one cuts the block #checks if the block is too large for the end of the line. if it is the case, one cuts the block
css_render+='width:'+str(round(j.width*self.width)-((self.begin+j.begin*self.width+j.width*self.width)-(self.width+y_axis_width)))+'px;\n' elif ((j.width*self.width)+(self.begin+j.begin*self.width)>self.width+y_axis_width):
css_render+='width:'+str(round(j.width*self.width)-((self.begin+j.begin*self.width+j.width*self.width)
-(self.width+y_axis_width)))+'px;\n'
css_render+='margin-left:'+str(round(self.begin+j.begin*self.width))+'px;\n' css_render+='margin-left:'+str(round(self.begin+j.begin*self.width))+'px;\n'
else: else:
...@@ -671,7 +781,7 @@ class Line: ...@@ -671,7 +781,7 @@ class Line:
css_render+='margin-left:'+str(round(self.begin+j.begin*self.width))+'px;\n' css_render+='margin-left:'+str(round(self.begin+j.begin*self.width))+'px;\n'
css_render+='margin-top:'+str(self.top+10+j.marge_top*(self.height-10))+'px;}\n' css_render+='margin-top:'+str(self.top+10+j.marge_top*(self.height-10))+'px;}\n'
css_render+=j.render_css(self.width,self.height-10,self,y_axis_width) # we add info Block inside the div css_render+=j.render_css(self.width,self.height,self,y_axis_width) # we add info Block inside the div
elif j.types=='text_x' : elif j.types=='text_x' :
css_render+='#'+j.name+'{position:absolute;\nborder-style:solid;\nborder-color:#53676e;\nborder-width:1px;\n' css_render+='#'+j.name+'{position:absolute;\nborder-style:solid;\nborder-color:#53676e;\nborder-width:1px;\n'
...@@ -686,40 +796,45 @@ class Line: ...@@ -686,40 +796,45 @@ class Line:
elif j.types=='vertical_dotted': elif j.types=='vertical_dotted':
css_render+='#'+j.name+'{position:absolute;\nborder-style:dotted;\nborder-color:#53676e;\nborder-left-width:1px;\nborder-right-width:0px;\nborder-top-width:0px;\nborder-bottom-width:0px;\n' css_render+='#'+j.name+'{position:absolute;\nborder-style:dotted;\nborder-color:#53676e;\
\nborder-left-width:1px;\nborder-right-width:0px;\nborder-top-width:0px;\nborder-bottom-width:0px;\n'
css_render+='margin-left:'+str(j.begin)+'px;\n' css_render+='margin-left:'+str(j.begin)+'px;\n'
css_render+='height:'+str(self.height)+'px;\n' css_render+='height:'+str(self.height)+'px;\n'
css_render+='margin-top:'+str(1+round(self.top))+'px;}\n' css_render+='margin-top:'+str(1+round(self.top))+'px;}\n'
elif j.types=='horizontal_dotted': elif j.types=='horizontal_dotted':
css_render+='#'+j.name+'{position:absolute;\nborder-style:dotted;\nborder-color:#53676e;\nborder-left-width:0px;\nborder-right-width:0px;\nborder-top-width:1px;\nborder-bottom-width:0px;\n' css_render+='#'+j.name+'{position:absolute;\nborder-style:dotted;\nborder-color:#53676e;\
\nborder-left-width:0px;\nborder-right-width:0px;\nborder-top-width:1px;\nborder-bottom-width:0px;\n'
css_render+='margin-left:'+str(self.begin)+'px;\n' css_render+='margin-left:'+str(self.begin)+'px;\n'
css_render+='height:1px;\n' css_render+='height:1px;\n'
css_render+='margin-top:'+str(self.top+j.marge_top)+'px;' css_render+='margin-top:'+str(self.top+j.marge_top)+'px;'
css_render+='width:'+str(self.width)+'px;}\n' css_render+='width:'+str(self.width)+'px;}\n'
elif j.types=='y_coord': elif j.types=='y_coord':
css_render+='#'+j.name+'{position:absolute;\nborder-style:solid;\nborder-color:#53676e;\nfont-size:9px;\nborder-width:0px;\n' css_render+='#'+j.name+'{position:absolute;\nborder-style:solid;\nborder-color:#53676e;\
css_render+='margin-left:'+str(self.width-(len(j.text)*5))+'px;\n' #x6 because this is the appropriate width for our font (9px), maybee need to be parameter \nfont-size:9px;\nborder-width:0px;\n'
#x5 because this is the appropriate width for our font (9px), maybee need to be parameter
css_render+='margin-left:'+str(self.width-(len(j.text)*5))+'px;\n'
css_render+='margin-top:'+str(self.top+j.marge_top)+'px;}\n' css_render+='margin-top:'+str(self.top+j.marge_top)+'px;}\n'
elif j.types=='vertical': elif j.types=='vertical':
css_render+='#'+j.name+'{position:absolute;\nborder-style:solid;\nborder-color:#53676e;\nborder-left-width:1px;\nborder-right-width:0px;\nborder-top-width:0px;\nborder-bottom-width:0px;\n' css_render+='#'+j.name+'{position:absolute;\nborder-style:solid;\nborder-color:#53676e;\
\nborder-left-width:1px;\nborder-right-width:0px;\nborder-top-width:0px;\nborder-bottom-width:0px;\n'
css_render+='margin-left:'+str((self.width/4)+j.begin)+'px;\n' css_render+='margin-left:'+str((self.width/4)+j.begin)+'px;\n'
css_render+='height:'+str(j.height)+'px;\n' css_render+='height:'+str(j.height)+'px;\n'
css_render+='margin-top:'+str(round(self.top)-self.height/2+13)+'px;}\n' css_render+='margin-top:'+str(round(self.top)-self.height/2+13)+'px;}\n'
elif j.types=='horizontal': elif j.types=='horizontal':
css_render+='#'+j.name+'{position:absolute;\nborder-style:solid;\nborder-color:#53676e;\nborder-left-width:0px;\nborder-right-width:0px;\nborder-top-width:1px;\nborder-bottom-width:0px;\n' css_render+='#'+j.name+'{position:absolute;\nborder-style:solid;\nborder-color:#53676e;\
\nborder-left-width:0px;\nborder-right-width:0px;\nborder-top-width:1px;\nborder-bottom-width:0px;\n'
css_render+='margin-left:'+str((self.width/4)+j.begin)+'px;\n' css_render+='margin-left:'+str((self.width/4)+j.begin)+'px;\n'
css_render+='width:16px;\n' css_render+='width:16px;\n'
css_render+='height:1px; \n' css_render+='height:1px; \n'
# css_render+='margin-top:'+str(round(self.top)-self.height/2+13)+'px;}\n'
css_render+='margin-top:'+str(round(1+self.top+self.height/2))+'px;}\n' css_render+='margin-top:'+str(round(1+self.top+self.height/2))+'px;}\n'
if self.soon!=[]: if self.soon!=[]:
for i in self.soon: for i in self.soon:
css_render+=i.render_css(y_axis_width,security_index); css_render+=i.render_css(y_axis_width,security_index,x_subdivision);
return css_render return css_render
...@@ -772,22 +887,29 @@ class Line: ...@@ -772,22 +887,29 @@ class Line:
def buildYtype(self,way,y,level,y_axis_width,height_global_div,height_header,height_axis_x,nbr_line,current_top,space_line,y_max,y_range,y_unity,selection_name,form): def buildYtype(self,way,y,level,y_axis_width,height_global_div,height_header,
height_axis_x,nbr_line,current_top,space_line,y_max,y_range,
y_unity,selection_name,form):
""" used for determining the type of each part of y axis taking into account father and children """ used for determining the type of each part of y axis taking into account father and children
'way' is a list whichs allows to determinate if the current block is a type 'soon1' or 'soon2' """ 'way' is a list whichs allows to determinate if the current block is a type 'soon1' or 'soon2' """
report_url=self.url report_url=self.url
if level==0: if level==0:
name='axis'+str(self.name) name='axis'+str(self.name)
if self.soon!=[]: if self.soon!=[]:
y.append(Line('',name,1,y_axis_width,((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),current_top,'',[],'father1')) y.append(Line('',name,1,y_axis_width,
((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),
current_top,'',[],'father1'))
else: else:
y.append(Line('',name,1,y_axis_width,((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),current_top,'',[],'father2')) y.append(Line('',name,1,y_axis_width,((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))
/float(nbr_line)),current_top,'',[],'father2'))
if self.paternity==1: if self.paternity==1:
if self.soon!=[]: if self.soon!=[]:
y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+'<a href="portal_selections/foldReport?report_url='+report_url+'&form_id='+form.id+'&list_selection_name='+selection_name+'">-'+self.title+'</a>') y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+'<a href="portal_selections/foldReport?report_url='\
+report_url+'&form_id='+form.id+'&list_selection_name='+selection_name+'">-'+self.title+'</a>')
else: else:
y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+'<a href="portal_selections/unfoldReport?report_url='+report_url+'&form_id='+form.id+'&list_selection_name='+selection_name+'">+'+self.title+'</a>') y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+'<a href="portal_selections/unfoldReport?report_url='\
+report_url+'&form_id='+form.id+'&list_selection_name='+selection_name+'">+'+self.title+'</a>')
else: else:
...@@ -804,9 +926,11 @@ class Line: ...@@ -804,9 +926,11 @@ class Line:
way.append(1) way.append(1)
else: else:
way.append(0) way.append(0)
current_top+=((height_global_div-height_header-height_axis_x)/float(nbr_line)) current_top+=((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line))
current_top=self.soon[j].buildYtype(way,y,level,y_axis_width,height_global_div,height_header,height_axis_x,nbr_line,current_top,space_line,y_max,y_range,y_unity,selection_name,form) current_top=self.soon[j].buildYtype(way,y,level,y_axis_width,height_global_div,height_header,
height_axis_x,nbr_line,current_top,space_line,y_max,y_range,
y_unity,selection_name,form)
del way[len(way)-1] del way[len(way)-1]
else: else:
...@@ -814,19 +938,29 @@ class Line: ...@@ -814,19 +938,29 @@ class Line:
name=str(self.name) name=str(self.name)
for num in way: for num in way:
name=name+str(num) name=name+str(num)
y.append(Line('',name,1,y_axis_width,((height_global_div-height_header-height_axis_x)/float(nbr_line)),current_top,'',[],'soon1')) y.append(Line('',name,1,y_axis_width,((height_global_div-height_header-height_axis_x)/float(nbr_line))
,current_top,'',[],'soon1'))
if self.paternity==1: if self.paternity==1:
if self.soon!=[]: if self.soon!=[]:
y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+'<a href="portal_selections/foldReport?report_url='+report_url+'&form_id='+form.id+'&list_selection_name='+selection_name+'">-'+self.title+'</a>') y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+\
'<a href="portal_selections/foldReport?report_url='+report_url+'&form_id='\
+form.id+'&list_selection_name='+selection_name+'">-'+self.title+'</a>')
else: else:
y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+'<a href="portal_selections/unfoldReport?report_url='+report_url+'&form_id='+form.id+'&list_selection_name='+selection_name+'">+'+self.title+'</a>') y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+\
'<a href="portal_selections/unfoldReport?report_url='+report_url+'&form_id='\
+form.id+'&list_selection_name='+selection_name+'">+'+self.title+'</a>')
else: else:
y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+self.title) y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+self.title)
# one constructs the stick # one constructs the stick
y[len(y)-1].addBlockVertical('stickVer'+name,current_top-((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),(height_global_div-height_header-height_axis_x)/float(nbr_line),3*level*6-18) #6 is the width of the standart font, maybe a future parameter y[len(y)-1].addBlockVertical('stickVer'+name,current_top-
y[len(y)-1].addBlockHorizontal('stickHor'+name,current_top-((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),(height_global_div-height_header-height_axis_x)/float(nbr_line),3*level*6-18) ((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),
(height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line),3*level*5-18)
#5 is the width of the standart font, maybe a future parameter
y[len(y)-1].addBlockHorizontal('stickHor'+name,current_top-
((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),
(height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line),3*level*5-18)
#one constructs the indicators #one constructs the indicators
if y_range!=0: if y_range!=0:
...@@ -838,7 +972,9 @@ class Line: ...@@ -838,7 +972,9 @@ class Line:
way.append(1) way.append(1)
else: else:
way.append(0) way.append(0)
current_top=self.soon[j].buildYtype(way,y,level,y_axis_width,height_global_div,height_header,height_axis_x,nbr_line,current_top,space_line,y_max,y_range,y_unity,selection_name,form) current_top=self.soon[j].buildYtype(way,y,level,y_axis_width,height_global_div,height_header,
height_axis_x,nbr_line,current_top,space_line,y_max,y_range,
y_unity,selection_name,form)
del way[len(way)-1] del way[len(way)-1]
else: else:
...@@ -864,8 +1000,10 @@ class Line: ...@@ -864,8 +1000,10 @@ class Line:
y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+self.title) y[len(y)-1].addBlockTextY('ytext'+name,str(3*'&nbsp '*level)+self.title)
# one constructs the sticks # one constructs the sticks
y[len(y)-1].addBlockVertical('stickVer'+name,current_top-((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),(height_global_div-height_header-height_axis_x)/float(nbr_line),3*level*6-18) y[len(y)-1].addBlockVertical('stickVer'+name,current_top-((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),
y[len(y)-1].addBlockHorizontal('stickHor'+name,current_top-((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),(height_global_div-height_header-height_axis_x)/float(nbr_line),3*level*6-18) (height_global_div-height_header-height_axis_x)/float(nbr_line),3*level*5-18)
y[len(y)-1].addBlockHorizontal('stickHor'+name,current_top-((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line)),
(height_global_div-height_header-height_axis_x)/float(nbr_line),3*level*5-18)
#one constructs the indicators #one constructs the indicators
if y_range!=0: if y_range!=0:
...@@ -878,7 +1016,6 @@ class Line: ...@@ -878,7 +1016,6 @@ class Line:
maximum_y=y_max maximum_y=y_max
marge_top=0 marge_top=0
indic=0 indic=0
#while maximum_y>=(y_max/float(y_range)):
while maximum_y>=0: while maximum_y>=0:
nameblock='Block_'+self.name+str(indic) nameblock='Block_'+self.name+str(indic)
text=str('%.2f' %maximum_y)+y_unity text=str('%.2f' %maximum_y)+y_unity
...@@ -919,7 +1056,6 @@ class Line: ...@@ -919,7 +1056,6 @@ class Line:
self.addBlockTextX(nameblock,marge_left,i) self.addBlockTextX(nameblock,marge_left,i)
indic1+=1 indic1+=1
marge_left+=width_line/float(len(x_axe[1])) marge_left+=width_line/float(len(x_axe[1]))
def addSoon(self,soon): def addSoon(self,soon):
self.soon.append(soon) self.soon.append(soon)
...@@ -931,49 +1067,77 @@ class Line: ...@@ -931,49 +1067,77 @@ class Line:
paternity=1 paternity=1
else: else:
paternity=0 paternity=0
soon=Line(title=str(report_section[current_index].getObject().getTitle()),name=self.name+'s'+str(current_index) ,begin=y_axis_width,width=width_line,height=(height_global_div-height_header-height_axis_x)/float(nbr_line),top=current_top,color='#ffffff',paternity=paternity,url=url) soon=Line(title=str(report_section[current_index].getObject().getTitle()),name=self.name+'s'+str(current_index) ,begin=y_axis_width,width=width_line,height=(height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line),top=current_top,color='#ffffff',paternity=paternity,url=url)
if (current_index+1)<=(len(report_section)-1): if (current_index+1)<=(len(report_section)-1):
if report_section[current_index+1].getDepth() == 0: if report_section[current_index+1].getDepth() == 0:
current_top=current_top+((height_global_div-height_header-height_axis_x)/float(nbr_line))+space_line current_top=current_top+((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line))+space_line
else: else:
current_top=current_top+((height_global_div-height_header-height_axis_x)/float(nbr_line)) current_top=current_top+((height_global_div-height_header-height_axis_x-((nbr_line-1)*space_line))/float(nbr_line))
self.addSoon(soon) self.addSoon(soon)
return current_top return current_top
def insertActivityBlock(self,line_content,object_start_method_id,object_stop_method_id,x_axe,field): def insertActivityBlock(self,line_content,object_start_method_id,object_stop_method_id,
x_axe,field,info_center,info_topright,info_topleft,info_backleft,
info_backright):
"""allows to create the mobile block objects"""
#first we check if the block has information
center= getattr(line_content,info_center,None)
topright = getattr(line_content,info_topright,None)
topleft = getattr(line_content,info_topleft,None)
backleft= getattr(line_content,info_backleft,None)
backright= getattr(line_content,info_backright,None)
info={}
if center!=None: info['center']=str(center())
if topright!=None: info['topright']=str(topright())
if topleft!=None: info['topleft']=str(topleft())
if backleft!=None: info['botleft']=str(backleft())
if backright!=None: info['botright']=str(backright())
marge=0 marge=0
method_start = getattr(line_content,object_start_method_id,None) method_start = getattr(line_content,object_start_method_id,None)
method_stop= getattr(line_content,object_stop_method_id,None) method_stop= getattr(line_content,object_stop_method_id,None)
block_begin = method_start() block_begin = method_start()
list_block=[] list_block=[]
if method_stop!=None: if method_stop!=None:
block_stop= method_stop() block_stop= method_stop()
else: else:
block_stop=None block_stop=None
if isinstance(block_begin,DateTime):
if round(block_begin-DateTime(x_axe[0][0]))!=0:
block_left=float(round(block_begin-DateTime(x_axe[0][0])))/round(DateTime(x_axe[0][len(x_axe[0])-1])-DateTime(x_axe[0][0]))
else:
block_left=0
if block_stop-DateTime(x_axe[0][0])!=0:
block_right=float(round(block_stop-DateTime(x_axe[0][0])))/round(DateTime(x_axe[0][len(x_axe[0])-1])-DateTime(x_axe[0][0]))
else:
block_right=0
list_block.append([block_left,block_right-block_left,0.75,info,0.25])
else:
for i in x_axe[0]:
if block_begin==i:
list_block.append([marge,(block_stop-block_begin)/(float(len(x_axe[0]))),0.75,info,0.25])
# 0.75(height) need to be defined
marge+=1/float(len(x_axe[0]))
for i in x_axe[0]:
if isinstance(block_begin,DateTime):
comp_test1=block_begin.Date()==i
else:
comp_test1=block_begin==i
if comp_test1==True:
list_block.append([marge,(block_stop-block_begin)/(float(len(x_axe[0]))),0.75,{},0.25]) # 0.75(height) need to be defined
marge+=1/float(len(x_axe[0]))
if list_block!=[]: if list_block!=[]:
self.appendActivityBlock(list_block) self.appendActivityBlock(list_block)
if self.soon!=[]: if self.soon!=[]:
script_x=getattr(line_content,field.get_value('data_method'),None) soon_line= line_content.objectValues()
soon_line=script_x() print soon_line
indic=0 indic=0
for s in soon_line: while indic != len(soon_line):
self.soon[indic].insertActivityBlock(soon_line[indic],object_start_method_id,object_stop_method_id,x_axe,field) indic2=0
for s in soon_line:
if s.getTitle() == self.soon[indic].title:
self.soon[indic].insertActivityBlock(s,object_start_method_id,object_stop_method_id,
x_axe,field,info_center,info_topright,info_topleft,
info_backleft,info_backright)
indic+=1 indic+=1
#************************************************* #*************************************************
...@@ -987,11 +1151,11 @@ class Block: ...@@ -987,11 +1151,11 @@ class Block:
self.width=width self.width=width
self.height=height self.height=height
self.text=text self.text=text
self.content=content self.content=content #stores info block in a dictionnary
self.marge_top=marge_top self.marge_top=marge_top
# self.color=color need to be implemented in the future! # self.color=color need to be implemented in the future!
def render(self,line_width,line_height,portal_url,line_begin,y_axis_width): def render(self,line_width,line_height,portal_url,line_begin,y_axis_width,line):
"""used for inserting text in a block. one calculates how to organise the space. """used for inserting text in a block. one calculates how to organise the space.
one defines a width and height parameter (in pixel) which can be one defines a width and height parameter (in pixel) which can be
changed (depends on the size and the font used) changed (depends on the size and the font used)
...@@ -1003,7 +1167,6 @@ class Block: ...@@ -1003,7 +1167,6 @@ class Block:
font_height=10 font_height=10
font_width=6 font_width=6
info='' info=''
#checks if the block starts before the beginning of the line #checks if the block starts before the beginning of the line
if ((line_begin+self.begin*line_width) < line_begin): if ((line_begin+self.begin*line_width) < line_begin):
block_width=self.width+self.begin block_width=self.width+self.begin
...@@ -1013,16 +1176,13 @@ class Block: ...@@ -1013,16 +1176,13 @@ class Block:
block_width=block_width/line_width block_width=block_width/line_width
else: else:
block_width=self.width block_width=self.width
return self.buildInfoBlockBody(line_width,block_width,font_width,line_height,font_height,line,portal_url) # NEED TO BE TESTED !!!
return self.buildInfoBlockBody(line_width,block_width,font_width,line_height) # NEED TO BE TESTED !!!
def render_css(self,line_width,line_height,line,y_axis_width): def render_css(self,line_width,line_height,line,y_axis_width):
string='' string=''
font_height=10 font_height=10
font_width=6 font_width=6
line_begin=line.begin line_begin=line.begin
if ((line_begin+self.begin*line_width) < line_begin): #checks if the block starts before the beginning of the line if ((line_begin+self.begin*line_width) < line_begin): #checks if the block starts before the beginning of the line
block_width=self.width+self.begin block_width=self.width+self.begin
elif ((self.width*line_width)+(line_begin+self.begin*line_width)>line_width+y_axis_width): #checks if the block is too large for the end of the line. if it is the case, one cuts the block elif ((self.width*line_width)+(line_begin+self.begin*line_width)>line_width+y_axis_width): #checks if the block is too large for the end of the line. if it is the case, one cuts the block
...@@ -1031,13 +1191,9 @@ class Block: ...@@ -1031,13 +1191,9 @@ class Block:
else: else:
block_width=self.width block_width=self.width
return self.buildInfoBlockCss(font_height,line_height,block_width,line_width) # NEED TO BE TESTED!! return self.buildInfoBlockCss(font_height,line_height,block_width,line_width,font_width,line) # NEED TO BE TESTED!!
#************************************************************************
#case with five informations
#************************************************************************
def addInfoCenter(self,info): #add info in the top left corner of a block def addInfoCenter(self,info): #add info in the top left corner of a block
self.content['center']=info self.content['center']=info
...@@ -1055,135 +1211,145 @@ class Block: ...@@ -1055,135 +1211,145 @@ class Block:
# **************************************** # ****************************************
def buildInfoBlockBody(self,line_width,block_width,font_width,line_height): def buildInfoBlockBody(self,line_width,block_width,font_width,line_height,font_height,line,portal_url):
""" create the body of the html for displaying info inside a block""" """ create the body of the html for displaying info inside a block"""
displayed1=['center','topright','topleft','botleft','botright']
displayed1=displayed1[0:len(self.content)]
string='' string=''
for i in displayed1: already=0
displayed[i]=0 block_name=''
length_list_info=0
if len(self.content)==5: info=''
test_height= font_height<=((self.height*line_height)/3) for i in self.content:
test_width= ((len(self.content[i])*font_width)<=((block_width*line_width)/3)) if self.content[i]!=None:
if len(self.content)==4 or len(self.content)==3: length_list_info += 1
test_height= font_height<=((self.height*line_height)/2)
test_width= ((len(self.content[i])*font_width)<=((block_width*line_width)/2))
if len(self.content)==2:
test_height=font_height<=(self.height*line_height)
test_width= (len(self.content[i]*font_width)<=((block_width*line_width)/2))
if len(self.content)==1:
test_height= font_height<=(self.height*line_height)
test_width= (len(self.content[i]*font_width)<=(block_width*line_width))
for i in self.content: for i in self.content:
if test_height & test_width: if length_list_info==5:
string+='<div id=\"'+self.name+i+'\">'+ self.content[i] test_height= font_height<=((self.height*line_height)/3)
string+='</div>\n' test_width= ((len(self.content[i])*font_width)<=((block_width*line_width)/3))
displayed[i]=1 if length_list_info==4 or length_list_info==3:
#******************checks if we need to add interrogation.png if i=='topright':
if ((self.width*line_width>=15) & (self.height*line_height>=15)): print '--------'
order=displayed1 print self.name
for i in order: print line_height
if displayed[i]==0: test_height= font_height<=((self.height*line_height)/2)
info+=self.content[i]+'|' test_width= ((len(self.content[i])*font_width)<=((block_width*line_width)/2))
for i in order: if i=='topright':
if displayed[i]==0: print test_height
string+='<div id=\"'+self.name+i+'\" title=\"'+info+'\"><img src=\"'+portal_url+'/images/question.png\" height=\"15\" width=\"15\"> ' print test_width
string+='</div>\n' print '---------'
break
#****************** if length_list_info==2:
test_height=font_height<=(self.height*line_height)
test_width= (len(self.content[i]*font_width)<=((block_width*line_width)/2))
if length_list_info==1:
test_height= font_height<=(self.height*line_height)
test_width= (len(self.content[i]*font_width)<=(block_width*line_width))
if test_height & test_width:
string+='<div id=\"'+self.name+i+'\"><a href=\"'+portal_url+'/'+line.url+'\">'+ self.content[i]
string+='</a href></div>\n'
else: #one adds interogation.png
if ((self.width*line_width>=15) & (self.height*line_height>=15)):
info+=self.content[i]+'|'
if already==0 or i=='center':
block_name=self.name+i
already=1
if already==1:
string+='<div id=\"'+block_name+'\" title=\"'+info+'\"><a href=\"'+portal_url+'/'+line.url+'\"><img src=\"'+portal_url+'/images/question.png\" height=\"15\" width=\"15\"></a href> '
string+='</div>\n'
return string return string
#************************************************** #**************************************************
#******************************************* #*******************************************
def buildInfoBlockCss(self,font_height,line_height,block_width,line_width): def buildInfoBlockCss(self,font_height,line_height,block_width,line_width,font_width,line):
"""use for creating css code when one needs to add info inside a block""" """use for creating css code when one needs to add info inside a block"""
displayed1=['center','topright','topleft','botleft','botright']
displayed1=displayed1[0:len(self.content)]
string='' string=''
for i in displayed1: already=0
displayed[i]=0 list_info_length = 0 #counts number of info inside a block(between 0 and 5)
for j in self.content:
if len(self.content)==5: if self.content[j]!= None:
test_height= font_height<=((self.height*line_height)/3) list_info_length += 1
test_width= ((len(self.content[i])*font_width)<=((block_width*line_width)/3)) if list_info_length ==0:return ''
if len(self.content)==4 or len(self.content)==3:
test_height= font_height<=((self.height*line_height)/2) matrix = {('center',5):{'left':2,'top':2},('center',4):{'left':0,'top':0},('center',3):{'left':2,'top':2},('center',2):{'left':2,'top':2},
test_width= ((len(self.content[i])*font_width)<=((block_width*line_width)/2))
if len(self.content)==2:
test_height=font_height<=(self.height*line_height)
test_width= (len(self.content[i]*font_width)<=((block_width*line_width)/2))
if len(self.content)==1:
test_height= font_height<=(self.height*line_height)
test_width= (len(self.content[i]*font_width)<=(block_width*line_width))
elif len(self.content)==0:
return ''
matrix = {('center',5):{'left':2,'top':2},('center',4):{'left':0,'top':0},
('center',3):{'left':2,'top':2},('center',2):{'left':0,'top':2},
('center',1):{'left':2,'top':2}, ('center',1):{'left':2,'top':2},
('topright',5):{'left':1,'top':0},('topright',4):{'left':1,'top':0},('topright',3):{'left':1,'top':0},('topright',2):{'left':1,'top':2}, ('topright',5):{'left':1.01,'top':0},('topright',4):{'left':1.01,'top':0},('topright',3):{'left':1.01,'top':0},('topright',2):{'left':1.01,'top':2},('topright',1):{'left':1.01,'top':0},
('topleft',5):{'left':0,'top':0},('topleft',4):{'left':1,'top':1},('topleft',3):{'left':0,'top':0}, ('topleft',5):{'left':0,'top':0},('topleft',4):{'left':1,'top':1},('topleft',3):{'left':0,'top':0},('topleft',2):{'left':0,'top':0},('topleft',1):{'left':0,'top':0},
('botleft',5):{'left':0,'top':1},('topleft',4):{'left':0,'top':1}, ('botleft',5):{'left':0,'top':1},('botleft',4):{'left':0,'top':1},('botleft',3):{'left':0,'top':1},('botleft',2):{'left':0,'top':1},('botleft',1):{'left':0,'top':1},
('botright',5):{'left':1,'top':1} ('botright',5):{'left':1.01,'top':1.1},('botright',4):{'left':1.01,'top':1.1},('botright',3):{'left':1.01,'top':1.1},('botright',2):{'left':1.01,'top':1.1},('botright',1):{'left':1.01,'top':1.1}
} }
matrix_picture = {('center',5):{'left':2,'top':2},('center',4):{'left':0,'top':0}, matrix_picture = {('center',5):{'left':2,'top':2},('center',4):{'left':0,'top':0},
('center',3):{'left':2,'top':2},('center',2):{'left':0,'top':2},('center',1):{'left':2,'top':2}, ('center',3):{'left':2,'top':2},('center',2):{'left':0,'top':2},('center',1):{'left':2,'top':2},
('topright',5):{'left':1,'top':0},('topright',4):{'left':1,'top':0},('topright',3):{'left':1,'top':0},('topright',2):{'left':1,'top':2}, ('topright',5):{'left':1,'top':0},('topright',4):{'left':1,'top':0},('topright',3):{'left':1,'top':0},('topright',2):{'left':1,'top':2},('topright',1):{'left':0,'top':0},
('topleft',5):{'left':0,'top':0},('topleft',4):{'left':1,'top':1},('topleft',3):{'left':0,'top':0}, ('topleft',5):{'left':0,'top':0},('topleft',4):{'left':1,'top':1},('topleft',3):{'left':0,'top':0},('topleft',2):{'left':0,'top':0},('topleft',1):{'left':0,'top':0},
('botleft',5):{'left':0,'top':1},('topleft',4):{'left':0,'top':1}, ('botleft',5):{'left':0,'top':1},('topleft',4):{'left':0,'top':1},('botleft',3):{'left':0,'top':1},('botleft',2):{'left':0,'top':1},('botleft',1):{'left':0,'top':1},
('botright',5):{'left':1,'top':1} ('botright',5):{'left':1,'top':1},('botright',4):{'left':0,'top':0},('botright',3):{'left':0,'top':0},('botright',2):{'left':0,'top':0},('botright',1):{'left':1,'top':1}
} }
idx= 0
margin_left=0
margin_top=0
for i in self.content: for i in self.content:
for counter in range(1,5): matrix_data = matrix[(i,list_info_length)]
matrix_data = matrix[(i,counter)] left = matrix_data['left']
left = matrix_data['left'] top= matrix_data['top']
top= matrix_data['top'] if left == 0:
if left == 0: margin_left=0
margin_left=0 else:
else: margin_left = round(((block_width*line_width)/left)-(font_width*len(self.content[i]))/left)
margin_left = round(((block_width*line_width)/left)-(font_width*len(self.content[i]))/left) if top==0:
if top==0: margin_top=0
margin_top=0 else:
else: margin_top = round(((self.height*(line_height-10))/top)-(font_height/top))
margin_top = round(((self.height*line_height)/top)-(font_height/top))
if list_info_length==5:
if test_height & test_width: test_height= font_height<=((self.height*line_height)/3)
test_width= ((len(self.content[i])*font_width)<=((block_width*line_width)/3))
if list_info_length==4 or list_info_length==3:
if i=='topright':
print '********'
print self.name
print line_height
test_height= font_height<=((self.height*line_height)/2)
test_width= ((len(self.content[i])*font_width)<=((block_width*line_width)/2))
if i=='topright':
print test_height,test_width
print '********'
if list_info_length==2:
test_height=font_height<=(self.height*line_height)
test_width= (len(self.content[i]*font_width)<=((block_width*line_width)/2))
if list_info_length==1:
test_height= font_height<=(self.height*line_height)
test_width= (len(self.content[i]*font_width)<=(block_width*line_width))
if test_height & test_width:
string+='#'+self.name+i+'{position:absolute;\nmargin-left:'+str(margin_left)+'px;\nmargin-top:'+str(margin_top)+'px;\n}\n' string+='#'+self.name+i+'{position:absolute;\nmargin-left:'+str(margin_left)+'px;\nmargin-top:'+str(margin_top)+'px;\n}\n'
displayed[i]=1 line.addBlockInfo(self.name+i)
line.addBlockInfo(self.name+i) else: # we add question.png because the size of the block is not enough
if ((self.width*line_width>=15) & (self.height*line_height>=15)):
#******************checks if we need to add interrogation.png matrix_data= matrix_picture[(i,list_info_length)]
if ((block_width*line_width>=15) & (self.height*line_height>=15)):
order=('center','topright','topleft','botleft','botright')
for i in order:
for counter in range(1,5):
matrix_data= matrix [(i,counter)]
left = matrix_data['left'] left = matrix_data['left']
top = matrix_data['top'] top = matrix_data['top']
if left == 0: if left == 0:
margin_left=0 margin_left=0
else: else:
margin_left=round(((block_width*line_width)/left)-(15/left)) margin_left=round(((block_width*line_width)/left)-(15/left))
if top==0: if top==0:
margin_top=0 margin_top=0
else: else:
margin_top=round(((self.height*line_height)/top)-(15/top)) margin_top=round(((self.height*(line_height-10))/top)-(15/top))
margin_top = round(((self.height*line_height)/top)-(font_height/top)) if i=='center' and list_info_length==3:
if i=='center' & counter==3: margin_left=round(((block_width*line_width)/left)-(15/left))
margin_left=round(((block_width*line_width)/left)-(font_width*len(self.content[i]))/left) margin_top=round(((self.height*(line_height-10))/top)-(font_height/top))
margin_top=round(((self.height*line_height)/top)-(font_height/top)) if i=='center' and list_info_length==2:
if i=='center' & counter==2: margin_top=round(((self.height*(line_height-10))/top)-(font_height/top))
margin_top=round(((self.height*line_height)/top)-(font_height/top)) if already==0 or i=='center':
string+='#'+self.name+i+'{position:absolute;\nmargin-left:'+str(margin_left)+'px;\nmargin-top:'+str(margin_top)+'0px;\n}' string+='#'+self.name+i+'{position:absolute;\nmargin-left:'+str(margin_left)+'px;\nmargin-top:'+str(margin_top)+'0px;\n}'
line.addBlockInfo(self.name+i) block_disp=self.name+i
already=1
return string return string
##################################################### #####################################################
...@@ -1206,5 +1372,4 @@ class PlanningBox(ZMIField): ...@@ -1206,5 +1372,4 @@ class PlanningBox(ZMIField):
def render_css(self, value=None, REQUEST=None): def render_css(self, value=None, REQUEST=None):
return self.widget.render_css(self,'',value,REQUEST) return self.widget.render_css(self,'',value,REQUEST)
\ No newline at end of file
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