Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: templates/console.html

Issue 10448057: Add refresh support to the console page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/chromium-build
Patch Set: Created 8 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « templates/base.html ('k') | templates/merger.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/console.html
diff --git a/templates/console.html b/templates/console.html
deleted file mode 100644
index f4b24ae3a87ff863cb2494d6713cd661fbd83bf4..0000000000000000000000000000000000000000
--- a/templates/console.html
+++ /dev/null
@@ -1,92 +0,0 @@
-<table width="96%" class="ConsoleData">
-
-{#- List the master names in the console. -#}
-<tr>
- <td width="1%"></td>
- <td width="1%"></td>
- {%- for master in data.masters -%}
- {%- if loop.first -%}
- {%- set extraclass = 'first' -%}
- {%- elif loop.last -%}
- {%- set extraclass = 'last' -%}
- {%- else -%}
- {%- set extraclass = '' -%}
- {%- endif -%}
- <td class='DevStatus Alt {{ extraclass }} '
- colspan="{{ data.category_order[master]|length }}">
- {%- set master_pretty_name = master -%}
- {%- if master == 'chromium.main' -%}
- {%- set master_pretty_name = 'chromium' -%}
- {%- endif -%}
- <a href="http://build.chromium.org/p/{{master_pretty_name}}/console"
- target="_blank">{{ master_pretty_name }}</a>
- </td>
- {%- endfor -%}
-</tr>
-<tr class='DevStatusSpacing'></tr>
-
-{#- List the categories in the console. -#}
-<tr>
- <td width="1%"></td>
- <td width="1%"></td>
- {% for master in data.masters -%}
- {%- for category in data.category_order[master] -%}
- <td class='DevSlave'>{{ category }}</td>
- {% endfor -%}
- {%- endfor -%}
-</tr>
-
-{#- List the builder statuses in the console. -#}
-<tr>
- <td width="1%"></td>
- <td width="1%"></td>
- {% for master in data.masters -%}
- {%- for category in data.category_order[master] -%}
- <td class='DevSlave Alt '>
- {{ data.category_data[master][category] }}
- </td>
- {%- endfor -%}
- {%- endfor %}
-</tr>
-
-{#- List the revision data in the console. -#}
-{% for row in data.row_orderedkeys -%}
- {%- set extraclass = loop.cycle('', 'Alt') -%}
- <tr>
- <td width="1%" class="DevRev DevRevCollapse {{ extraclass }}">
- <a href="{{ data.row_data[row]['revlink']|escape }}">{{ row }}</a>
- </td>
- <td width="1%" class="DevName {{extraclass}}">
- {{ data.row_data[row]['who'] }}
- </td>
- {%- for master in data.masters -%}
- {% for category in data.category_order[master] -%}
- <td class='DevStatus {{extraclass}}'>
- {%- if master in data.row_data[row]['status'] -%}
- {{ data.row_data[row]['status'][master][category] }}
- {%- else -%}
- {{ data.category_data[master][category]|notstarted }}
- {%- endif -%}
- </td>
- {%- endfor %}
- {%- endfor -%}
- </tr>
-
- <tr>
- <td colspan="{{ 2 + data.category_count }}"
- class="DevComment {{ extraclass }}">
- {{ data.row_data[row]['comment'] }}
- </td>
- </tr>
-
- {%- if 'details' in data.row_data[row] -%}
- <tr>
- <td colspan="{{ 2 + data.category_count }}"
- class="DevDetails {{ extraclass }}">
- {{ data.row_data[row]['details'] }}
- </td>
- </tr>
- {%- endif -%}
- <tr class='DevStatusSpacing'></tr>
-{%- endfor %}
-</table>
« no previous file with comments | « templates/base.html ('k') | templates/merger.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698