| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 <script src='https://chromium-build.appspot.com/p/chromium/trooper
.js'></script> | 206 <script src='https://chromium-build.appspot.com/p/chromium/trooper
.js'></script> |
| 207 </td> | 207 </td> |
| 208 </tr> | 208 </tr> |
| 209 <tr> | 209 <tr> |
| 210 <td style="text-align: right;"> | 210 <td style="text-align: right;"> |
| 211 <b>Masters:</b> | 211 <b>Masters:</b> |
| 212 </td> | 212 </td> |
| 213 <td colspan="2"> | 213 <td colspan="2"> |
| 214 <script> | 214 <script> |
| 215 document.write([ | 215 document.write([ |
| 216 a("../tryserver.chromium.gpu/waterfall", "tryserver.chromium.gpu
", ""), | |
| 217 a("../tryserver.chromium.linux/waterfall", "tryserver.chromium.l
inux", ""), | 216 a("../tryserver.chromium.linux/waterfall", "tryserver.chromium.l
inux", ""), |
| 218 a("../tryserver.chromium.mac/waterfall", "tryserver.chromium.mac
", ""), | 217 a("../tryserver.chromium.mac/waterfall", "tryserver.chromium.mac
", ""), |
| 219 a("../tryserver.chromium.win/waterfall", "tryserver.chromium.win
", ""), | 218 a("../tryserver.chromium.win/waterfall", "tryserver.chromium.win
", ""), |
| 220 a("../tryserver.blink/waterfall", "tryserver.blink", ""), | 219 a("../tryserver.blink/waterfall", "tryserver.blink", ""), |
| 221 aView("../chromium.fyi", "", "chromium.fyi"), | 220 aView("../chromium.fyi", "", "chromium.fyi"), |
| 222 aView("../chromium.memory", "", "chromium.memory"), | 221 aView("../chromium.memory", "", "chromium.memory"), |
| 223 aView("../chromium.memory.fyi", "", "chromium.memory.fyi"), | 222 aView("../chromium.memory.fyi", "", "chromium.memory.fyi"), |
| 224 aView("../chromium.chromiumos", "", "chromium.chromiumos"), | 223 aView("../chromium.chromiumos", "", "chromium.chromiumos"), |
| 225 aView("../chromiumos", "", "chromiumos"), | 224 aView("../chromiumos", "", "chromiumos"), |
| 226 aView("../client.nacl", "", "client.nacl"), | 225 aView("../client.nacl", "", "client.nacl"), |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 489 </center> | 488 </center> |
| 490 | 489 |
| 491 </div> | 490 </div> |
| 492 {% endblock header %} | 491 {% endblock header %} |
| 493 | 492 |
| 494 {% block footer %} | 493 {% block footer %} |
| 495 | 494 |
| 496 {{ super() }} | 495 {{ super() }} |
| 497 {# <p>Debug info: {{ debuginfo }}</p> #} | 496 {# <p>Debug info: {{ debuginfo }}</p> #} |
| 498 {% endblock %} | 497 {% endblock %} |
| OLD | NEW |