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="live-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="!readyToDisplay"> | 21 <em ng-show="!readyToDisplay"> |
22 Loading results from <a href="{{resultsToLoad}}">{{resultsToLoad}}</a> ... | 22 Loading results of query: |
epoger
2014/07/31 15:18:31
Similar to loader.js vs live-loader.js... this fil
| |
23 <ul> | |
24 <li>actualsDir: {{actualsDir}}</li> | |
25 <li>expectationsDir: {{expectationsDir}}</li> | |
26 </ul> | |
27 <br> | |
23 {{loadingMessage}} | 28 {{loadingMessage}} |
24 </em> | 29 </em> |
25 | 30 |
26 <div ng-show="readyToDisplay"> | 31 <div ng-show="readyToDisplay"> |
27 | 32 |
28 <div class="warning-div" | 33 <div class="warning-div" |
29 ng-show="urlSchemaVersionLoaded != constants.URL_VALUE__SCHEMA_VERSION_ _CURRENT"> | 34 ng-show="urlSchemaVersionLoaded != constants.URL_VALUE__SCHEMA_VERSION_ _CURRENT"> |
30 WARNING! The URL you loaded used schema version {{urlSchemaVersionLoaded} }, rather than | 35 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 | 36 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 | 37 converted to the most recent version on a best-effort basis; you may wish to double-check |
33 which records are displayed. | 38 which records are displayed. |
34 </div> | 39 </div> |
35 | 40 |
36 <div class="warning-div" | 41 <div class="warning-div" |
37 ng-show="header[constants.KEY__HEADER__IS_EDITABLE] && header[constants .KEY__HEADER__IS_EXPORTED]"> | 42 ng-show="header[constants.KEY__HEADER__IS_EDITABLE] && header[constants .KEY__HEADER__IS_EXPORTED]"> |
38 WARNING! These results are editable and exported, so any user | 43 WARNING! These results are editable and exported, so any user |
39 who can connect to this server over the network can modify them. | 44 who can connect to this server over the network can modify them. |
40 </div> | 45 </div> |
41 | 46 |
42 <div ng-show="header[constants.KEY__HEADER__TIME_UPDATED]"> | 47 <div ng-show="header[constants.KEY__HEADER__TIME_UPDATED]"> |
43 These results, from raw JSON file | 48 These results current as of |
44 <a href="{{resultsToLoad}}">{{resultsToLoad}}</a>, current as of | |
45 {{localTimeString(header[constants.KEY__HEADER__TIME_UPDATED])}} | 49 {{localTimeString(header[constants.KEY__HEADER__TIME_UPDATED])}} |
46 <br> | |
47 To see other sets of results (all results, failures only, etc.), | |
48 <a href="/">click here</a> | |
49 </div> | 50 </div> |
50 | 51 |
51 <div class="tab-wrapper"><!-- tabs --> | 52 <div class="tab-wrapper"><!-- tabs --> |
52 <div class="tab-spacer" ng-repeat="tab in tabs"> | 53 <div class="tab-spacer" ng-repeat="tab in tabs"> |
53 <div class="tab tab-{{tab == viewingTab}}" | 54 <div class="tab tab-{{tab == viewingTab}}" |
54 ng-click="setViewingTab(tab)"> | 55 ng-click="setViewingTab(tab)"> |
55 {{tab}} ({{numResultsPerTab[tab]}}) | 56 {{tab}} ({{numResultsPerTab[tab]}}) |
56 </div> | 57 </div> |
57 <div class="tab-spacer"> | 58 <div class="tab-spacer"> |
58 | 59 |
(...skipping 349 matching lines...) Loading... | |
408 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE Y__IMAGEPAIRS__ROWSPAN])"> | 409 ng-click="toggleSomeImagePairs($index, imagePair[constants.KE Y__IMAGEPAIRS__ROWSPAN])"> |
409 </tr> | 410 </tr> |
410 </table> <!-- imagePairs --> | 411 </table> <!-- imagePairs --> |
411 </td></tr></table> <!-- table holding results header + imagePairs table --> | 412 </td></tr></table> <!-- table holding results header + imagePairs table --> |
412 | 413 |
413 </div><!-- main display area of selected tab --> | 414 </div><!-- main display area of selected tab --> |
414 </div><!-- everything: hide until readyToDisplay --> | 415 </div><!-- everything: hide until readyToDisplay --> |
415 | 416 |
416 </body> | 417 </body> |
417 </html> | 418 </html> |
OLD | NEW |