Mini Shell
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" />
<xsl:strip-space elements="*"/>
<xsl:template match="/OMA">
<xsl:choose>
<xsl:when test="SMStatus != '0'">
<DataArea>
<PageTitle>
<xsl:attribute name="display"><!--XLATESTART-->错误! <!--XLATESTOP--><xsl:call-template name="smstatus"><xsl:with-param name="status"><xsl:value-of select="SMStatus"/></xsl:with-param></xsl:call-template></xsl:attribute>
</PageTitle>
</DataArea>
</xsl:when>
<xsl:otherwise>
<DataArea>
<PageTitle>
<xsl:attribute name="display"><!--XLATESTART-->机箱信息<!--XLATESTOP--></xsl:attribute>
</PageTitle>
<ListData>
<Data>
<xsl:attribute name="display"><!--XLATESTART-->索引<!--XLATESTOP--></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="Chassis/@index"/></xsl:attribute>
</Data>
<Data>
<xsl:attribute name="display"><!--XLATESTART-->机箱名称<!--XLATESTOP--></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="Chassis/@display"/></xsl:attribute>
</Data>
<xsl:apply-templates select="ChassisInfo"/>
</ListData>
</DataArea>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template match="ChassisInfo">
<xsl:if test="SystemInfo/SystemName">
<Data>
<xsl:attribute name="display"><!--XLATESTART-->主机名<!--XLATESTOP--></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="SystemInfo/SystemName"/></xsl:attribute>
</Data>
</xsl:if>
<xsl:if test="FirmwareList">
<xsl:for-each select="FirmwareList/Firmware">
<Data>
<xsl:attribute name="display"><xsl:value-of select="FWText"/><!--XLATESTART--> 版本<!--XLATESTOP--></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="FWVersion"/></xsl:attribute>
</Data>
</xsl:for-each>
</xsl:if>
<xsl:if test="ChassisProps1/ChassModel">
<Data>
<xsl:attribute name="display"><!--XLATESTART-->机箱型号<!--XLATESTOP--></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="ChassisProps1/ChassModel"/></xsl:attribute>
</Data>
</xsl:if>
<xsl:if test="ChassisProps1/ChassLockPresent">
<Data>
<xsl:attribute name="display"><!--XLATESTART-->底座锁<!--XLATESTOP--></xsl:attribute>
<xsl:choose>
<xsl:when test="ChassisProps1/ChassLockPresent = 'true'">
<xsl:attribute name="value"><!--XLATESTART-->存在<!--XLATESTOP--></xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="value"><!--XLATESTART-->不存在<!--XLATESTOP--></xsl:attribute>
</xsl:otherwise>
</xsl:choose>
</Data>
</xsl:if>
<xsl:if test="ChassisProps2/ServiceTag">
<Data>
<xsl:attribute name="display"><!--XLATESTART-->服务标签<!--XLATESTOP--></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="ChassisProps2/ServiceTag"/></xsl:attribute>
</Data>
</xsl:if>
<xsl:if test="ChassisProps2/AssetTag">
<Data>
<xsl:attribute name="display"><!--XLATESTART-->资产标签<!--XLATESTOP--></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="ChassisProps2/AssetTag"/></xsl:attribute>
</Data>
</xsl:if>
<xsl:if test="ChassisProps2/FaultLEDControl != '0'">
<Data>
<xsl:attribute name="display"><!--XLATESTART-->故障 LED 在严重性级别上闪烁<!--XLATESTOP--></xsl:attribute>
<xsl:choose>
<xsl:when test="ChassisProps2/FaultLEDControl = '8'">
<xsl:attribute name="value"><!--XLATESTART-->警告<!--XLATESTOP--></xsl:attribute>
</xsl:when>
<xsl:when test="ChassisProps2/FaultLEDControl = '16'">
<xsl:attribute name="value"><!--XLATESTART-->严重<!--XLATESTOP--></xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="value"><!--XLATESTART-->未定义<!--XLATESTOP--></xsl:attribute>
</xsl:otherwise>
</xsl:choose>
</Data>
</xsl:if>
<xsl:if test="BaseBoardList/@count > '0'">
<xsl:call-template name="BaseBoard"/>
</xsl:if>
</xsl:template>
<xsl:template name="BaseBoard">
<xsl:for-each select="/OMA/BaseBoardList/BaseBoard">
<xsl:if test="FeatureFlags/HostingBoard='true'">
<Data name="BladeServiceTag" type="ustring">
<xsl:attribute name="display"><!--XLATESTART-->Blade 服务标签<!--XLATESTOP--></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="ServiceTag"/></xsl:attribute>
</Data>
<Data name="BladeServiceTag" type="ustring">
<xsl:attribute name="display"><!--XLATESTART-->Blade 资产标签<!--XLATESTOP--></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="AssetTag"/></xsl:attribute>
</Data>
<Data name="BladeLocation" type="ustring">
<xsl:attribute name="display"><!--XLATESTART-->Blade 位置<!--XLATESTOP--></xsl:attribute>
<xsl:attribute name="value"><xsl:value-of select="BoardLocation"/></xsl:attribute>
</Data>
</xsl:if>
</xsl:for-each>
</xsl:template>
<xsl:template name="smstatus">
<xsl:param name="status"/>
<xsl:param name="mssg"/>
<xsl:choose>
<xsl:when test="$status = '-1'"><!--XLATESTART-->命令未成功<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '0'"><!--XLATESTART-->命令已成功<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '1'"><!--XLATESTART-->命令未执行<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '2'"><!--XLATESTART-->命令错误<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '3'"><!--XLATESTART-->命令超时<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '4'"><!--XLATESTART-->命令已取消<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '5'"><!--XLATESTART-->命令已终止<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '6'"><!--XLATESTART-->命令挂起<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '7'"><!--XLATESTART-->没有此类设备<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '8'"><!--XLATESTART-->设备正忙<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '9'"><!--XLATESTART-->设备故障<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '10'"><!--XLATESTART-->假中断<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '11'"><!--XLATESTART-->资源锁定<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '12'"><!--XLATESTART-->索引无效<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '13'"><!--XLATESTART-->SMB 错误<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '14'"><!--XLATESTART-->所请求的数据不可用<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '15'"><!--XLATESTART-->所请求的数据多于可用数据<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '16'"><!--XLATESTART-->所请求的数据少于可用数据<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '17'"><!--XLATESTART-->设备尚未准备好,无法接受命令。 请稍后重试<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '18'"><!--XLATESTART-->设备上没有数据<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '19'"><!--XLATESTART-->设备上内存不足<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '20'"><!--XLATESTART-->设备已存在<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '256'"><!--XLATESTART-->未找到对象<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '257'"><!--XLATESTART-->对象变形、损坏或是坏的<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '258'"><!--XLATESTART-->对象已存在<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '260'"><!--XLATESTART-->未找到 INI 文件<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '261'"><!--XLATESTART-->INI 变形、损坏或是坏的<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '262'"><!--XLATESTART-->INI 部分不存在<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '263'"><!--XLATESTART-->INI 键不存在<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '264'"><!--XLATESTART-->INI 值变形、损坏或是坏的<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '270'"><!--XLATESTART-->访问权限不足<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '271'"><!--XLATESTART-->参数名称或值无效: <!--XLATESTOP--><xsl:value-of select="$mssg"/></xsl:when>
<xsl:when test="$status = '272'"><!--XLATESTART-->内存不够<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '280'"><!--XLATESTART-->未找到 XML 文件<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '281'"><!--XLATESTART-->XML 变形、损坏或是坏的<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '282'"><!--XLATESTART-->XML 节点不存在<!--XLATESTOP--></xsl:when>
<xsl:when test="$status = '283'"><!--XLATESTART-->XML 值变形、损坏或是坏的<!--XLATESTOP--></xsl:when>
<xsl:otherwise>SMStatus: <xsl:value-of select="$status"/></xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>
Zerion Mini Shell 1.0