elastic-recheck/web/share/gate.html
Matthew Treinish 6f3f703cba
Fix template links for split uncategorized
We recently landed a patch to split the uncategorized page into 2 for
integrated gate jobs and everything else. However, that patch neglected
to update the links on the other html files to reflect the new
filenames. This commit fixes the oversight.

Change-Id: I10f05ae6fb9c31bcfc87ff47d878c3af58176734
2016-08-11 23:17:59 -04:00

106 lines
4.2 KiB
HTML

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
lang="en">
<HEAD>
<TITLE>Elastic Recheck</TITLE>
<script type="text/javascript"
src="http://status.openstack.org/jquery.min.js"></script>
<script type="text/javascript" src="handlebars-v2.0.0.js"></script>
<script type="text/javascript"
src="http://status.openstack.org/jquery-visibility.min.js"></script>
<script type="text/javascript"
src="http://status.openstack.org/jquery-graphite.js"></script>
<script type="text/javascript"
src="http://status.openstack.org/common.js"></script>
<script type="text/javascript"
src="http://status.openstack.org/jquery.flot.min.js"></script>
<script type="text/javascript"
src="http://status.openstack.org/jquery.flot.time.min.js"></script>
<script type="text/javascript"
src="elastic-recheck.js"></script>
<script type='text/javascript'>
var data_url = '/elastic-recheck/data/gate.json';
</script>
<!-- Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=PT+Sans&amp;subset=latin' rel='stylesheet' type='text/css'/>
<!-- Framework CSS -->
<link rel="stylesheet" href="http://www.openstack.org/themes/openstack/css/blueprint/screen.css" type="text/css" media="screen, projection"/>
<link rel="stylesheet" href="http://www.openstack.org/themes/openstack/css/blueprint/print.css" type="text/css" media="print"/>
<!-- IE CSS -->
<!--[if lt IE 8]><link rel="stylesheet" href="http://www.openstack.org/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
<!-- OpenStack Specific CSS -->
<link rel="stylesheet" href="http://www.openstack.org/themes/openstack/css/dropdown.css" type="text/css" media="screen, projection, print"/>
<!-- Page Specific CSS -->
<link rel="stylesheet" href="http://www.openstack.org/themes/openstack/css/home.css" type="text/css" media="screen, projection, print"/>
<link rel="stylesheet" type="text/css" href="http://www.openstack.org/themes/openstack/css/main.css" />
<!-- Project specific css -->
<link rel="stylesheet" type="text/css" href="styles/elastic-recheck.css" />
<script type="text/javascript">
</script>
</HEAD>
<BODY>
<script type="text/javascript">header('Rechecks');</script>
<!-- this template is process by handlebar js... and makes
javascript sane again! -->
<script id="bug-template" type="text/x-handlebars-template">
<div id="bug-{{bug.number}}" class="bug-container">
<h2><a name="{{bug.number}}" href="#{{bug.number}}">Bug {{bug.number}} - {{bug.bug_data.name}}</a></h2>
<h3>{{bug.fails24}} fails in 24 hrs / {{bug.fails}} fails in
10 days</h3>
<h3>Projects: {{bug.bug_data.affects}}</h3>
<!-- only display that a job is non-voting since voting:1 is the
default filter -->
{{#unless bug.voting}}
<h3>Voting: False</h3>
{{/unless}}
{{#if bug.bug_data.reviews}}
<h3 class="openreviews">Open Reviews:</h3>
<div class="openreviews">
{{#each bug.bug_data.reviews}}
<a class="openreview" href="https://review.openstack.org/#/c/{{this}}">{{this}}</a>
{{/each}}
</div>
{{/if}}
<div class="graph"></div>
<a class="extlink" href="{{bug.logstash_url}}">Logstash</a>
<a class="extlink" href="http://bugs.launchpad.net/bugs/{{bug.number}}">Launchpad</a>
</div>
</script>
<div class="container">
<ul class="nav nav-tabs">
<li><a href="index.html">All Pipelines</a></li>
<li class="active"><a href="gate.html">Gate Pipeline</a></li>
<li><a href="data/integrated_gate.html">Uncategorized Integrated Gate Jobs</a></li>
<li><a href="data/others.html">Uncategorized</a></li>
</ul>
</div>
<div id="vital-stats" class="container">
Data Last Updated: <span id="last_updated"></span><br>
Last Elastic Search Index Update: <span id="last_indexed"></span><br>
Delay in Elastic Search: <span id="behind"></span><br>
Cluster Health: <span id="health"></span><br>
</div>
<div id="main-container" class="container">
</div>
<script type="text/javascript">footer();</script>
</BODY>
</html>