mirror of https://github.com/apache/lucene.git
78 lines
3.3 KiB
HTML
78 lines
3.3 KiB
HTML
<!--
|
|
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="cloud" class="clearfix">
|
|
|
|
<div id="frame">
|
|
{{here}}
|
|
<div id="tree-content" class="content clearfix" ng-show="showTree">
|
|
<jstree class="tree" on-select="showTreeLink(url)" config="jstree" data="tree" id="tree"></jstree>
|
|
|
|
<div id="file-content" class="clearfix">
|
|
|
|
<div id="prop" ng-show="znode.prop && showData">
|
|
<ul>
|
|
<li ng-class:"odd:$odd" ng-repeat="(key, prop) in znode.prop">
|
|
<dl class="clearfix">
|
|
<dt>{{ key }}</dt>
|
|
<dd>{{ prop }}</dd>
|
|
</dl>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div id="data" ng-show="showData">
|
|
<em ng-show="!znode.data">Node "{{znode.path }}" has no utf8 Content</em>
|
|
<pre ng-show="znode.data" class="syntax language-{{lang}}"
|
|
ng-bind-html="znode.data | highlight:lang | unsafe">
|
|
</pre>
|
|
<a class="close" ng-click="hideData()"><span> </span></a>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div graph data="graphData" leaf-count="leafCount" helper-data="helperData" is-radial="isRadial" id="graph-content" class="content clearfix" ng-show="showGraph">
|
|
|
|
<div id="canvas"></div>
|
|
|
|
<div id="legend">
|
|
<ul>
|
|
<li class="leader"><svg width="15" height="15"><g transform="translate(5,2)"><g transform="translate(0,5)"><circle r="4.5"></circle></g></g></svg> Leader</li>
|
|
<li class="active"><svg width="15" height="15"><g transform="translate(5,2)"><g transform="translate(0,5)"><circle r="4.5"></circle></g></g></svg> Active</li>
|
|
<li class="recovering"><svg width="15" height="15"><g transform="translate(5,2)"><g transform="translate(0,5)"><circle r="4.5"></circle></g></g></svg> Recovering</li>
|
|
<li class="down"><svg width="15" height="15"><g transform="translate(5,2)"><g transform="translate(0,5)"><circle r="4.5"></circle></g></g></svg> Down</li>
|
|
<li class="recovery_failed"><svg width="15" height="15"><g transform="translate(5,2)"><g transform="translate(0,5)"><circle r="4.5"></circle></g></g></svg> Recovery Failed</li>
|
|
<li class="gone"><svg width="15" height="15"><g transform="translate(5,2)"><g transform="translate(0,5)"><circle r="4.5"></circle></g></g></svg> Gone</li>
|
|
</ul>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div id="debug" ng-show="showDebug">
|
|
<ul class="clearfix">
|
|
<li class="clipboard"><a href="#" data-copied="Copied to Clipboard!">Copy to Clipboard (BUGGY!)</a></li>
|
|
<li class="close"><a ng-click="closeDebug()">Close</a></li>
|
|
</ul>
|
|
<pre class="debug"></pre>
|
|
</div>
|
|
|
|
</div>
|