blob: 9ef2d9e8f5d2bd2802209724701c895fdc9e477e [file] [log] [blame]
<?xml version="1.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.
-->
<!-- $Id$ -->
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml"
xmlns:status="http://apache.org/cocoon/status/2.0">
<xsl:template match="status:statusinfo">
<div>
<h2><xsl:value-of select="@status:host"/> - <xsl:value-of select="@status:date"/></h2>
<xsl:apply-templates/>
</div>
</xsl:template>
<xsl:template match="status:group">
<h3><xsl:value-of select="@status:name"/></h3>
<ul><xsl:apply-templates select="status:value"/></ul>
<xsl:apply-templates select="status:group"/>
</xsl:template>
<xsl:template match="status:value">
<li>
<span class="description"><xsl:value-of select="@status:name"/><xsl:text>: </xsl:text></span>
<!--
<ul>
<xsl:apply-templates />
</ul>
-->
<xsl:choose>
<xsl:when test="contains(@status:name,'free') or contains(@status:name,'total')">
<xsl:call-template name="suffix">
<xsl:with-param name="bytes" select="number(.)"/>
</xsl:call-template>
</xsl:when>
<xsl:when test="count(status:line) &lt;= 1">
<xsl:value-of select="status:line"/>
</xsl:when>
<xsl:otherwise>
<ul>
<xsl:apply-templates />
</ul>
</xsl:otherwise>
</xsl:choose>
</li>
</xsl:template>
<xsl:template match="status:line">
<li><xsl:value-of select="."/></li>
</xsl:template>
<xsl:template name="suffix">
<xsl:param name="bytes"/>
<xsl:choose>
<!-- More than 4 MB (=4194304) -->
<xsl:when test="$bytes &gt;= 4194304">
<xsl:value-of select="round($bytes div 10485.76) div 100"/> MB
</xsl:when>
<!-- More than 4 KB (=4096) -->
<xsl:when test="$bytes &gt; 4096">
<xsl:value-of select="round($bytes div 10.24) div 100"/> KB
</xsl:when>
<!-- Less -->
<xsl:otherwise>
<xsl:value-of select="$bytes"/> B
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>