aboutsummaryrefslogtreecommitdiff
path: root/template/compiler/pages.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'template/compiler/pages.xsl')
-rw-r--r--template/compiler/pages.xsl33
1 files changed, 0 insertions, 33 deletions
diff --git a/template/compiler/pages.xsl b/template/compiler/pages.xsl
deleted file mode 100644
index dbde8c9..0000000
--- a/template/compiler/pages.xsl
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet
- version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns:xalan="http://xml.apache.org/xalan"
- xmlns:InputXSLT="function.inputxslt.application"
- exclude-result-prefixes="xalan InputXSLT"
->
-
-<xsl:output
- method="xml"
- omit-xml-declaration="no"
- encoding="UTF-8"
- indent="yes"
-/>
-
-<xsl:include href="utility/context.xsl"/>
-
-<xsl:variable name="context" select="/data/meta"/>
-
-<xsl:variable name="datasources">
- <file name="pages.xml"/>
-</xsl:variable>
-
-<xsl:template match="datasource[@name = 'pages.xml']/entry">
- <xsl:call-template name="generate_in_context">
- <xsl:with-param name="input" select="."/>
- <xsl:with-param name="transformation" select="string('[template/output/page.xsl]')"/>
- <xsl:with-param name="target" select="concat($context/target/output, '/pages/', @handle)"/>
- </xsl:call-template>
-</xsl:template>
-
-</xsl:stylesheet>