blob: 59b10e485c4ebe9a901646a6f2c45c66dcab0da0 [file] [log] [blame]
Timo Tijhof51516cd2013-04-09 01:32:29 +02001<!--
2Copyright 2013 OpenStack Foundation
3Copyright 2013 Timo Tijhof
4Copyright 2013 Wikimedia Foundation
5
6Licensed under the Apache License, Version 2.0 (the "License"); you may
7not use this file except in compliance with the License. You may obtain
8a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing, software
13distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15License for the specific language governing permissions and limitations
16under the License.
17-->
18<!DOCTYPE html>
19<html dir="ltr" lang="en">
20<head>
21 <title>Zuul Status</title>
22 <link rel="stylesheet" href="bootstrap/css/bootstrap.min.css">
23 <link rel="stylesheet" href="bootstrap/css/bootstrap-responsive.min.css">
24 <style>
Joshua Hesketh4863b602014-03-21 14:19:06 +110025 .zuul-change-id {
26 float: right;
27 }
Timo Tijhof51516cd2013-04-09 01:32:29 +020028
Joshua Heskethf1b06ca2014-03-21 17:01:12 +110029 .zuul-job-result {
Joshua Hesketh6b1a2182014-03-21 14:40:04 +110030 float: right;
31 width: 70px;
32 height: 15px;
33 margin: 0;
34 }
35
Joshua Heskethf1b06ca2014-03-21 17:01:12 +110036 .zuul-change-total-result {
37 height: 10px;
38 width: 100px;
39 margin: 5px 0 0 0;
40 }
41
Joshua Hesketh4863b602014-03-21 14:19:06 +110042 .zuul-spinner,
43 .zuul-spinner:hover {
44 opacity: 0;
Joshua Hesketh876ca512014-03-21 18:44:22 +110045 transition: opacity 0.5s ease-out;
Joshua Hesketh4863b602014-03-21 14:19:06 +110046 cursor: default;
47 pointer-events: none;
48 }
Timo Tijhof51516cd2013-04-09 01:32:29 +020049
Joshua Hesketh4863b602014-03-21 14:19:06 +110050 .zuul-spinner-on,
51 .zuul-spinner-on:hover {
52 opacity: 1;
Joshua Hesketh876ca512014-03-21 18:44:22 +110053 transition-duration: 0.2s;
Joshua Hesketh4863b602014-03-21 14:19:06 +110054 cursor: progress;
55 }
Joshua Hesketh6b1a2182014-03-21 14:40:04 +110056
57 .zuul-change-job {
58 padding: 5px 10px;
59 }
60
Timo Tijhof51516cd2013-04-09 01:32:29 +020061 </style>
62</head>
63<body>
64 <div class="container">
65 <h1>Zuul Status</h1>
Joshua Heskethe8987162014-03-13 13:05:33 +110066 <p>Real-time status monitor of Zuul, the pipeline manager between Gerrit and Workers.</p>
Timo Tijhof51516cd2013-04-09 01:32:29 +020067
68 <div class="zuul-container" id="zuul-container"></div>
69 </div>
70 <script src="jquery.min.js"></script>
71 <script src="jquery-visibility.min.js"></script>
72 <script src="app.js"></script>
73</body>
74</html>