OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 | 2 |
3 <html ng-app="Loader" ng-controller="Loader.Controller"> | 3 <html ng-app="Loader" ng-controller="Loader.Controller"> |
4 | 4 |
5 <head> | 5 <head> |
6 <title ng-bind="windowTitle"></title> | 6 <title ng-bind="windowTitle"></title> |
7 <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></scr
ipt> | 7 <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></scr
ipt> |
8 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js"
></script> | 8 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js"
></script> |
9 <script src="constants.js"></script> | 9 <script src="constants.js"></script> |
10 <script src="live-loader.js"></script> | 10 <script src="live-loader.js"></script> |
11 <script src="utils.js"></script> | 11 <script src="utils.js"></script> |
12 | 12 |
13 <link rel="stylesheet" href="view.css"> | 13 <link rel="stylesheet" href="view.css"> |
14 </head> | 14 </head> |
15 | 15 |
16 <body> | 16 <body> |
17 <h2> | 17 <h2> |
18 Instructions, roadmap, etc. are at | 18 Instructions, roadmap, etc. are at |
19 <a href="http://tinyurl.com/SkiaRebaselineServer"> | 19 <a href="http://tinyurl.com/SkiaRebaselineServer"> |
20 http://tinyurl.com/SkiaRebaselineServer | 20 http://tinyurl.com/SkiaRebaselineServer |
21 </a> | 21 </a> |
22 </h2> | 22 </h2> |
23 | 23 |
24 <em ng-show="!readyToDisplay"> | 24 <em ng-show="!readyToDisplay"> |
25 Loading results of query: | 25 Loading results of query: |
26 <ul> | 26 <ul> |
27 <li>setA: {{setADir}}</li> | 27 <li>setA: "{{setASection}}" within {{setADir}}</li> |
28 <li>setB: {{setBDir}}</li> | 28 <li>setB: "{{setBSection}}" within {{setBDir}}</li> |
29 </ul> | 29 </ul> |
30 <br> | 30 <br> |
31 {{loadingMessage}} | 31 {{loadingMessage}} |
32 </em> | 32 </em> |
33 | 33 |
34 <div ng-show="readyToDisplay"> | 34 <div ng-show="readyToDisplay"> |
35 | 35 |
36 <div class="warning-div" | 36 <div class="warning-div" |
37 ng-show="urlSchemaVersionLoaded != constants.URL_VALUE__SCHEMA_VERSION_
_CURRENT"> | 37 ng-show="urlSchemaVersionLoaded != constants.URL_VALUE__SCHEMA_VERSION_
_CURRENT"> |
38 WARNING! The URL you loaded used schema version {{urlSchemaVersionLoaded}
}, rather than | 38 WARNING! The URL you loaded used schema version {{urlSchemaVersionLoaded}
}, rather than |
39 the most recent version {{constants.URL_VALUE__SCHEMA_VERSION__CURRENT}}.
It has been | 39 the most recent version {{constants.URL_VALUE__SCHEMA_VERSION__CURRENT}}.
It has been |
40 converted to the most recent version on a best-effort basis; you may wish
to double-check | 40 converted to the most recent version on a best-effort basis; you may wish
to double-check |
41 which records are displayed. | 41 which records are displayed. |
42 </div> | 42 </div> |
43 | 43 |
44 <div class="warning-div" | 44 <div class="warning-div" |
45 ng-show="header[constants.KEY__HEADER__IS_EDITABLE] && header[constants
.KEY__HEADER__IS_EXPORTED]"> | 45 ng-show="header[constants.KEY__HEADER__IS_EDITABLE] && header[constants
.KEY__HEADER__IS_EXPORTED]"> |
46 WARNING! These results are editable and exported, so any user | 46 WARNING! These results are editable and exported, so any user |
47 who can connect to this server over the network can modify them. | 47 who can connect to this server over the network can modify them. |
48 </div> | 48 </div> |
49 | 49 |
50 <div ng-show="header[constants.KEY__HEADER__TIME_UPDATED]"> | 50 <div ng-show="header[constants.KEY__HEADER__TIME_UPDATED]"> |
51 setA: {{setADir}}<br> | 51 setA: "{{setASection}}" within {{setADir}}<br> |
52 setB: {{setBDir}}<br> | 52 setB: "{{setBSection}}" within {{setBDir}}<br> |
53 These results current as of | 53 These results current as of |
54 {{localTimeString(header[constants.KEY__HEADER__TIME_UPDATED])}} | 54 {{localTimeString(header[constants.KEY__HEADER__TIME_UPDATED])}} |
55 </div> | 55 </div> |
56 | 56 |
57 <div class="tab-wrapper"><!-- tabs --> | 57 <div class="tab-wrapper"><!-- tabs --> |
58 <div class="tab-spacer" ng-repeat="tab in tabs"> | 58 <div class="tab-spacer" ng-repeat="tab in tabs"> |
59 <div class="tab tab-{{tab == viewingTab}}" | 59 <div class="tab tab-{{tab == viewingTab}}" |
60 ng-click="setViewingTab(tab)"> | 60 ng-click="setViewingTab(tab)"> |
61 {{tab}} ({{numResultsPerTab[tab]}}) | 61 {{tab}} ({{numResultsPerTab[tab]}}) |
62 </div> | 62 </div> |
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE
Y__IMAGEPAIRS__ROWSPAN])"> | 414 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE
Y__IMAGEPAIRS__ROWSPAN])"> |
415 </tr> | 415 </tr> |
416 </table> <!-- imagePairs --> | 416 </table> <!-- imagePairs --> |
417 </td></tr></table> <!-- table holding results header + imagePairs table --> | 417 </td></tr></table> <!-- table holding results header + imagePairs table --> |
418 | 418 |
419 </div><!-- main display area of selected tab --> | 419 </div><!-- main display area of selected tab --> |
420 </div><!-- everything: hide until readyToDisplay --> | 420 </div><!-- everything: hide until readyToDisplay --> |
421 | 421 |
422 </body> | 422 </body> |
423 </html> | 423 </html> |
OLD | NEW |