diff options
author | SerenaFeng <feng.xiaowei@zte.com.cn> | 2017-05-12 01:49:57 +0800 |
---|---|---|
committer | SerenaFeng <feng.xiaowei@zte.com.cn> | 2017-05-12 10:11:57 +0800 |
commit | 55d74f86440a5a804d4551e04f7fd39518af0723 (patch) | |
tree | a509c00c4bbf0b274030178493407ee723756185 /testapi/3rd_party/static/testapi-ui/index.html | |
parent | 6df5e1b763a1e8a022f6d3dad738c5b1df468a17 (diff) |
add web portal framework for TestAPI
Change-Id: I62cea8b59ffe6a6cde98051c130f4502c07d3557
Signed-off-by: SerenaFeng <feng.xiaowei@zte.com.cn>
Diffstat (limited to 'testapi/3rd_party/static/testapi-ui/index.html')
-rw-r--r-- | testapi/3rd_party/static/testapi-ui/index.html | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/testapi/3rd_party/static/testapi-ui/index.html b/testapi/3rd_party/static/testapi-ui/index.html new file mode 100644 index 0000000..4bf3c0d --- /dev/null +++ b/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> |