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

Side by Side Diff: appengine_apps/chromium_cq_status/templates/patchset.html

Issue 567473002: chromium-cq-status: /patchset should use reverse chronological order (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 6 years, 3 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
« no previous file with comments | « appengine_apps/chromium_cq_status/scripts/patchset.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>Commit attempts for issue %(issue)s patch %(patchset)s</title> 2 <title>CQ status timeline for issue %(issue)s patch %(patchset)s</title>
3 <script> 3 <script>
4 var issue = %(issue)s; 4 var issue = %(issue)s;
5 var patchset = %(patchset)s; 5 var patchset = %(patchset)s;
6 </script> 6 </script>
7 <script src="/scripts/patchset.js"></script> 7 <script src="/scripts/patchset.js"></script>
8 8
9 <style> 9 <style>
10 :root { 10 :root {
11 font-family: sans-serif; 11 font-family: sans-serif;
12 } 12 }
13 a { 13 a {
14 text-decoration: none; 14 text-decoration: none;
15 } 15 }
16 h1, h3, tryjob > a { 16 h1, h3 > a, tryjob > a {
17 color: black; 17 color: black;
18 } 18 }
19 h3 {
20 margin-top: 2em;
21 }
19 row { 22 row {
20 position: relative; 23 position: relative;
21 border: solid 1px rgba(0, 0, 0, 0.125); 24 border: solid 1px rgba(0, 0, 0, 0.125);
22 border-radius: 3px; 25 border-radius: 3px;
23 max-width: 900px; 26 max-width: 900px;
24 display: block; 27 display: block;
25 padding-bottom: 10px; 28 padding-bottom: 10px;
26 margin-bottom: -1px; 29 margin-bottom: -1px;
27 } 30 }
28 row.normal { 31 row.normal {
29 background: #fdfdfd; 32 background: #fdfdfd;
30 } 33 }
31 row.normal:nth-child(2n + 1) { 34 row.normal:nth-child(2n + 1) {
32 background: #f8f8f8; 35 background: #f8f8f8;
33 } 36 }
34 row.important { 37 row.important {
35 background: #ddd; 38 background: #ddd;
36 } 39 }
37 row.good { 40 row.good {
38 background: #dfd; 41 background: #dfd;
39 } 42 }
40 row.bad { 43 row.bad {
41 background: #fee; 44 background: #fee;
42 } 45 }
43 timestamp { 46 timestamp {
44 font-family: monospace; 47 font-family: monospace;
45 padding-bottom: 20px; 48 padding-bottom: 20px;
46 } 49 }
47 later { 50 duration {
48 font-size: 60%%; 51 font-size: 60%%;
49 margin-left: 1em; 52 margin-left: 1em;
50 } 53 }
51 description { 54 description {
52 display: block; 55 display: block;
53 margin-top: 10px; 56 margin-top: 10px;
54 margin-left: 10px; 57 margin-left: 10px;
55 line-height: 1.5em; 58 line-height: 1.5em;
56 } 59 }
57 message { 60 message {
(...skipping 17 matching lines...) Expand all
75 background: #ff7; 78 background: #ff7;
76 } 79 }
77 tryjob.passed { 80 tryjob.passed {
78 background: #9e6; 81 background: #9e6;
79 } 82 }
80 tryjob.failed { 83 tryjob.failed {
81 background: #e88; 84 background: #e88;
82 } 85 }
83 </style> 86 </style>
84 <a href="/"><h1>Chromium CQ Status</h1></a> 87 <a href="/"><h1>Chromium CQ Status</h1></a>
85 <h2>Commit attempts for issue <a href="http://codereview.chromium.org/%(issue)s" >%(issue)s</a> patch <a href="http://codereview.chromium.org/%(issue)s#ps%(patch set)s">%(patchset)s</a></h2> 88 <h2>CQ status timeline for issue <a href="http://codereview.chromium.org/%(issue )s">%(issue)s</a> patch <a href="http://codereview.chromium.org/%(issue)s#ps%(pa tchset)s">%(patchset)s</a></h2>
86 <div id="rows"></div> 89 Status updates are shown in reverse chronological order.<br>
90 <br>
91 <div id="container"></div>
OLDNEW
« no previous file with comments | « appengine_apps/chromium_cq_status/scripts/patchset.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698