diff options
Diffstat (limited to 'source/01_raw')
-rw-r--r-- | source/01_raw/commits.xsl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/source/01_raw/commits.xsl b/source/01_raw/commits.xsl new file mode 100644 index 0000000..bfc265b --- /dev/null +++ b/source/01_raw/commits.xsl @@ -0,0 +1,24 @@ +<?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:include href="[utility/datasource.xsl]"/> + +<xsl:variable name="meta"> + <datasource type="main" mode="full" source="00_content/repositories.xml" target="repositories"/> + <target mode="plain" value="commits.xml"/> +</xsl:variable> + +<xsl:template match="repositories/entry"> + <entry handle="{@handle}"> + <xsl:copy-of select="InputXSLT:external-command( + concat('./utility/git_log.sh ', path) + )/self::command/commit"/> + </entry> +</xsl:template> + +</xsl:stylesheet> |