OLD | NEW |
| (Empty) |
1 <!-- | |
2 Copyright (C) 2011 Google Inc. All rights reserved. | |
3 | |
4 Redistribution and use in source and binary forms, with or without | |
5 modification, are permitted provided that the following conditions | |
6 are met: | |
7 1. Redistributions of source code must retain the above copyright | |
8 notice, this list of conditions and the following disclaimer. | |
9 2. Redistributions in binary form must reproduce the above copyright | |
10 notice, this list of conditions and the following disclaimer in the | |
11 documentation and/or other materials provided with the distribution. | |
12 | |
13 THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' | |
14 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, | |
15 THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | |
16 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS | |
17 BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
18 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
19 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
20 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
21 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
22 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF | |
23 THE POSSIBILITY OF SUCH DAMAGE. | |
24 | |
25 The favicons are from the awesome famfamfam.com, which is the website of Mark | |
26 James, a web developer from Birmingham, UK. | |
27 --> | |
28 | |
29 <!DOCTYPE html> | |
30 <head> | |
31 <title>Garden-O-Matic</title> | |
32 <meta name="viewport" content="width=device-width, user-scalable=no"> | |
33 | |
34 <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Open+Sans:40
0,700"> | |
35 <link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
15/themes/base/jquery-ui.css"> | |
36 <link rel="stylesheet" href="styles/common.css"> | |
37 <link rel="stylesheet" href="styles/onebar.css"> | |
38 <link rel="stylesheet" href="styles/failures.css"> | |
39 <link rel="stylesheet" href="styles/results.css"> | |
40 <link rel="stylesheet" href="styles/notifications.css"> | |
41 <link rel="stylesheet" href="styles/pixelzoomer.css"> | |
42 | |
43 <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"><
/script> | |
44 <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min
.js"></script> | |
45 <script src="bower_components/sugar/release/sugar-full.development.js"></script> | |
46 <script src="scripts/base.js"></script> | |
47 <script src="scripts/config.js"></script> | |
48 <script src="scripts/net.js"></script> | |
49 <script src="scripts/rollbot.js"></script> | |
50 <script src="scripts/svn-log.js"></script> | |
51 <script src="scripts/treestatus.js"></script> | |
52 <script src="scripts/builders.js"></script> | |
53 <script src="scripts/results.js"></script> | |
54 <script src="scripts/ui.js"></script> | |
55 <script src="scripts/model.js"></script> | |
56 <script src="scripts/ui/actions.js"></script> | |
57 <script src="scripts/ui/failures.js"></script> | |
58 <script src="scripts/ui/notifications.js"></script> | |
59 <script src="scripts/ui/results.js"></script> | |
60 <script src="scripts/controllers.js"></script> | |
61 <script src="scripts/pixelzoomer.js"></script> | |
62 | |
63 <script src="bower_components/platform/platform.js"></script> | |
64 <link rel="import" href="bower_components/polymer/polymer.html"> | |
65 <link rel="import" href="polymer-load-warning.html"> | |
66 <link rel="import" href="ui/ct-results-comparison.html"> | |
67 | |
68 <script src="scripts/garden-o-matic.js"></script> | |
69 </head> | |
OLD | NEW |