aboutsummaryrefslogtreecommitdiff
path: root/solr-8.1.1/server/solr-webapp/webapp/partials/plugins.html
diff options
context:
space:
mode:
Diffstat (limited to 'solr-8.1.1/server/solr-webapp/webapp/partials/plugins.html')
-rw-r--r--solr-8.1.1/server/solr-webapp/webapp/partials/plugins.html72
1 files changed, 0 insertions, 72 deletions
diff --git a/solr-8.1.1/server/solr-webapp/webapp/partials/plugins.html b/solr-8.1.1/server/solr-webapp/webapp/partials/plugins.html
deleted file mode 100644
index aaa424d3b..000000000
--- a/solr-8.1.1/server/solr-webapp/webapp/partials/plugins.html
+++ /dev/null
@@ -1,72 +0,0 @@
-<!--
-Licensed to the Apache Software Foundation (ASF) under one or more
-contributor license agreements. See the NOTICE file distributed with
-this work for additional information regarding copyright ownership.
-The ASF licenses this file to You 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.
--->
-<div id="plugins" class="clearfix">
-
- <div id="frame">
- <ul>
- <li class="entry" ng-class="{changed: plugin.changed}" ng-repeat="plugin in type.plugins">
- <a ng-click="selectPlugin(plugin)">
- <span>{{ plugin.name }}</span>
- </a>
- <ul class="detail" ng-show="plugin.open">
- <li ng-repeat="(key, value) in plugin.properties" ng-class="{odd: $odd}">
- <dl class="clearfix">
- <dt>{{ key }}:</dt>
- <!--<dd ng-repeat="v in value">{{v}}</dd><!-- is AN ARRAY!!-->
- <dd>{{value}}</dd>
- </dl>
- </li>
- <li class="stats clearfix" ng-show="plugin.stats">
- <span>stats:</span>
- <ul>
- <li ng-repeat="(key, value) in plugin.stats" ng-class="{odd: $odd}">
- <dl class="clearfix">
- <dt>{{key}}:</dt>
- <dd>{{value}}</dd>
- </dl>
- </li>
- </ul>
- </li>
- </ul>
- </ul>
- </div>
-
- <div id="navigation" class="clearfix">
-
- <ul>
- <li ng-repeat="typeObj in types" class="{{typeObj.lower}}" ng-class="{active:typeObj==type}">
- <a ng-click="selectPluginType(typeObj)" rel="{{typeObj.name}}">{{typeObj.name}}
- <span ng-show="typeObj.changes">{{typeObj.changes}}</span>
- </a>
- </li>
- <li class="PLUGINCHANGES"><a ng-click="startRecording()">Watch Changes</a></li>
- <li class="RELOAD"><a ng-click="refresh()">Refresh Values</a></li>
- <li class="NOTE"><p>NOTE: Only selected metrics are shown here. Full metrics can be accessed via /admin/metrics handler.</p></li>
- </ul>
- </div>
-
- <div id="recording" ng-show="isRecording">
- <div class="wrapper clearfix">
-
- <p class="loader">Watching for Changes</p>
- <button class="primary" ng-click="stopRecording()">Stop &amp; Show Changes</button>
-
- </div>
- <div id="blockUI"></div>
- </div>
-
-</div>