aboutsummaryrefslogtreecommitdiff
path: root/source/99_result/repositories/repository_log.xsl
blob: 9ffd1736cebd9fec1af0ed26f09d7a09ad8c5cf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
	version="1.0"
	xmlns="http://www.w3.org/1999/xhtml"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>

<xsl:include href="[utility/xhtml.xsl]"/>
<xsl:include href="[utility/master.xsl]"/>

<xsl:variable name="meta">
	<datasource type="main" mode="iterate" source="02_augment/formatted_commits.xml" target="repositories"/>
	<target     mode="xpath" value="concat($datasource/repositories/entry/@handle, '/index.html')"/>
</xsl:variable>

<xsl:template match="repositories/entry/commit/message">
	<xsl:copy-of select="node()"/>
</xsl:template>

</xsl:stylesheet>