summaryrefslogtreecommitdiffstats
path: root/framework/src/onos/web/gui/src/main/webapp/app/view/settings
diff options
context:
space:
mode:
Diffstat (limited to 'framework/src/onos/web/gui/src/main/webapp/app/view/settings')
-rw-r--r--framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.css27
-rw-r--r--framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.html52
-rw-r--r--framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.js36
3 files changed, 0 insertions, 115 deletions
diff --git a/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.css b/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.css
deleted file mode 100644
index e748c5ac..00000000
--- a/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.css
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * Copyright 2015 Open Networking Laboratory
- *
- * 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.
- */
-
-/*
- ONOS GUI -- Settings View -- CSS file
- */
-
-#ov-settings h2 {
- display: inline-block;
-}
-
-#ov-settings div.ctrl-btns {
- width: 45px;
-}
diff --git a/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.html b/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.html
deleted file mode 100644
index 61081017..00000000
--- a/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.html
+++ /dev/null
@@ -1,52 +0,0 @@
-<!-- settings partial HTML -->
-<div id="ov-settings">
- <div class="tabular-header">
- <h2>Component Settings ({{tableData.length}} total)</h2>
- <div class="ctrl-btns">
- <div class="refresh" ng-class="{active: autoRefresh}"
- icon icon-size="36" icon-id="refresh"
- tooltip tt-msg="autoRefreshTip"
- ng-click="toggleRefresh()"></div>
- </div>
- </div>
-
- <div class="summary-list" onos-table-resize>
- <div ng-show="loading" class="loading-wheel"
- icon icon-id="loading" icon-size="75"></div>
-
- <div class="table-header" onos-sortable-header>
- <table>
- <tr>
- <td colId="component" sortable col-width="300px">Component </td>
- <td colId="id" sortable>Property </td>
- <td colId="type" sortable col-width="70px">Type </td>
- <td colId="value" sortable>Value </td>
- <td colId="defValue" sortable>Default </td>
- <td colId="desc" col-width="400px">Description </td>
- </tr>
- </table>
- </div>
-
- <div class="table-body">
- <table onos-flash-changes id-prop="id">
- <tr ng-if="!tableData.length" class="no-data">
- <td colspan="6">
- No Settings found
- </td>
- </tr>
-
- <tr ng-repeat="prop in tableData track by $index"
- ng-repeat-complete row-id="{{prop.id}}">
- <td>{{prop.component}}</td>
- <td>{{prop.id}}</td>
- <td>{{prop.type}}</td>
- <td>{{prop.value}}</td>
- <td>{{prop.defValue}}</td>
- <td>{{prop.desc}}</td>
- </tr>
- </table>
- </div>
-
- </div>
-
-</div>
diff --git a/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.js b/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.js
deleted file mode 100644
index cec0e70e..00000000
--- a/framework/src/onos/web/gui/src/main/webapp/app/view/settings/settings.js
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * Copyright 2015 Open Networking Laboratory
- *
- * 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.
- */
-
-/*
- ONOS GUI -- Component Settings View Module
- */
-
-(function () {
- 'use strict';
-
- angular.module('ovSettings', [])
- .controller('OvSettingsCtrl',
- ['$log', '$scope', 'TableBuilderService',
-
- function ($log, $scope, tbs) {
- tbs.buildTable({
- scope: $scope,
- tag: 'setting'
- });
-
- $log.log('OvSettingsCtrl has been created');
- }]);
-}());