aboutsummaryrefslogtreecommitdiff
path: root/source/02_augment/blips.xsl
blob: f3a01b48fdb0b51c4db360b36ff1c469baff9731 (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/blip_feed.xml" target="blips"/>
	<target     mode="plain" value="blips.xml"/>
</xsl:variable>

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

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

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

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

<xsl:template match="content[@type = 'xhtml']" mode="blip">
	<content>
		<xsl:apply-templates select="node()" mode="blip"/>
	</content>
</xsl:template>

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

<xsl:template match="blips">
	<xsl:apply-templates select="entry" mode="blip"/>
</xsl:template>

</xsl:stylesheet>