diff options
Restructured to enable automatic datasources
* i.e. first the content source is mapped
* after that every transformation in 'template/datasource/' is called using the content map as input
** the output of the datasource transformations is stored in 'datasource/'
Diffstat (limited to 'datasource')
-rw-r--r-- | datasource/entry.xsl | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/datasource/entry.xsl b/datasource/entry.xsl deleted file mode 100644 index 4ea6162..0000000 --- a/datasource/entry.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:include href="[utility/formatter.xsl]"/> - -<xsl:template name="entry"> - <xsl:param name="file"/> - - <entry handle="{$file/name}"> - <xsl:choose> - <xsl:when test="$file/extension = '.md'"> - <xsl:call-template name="formatter"> - <xsl:with-param name="format">/usr/bin/markdown</xsl:with-param> - <xsl:with-param name="source" select="InputXSLT:read-file($file/full)/text()"/> - </xsl:call-template> - </xsl:when> - <xsl:when test="$file/extension = '.xml'"> - <xsl:copy-of select="InputXSLT:read-file($file/full)/*"/> - </xsl:when> - <xsl:otherwise> - <xsl:copy-of select="InputXSLT:read-file($file/full)/text()"/> - </xsl:otherwise> - </xsl:choose> - </entry> -</xsl:template> - -</xsl:stylesheet> |