1 <?xml version="1.0" encoding="UTF-8"?>
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements. See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to You under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with
8 the License. You may obtain a copy of the License at
10 http://www.apache.org/licenses/LICENSE-2.0
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
21 Display the luke request handler with graphs
24 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
25 xmlns="http://www.w3.org/1999/xhtml"
31 media-type="text/html"
32 doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
33 doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
36 <xsl:variable name="title">Solr Luke Request Handler Response</xsl:variable>
38 <xsl:template match="/">
39 <html xmlns="http://www.w3.org/1999/xhtml">
41 <link rel="stylesheet" type="text/css" href="solr-admin.css"/>
42 <link rel="icon" href="favicon.ico" type="image/ico"/>
43 <link rel="shortcut icon" href="favicon.ico" type="image/ico"/>
45 <xsl:value-of select="$title"/>
47 <xsl:call-template name="css"/>
52 <xsl:value-of select="$title"/>
56 <xsl:if test="response/lst[@name='index']">
58 <a href="#index">Index Statistics</a>
61 <xsl:if test="response/lst[@name='fields']">
63 <a href="#fields">Field Statistics</a>
65 <xsl:for-each select="response/lst[@name='fields']/lst">
68 <xsl:value-of select="@name"/>
75 <xsl:if test="response/lst[@name='doc']">
77 <a href="#doc">Document statistics</a>
82 <xsl:if test="response/lst[@name='index']">
83 <h2><a name="index"/>Index Statistics</h2>
84 <xsl:apply-templates select="response/lst[@name='index']"/>
86 <xsl:if test="response/lst[@name='fields']">
87 <h2><a name="fields"/>Field Statistics</h2>
88 <xsl:apply-templates select="response/lst[@name='fields']"/>
90 <xsl:if test="response/lst[@name='doc']">
91 <h2><a name="doc"/>Document statistics</h2>
92 <xsl:apply-templates select="response/lst[@name='doc']"/>
98 <xsl:template match="lst">
99 <xsl:if test="parent::lst">
103 <xsl:call-template name="list"/>
108 <xsl:if test="not(parent::lst)">
110 <xsl:call-template name="list"/>
115 <xsl:template name="list">
116 <xsl:if test="count(child::*)>0">
124 <xsl:value-of select="@name"/>
131 test="@name='histogram'">
134 <xsl:call-template name="histogram"/>
139 <xsl:apply-templates/>
147 <xsl:template name="histogram">
149 <xsl:call-template name="barchart">
150 <xsl:with-param name="max_bar_width">50</xsl:with-param>
151 <xsl:with-param name="iwidth">800</xsl:with-param>
152 <xsl:with-param name="iheight">160</xsl:with-param>
153 <xsl:with-param name="fill">blue</xsl:with-param>
158 <xsl:template name="barchart">
159 <xsl:param name="max_bar_width"/>
160 <xsl:param name="iwidth"/>
161 <xsl:param name="iheight"/>
162 <xsl:param name="fill"/>
163 <xsl:variable name="max">
164 <xsl:for-each select="int">
165 <xsl:sort data-type="number" order="descending"/>
166 <xsl:if test="position()=1">
167 <xsl:value-of select="."/>
171 <xsl:variable name="bars">
172 <xsl:value-of select="count(int)"/>
174 <xsl:variable name="bar_width">
176 <xsl:when test="$max_bar_width < ($iwidth div $bars)">
177 <xsl:value-of select="$max_bar_width"/>
180 <xsl:value-of select="$iwidth div $bars"/>
184 <table class="histogram">
187 <xsl:for-each select="int">
189 <xsl:value-of select="."/>
190 <div class="histogram">
191 <xsl:attribute name="style">background-color: <xsl:value-of select="$fill"/>; width: <xsl:value-of select="$bar_width"/>px; height: <xsl:value-of select="($iheight*number(.)) div $max"/>px;</xsl:attribute>
197 <xsl:for-each select="int">
199 <xsl:value-of select="@name"/>
207 <xsl:template name="keyvalue">
209 <xsl:when test="@name">
212 <xsl:value-of select="@name"/>
215 <xsl:value-of select="."/>
220 <xsl:value-of select="."/>
225 <xsl:template match="int|bool|long|float|double|uuid|date">
226 <xsl:call-template name="keyvalue"/>
229 <xsl:template match="arr">
232 <xsl:value-of select="@name"/>
236 <xsl:for-each select="child::*">
238 <xsl:apply-templates/>
246 <xsl:template match="str">
248 <xsl:when test="@name='schema' or @name='index' or @name='flags'">
249 <xsl:call-template name="schema"/>
252 <xsl:call-template name="keyvalue"/>
257 <xsl:template name="schema">
260 <xsl:value-of select="@name"/>
263 <xsl:if test="contains(.,'unstored')">
264 <xsl:value-of select="."/>
266 <xsl:if test="not(contains(.,'unstored'))">
267 <xsl:call-template name="infochar2string">
268 <xsl:with-param name="charList">
269 <xsl:value-of select="."/>
277 <xsl:template name="infochar2string">
278 <xsl:param name="i">1</xsl:param>
279 <xsl:param name="charList"/>
281 <xsl:variable name="char">
282 <xsl:value-of select="substring($charList,$i,1)"/>
285 <xsl:when test="$char='I'">
286 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='I']"/> - </xsl:when>
287 <xsl:when test="$char='T'">
288 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='T']"/> - </xsl:when>
289 <xsl:when test="$char='S'">
290 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='S']"/> - </xsl:when>
291 <xsl:when test="$char='M'">
292 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='M']"/> - </xsl:when>
293 <xsl:when test="$char='V'">
294 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='V']"/> - </xsl:when>
295 <xsl:when test="$char='o'">
296 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='o']"/> - </xsl:when>
297 <xsl:when test="$char='p'">
298 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='p']"/> - </xsl:when>
299 <xsl:when test="$char='O'">
300 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='O']"/> - </xsl:when>
301 <xsl:when test="$char='L'">
302 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='L']"/> - </xsl:when>
303 <xsl:when test="$char='B'">
304 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='B']"/> - </xsl:when>
305 <xsl:when test="$char='C'">
306 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='C']"/> - </xsl:when>
307 <xsl:when test="$char='f'">
308 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='f']"/> - </xsl:when>
309 <xsl:when test="$char='l'">
310 <xsl:value-of select="/response/lst[@name='info']/lst/str[@name='l']"/> -
314 <xsl:if test="not($i>=string-length($charList))">
315 <xsl:call-template name="infochar2string">
316 <xsl:with-param name="i">
317 <xsl:value-of select="$i+1"/>
319 <xsl:with-param name="charList">
320 <xsl:value-of select="$charList"/>
325 <xsl:template name="css">
326 <style type="text/css">
328 td.name {font-style: italic; font-size:80%; }
329 .doc { margin: 0.5em; border: solid grey 1px; }
330 .exp { display: none; font-family: monospace; white-space: pre; }
331 div.histogram { background: none repeat scroll 0%; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;}
332 table.histogram { width: auto; vertical-align: bottom; }
333 table.histogram td, table.histogram th { text-align: center; vertical-align: bottom; border-bottom: 1px solid #ff9933; width: auto; }