diff options
author | chenjiankun <chenjiankun1@huawei.com> | 2016-12-24 23:08:46 +0000 |
---|---|---|
committer | chenjiankun <chenjiankun1@huawei.com> | 2016-12-30 15:38:08 +0000 |
commit | 64605f1cc7117854abb203375deee396e0d65cc1 (patch) | |
tree | 42f863658d915c45b18996be37271813385d3f33 /utils/test/reporting/pages/app/index.html | |
parent | 53ed9e36a13d03455fc04b3f54ed290037359f6b (diff) |
Create Test Reporting landing page
JIRA: RELENG-165
In this patch, I do the follow things:
1.deploy tornado server(currently I haven't write any backend code,
since the backend code depend on the testapi and I need to
communicate with Serena).
2.landing page code(almostly finished. But I haven't the data, so
for now, the data this page shows is a mock json. When the testapi
and my backend code ready, this page will finally finished)
3.deployment: supervisor + nginx + tornado + angular
usage:
docker run -itd -p 8000:8000 opnfv/reporting:<tag>
visit landing page:
http://server_ip:8000/reporting/index.html
test api:
http://server_ip:8000/landing-page/filters
visit old reporting page:
http://server_ip:8000/display/master/yardstick/status-apex.html
Change-Id: I527ab2661ce9e84b2942ebe673afbf5f2bc7878f
Signed-off-by: chenjiankun <chenjiankun1@huawei.com>
Diffstat (limited to 'utils/test/reporting/pages/app/index.html')
-rw-r--r-- | utils/test/reporting/pages/app/index.html | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/utils/test/reporting/pages/app/index.html b/utils/test/reporting/pages/app/index.html new file mode 100644 index 000000000..7673a4cc2 --- /dev/null +++ b/utils/test/reporting/pages/app/index.html @@ -0,0 +1,75 @@ +<!doctype html> +<html ng-app="opnfvApp"> + <head> + <meta charset="utf-8"> + <title>OPNFV-DASHBOARD EXAMPLE</title> + <meta name="description" content=""> + <meta name="viewport" content="width=device-width,width=device-width,initial-scale=1"> + <!-- Place favicon.ico and apple-touch-icon.png in the root directory --> + <!-- build:css(.) styles/vendor.css --> + <!-- bower:css --> + <link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.css" /> + <link rel="stylesheet" href="bower_components/metisMenu/dist/metisMenu.css" /> + <link rel="stylesheet" href="bower_components/chosen/chosen.css" /> + <link rel="stylesheet" href="bower_components/selectize/dist/css/selectize.css" /> + <link rel="stylesheet" href="bower_components/components-font-awesome/css/font-awesome.css" /> + <!-- endbower --> + <!-- endbuild --> + <!-- build:css(.tmp) styles/style.css --> + <!--<link rel="stylesheet" href="styles/main.css">--> + <link rel="stylesheet" href="styles/animate.css"> + <link rel="stylesheet" href="styles/style.css"> + <link rel="stylesheet" href="styles/custome.css"> + + <!-- endbuild --> + </head> + <body class="{{$state.current.data.specialClass}}" id="page-top"> + <!--[if lte IE 8]> + <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p> + <![endif]--> + + <!-- Add your site or application content here --> + <div ui-view></div> + <!-- Google Analytics: change UA-XXXXX-X to be your site's ID --> + <!--<script> + !function(A,n,g,u,l,a,r){A.GoogleAnalyticsObject=l,A[l]=A[l]||function(){ + (A[l].q=A[l].q||[]).push(arguments)},A[l].l=+new Date,a=n.createElement(g), + r=n.getElementsByTagName(g)[0],a.src=u,r.parentNode.insertBefore(a,r) + }(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); + + ga('create', 'UA-XXXXX-X'); + ga('send', 'pageview'); + </script>--> + + <!-- build:js(.) scripts/vendor.js --> + <!-- bower:js --> + <script src="bower_components/jquery/dist/jquery.js"></script> + <script src="bower_components/angular/angular.js"></script> + <script src="bower_components/bootstrap/dist/js/bootstrap.js"></script> + <script src="bower_components/angular-animate/angular-animate.js"></script> + <script src="bower_components/jquery-slimscroll/jquery.slimscroll.js"></script> + <script src="bower_components/jquery-slimscroll/jquery.slimscroll.min.js"></script> + <script src="bower_components/metisMenu/dist/metisMenu.js"></script> + <script src="bower_components/chosen/chosen.jquery.js"></script> + <script src="bower_components/oclazyload/dist/ocLazyLoad.js"></script> + <script src="bower_components/angular-bootstrap/ui-bootstrap-tpls.js"></script> + <script src="bower_components/angular-ui-router/release/angular-ui-router.js"></script> + <script src="bower_components/angular-resource/angular-resource.js"></script> + <script src="bower_components/sifter/sifter.js"></script> + <script src="bower_components/microplugin/src/microplugin.js"></script> + <script src="bower_components/selectize/dist/js/selectize.js"></script> + <script src="bower_components/angular-selectize2/dist/angular-selectize.js"></script> + <!-- endbower --> + <!-- endbuild --> + + <!-- build:js({.tmp,app}) scripts/scripts.js --> + <script src="scripts/app.js"></script> + <!--<script src="scripts/controllers/main.js"></script>--> + <script src="scripts/config.router.js"></script> + <script src="scripts/controllers/table.controller.js"></script> + <script src="scripts/config.js"></script> + <script src="scripts/directives/mydirective.js"></script> + <script src="scripts/factory/table.factory.js"></script> + <!-- endbuild --> +</body> +</html> |