aboutsummaryrefslogtreecommitdiff
path: root/source/02_augment/formatted_commits.xsl
blob: 555e0d8205fc613d2e803120cd953fd24fd2e691 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?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="01_raw/commits.xml" target="repositories"/>
	<target     mode="plain" value="formatted_commits.xml"/>
</xsl:variable>

<xsl:template name="formatter">
	<xsl:param name="format"/>
	<xsl:param name="source"/>

	<xsl:copy-of select="InputXSLT:external-command(
		$format,
		$source
	)/self::command/node()"/>
</xsl:template>

<xsl:template match="message/text()" mode="commit">
	<xsl:call-template name="formatter">
		<xsl:with-param name="format">markdown</xsl:with-param>
		<xsl:with-param name="source" select="."/>
	</xsl:call-template>
</xsl:template>

<xsl:template match="@*|node()" mode="commit">
	<xsl:copy>
		<xsl:apply-templates select="@*|node()" mode="commit"/>
	</xsl:copy>
</xsl:template>

<xsl:template match="repositories/entry">
	<entry handle="{@handle}">
		<xsl:apply-templates select="commit" mode="commit"/>
	</entry>
</xsl:template>

</xsl:stylesheet>