aboutsummaryrefslogtreecommitdiff
path: root/source/99_result/stream.xsl
blob: 4f1bfde823f6a815a053da9cc545d6fc23c9bee9 (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
46
47
48
49
50
51
52
53
54
<?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/master.xsl]"/>
<xsl:include href="[utility/xhtml.xsl]"/>

<xsl:variable name="meta">
	<datasource type="main"    mode="iterate" source="04_meta/paginated_timeline.xml"   target="page"/>
	<datasource type="support" mode="full"    source="02_augment/formatted_commits.xml" target="commits"/>
	<target     mode="xpath"   value="concat($datasource/page/entry/@index, '/index.html')"/>
</xsl:variable>

<xsl:template name="get_commit">
	<xsl:param name="repository"/>
	<xsl:param name="hash"/>

	<xsl:variable name="commit" select="$root/commits/entry[@handle = $repository]/commit[@hash = $hash]"/>

	<xsl:apply-templates select="$commit/message/node()" mode="xhtml"/>
</xsl:template>

<xsl:template match="page/entry">
	<xsl:apply-templates />

	<div id="pagination">
		<xsl:if test="@index > 0">
			<span>
				<a class="pagination-previous" href="/{@index - 1}">
					<xsl:text>« newer</xsl:text>
				</a>
			</span>
		</xsl:if>
		<xsl:if test="@index &lt; @total - 1">
			<span>
				<a class="pagination-next" href="/{@index + 1}">
					<xsl:text>older »</xsl:text>
				</a>
			</span>
		</xsl:if>
	</div>
</xsl:template>

<xsl:template match="page/entry/commit">
	<xsl:call-template name="get_commit">
		<xsl:with-param name="repository" select="@repository"/>
		<xsl:with-param name="hash"       select="@hash"/>
	</xsl:call-template>
</xsl:template>

</xsl:stylesheet>