1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
| <?xml version="1.0" ?>
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:rapExtObj="urn:rapExtObj">
<xsl:output method="html" />
- <xsl:template match="RemoteApplications">
<xsl:apply-templates select="Application" />
<xsl:apply-templates select="NonRDPApplication" />
</xsl:template>
- <xsl:template match="Application" priority="1">
- <div class="tswa_boss" tabindex="0" onmouseup="goRDP(this, '{rapExtObj:JScriptEncode(RdpProps)}');" onkeypress="onmouseup()" title="{@name}" onmouseover="tswa_bossOver(this)" onmouseout="tswa_bossOut(this)">
<img class="tswa_vis0" src="{rapExtObj:GetImageStorageLocation()}ivmo.png" />
<img class="tswa_iconimg" src="{rapExtObj:GetIconFile(Install/Icons/Icon, Install/Icons/Icon/@name)}" />
- <div class="tswa_ttext">
<xsl:value-of select="@name" />
</div>
</div>
</xsl:template>
- <xsl:template match="NonRDPApplication" priority="1">
- <div class="tswa_boss" tabindex="0" onmouseup="goNonRDP(this, '{rapExtObj:JScriptEncode(RdpProps)}');" onkeypress="onmouseup()" title="{@name}" onmouseover="tswa_bossOver(this)" onmouseout="tswa_bossOut(this)">
<img class="tswa_vis0" src="{rapExtObj:GetImageStorageLocation()}ivmo.png" />
<img class="tswa_iconimg" src="{rapExtObj:GetIconFile(Install/Icons/Icon, Install/Icons/Icon/@name)}" />
- <div class="tswa_ttext">
<xsl:value-of select="@name" />
</div>
</div>
</xsl:template>
</xsl:stylesheet> |
Partager