blob: 0c51ee75a4e51cdcca8c312900045e507d1b346e [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-result,
26 .zuul-change-id {
27 float: right;
28 }
Timo Tijhof51516cd2013-04-09 01:32:29 +020029
Joshua Hesketh4863b602014-03-21 14:19:06 +110030 .zuul-spinner,
31 .zuul-spinner:hover {
32 opacity: 0;
33 transition: opacity 3s ease-out;
34 cursor: default;
35 pointer-events: none;
36 }
Timo Tijhof51516cd2013-04-09 01:32:29 +020037
Joshua Hesketh4863b602014-03-21 14:19:06 +110038 .zuul-spinner-on,
39 .zuul-spinner-on:hover {
40 opacity: 1;
41 transition-duration: 0.4s;
42 cursor: progress;
43 }
Timo Tijhof51516cd2013-04-09 01:32:29 +020044 </style>
45</head>
46<body>
47 <div class="container">
48 <h1>Zuul Status</h1>
Joshua Heskethe8987162014-03-13 13:05:33 +110049 <p>Real-time status monitor of Zuul, the pipeline manager between Gerrit and Workers.</p>
Timo Tijhof51516cd2013-04-09 01:32:29 +020050
51 <div class="zuul-container" id="zuul-container"></div>
52 </div>
53 <script src="jquery.min.js"></script>
54 <script src="jquery-visibility.min.js"></script>
55 <script src="app.js"></script>
56</body>
57</html>