HSLE#41699: Berichtgeving vanuit acceptatie naar Flowmailer dmv XSL bestanden
svn path=/Website/branches/v2017.1/; revision=35089
This commit is contained in:
30
CUST/HSLE/xsl/hsle_noti.xsl
Normal file
30
CUST/HSLE/xsl/hsle_noti.xsl
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<?xml version="1.0" encoding="ISO-8859-15"?>
|
||||||
|
<!-- http://x443.wordpress.com/2011/page/34/ -->
|
||||||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||||
|
|
||||||
|
<xsl:output method="xml" indent="yes"/>
|
||||||
|
|
||||||
|
<xsl:template match="@*">
|
||||||
|
<xsl:copy/>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="text()">
|
||||||
|
<xsl:value-of select="normalize-space(.)" />
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
<xsl:template match="*">
|
||||||
|
<xsl:param name="indent" select="''"/>
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
<xsl:value-of select="$indent" />
|
||||||
|
<xsl:copy>
|
||||||
|
<xsl:apply-templates select="@*|*|text()">
|
||||||
|
<xsl:with-param name="indent" select="concat($indent, ' ')"/>
|
||||||
|
</xsl:apply-templates>
|
||||||
|
</xsl:copy>
|
||||||
|
<xsl:if test="count(../*)>0 and ../*[last()]=.">
|
||||||
|
<xsl:text>
</xsl:text>
|
||||||
|
<xsl:value-of select="substring($indent,3)" />
|
||||||
|
</xsl:if>
|
||||||
|
</xsl:template>
|
||||||
|
|
||||||
|
</xsl:stylesheet>
|
||||||
Reference in New Issue
Block a user