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

Side by Side Diff: milo/appengine/frontend/expectations/swarming.build-build-exception.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 Failed 8 Failed
9 9
10 - 10 -
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 70
71 71
72 72
73 </ul> 73 </ul>
74 74
75 75
76 76
77 77
78 78
79 <h2>Steps and Logfiles:</h2> 79 <h2>Steps and Logfiles:</h2>
80 <input type="checkbox" id="showHidden"> 80 Show:
81 <label for="showHidden">Show hidden <span id="numHidden"></span></label> 81 <input type="radio" name="hider" id="showAll">
82 <ol id="steps" class="hide"> 82 <label for="showAll">All</label>
83 <input type="radio" name="hider" id="showStandard" checked>
84 <label for="showStandard">Standard</label>
85 <input type="radio" name="hider" id="showInteresting">
86 <label for="showInteresting">Interesting Only</label>
87 <ol id="steps" class="standard">
83 88
84 89
85 90
86 <li class="verbosity-Interesting"> 91 <li class="verbosity-Interesting">
87 <div class="status-Failure result"> 92 <div class="status-Failure result">
88 <b>Steps</b> 93 <b>Steps</b>
89 <span style="float:right" 94 <span style="float:right"
90 class="duration" 95 class="duration"
91 data-starttime="2016-03-14T10:00:01Z" 96 data-starttime="2016-03-14T10:00:01Z"
92 data-endtime="2016-03-14T11:00:18Z"> 97 data-endtime="2016-03-14T11:00:18Z">
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 </td></tr> 284 </td></tr>
280 </table> 285 </table>
281 286
282 </div> 287 </div>
283 288
284 289
285 </div> 290 </div>
286 </div> 291 </div>
287 <script language="javascript"> 292 <script language="javascript">
288 $(document).ready(function() { 293 $(document).ready(function() {
289 var check = function(checked) { 294
290 var things = $("#steps"); 295 var check = function(className) {
291 if (checked) { 296 $("#steps").removeClass("all standard interesting").addClass(className)
292 $("#steps").removeClass("hide"); 297 }
293 } else { 298
294 $("#steps").addClass("hide"); 299 $("#showInteresting").click(function(e) {
300 check("interesting");
301 });
302 $("#showStandard").click(function(e) {
303 check("standard");
304 });
305 $("#showAll").click(function(e) {
306 check("all");
307 });
308
309 $("input[name='hider']").each(function(){
310 if ($(this).prop("checked")) {
311 $(this).click();
295 } 312 }
296 var numHidden = $(".verbosity-Hidden").length;
297 if (numHidden > 0) {
298 $("#numHidden").text("(" + numHidden + " hidden)");
299 } else {
300 $("#numHidden").text("");
301 }
302 };
303
304 check($("#showHidden").is(":checked"));
305 $("#showHidden").click(function(e) {
306 check($(this).is(":checked"));
307 }); 313 });
308 }); 314 });
309 </script> 315 </script>
310 316
311 <footer> 317 <footer>
312 <hr> 318 <hr>
313 <a href="https://github.com/luci">luci</a>, 319 <a href="https://github.com/luci">luci</a>,
314 working for the <a href="https://chromium.org/">Chromium</a> project.<br> 320 working for the <a href="https://chromium.org/">Chromium</a> project.<br>
315 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b> 321 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu rday, 03-Feb-01 04:05:06 UTC</span></b>
316 </footer> 322 </footer>
(...skipping 20 matching lines...) Expand all
337 <script> 343 <script>
338 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){ 344 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio n(){
339 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o), 345 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme nt(o),
340 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m) 346 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo re(a,m)
341 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga'); 347 })(window,document,'script','https://www.google-analytics.com/analytics. js','ga');
342 348
343 ga('create', 'UA-12345-01', 'auto'); 349 ga('create', 'UA-12345-01', 'auto');
344 ga('send', 'pageview'); 350 ga('send', 'pageview');
345 </script> 351 </script>
346 352
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698