| OLD | NEW |
| 1 {% extends "layout.html" %} | 1 {% extends "layout.html" %} |
| 2 {% from "tree_status.html" import treestatus %} | 2 {% from "tree_status.html" import treestatus %} |
| 3 | 3 |
| 4 {% block header -%} | 4 {% block header -%} |
| 5 {{ super() }} | 5 {{ super() }} |
| 6 <hr/> | 6 <hr/> |
| 7 <script> | 7 <script> |
| 8 /** | 8 /** |
| 9 * Pseudo namespace for chromium - keep it short because we are in a very | 9 * Pseudo namespace for chromium - keep it short because we are in a very |
| 10 * narrow scope for this file. | 10 * narrow scope for this file. |
| (...skipping 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 'Webkit', 'colspan=6'))))))); | 479 'Webkit', 'colspan=6'))))))); |
| 480 | 480 |
| 481 document.write(tr( | 481 document.write(tr( |
| 482 HTMLBaseBar(c.status_perf, c.bar_perf, c.perf, | 482 HTMLBaseBar(c.status_perf, c.bar_perf, c.perf, |
| 483 'Perf', 'width="75%"', '') + | 483 'Perf', 'width="75%"', '') + |
| 484 HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr, | 484 HTMLBaseBar(c.status_lkgr, c.bar_lkgr, c.lkgr, |
| 485 'LKGR', 'width="25%"', 'id="LKGRLink"'))); | 485 'LKGR', 'width="25%"', 'id="LKGRLink"'))); |
| 486 | 486 |
| 487 document.write(tr( | 487 document.write(tr( |
| 488 HTMLBaseBar(c.status_memory_full, c.bar_memory_full, c.memory_fu
ll, | 488 HTMLBaseBar(c.status_memory_full, c.bar_memory_full, c.memory_fu
ll, |
| 489 'Memory<br>FYI', 'width="100%" colspan=6', ''))); | 489 'Memory<br>Full', 'width="100%" colspan=6', ''))); |
| 490 | 490 |
| 491 document.write(tr(td( | 491 document.write(tr(td( |
| 492 'colspan=4', | 492 'colspan=4', |
| 493 table( | 493 table( |
| 494 'width="100%"', | 494 'width="100%"', |
| 495 tr( | 495 tr( |
| 496 HTMLBaseBar(c.status_gpu, c.bar_gpu, c.gpu, | 496 HTMLBaseBar(c.status_gpu, c.bar_gpu, c.gpu, |
| 497 'GPU', 'width="50%"', '') + | 497 'GPU', 'width="50%"', '') + |
| 498 HTMLBaseBar(c.status_gpu_fyi, c.bar_gpu_fyi, c.gpu_fyi, | 498 HTMLBaseBar(c.status_gpu_fyi, c.bar_gpu_fyi, c.gpu_fyi, |
| 499 'GPU FYI', 'width="50%"', '')))))); | 499 'GPU FYI', 'width="50%"', '')))))); |
| 500 | 500 |
| 501 setTimeout('DisplayLKGR()', 100); | 501 setTimeout('DisplayLKGR()', 100); |
| 502 </script> | 502 </script> |
| 503 </table> | 503 </table> |
| 504 </td> | 504 </td> |
| 505 </tr> | 505 </tr> |
| 506 </table> | 506 </table> |
| 507 </center> | 507 </center> |
| 508 | 508 |
| 509 </div> | 509 </div> |
| 510 {% endblock header %} | 510 {% endblock header %} |
| 511 | 511 |
| 512 {% block footer %} | 512 {% block footer %} |
| 513 | 513 |
| 514 {{ super() }} | 514 {{ super() }} |
| 515 {# <p>Debug info: {{ debuginfo }}</p> #} | 515 {# <p>Debug info: {{ debuginfo }}</p> #} |
| 516 {% endblock %} | 516 {% endblock %} |
| OLD | NEW |