Mercurial > dive4elements > river
diff artifacts/contrib/list-unused-macros.xsl @ 7730:e1b831fe435a slt-simplify-cross-sections
Merged default into slt-simplify-cross-sections branch and updated package and class names.
author | Tom Gottfried <tom@intevation.de> |
---|---|
date | Mon, 20 Jan 2014 14:04:20 +0100 |
parents | 9543b768d740 |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/artifacts/contrib/list-unused-macros.xsl Mon Jan 20 14:04:20 2014 +0100 @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<xsl:stylesheet + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:dc="http://www.intevation.org/2011/Datacage" + version="1.0"> + + <xsl:output method="text" encoding="UTF-8"/> + + <xsl:template match="/"> + <xsl:text>Duplicate macros:
</xsl:text> + <xsl:for-each select="//dc:macro/@name"> + <xsl:variable name="mname" select="."/> + <xsl:if test="count(//dc:macro[@name=$mname]) > 1"> + <xsl:text> </xsl:text> + <xsl:value-of select="$mname"/> + <xsl:text>
</xsl:text> + </xsl:if> + </xsl:for-each> + + <xsl:text>Marcos defined but not called:
</xsl:text> + <xsl:for-each select="//dc:macro/@name"> + <xsl:variable name="mname" select="."/> + <xsl:if test="count(//dc:call-macro[@name=$mname]) = 0"> + <xsl:text> </xsl:text> + <xsl:value-of select="$mname"/> + <xsl:text>
</xsl:text> + </xsl:if> + </xsl:for-each> + + <xsl:text>Marcos called but not defined:
</xsl:text> + <xsl:for-each select="//dc:call-macro/@name"> + <xsl:variable name="mname" select="."/> + <xsl:if test="count(//dc:macro[@name=$mname]) = 0"> + <xsl:text> </xsl:text> + <xsl:value-of select="$mname"/> + <xsl:text>
</xsl:text> + </xsl:if> + </xsl:for-each> + </xsl:template> +</xsl:stylesheet> +