aboutsummaryrefslogtreecommitdiff
path: root/source/02_augment/articles.xsl
blob: 36e1c7c9135dccca10c4fe2c2b1df3ac688527e0 (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
<?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/article_feed.xml" target="articles"/>
	<target     mode="plain" value="articles.xml"/>
</xsl:variable>

<xsl:template match="id" mode="article"/>

<xsl:template match="author" mode="article">
	<xsl:copy>
		<xsl:value-of select="name"/>
	</xsl:copy>
</xsl:template>

<xsl:template match="updated" mode="article">
	<date>
		<xsl:value-of select="substring(., 0, 11)"/>
	</date>
</xsl:template>

<xsl:template match="link" mode="article">
	<link>
		<xsl:value-of select="@href"/>
	</link>
</xsl:template>

<xsl:template match="content[@type = 'xhtml']" mode="article">
	<content>
		<xsl:apply-templates select="div/p[1]" mode="article"/>
	</content>
</xsl:template>

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

<xsl:template match="articles">
	<xsl:apply-templates select="entry" mode="article"/>
</xsl:template>

</xsl:stylesheet>