blob: b78ff0dc6856382d2f2dd53c6e09cef8f22c3179 [file] [log] [blame]
James E. Blair8ae50e32013-01-17 15:32:22 -08001<!--
2Copyright 2013 OpenStack Foundation
3
4Licensed under the Apache License, Version 2.0 (the "License"); you may
5not use this file except in compliance with the License. You may obtain
6a copy of the License at
7
8 http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13License for the specific language governing permissions and limitations
14under the License.
15-->
16
17<html xmlns="http://www.w3.org/1999/xhtml"
18 xmlns:py="http://genshi.edgewall.org/"
19 lang="en">
20 <head>
21 <style type="text/css">
22#pipeline-container {
23 margin: 0 auto;
24}
25.change {
26 border: 1px solid;
27 margin-top: 10px;
28 padding: 2px;
29}
30.change > .header {
31 background: #cccccc;
32 color: black;
33 margin: -2px -2px 2px -2px;
34 padding: 4px;
35}
36.change > .header > .changeid {
37 float: right;
38}
39.job {
40 display: block;
41}
42.pipeline {
43 float: left;
44 width: 25em;
45 padding: 4px;
46}
47.pipeline > .header {
48 background: #0000cc;
49 color: white;
50}
51.arrow {
52 text-align: center;
53 font-size: 16pt;
54 line-height: 1.0;
55}
56.result_success {
57 color: #007f00;
58}
59.result_failure {
60 color: #cf2f19;
61}
62.result_unstable {
63 color: #e39f00;
64}
65 </style>
66
67 <title>Zuul Status</title>
68
69 <script type="text/javascript" src="jquery.min.js"></script>
70 <script type="text/javascript" src="jquery-visibility.min.js"></script>
71 <script type="text/javascript" src="jquery-graphite.js"></script>
72 <script type="text/javascript" src="status.js"></script>
73
74 </head>
75
76 <body>
77 <h1> Zuul Status </h1>
78
79 <div id="message-container">
80 <p id="message"/>
81 </div>
82
83 <div id="pipeline-container">
84 </div>
85
86 </body>
87</html>