17 lines
No EOL
642 B
XML
17 lines
No EOL
642 B
XML
<?xml version='1.0' ?>
|
|
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
|
|
|
<xsl:import href="StandardTransforms.xsl"/>
|
|
|
|
<xsl:output method="text"/>
|
|
|
|
<xsl:template match="Freed"> Plugin freed
</xsl:template>
|
|
|
|
<xsl:template match="FreeLocal">Clearing local record of remote plugin
</xsl:template>
|
|
|
|
<xsl:template match="LoadCount"> Load count reduced to <xsl:value-of select="."/>
</xsl:template>
|
|
|
|
<xsl:template match="Plugin">Freeing plugin <xsl:value-of select="@id"/> (<xsl:value-of select="@type"/>)
</xsl:template>
|
|
|
|
|
|
</xsl:transform> |