����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 3.128.95.177 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 : /opt/dell/srvadmin/var/lib/openmanage/xslroot/oma/cli/ |
Upload File : |
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="/OMA"> <DataArea> <PageTitle display="Bundle Validation"/> <TableData> <Header> <Data value="Bundle Supported" display="Bundle Supported" name="BundleSupported"/> <Data value="System Supported" display="System Supported" name="SystemSupported"/> <Data value="OS Supported" display="OS Supported" name="OSSupported"/> <Data value="Bundle Complete" display="Bundle Complete" name="BundleComplete"/> <Data value="Status" display="Status" name="Status"/> </Header> <xsl:apply-templates /> </TableData> </DataArea> </xsl:template> <xsl:template match="BundleLog"> <Row> <Data name="BundleSupported"> <xsl:choose> <xsl:when test="Validation/@system-supported = 'true' and Validation/@os-supported and SMStatus/@result != '3075'"> <xsl:attribute name="value">true</xsl:attribute> <xsl:attribute name="display">true</xsl:attribute> </xsl:when> <xsl:otherwise> <xsl:attribute name="value">false</xsl:attribute> <xsl:attribute name="display">false</xsl:attribute> </xsl:otherwise> </xsl:choose> </Data> <xsl:choose> <xsl:when test="SMStatus/@result != '3081'"> <Data name="SystemSupported"> <xsl:attribute name="value"><xsl:value-of select="Validation/@system-supported" /></xsl:attribute> <xsl:attribute name="display"><xsl:value-of select="Validation/@system-supported" /></xsl:attribute> </Data> <Data name="OSSupported"> <xsl:attribute name="value"><xsl:value-of select="Validation/@os-supported" /></xsl:attribute> <xsl:attribute name="display"><xsl:value-of select="Validation/@os-supported" /></xsl:attribute> </Data> <Data name="BundleComplete"> <xsl:choose> <xsl:when test="SMStatus/@result = '3075'"> <xsl:attribute name="value">false</xsl:attribute> <xsl:attribute name="display">false</xsl:attribute> </xsl:when> <xsl:otherwise> <xsl:attribute name="value">true</xsl:attribute> <xsl:attribute name="display">true</xsl:attribute> </xsl:otherwise> </xsl:choose> </Data> </xsl:when> <xsl:otherwise> <Data name="Status"> <xsl:attribute name="value">Definition file not found.</xsl:attribute> <xsl:attribute name="display">Definition file not found.</xsl:attribute> </Data> </xsl:otherwise> </xsl:choose> </Row> </xsl:template> </xsl:stylesheet>