diff options
Diffstat (limited to 'utils/test/testapi/3rd_party/static/testapi-ui/index.html')
-rw-r--r-- | utils/test/testapi/3rd_party/static/testapi-ui/index.html | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/utils/test/testapi/3rd_party/static/testapi-ui/index.html b/utils/test/testapi/3rd_party/static/testapi-ui/index.html new file mode 100644 index 000000000..4bf3c0d1b --- /dev/null +++ b/utils/test/testapi/3rd_party/static/testapi-ui/index.html @@ -0,0 +1,60 @@ +<!DOCTYPE html> +<!-- + Copyright (c) 2015 IBM Corp. + + Licensed under the Apache License, Version 2.0 (the "License"); you may + not use this file except in compliance with the License. You may obtain + a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, WITHOUT + WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the + License for the specific language governing permissions and limitations + under the License. +--> +<html id="ng-app"> + <head> + <meta charset="utf-8"> + <meta name="description" content="TestAPI"> + <meta name="viewport" content="width=device-width"> + <title>TestAPI</title> + + <link rel="icon" type="image/png" href="swagger/testapi-ui/favicon-16x16.png" sizes="16x16" /> + <link rel="icon" type="image/png" href="swagger/testapi-ui/favicon-32x32.png" sizes="32x32" /> + + <link rel="stylesheet" href="swagger/testapi-ui/assets/lib/bootstrap/dist/css/bootstrap.min.css"> + <link rel="stylesheet" href="swagger/testapi-ui/assets/lib/angular-busy/dist/angular-busy.min.css"> + <link rel="stylesheet" href="swagger/testapi-ui/assets/css/style.css"> + + <script src="swagger/testapi-ui/assets/lib/angular/angular.min.js"></script> + <script src="swagger/testapi-ui/assets/lib/angular-ui-router/release/angular-ui-router.min.js"></script> + <script src="swagger/testapi-ui/assets/lib/angular-resource/angular-resource.min.js"></script> + <script src="swagger/testapi-ui/assets/lib/angular-bootstrap/ui-bootstrap-tpls.min.js"></script> + <script src="swagger/testapi-ui/assets/lib/angular-busy/dist/angular-busy.min.js"></script> + <script src="swagger/testapi-ui/assets/lib/angular-confirm-modal/angular-confirm.js"></script> + <script src="swagger/testapi-ui/app.js"></script> + + <!-- Controllers --> + <script src="swagger/testapi-ui/shared/header/headerController.js"></script> + <script src="swagger/testapi-ui/shared/alerts/alertModalFactory.js"></script> + <script src="swagger/testapi-ui/shared/alerts/confirmModalFactory.js"></script> + <script src="swagger/testapi-ui/components/guidelines/guidelinesController.js"></script> + <script src="swagger/testapi-ui/components/results/resultsController.js"></script> + <script src="swagger/testapi-ui/components/results-report/resultsReportController.js"></script> + <script src="swagger/testapi-ui/components/profile/profileController.js"></script> + <script src="swagger/testapi-ui/components/auth-failure/authFailureController.js"></script> + <script src="swagger/testapi-ui/components/logout/logoutController.js"></script> + + <!-- Filters --> + <script src="swagger/testapi-ui/shared/filters.js"></script> + + </head> + + <body class="container"> + <header ng-include src="'swagger/testapi-ui/shared/header/header.html'"></header> + + <div ui-view></div> + </body> +</html> |