|
|
|
@ -529,7 +529,7 @@ def render_html_report(client_langs, server_langs, resultset, |
|
|
|
|
html_str = ('%s<h2>Cloud to Prod</h2>\n' |
|
|
|
|
'<table style=\"width:100%%\" border=\"1\">\n' |
|
|
|
|
'<tr bgcolor=\"#00BFFF\">\n' |
|
|
|
|
'<th/>\n') % html_str |
|
|
|
|
'<th>Client languages ►</th>\n') % html_str |
|
|
|
|
for client_lang in sorted_client_langs: |
|
|
|
|
html_str = '%s<th>%s\n' % (html_str, client_lang) |
|
|
|
|
html_str = '%s</tr>\n' % html_str |
|
|
|
@ -549,7 +549,8 @@ def render_html_report(client_langs, server_langs, resultset, |
|
|
|
|
html_str = ('%s<h2>%s</h2>\n' |
|
|
|
|
'<table style=\"width:100%%\" border=\"1\">\n' |
|
|
|
|
'<tr bgcolor=\"#00BFFF\">\n' |
|
|
|
|
'<th/>\n') % (html_str, test_case) |
|
|
|
|
'<th>Client languages ►<br/>' |
|
|
|
|
'Server languages ▼</th>\n') % (html_str, test_case) |
|
|
|
|
for client_lang in sorted_client_langs: |
|
|
|
|
html_str = '%s<th>%s\n' % (html_str, client_lang) |
|
|
|
|
html_str = '%s</tr>\n' % html_str |
|
|
|
|