| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <head> | 2 <head> |
| 3 <title>{% block title %}{% endblock %} Failure</title> | 3 <title>{% block title %}{% endblock %} Failure</title> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <link rel="stylesheet" href="/common.css"> | 5 <link rel="stylesheet" href="/common.css"> |
| 6 <style> | 6 <style> |
| 7 .running { | 7 .running { |
| 8 color: #666666; | 8 color: #666666; |
| 9 background-color: #fffc6c; | 9 background-color: #fffc6c; |
| 10 border-color: #c5c56d; | 10 border-color: #c5c56d; |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 {% block result_tables %}{% endblock result_tables %} | 238 {% block result_tables %}{% endblock result_tables %} |
| 239 {% endif %} | 239 {% endif %} |
| 240 | 240 |
| 241 {% if analysis_completed %} | 241 {% if analysis_completed %} |
| 242 <br> | 242 <br> |
| 243 <div> | 243 <div> |
| 244 <div id="triage_cls"> | 244 <div id="triage_cls"> |
| 245 {% if suspected_cls %} | 245 {% if suspected_cls %} |
| 246 <b>Feedback on Findit result:</b> | 246 <b>Feedback on Findit result:</b> |
| 247 <table> | 247 <table> |
| 248 <tr><th>CL</th><th>Confidence</th><th>Feedback</th></tr> |
| 248 {% for suspected_cl in suspected_cls %} | 249 {% for suspected_cl in suspected_cls %} |
| 249 <tr> | 250 <tr> |
| 250 <td>{{suspected_cl.repo_name}} <a href="{{suspected_cl.url}}"
>{{ suspected_cl.commit_position or suspected_cl.revision}}</a></td> | 251 <td>{{ suspected_cl.repo_name }} <a href="{{ suspected_cl.url
}}">{{ suspected_cl.commit_position or suspected_cl.revision }}</a></td> |
| 252 <td>{{ suspected_cl.confidence }}</td> |
| 251 <td> | 253 <td> |
| 252 {% set cl_info = suspected_cl.repo_name + '/' + suspected_cl.rev
ision %} | 254 {% set cl_info = suspected_cl.repo_name + '/' + suspected_cl.rev
ision %} |
| 253 {% if suspected_cl.status == 0 %} | 255 {% if suspected_cl.status == 0 %} |
| 254 <input type="radio" name="{{ cl_info }}" value="0" checked="
checked" onchange="triageSuspectedCL(this)">Correct | 256 <input type="radio" name="{{ cl_info }}" value="0" checked="
checked" onchange="triageSuspectedCL(this)">Correct |
| 255 <input type="radio" name="{{ cl_info }}" value="1" onchange=
"triageSuspectedCL(this)">Inorrect | 257 <input type="radio" name="{{ cl_info }}" value="1" onchange=
"triageSuspectedCL(this)">Inorrect |
| 256 {% elif suspected_cl.status == 1 %} | 258 {% elif suspected_cl.status == 1 %} |
| 257 <input type="radio" name="{{ cl_info }}" value="0" onchange=
"triageSuspectedCL(this)">Correct | 259 <input type="radio" name="{{ cl_info }}" value="0" onchange=
"triageSuspectedCL(this)">Correct |
| 258 <input type="radio" name="{{ cl_info }}" value="1" checked="
checked" onchange="triageSuspectedCL(this)">Inorrect | 260 <input type="radio" name="{{ cl_info }}" value="1" checked="
checked" onchange="triageSuspectedCL(this)">Inorrect |
| 259 {% else %} | 261 {% else %} |
| 260 <input type="radio" name="{{ cl_info }}" value="0" onchange=
"triageSuspectedCL(this)">Correct | 262 <input type="radio" name="{{ cl_info }}" value="0" onchange=
"triageSuspectedCL(this)">Correct |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 appearing in the failure log. (eg: file.h was changed and | 317 appearing in the failure log. (eg: file.h was changed and |
| 316 file_unittest.cc or file_impl.cc appeared in the log.)</li> | 318 file_unittest.cc or file_impl.cc appeared in the log.)</li> |
| 317 <li>1: The CL rolled a dependency within src/DEPS and a file of that | 319 <li>1: The CL rolled a dependency within src/DEPS and a file of that |
| 318 dependency appears in the failure log. (eg: third_party/dep | 320 dependency appears in the failure log. (eg: third_party/dep |
| 319 was changed in src/DEPS and third_party/dep/f.cpp appeared | 321 was changed in src/DEPS and third_party/dep/f.cpp appeared |
| 320 in the log.)</li> | 322 in the log.)</li> |
| 321 </ul> | 323 </ul> |
| 322 (More rules will be added when implemented.) | 324 (More rules will be added when implemented.) |
| 323 </div> | 325 </div> |
| 324 </body> | 326 </body> |
| OLD | NEW |