Former-commit-id:e197f23ce3
[formerly d18b403b332dff67d1c85d4317bbceda337d1b41] Former-commit-id:70e4ff30a6
15 lines
428 B
XML
15 lines
428 B
XML
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output indent="yes"/>
|
|
<xsl:strip-space elements="*"/>
|
|
|
|
<xsl:template match="node()|@*">
|
|
<xsl:copy>
|
|
<xsl:apply-templates select="node()|@*"/>
|
|
</xsl:copy>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="providerType">
|
|
<providerType dataType="GRID" plugin="grid" availabilityDelay="100" />
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|