Commit c6f988c4 authored by Benjamin Blanc's avatar Benjamin Blanc

erp5_bootstrap: Trying to correct template.read() bug

parent 5e5300ee
...@@ -64,50 +64,47 @@ if scalability: ...@@ -64,50 +64,47 @@ if scalability:
print "Scalability case" print "Scalability case"
# Here check if configurator is available # Here check if configurator is available
configurator_available = False configurator_available = False
cancel_url = "https%3A%2F%2F192.168.241.110%3A2153%2Ferp5%2FERP5Site_viewCheckConsistency"
if not configurator_available: if not configurator_available:
if is_scalability_case: import os
import os # Fix site consistency
# Fix site consistency if protocol == 'https':
if protocol == 'https': zope_connection = httplib.HTTPSConnection(host)
zope_connection = httplib.HTTPSConnection(host) elif protocol == 'http':
elif protocol == 'http': zope_connection = httplib.HTTPConnection(host)
zope_connection = httplib.HTTPConnection(host) else:
else: raise ValueError("Protocol not implemented")
raise ValueError("Protocol not implemented") zope_connection.request(
zope_connection.request( 'POST', '/ERP5Site_updateConfigurationConsistency',
'POST', '/ERP5Site_updateConfigurationConsistency', urllib.urlencode({
urllib.urlencode({ 'update_method': 'ERP5Site_updateConfigurationConsistency',
'update_method': 'ERP5Site_updateConfigurationConsistency', 'dialog_id':'ERP5Site_viewCheckConsistency',
'dialog_id':'ERP5Site_viewCheckConsistency', 'dialog_method':'ERP5Site_fixConfigurationConsistency',
'cancel_url':cancel_url, 'dialog_category':'None',
'dialog_method':'ERP5Site_fixConfigurationConsistency', 'object_path':'/erp5',
'dialog_category':'None', 'form_id':'view',
'object_path':'%2Ferp5', 'select_favorite':'',
'form_id':'view', 'select_module':'',
'select_favorite':'', 'select_language':'en',
'select_module':'', 'all_languages':'1',
'select_language':'en', 'field_your_search_text':'Search',
'all_languages':'1', 'default_field_your_enable_alarm;int':'0',
'field_your_search_text':'Search', 'field_your_enable_alarm':'on',
'default_field_your_enable_alarm%3Aint':'0', 'list_selection_name':'erp5_site_check_consistency_selection',
'field_your_enable_alarm':'on', 'listbox_list_selection_name':'erp5_site_check_consistency_selection',
'list_selection_name':'erp5_site_check_consistency_selection', 'md5_object_uid_list':'d751713988987e9331980363e24189ce',
'listbox_list_selection_name':'erp5_site_check_consistency_selection', 'listbox_title':'',
'md5_object_uid_list':'d751713988987e9331980363e24189ce', 'uids;list':'598',
'listbox_title':'', 'listbox_uid;list':'598',
'uids%3Alist':'598', 'listbox_uid;list':'595',
'listbox_uid%3Alist':'598', 'listbox_uid;list':'599',
'listbox_uid%3Alist':'595', 'Base_callDialogMethod;method':'',
'listbox_uid%3Alist':'599', }),
'Base_callDialogMethod%3Amethod':'', headers=header_dict)
}),
headers=header_dict) print "POST sent"
result = zope_connection.getresponse()
print "POST sent" print result.read()
result = zope_connection.getresponse() print "POST read"
print result.read()
print "POST read"
# Here check if configurator is available # Here check if configurator is available
......
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