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="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js"
></script> | 7 <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.1.5/angular.js"
></script> |
8 <script src="constants.js"></script> | 8 <script src="constants.js"></script> |
9 <script src="loader.js"></script> | 9 <script src="loader.js"></script> |
10 <link rel="stylesheet" href="view.css"> | 10 <link rel="stylesheet" href="view.css"> |
11 </head> | 11 </head> |
12 | 12 |
13 <body> | 13 <body> |
14 <h2> | 14 <h2> |
15 Instructions, roadmap, etc. are at | 15 Instructions, roadmap, etc. are at |
16 <a href="http://tinyurl.com/SkiaRebaselineServer"> | 16 <a href="http://tinyurl.com/SkiaRebaselineServer"> |
17 http://tinyurl.com/SkiaRebaselineServer | 17 http://tinyurl.com/SkiaRebaselineServer |
18 </a> | 18 </a> |
19 </h2> | 19 </h2> |
20 | 20 |
21 <em ng-show="!extraColumnHeaders"><!-- show until data is loaded --> | 21 <em ng-show="!extraColumnHeaders"><!-- show until data is loaded --> |
22 Loading results from <a href="{{resultsToLoad}}">{{resultsToLoad}}</a> ... | 22 Loading results from <a href="{{resultsToLoad}}">{{resultsToLoad}}</a> ... |
23 {{loadingMessage}} | 23 {{loadingMessage}} |
24 </em> | 24 </em> |
25 | 25 |
26 <div ng-show="extraColumnHeaders"><!-- everything: hide until data is loaded -
-> | 26 <div ng-show="extraColumnHeaders"><!-- everything: hide until data is loaded -
-> |
27 | 27 |
28 <div class="warning-div" | 28 <div class="warning-div" |
| 29 ng-show="urlSchemaVersionLoaded != constants.URL_VALUE__SCHEMA_VERSION_
_CURRENT"> |
| 30 WARNING! The URL you loaded used schema version {{urlSchemaVersionLoaded}
}, rather than |
| 31 the most recent version {{constants.URL_VALUE__SCHEMA_VERSION__CURRENT}}.
It has been |
| 32 converted to the most recent version on a best-effort basis; you may wish
to double-check |
| 33 which records are displayed. |
| 34 </div> |
| 35 |
| 36 <div class="warning-div" |
29 ng-show="header[constants.KEY__HEADER__IS_EDITABLE] && header[constants
.KEY__HEADER__IS_EXPORTED]"> | 37 ng-show="header[constants.KEY__HEADER__IS_EDITABLE] && header[constants
.KEY__HEADER__IS_EXPORTED]"> |
30 WARNING! These results are editable and exported, so any user | 38 WARNING! These results are editable and exported, so any user |
31 who can connect to this server over the network can modify them. | 39 who can connect to this server over the network can modify them. |
32 </div> | 40 </div> |
33 | 41 |
34 <div ng-show="header[constants.KEY__HEADER__TIME_UPDATED]"> | 42 <div ng-show="header[constants.KEY__HEADER__TIME_UPDATED]"> |
35 These results, from raw JSON file | 43 These results, from raw JSON file |
36 <a href="{{resultsToLoad}}">{{resultsToLoad}}</a>, current as of | 44 <a href="{{resultsToLoad}}">{{resultsToLoad}}</a>, current as of |
37 {{localTimeString(header[constants.KEY__HEADER__TIME_UPDATED])}} | 45 {{localTimeString(header[constants.KEY__HEADER__TIME_UPDATED])}} |
38 <br> | 46 <br> |
(...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
438 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE
Y__IMAGEPAIRS__ROWSPAN])"> | 446 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE
Y__IMAGEPAIRS__ROWSPAN])"> |
439 </tr> | 447 </tr> |
440 </table> <!-- imagePairs --> | 448 </table> <!-- imagePairs --> |
441 </td></tr></table> <!-- table holding results header + imagePairs table --> | 449 </td></tr></table> <!-- table holding results header + imagePairs table --> |
442 | 450 |
443 </div><!-- main display area of selected tab --> | 451 </div><!-- main display area of selected tab --> |
444 </div><!-- everything: hide until data is loaded --> | 452 </div><!-- everything: hide until data is loaded --> |
445 | 453 |
446 </body> | 454 </body> |
447 </html> | 455 </html> |
OLD | NEW |