aboutsummaryrefslogtreecommitdiff
path: root/source/99_result/stream.xsl
blob: 2d28043907b21d4d8508ce731836cfab9175e2ed (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
	version="1.0"
	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>

<xsl:output
	method="xml"
	omit-xml-declaration="no"
	encoding="UTF-8"
	indent="yes"
/>

<xsl:include href="[utility/master.xsl]"/>
<xsl:include href="[utility/date-time.xsl]"/>

<xsl:variable name="meta">
	<datasource type="main"    mode="iterate" source="target/03_meta/paginated_articles.xml" target="page"/>
	<datasource type="support" mode="full"    source="target/03_meta/meta.xml"               target="meta"/>
	<datasource type="support" mode="full"    source="target/02_data/articles.xml"           target="articles"/>
	<target     mode="xpath"   value="xalan:nodeset($datasource)/datasource/page/entry/@index"/>
</xsl:variable>

<xsl:template name="title-text">
	<xsl:value-of select="/datasource/page/entry/@index"/>
</xsl:template>

<xsl:template name="get_article">
	<xsl:param name="handle"/>

	<xsl:variable name="article" select="$root/articles/entry[@handle = $handle]"/>

	<h2>
		» <a href="{$url}/article/{$handle}"><xsl:value-of select="$article/title"/></a>
	</h2>
	<p class="info">
		<xsl:call-template name="format-date">
			<xsl:with-param name="date" select="$article/date/full"/>
			<xsl:with-param name="format" select="'M x, Y'"/>
		</xsl:call-template> 
		| <xsl:for-each select="$article/tags/tag">
			<a href="{$url}/tag/{.}">
				<xsl:value-of select="."/>
			</a>
		</xsl:for-each>
		| Adrian Kummerländer
	</p>
	<xsl:copy-of select="$article/content/*"/>
</xsl:template>

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

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

<xsl:template match="page/entry/article">
	<xsl:choose>
		<xsl:when test="position()+1 = last()">
			<div class="last article">
				<xsl:call-template name="get_article">
					<xsl:with-param name="handle" select="@handle"/>
				</xsl:call-template>
			</div>
		</xsl:when>
		<xsl:otherwise>
			<div class="article">
				<xsl:call-template name="get_article">
					<xsl:with-param name="handle" select="@handle"/>
				</xsl:call-template>
			</div>
		</xsl:otherwise>
	</xsl:choose>
</xsl:template>

</xsl:stylesheet>