aboutsummaryrefslogtreecommitdiff
path: root/source/03_merge/timeline.xsl
blob: 2813b80790326a1cc0c8edac3ae4d631e3fd33d5 (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
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
	version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>

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

<xsl:variable name="meta">
	<datasource type="main" mode="full" source="01_raw/commits.xml" target="timeline"/>
	<target     mode="plain" value="timeline.xml"/>
</xsl:variable>

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

<xsl:template match="timeline">
	<xsl:apply-templates select="entry" mode="commit">
		<xsl:sort select="date"       data-type="text" order="descending"/>
		<xsl:sort select="date/@time" data-type="text" order="descending"/>
	</xsl:apply-templates>
</xsl:template>

</xsl:stylesheet>