view docs/xsls/dump.xsls @ 5160:ab992c25770c stable-1.2

Merge of r5129: split clients configuration parsing. Split clients: check length when parsing configuration.
author Maxim Dounin <mdounin@mdounin.ru>
date Fri, 29 Mar 2013 17:59:41 +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(.)='']" {}
-->

}