| OLD | NEW |
| 1 {%- block doctype -%} | 1 {%- block doctype -%} |
| 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" | 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" |
| 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | 3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
| 4 {% endblock %} | 4 {% endblock %} |
| 5 <!-- Copied and modified from: | 5 <!-- Copied and modified from: |
| 6 http://src.chromium.org/viewvc/chrome/trunk/tools/build/third_party/buildbot_8_4
p1/buildbot/status/web/templates/layout.html?revision=89637&content-type=text/pl
ain | 6 http://src.chromium.org/viewvc/chrome/trunk/tools/build/third_party/buildbot_8_4
p1/buildbot/status/web/templates/layout.html?revision=89637&content-type=text/pl
ain |
| 7 --> | 7 --> |
| 8 <html xmlns="http://www.w3.org/1999/xhtml"> | 8 <html xmlns="http://www.w3.org/1999/xhtml"> |
| 9 <head> | 9 <head> |
| 10 {% block head %} | 10 {% block head %} |
| (...skipping 673 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 <div style="float:right; width: 195px;"><ul style="margin: 0px 0px 0px
25px; padding:0;"><li><a href="http://skia-tree-status.appspot.com/redirect/reb
aseline-server/static/view.html#/view.html?resultsToLoad=/results/failures" targ
et="_blank">Recent GM Failures</a><br/></li></ul></div> | 684 <div style="float:right; width: 195px;"><ul style="margin: 0px 0px 0px
25px; padding:0;"><li><a href="http://skia-tree-status.appspot.com/redirect/reb
aseline-server/static/view.html#/view.html?resultsToLoad=/results/failures" targ
et="_blank">Recent GM Failures</a><br/></li></ul></div> |
| 685 <div style="float:right; width: 195px;"><ul style="margin: 0px 0px 0px
25px; padding:0;"><li><a href="http://chromium-skia-gm.commondatastorage.google
apis.com/depsroll.html" target="_blank">Current DEPS roll attempt</a><br/></li><
/ul></div> | 685 <div style="float:right; width: 195px;"><ul style="margin: 0px 0px 0px
25px; padding:0;"><li><a href="http://chromium-skia-gm.commondatastorage.google
apis.com/depsroll.html" target="_blank">Current DEPS roll attempt</a><br/></li><
/ul></div> |
| 686 </div> | 686 </div> |
| 687 | 687 |
| 688 <div style="text-align:center; width: 50%; margin-left: 25%; margin-righ
t: 25%"> | 688 <div style="text-align:center; width: 50%; margin-left: 25%; margin-righ
t: 25%"> |
| 689 <div id="heading" style="font-size:3.5em; text-align:center;">Skia Bui
ldbots ({{ active_master_name }})</div> | 689 <div id="heading" style="font-size:3.5em; text-align:center;">Skia Bui
ldbots ({{ active_master_name }})</div> |
| 690 <div> | 690 <div> |
| 691 <p> | 691 <p> |
| 692 Skia Build Masters: | 692 Skia Build Masters: |
| 693 <table> | 693 <table> |
| 694 <tr id="results_summary_client_skia"> |
| 695 <td style="text-align: right"><a href="http://build.chromium.org/p
/client.skia/console">client.skia</a></td> |
| 696 <td colspan="1000"><iframe width="100%" height="20" frameborder="0
" scrolling="no" src="http://build.chromium.org/p/client.skia/horizontal_one_box
_per_builder"></iframe></td> |
| 697 </tr> |
| 694 {% for master in masters %} | 698 {% for master in masters %} |
| 695 {% if not (not is_internal_view and master['name'] == 'PrivateSkia')
%} | 699 {% if not (not is_internal_view and master['name'] == 'PrivateSkia')
%} |
| 696 <tr id="results_summary_{{ master['name'] }}"> | 700 <tr id="results_summary_{{ master['name'] }}"> |
| 697 <td style="text-align: right"><a href="http://{{ master['host']
}}:{{ master['internal_port'] if is_internal_view else master['external_port'] }
}/console">{{ master['name'] }}</a></td> | 701 <td style="text-align: right"><a href="http://{{ master['host']
}}:{{ master['internal_port'] if is_internal_view else master['external_port'] }
}/console">{{ master['name'] }}</a></td> |
| 698 </tr> | 702 </tr> |
| 699 {% endif %} | 703 {% endif %} |
| 700 {% endfor %} | 704 {% endfor %} |
| 701 </table> | 705 </table> |
| 702 </div> | 706 </div> |
| 703 </p> | 707 </p> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 <br/> | 746 <br/> |
| 743 Page built: <b>{{ time }}</b> ({{ tz }}) | 747 Page built: <b>{{ time }}</b> ({{ tz }}) |
| 744 </div> | 748 </div> |
| 745 {% endblock -%} | 749 {% endblock -%} |
| 746 <div id="builderTooltip" class="BuilderTooltip RoundedRect" style="display:
none;" onmouseout="hideBuilderTooltip(event)"></div> | 750 <div id="builderTooltip" class="BuilderTooltip RoundedRect" style="display:
none;" onmouseout="hideBuilderTooltip(event)"></div> |
| 747 <script language="JavaScript"> | 751 <script language="JavaScript"> |
| 748 init(); | 752 init(); |
| 749 </script> | 753 </script> |
| 750 </body> | 754 </body> |
| 751 </html> | 755 </html> |
| OLD | NEW |