diff options
author | Adrian Kummerlaender | 2014-12-09 19:17:42 +0100 |
---|---|---|
committer | Adrian Kummerlaender | 2014-12-09 19:17:42 +0100 |
commit | 072250e4c022f8011df14f8bf7ad79086431a779 (patch) | |
tree | 87894424412b2ca7c92e7acf39ff31815e240fab /src/steps | |
parent | 299b5a6d694101be3e053d2a6a680a5ad2d5744b (diff) | |
download | StaticXSLT-072250e4c022f8011df14f8bf7ad79086431a779.tar StaticXSLT-072250e4c022f8011df14f8bf7ad79086431a779.tar.gz StaticXSLT-072250e4c022f8011df14f8bf7ad79086431a779.tar.bz2 StaticXSLT-072250e4c022f8011df14f8bf7ad79086431a779.tar.lz StaticXSLT-072250e4c022f8011df14f8bf7ad79086431a779.tar.xz StaticXSLT-072250e4c022f8011df14f8bf7ad79086431a779.tar.zst StaticXSLT-072250e4c022f8011df14f8bf7ad79086431a779.zip |
Removed unnecessary selector negation
* it's the order of templates that decides which specialization gets evaluated
Diffstat (limited to 'src/steps')
-rw-r--r-- | src/steps/plan.xsl | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/steps/plan.xsl b/src/steps/plan.xsl index ba54aba..9ad773b 100644 --- a/src/steps/plan.xsl +++ b/src/steps/plan.xsl @@ -65,6 +65,19 @@ </task> </xsl:template> +<xsl:template match="node/directory"> + <xsl:variable name="base_path" select="../../path"/> + + <task type="link"> + <from> + <xsl:value-of select="concat($target, '/', $base_path, '/', @name)"/> + </from> + <to> + <xsl:value-of select="concat($source, '/', $base_path, '/', @name)"/> + </to> + </task> +</xsl:template> + <xsl:template match="node/directory[.//file/@extension = '.xsl']"> <xsl:variable name="base_path" select="../../path"/> @@ -78,19 +91,6 @@ <xsl:apply-templates select="xalan:nodeset($new_level)/level"/> </xsl:template> -<xsl:template match="node/directory[not(.//file/@extension = '.xsl')]"> - <xsl:variable name="base_path" select="../../path"/> - - <task type="link"> - <from> - <xsl:value-of select="concat($target, '/', $base_path, '/', @name)"/> - </from> - <to> - <xsl:value-of select="concat($source, '/', $base_path, '/', @name)"/> - </to> - </task> -</xsl:template> - <xsl:template match="level[count(node/file | node/directory) > 0]"> <task type="directory"> <path> |