aboutsummaryrefslogtreecommitdiff
path: root/src/steps/list.xsl
diff options
context:
space:
mode:
authorAdrian Kummerlaender2014-10-12 12:42:11 +0200
committerAdrian Kummerlaender2014-10-12 12:42:11 +0200
commitbd072c48f380aaf25756c72e2d2ed2474ae9e96d (patch)
tree4b08d282395d51049d35b5a2fd118a8ae5288a8c /src/steps/list.xsl
downloadStaticXSLT-bd072c48f380aaf25756c72e2d2ed2474ae9e96d.tar
StaticXSLT-bd072c48f380aaf25756c72e2d2ed2474ae9e96d.tar.gz
StaticXSLT-bd072c48f380aaf25756c72e2d2ed2474ae9e96d.tar.bz2
StaticXSLT-bd072c48f380aaf25756c72e2d2ed2474ae9e96d.tar.lz
StaticXSLT-bd072c48f380aaf25756c72e2d2ed2474ae9e96d.tar.xz
StaticXSLT-bd072c48f380aaf25756c72e2d2ed2474ae9e96d.tar.zst
StaticXSLT-bd072c48f380aaf25756c72e2d2ed2474ae9e96d.zip
Extracted the static site generation framework into BuildXSLT module
* i.e. the `detail` transformation chain of [blog.kummerlaender.eu](https://github.com/KnairdA/blog.kummerlaender.eu/) * added module defintion file `StaticXSLT.xml` * revamped documentation accordingly * added MIT license
Diffstat (limited to 'src/steps/list.xsl')
-rw-r--r--src/steps/list.xsl49
1 files changed, 49 insertions, 0 deletions
diff --git a/src/steps/list.xsl b/src/steps/list.xsl
new file mode 100644
index 0000000..c70a6bf
--- /dev/null
+++ b/src/steps/list.xsl
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xsl:stylesheet
+ version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
+ xmlns:InputXSLT="function.inputxslt.application"
+ exclude-result-prefixes="InputXSLT"
+>
+
+<xsl:output
+ method="xml"
+ omit-xml-declaration="yes"
+ encoding="UTF-8"
+ indent="no"
+/>
+
+<xsl:include href="../utility/datasource.xsl"/>
+
+<xsl:template name="list">
+ <xsl:param name="base"/>
+
+ <xsl:for-each select="InputXSLT:read-directory($base)/entry">
+ <xsl:choose>
+ <xsl:when test="@type = 'directory'">
+ <directory name="{./name}">
+ <xsl:call-template name="list">
+ <xsl:with-param name="base" select="./full"/>
+ </xsl:call-template>
+ </directory>
+ </xsl:when>
+ <xsl:otherwise>
+ <file name="{./name}" extension="{./extension}">
+ <xsl:copy-of select="full"/>
+ </file>
+ </xsl:otherwise>
+ </xsl:choose>
+ </xsl:for-each>
+</xsl:template>
+
+<xsl:template match="datasource">
+ <xsl:copy-of select="meta"/>
+
+ <source>
+ <xsl:call-template name="list">
+ <xsl:with-param name="base" select="meta/source"/>
+ </xsl:call-template>
+ </source>
+</xsl:template>
+
+</xsl:stylesheet>