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

Side by Side Diff: milo/appengine/frontend/expectations/swarming.build-build-timeout.html

Issue 2886353002: Milo: Add an option to hide green steps (Closed)
Patch Set: Retrain Created 3 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 unified diff | Download patch
OLDNEW
1 1
2 <!DOCTYPE html> 2 <!DOCTYPE html>
3 3
4 <html lang="en"> 4 <html lang="en">
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title> 6 <title>
7 7
8 Infra Failure 8 Infra Failure
9 9
10 - 10 -
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 Recipe: <a href="https://chromium.googlesource.com/chromium/tools/buil d/&#43;/master/">infra/infra_continuous</a> 87 Recipe: <a href="https://chromium.googlesource.com/chromium/tools/buil d/&#43;/master/">infra/infra_continuous</a>
88 </li> 88 </li>
89 89
90 </ul> 90 </ul>
91 91
92 92
93 93
94 94
95 95
96 <h2>Steps and Logfiles:</h2> 96 <h2>Steps and Logfiles:</h2>
97 <input type="checkbox" id="showHidden"> 97 Show:
98 <label for="showHidden">Show hidden <span id="numHidden"></span></label> 98 <input type="radio" name="hider" id="showAll">
99 <ol id="steps" class="hide"> 99 <label for="showAll">All</label>
100 <input type="radio" name="hider" id="showStandard" checked>
101 <label for="showStandard">Standard</label>
102 <input type="radio" name="hider" id="showInteresting">
103 <label for="showInteresting">Interesting Only</label>
104 <ol id="steps" class="standard">
100 105
101 106
102 107
103 <li class="verbosity-Interesting"> 108 <li class="verbosity-Interesting">
104 <div class="status-InfraFailure result"> 109 <div class="status-InfraFailure result">
105 <b>Steps</b> 110 <b>Steps</b>
106 <span style="float:right" 111 <span style="float:right"
107 class="duration" 112 class="duration"
108 data-starttime="2016-03-14T10:00:01Z" 113 data-starttime="2016-03-14T10:00:01Z"
109 data-endtime="2016-03-14T11:00:18Z"> 114 data-endtime="2016-03-14T11:00:18Z">
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
244 </td></tr> 249 </td></tr>
245 </table> 250 </table>
246 251
247 </div> 252 </div>
248 253
249 254
250 </div> 255 </div>
251 </div> 256 </div>
252 <script language="javascript"> 257 <script language="javascript">
253 $(document).ready(function() { 258 $(document).ready(function() {
254 var check = function(checked) { 259
255 var things = $("#steps"); 260 var check = function(className) {
256 if (checked) { 261 $("#steps").removeClass("all standard interesting").addClass(className)
257 $("#steps").removeClass("hide"); 262 }
258 } else { 263
259 $("#steps").addClass("hide"); 264 $("#showInteresting").click(function(e) {
265 check("interesting");
266 });
267 $("#showStandard").click(function(e) {
268 check("standard");
269 });
270 $("#showAll").click(function(e) {
271 check("all");
272 });
273
274 $("input[name='hider']").each(function(){
275 if ($(this).prop("checked")) {
276 $(this).click();
260 } 277 }
261 var numHidden = $(".verbosity-Hidden").length;
262 if (numHidden > 0) {
263 $("#numHidden").text("(" + numHidden + " hidden)");
264 } else {
265 $("#numHidden").text("");
266 }
267 };
268
269 check($("#showHidden").is(":checked"));
270 $("#showHidden").click(function(e) {
271 check($(this).is(":checked"));
272 }); 278 });
273 }); 279 });
274 </script> 280 </script>
275 281
276 <footer> 282 <footer>
277 <hr> 283 <hr>
278 <a href="https://github.com/luci">luci</a>, 284 <a href="https://github.com/luci">luci</a>,
279 working for the <a href="https://chromium.org/">Chromium</a> project.<br> 285 working for the <a href="https://chromium.org/">Chromium</a> project.<br>
280 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b> 286 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b>
281 </footer> 287 </footer>
(...skipping 20 matching lines...) Expand all
302 <script> 308 <script>
303 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){ 309 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){
304 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o), 310 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o),
305 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m) 311 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m)
306 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga'); 312 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga');
307 313
308 ga('create', 'UA-12345-01', 'auto'); 314 ga('create', 'UA-12345-01', 'auto');
309 ga('send', 'pageview'); 315 ga('send', 'pageview');
310 </script> 316 </script>
311 317
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698