[Dive4elements-commits] [PATCH] Datacage: Added stylesheet to detect macros which are defined and not called and vice versa
Wald Commits
scm-commit at wald.intevation.org
Sun May 12 16:15:43 CEST 2013
# HG changeset patch
# User Sascha L. Teichmann <teichmann at intevation.de>
# Date 1368368137 -7200
# Node ID e5e2b063085551c31f6677627d9441f58607f607
# Parent 600280716e2510381d3ea217e3db0cf6c39d58af
Datacage: Added stylesheet to detect macros which are defined and not called and vice versa.
Usage: xsltproc contrib/list-unused-macros.xsl doc/conf/meta-data.xml
diff -r 600280716e25 -r e5e2b0630855 artifacts/contrib/list-unused-macros.xsl
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/artifacts/contrib/list-unused-macros.xsl Sun May 12 16:15:37 2013 +0200
@@ -0,0 +1,31 @@
+<?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>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>
+
More information about the Dive4elements-commits
mailing list