aboutsummaryrefslogtreecommitdiff
path: root/source/01_raw/commits.xsl
blob: bfc265b188b9749f8b69ade1b86cd16a5a90f47c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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>