����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/oma/cim/ |
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:output method="text"/>
<xsl:variable name="combinedkeyinput">
<xsl:for-each select="/OMACIM/Keys/Key">
<xsl:value-of select="@value"/>
</xsl:for-each>
</xsl:variable>
<xsl:variable name="lowercombinedkeyinput" select="translate($combinedkeyinput,'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')"/>
<xsl:template match="SVMInventory">
<xsl:choose>
<xsl:when test="not(/OMACIM/Keys)">
instance of <xsl:value-of select="/OMACIM/@creation-class-name" />
{
name = "Inventory Collector Agent";
description = "Provides information about devices running on the local system";
vendor = "Dell Inc.";
version = "<xsl:value-of select="@invcolVersion" />";
timestamp = "<xsl:value-of select="@timeStamp" />";
};
</xsl:when>
<xsl:otherwise>
<xsl:variable name="combinedProductinfoTag">Provides information about devices running on the local systemInventory Collector Agent<xsl:value-of select="@timeStamp" />Dell Inc.<xsl:value-of select="@invcolVersion" /></xsl:variable>
<xsl:variable name="lowercombinedProductinfoTag" select="translate($combinedProductinfoTag,'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')"/>
<xsl:if test="($lowercombinedProductinfoTag = $lowercombinedkeyinput ) ">
instance of <xsl:value-of select="/OMACIM/@creation-class-name" />
{
name = "Inventory Collector Agent";
description = "Provides information about devices running on the local system";
vendor = "Dell Inc.";
version = "<xsl:value-of select="@invcolVersion" />";
timestamp = "<xsl:value-of select="@timeStamp" />";
};
</xsl:if >
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>