OLD | NEW |
| (Empty) |
1 | |
2 <!DOCTYPE html> | |
3 | |
4 <html lang="en"> | |
5 <meta charset="utf-8"> | |
6 <title> | |
7 | |
8 Pending | |
9 | |
10 - | |
11 | |
12 1a2b3c4d5e6f7890 | |
13 </title> | |
14 <link rel="stylesheet" href="/static/buildbot/css/default.css" type="text/css"> | |
15 <link rel="stylesheet" href="/static/common/third_party/css/jquery-ui.min.css" t
ype="text/css"> | |
16 <script src="/static/common/third_party/js/moment-with-locales.min.js"></script> | |
17 <script src="/static/common/third_party/js/moment-timezone-with-data-2012-2022.m
in.js"></script> | |
18 <script src="/static/common/js/time.js"></script> | |
19 <script src="/static/common/third_party/js/jquery.min.js"></script> | |
20 <script src="/static/common/third_party/js/jquery-ui.min.js"></script> | |
21 | |
22 <link id="favicon" rel="shortcut icon" type="image/png" href="/static/common/fav
icon/gray-32.png"> | |
23 | |
24 | |
25 | |
26 <body class="interface"> | |
27 <header> | |
28 Luci | |
29 <div> | |
30 | |
31 <a href="http://fake.example.com/login?dest=%2Ffoobar">login</a> | |
32 | |
33 </div> | |
34 </header> | |
35 <hr> | |
36 | |
37 <div class="content"> | |
38 <h1> | |
39 | |
40 Build 1a2b3c4d5e6f7890 | |
41 | |
42 </h1> | |
43 | |
44 <div class="column"> | |
45 | |
46 <h2>Results:</h2> | |
47 | |
48 | |
49 <p class="pending result">Build Pending | |
50 | |
51 <span class="subtitle"> | |
52 | |
53 </span> | |
54 </p> | |
55 | |
56 | |
57 | |
58 | |
59 | |
60 | |
61 <h2>Execution:</h2> | |
62 <ul> | |
63 | |
64 <li> | |
65 Source: | |
66 <a href="https://example.com/task?id=1a2b3c4d5e6f7890&show_raw=1&a
mp;wide_logs=true">Task 1a2b3c4d5e6f7890</a> | |
67 </li> | |
68 | |
69 | |
70 | |
71 | |
72 | |
73 </ul> | |
74 | |
75 | |
76 | |
77 | |
78 | |
79 <h2>Steps and Logfiles:</h2> | |
80 Show: | |
81 <input type="radio" name="hider" id="showAll"> | |
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">Non-Green Only</label> | |
87 <ol id="steps" class="standard"> | |
88 | |
89 | |
90 | |
91 | |
92 | |
93 | |
94 <li class="verbosity-Normal"> | |
95 <div class="status-Running result"> | |
96 | |
97 <b>Waiting...</b> | |
98 <span> | |
99 <div class="step-text">waiting for annotation stream</div> | |
100 </span> | |
101 </div> | |
102 <ul> | |
103 | |
104 | |
105 | |
106 <li class="sublink"> - no logs - </li> | |
107 | |
108 </ul> | |
109 </li> | |
110 | |
111 </ol> | |
112 | |
113 | |
114 </div> | |
115 | |
116 <div class="column"> | |
117 | |
118 <h2>Build Properties:</h2> | |
119 | |
120 <table class="info BuildProperties" width="100%"> | |
121 <tr><th>Name</th><th>Value</th><th>Source</th></tr> | |
122 | |
123 | |
124 </table> | |
125 | |
126 | |
127 | |
128 <h2>Timing:</h2> | |
129 <table class="info" width="100%"> | |
130 <tr class="alt"><td class="left">Start</td> | |
131 <td> | |
132 N/A | |
133 </td></tr> | |
134 <tr><td class="left">End</td> | |
135 <td> | |
136 N/A | |
137 </td></tr> | |
138 <tr class="alt"><td class="left">Elapsed</td> | |
139 <td id="duration"> | |
140 | |
141 N/A | |
142 | |
143 </td></tr> | |
144 </table> | |
145 | |
146 </div> | |
147 | |
148 | |
149 </div> | |
150 </div> | |
151 <script language="javascript"> | |
152 $(document).ready(function() { | |
153 | |
154 var check = function(className) { | |
155 $("#steps").removeClass("all standard interesting").addClass(className) | |
156 } | |
157 | |
158 $("#showInteresting").click(function(e) { | |
159 check("interesting"); | |
160 }); | |
161 $("#showStandard").click(function(e) { | |
162 check("standard"); | |
163 }); | |
164 $("#showAll").click(function(e) { | |
165 check("all"); | |
166 }); | |
167 | |
168 $("input[name='hider']").each(function(){ | |
169 if ($(this).prop("checked")) { | |
170 $(this).click(); | |
171 } | |
172 }); | |
173 }); | |
174 </script> | |
175 | |
176 <footer> | |
177 <hr> | |
178 <a href="https://github.com/luci">luci</a>, | |
179 working for the <a href="https://chromium.org/">Chromium</a> project.<br> | |
180 Page built: <b><span class="local-time" data-timestamp="-6792498672871">Satu
rday, 03-Feb-01 04:05:06 UTC</span></b> | |
181 </footer> | |
182 <script> | |
183 (function () { | |
184 'use strict'; | |
185 milo.makeTimesLocal(); | |
186 milo.annotateDurations(); | |
187 $(document).tooltip({ | |
188 show: false, | |
189 hide: false | |
190 }); | |
191 })(); | |
192 </script> | |
193 <script> | |
194 (function(i,s,o,g,r,a,m){i['CrDXObject']=r;i[r]=i[r]||function(){ | |
195 (i[r].q=i[r].q||[]).push(arguments)},a=s.createElement(o), | |
196 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a
,m) | |
197 })(window,document,'script','https://storage.googleapis.com/crdx-feedback.ap
pspot.com/feedback.js','crdx'); | |
198 | |
199 crdx('setFeedbackButtonLink', 'https://bugs.chromium.org/p/chromium/issues/ent
ry?cc=hinoka@chromium.org&components=Infra%3EPlatform%3EMilo'); | |
200 </script> | |
201 | |
202 <script> | |
203 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||functio
n(){ | |
204 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createEleme
nt(o), | |
205 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefo
re(a,m) | |
206 })(window,document,'script','https://www.google-analytics.com/analytics.
js','ga'); | |
207 | |
208 ga('create', 'UA-12345-01', 'auto'); | |
209 ga('send', 'pageview'); | |
210 </script> | |
211 | |
OLD | NEW |