diff options
Added datasource master template
* handles basic output structure
* provides XSLT standard template "text()/@*" redefinition to prevent unwanted output of unmatched elements
Diffstat (limited to 'template')
-rw-r--r-- | template/datasource/pages.xsl | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/template/datasource/pages.xsl b/template/datasource/pages.xsl index 7de4b4b..c77513a 100644 --- a/template/datasource/pages.xsl +++ b/template/datasource/pages.xsl @@ -7,23 +7,9 @@ exclude-result-prefixes="xalan InputXSLT" > -<xsl:output - method="xml" - omit-xml-declaration="no" - encoding="UTF-8" - indent="yes" -/> - +<xsl:include href="[utility/datasource.xsl]"/> <xsl:include href="[utility/formatter.xsl]"/> -<xsl:template match="data"> - <datasource> - <xsl:apply-templates /> - </datasource> -</xsl:template> - -<xsl:template match="text()|@*"/> - <xsl:template match="source/pages"> <pages> <xsl:apply-templates select="./*"/> |