aboutsummaryrefslogtreecommitdiff
path: root/source/99_result/overview.xsl
blob: d16906e33b975c3d9e929664495e882cf21718f6 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<?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:output
	method="xml"
	doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
	doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
	omit-xml-declaration="yes"
	encoding="UTF-8"
	indent="no"
/>

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

<xsl:variable name="meta">
	<datasource type="main"    mode="full" source="00_content/meta.xml"         target="meta"/>
	<datasource type="support" mode="full" source="02_augment/articles.xml"     target="articles"/>
	<datasource type="support" mode="full" source="03_merge/timeline.xml"       target="timeline"/>
	<datasource type="support" mode="full" source="02_augment/commits.xml"      target="commits"/>
	<datasource type="support" mode="full" source="00_content/repositories.xml" target="repositories"/>
	<target     mode="plain"   value="index.html"/>
</xsl:variable>

<xsl:variable name="root" select="/datasource"/>

<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:variable name="project" select="$root/repositories/entry[
		@handle = $repository
	]"/>

	<h3>
		<xsl:text>» </xsl:text>
		<span>
			<a href="{$commit/link}">
				<xsl:value-of select="$commit/title"/>
			</a>
		</span>
	</h3>

	<span class="info">
		<xsl:call-template name="format-date">
			<xsl:with-param name="date" select="$commit/date"/>
			<xsl:with-param name="format" select="'M x, Y'"/>
		</xsl:call-template>
		<xsl:text> at </xsl:text>
			<xsl:value-of select="$commit/date/@time"/>
		<xsl:text> | </xsl:text>
		<a href="{$project/url}">
			<xsl:value-of select="$repository"/>
		</a>
		<xsl:text> | </xsl:text>
		<a href="{$commit/link}">
			<xsl:value-of select="$commit/@hash"/>
		</a>
		<xsl:text> | </xsl:text>
		<xsl:value-of select="$commit/author"/>
	</span>

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

<xsl:template match="timeline/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:template match="articles/entry">
	<h3>
		<xsl:text>» </xsl:text>
		<span>
			<a href="{link}">
				<xsl:value-of select="title"/>
			</a>
		</span>
	</h3>

	<span class="info">
		<xsl:call-template name="format-date">
			<xsl:with-param name="date" select="date"/>
			<xsl:with-param name="format" select="'M x, Y'"/>
		</xsl:call-template>
		<xsl:text> | </xsl:text>
		<xsl:value-of select="author"/>
	</span>

	<xsl:apply-templates select="content/*" mode="xhtml"/>
</xsl:template>

<xsl:template match="datasource">
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

	<title>
		<xsl:value-of select="$root/meta/title"/>
	</title>

	<link rel="stylesheet" type="text/css" href="/main.css" />
</head>
<body>
	<div id="content">
		<h1>
			<xsl:value-of select="$root/meta/title"/>
		</h1>

		<h2>
			<a href="http://blog.kummerlaender.eu">
				<xsl:text>Latest articles</xsl:text>
			</a>
		</h2>

		<xsl:apply-templates select="articles/entry"/>

		<h2>
			<a href="{$root/meta/url}/timeline.xml">
				<xsl:text>Latest commits</xsl:text>
			</a>
		</h2>

		<xsl:apply-templates select="timeline/commit[position() &lt;= 5]"/>
	</div>
</body>
</html>
</xsl:template>

<xsl:template match="text()|@*"/>

</xsl:stylesheet>