aboutsummaryrefslogtreecommitdiffstats
path: root/umc-iui/src/main/resources/webroot/umc-monitor/monitorSettingList.html
diff options
context:
space:
mode:
Diffstat (limited to 'umc-iui/src/main/resources/webroot/umc-monitor/monitorSettingList.html')
-rw-r--r--umc-iui/src/main/resources/webroot/umc-monitor/monitorSettingList.html126
1 files changed, 0 insertions, 126 deletions
diff --git a/umc-iui/src/main/resources/webroot/umc-monitor/monitorSettingList.html b/umc-iui/src/main/resources/webroot/umc-monitor/monitorSettingList.html
deleted file mode 100644
index bdd3955f..00000000
--- a/umc-iui/src/main/resources/webroot/umc-monitor/monitorSettingList.html
+++ /dev/null
@@ -1,126 +0,0 @@
-<!--
-
- Copyright (C) 2015 ZTE, Inc. and others. All rights reserved. (ZTE)
-
- 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.
-
--->
-<!DOCTYPE html>
-<html>
-<head lang="en">
-<meta charset="UTF-8">
-<link href="../component/thirdparty/font-awesome/css/font-awesome.min.css" rel="stylesheet" />
- <link href="../component/thirdparty/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
- <link href="../vendor/animate/animate.min.css" rel="stylesheet" type="text/css" />
- <link href="../framework/css/ngict-component.css" rel="stylesheet" type="text/css">
-<link rel="stylesheet" type="text/css" href="../component/css/ZteIctIcons/style.css">
-<link href="./css/monitorSetting.css" rel="stylesheet" />
-<link href="./css/dataTables.bootstrap.css" rel="stylesheet" type="text/css" />
-
-
-
-<style>
-.ms-controller {
- visibility: hidden
-}
-</style>
-</head>
-<body>
-
- <div class="container-fluid" class="ms-controller" ms-controller="monitorController">
-
-
-
- <div class="row" style=" margin-top: 15px;">
- <div class="col-xs-6 col-sm-12 col-md-6 col-lg-6">
- <span class=" titlefont" id="com_zte_openo_umc_monitor_monitorList_titeName" name_i18n="com_zte_openo_umc_monitor_ui_i18n">Monitor Para List </span>
- </div>
-
- </div>
- <div class="separator-line"></div>
- <button class="btn white radius_l" id="app-new-btn" style=" margin-bottom: 10px;" ms-click="gotoDACPage()">
- <i class="ict-it-net"></i>
- <span id="com_zte_openo_umc_monitor_monitorList_dac_manage" name_i18n="com_zte_openo_umc_monitor_ui_i18n"></span>
- </button>
-
-
- <div class="row row-fluid">
- <table class="table table-striped table-bordered table-hover dataTable " id="monitorManagerTable">
- <thead>
- <tr class="heading">
- <th style="width: 80px;" id="com_zte_openo_umc_monitor_monitorList_monitor_sn" name_i18n="com_zte_openo_umc_monitor_ui_i18n">SN</th>
- <th id="com_zte_openo_umc_monitor_monitorList_monitor_name" name_i18n="com_zte_openo_umc_monitor_ui_i18n">Display Name</th>
- <th id="com_zte_openo_umc_monitor_monitorList_monitor_ipaddress" name_i18n="com_zte_openo_umc_monitor_ui_i18n">IP Address</th>
- <th id="com_zte_openo_umc_monitor_monitorList_monitor_dacip" name_i18n="com_zte_openo_umc_monitor_ui_i18n">DAC IP Address</th>
- <th id="com_zte_openo_umc_monitor_monitorList_monitor_type" name_i18n="com_zte_openo_umc_monitor_ui_i18n">Type</th>
- <th id="com_zte_openo_umc_monitor_monitorList_monitor_opr" name_i18n="com_zte_openo_umc_monitor_ui_i18n">Opr</th>
-
- </tr>
- </thead>
- <tbody ms-each-monitor="resource.monitorList">
- <tr>
- <td>{{$index+1}}</td>
- <td><a href="#" ms-click="gotoMonitorSettingPage(monitor.oid)">{{monitor.label}}</a></td>
- <td ms-text="monitor.ipAddress"></td>
- <td ms-text="monitor.customPara.PROXYIP"></td>
- <td>{{monitor.neTypeId}}</td>
- <td><a href="#" ms-click="deleteMonitorInfo(monitor.oid)">
- <span id="com_zte_openo_umc_monitor_monitorsetting_delete" name_i18n="com_zte_openo_umc_monitor_ui_i18n">delete</span>
- </a></td>
- </tr>
-
-
- </tbody>
- </table>
-
- </div>
-
-
-
- </div>
-
-
-
-
-<script type="text/javascript" src="../component/thirdparty/jquery/jquery-1.10.2.min.js"></script>
-<script type="text/javascript" src="../component/thirdparty/bootstrap/js/bootstrap.min.js"></script>
-<script type="text/javascript" src="../component/thirdparty/jquery.i18n/jquery.i18n.properties-1.0.9.js"></script>
- <script src="./i18n/loadi18nApp_ngict-umc-monitor.js"></script>
- <script type="text/javascript" src="../framework/js/tools.js"></script>
- <script type="text/javascript" src="../framework/js/core/hk.min.js" ></script>
-<script type="text/javascript">
-
-
- var lang= getLanguage();
- loadPropertiesSideMenu(lang, 'umc-monitor-iui-i18n', 'i18n/');
-
-</script>
-<script type="text/javascript" src="../vendor/data-tables/jquery.dataTables.min.js"></script>
-<script src="../vendor/bootstrap-growl/bootstrap-growl.min.js"></script>
-<script src="../vendor/avalon/avalon.js"></script>
-<script src="./js/monitorSettingUtil.js"></script>
-<script src="./js/monitorSettingController.js"></script>
-
-
-<script>
-$(function(){
-
- vm.queryMonitorList();
-
-});
-
-</script>
-
-
-</body>
-</html> \ No newline at end of file