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

Side by Side Diff: appengine/chromium_cq_status/templates/patch_status.html

Issue 2024053002: Remove link to timeline view as it's broken and unowned (Closed) Base URL: https://chromium.googlesource.com/infra/infra.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | 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>CQ status timeline 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="/js/patch_status.js"></script> 7 <script src="/js/patch_status.js"></script>
8 8
9 <style> 9 <style>
10 :root { 10 :root {
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
98 .tryjob.passed { 98 .tryjob.passed {
99 background: #9e6; 99 background: #9e6;
100 } 100 }
101 .tryjob.failed { 101 .tryjob.failed {
102 background: #e88; 102 background: #e88;
103 } 103 }
104 </style> 104 </style>
105 <a href="/"><h1>Chromium CQ Status</h1></a> 105 <a href="/"><h1>Chromium CQ Status</h1></a>
106 <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> 106 <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>
107 Status updates are shown in reverse chronological order.<br> 107 Status updates are shown in reverse chronological order.<br>
108 <a href="/recent#issue=%(issue)s,patchset=%(patchset)s" class="raw">[Raw CQ logs ]</a><a href="/patch-timeline/%(issue)s/%(patchset)s" class="raw">[Timeline View ]</a><br> 108 <a href="/recent#issue=%(issue)s,patchset=%(patchset)s" class="raw">[Raw CQ logs ]</a><br>
109 <br> 109 <br>
110 <div id="container"></div> 110 <div id="container"></div>
111 111
112 <script> 112 <script>
113 window.addEventListener('load', patchStatusModule.main); 113 window.addEventListener('load', patchStatusModule.main);
114 </script> 114 </script>
115 115
116 <script> 116 <script>
117 // Add Google Analytics integration 117 // Add Google Analytics integration
118 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ 118 (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
119 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), 119 (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
120 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m ) 120 m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m )
121 })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); 121 })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
122 122
123 ga('create', 'UA-55762617-13', {'siteSpeedSampleRate': 100}); 123 ga('create', 'UA-55762617-13', {'siteSpeedSampleRate': 100});
124 ga('send', 'pageview'); 124 ga('send', 'pageview');
125 </script> 125 </script>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698