view docs/xsls/dump.xsls @ 5059:0419c3321bf2 stable-1.2

Merge of r5012: configure: removed redundant variable assignment.
author Maxim Dounin <mdounin@mdounin.ru>
date Mon, 11 Feb 2013 15:28:50 +0000
parents 0275f587e00b
children
line wrap: on
line source

X:stylesheet {

X:output method="xml"
X:param indent-increment="'   '";

X:template noname(indent="'&#xA;'") = "*" {
        !{$indent}

        X:if "name()='xsl:template'" {
                !{$indent}
        }

        X:copy {
           X:copy-of "@*"
           !!( indent = "concat($indent, $indent-increment)" );
           X:if "./* " { !{$indent}  }
        }
}

 
X:template = "comment()|processing-instruction()" {
    X:copy;
}

<!--
X:template ="text()[normalize-space(.)='']" {}
-->

}