-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathrss.xslt
111 lines (69 loc) · 2.67 KB
/
rss.xslt
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
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:date="http://exslt.org/dates-and-times" version="1.0">
<xsl:output indent="no" encoding="utf-8"/>
<xsl:strip-space elements="*"/>
<xsl:param select="'../xml'" name="XML"/>
<xsl:param name="YEAR"/>
<xsl:variable select="'http://nginx.org'" name="SITE"/>
<xsl:variable select="/news/@link" name="LINK"/>
<xsl:include href="dirname.xslt"/>
<xsl:include href="link.xslt"/>
<xsl:include href="menu.xslt"/>
<xsl:include href="content.xslt"/>
<xsl:template match="/news">
<rss version="2.0">
<channel>
<title>
<xsl:value-of select="@name"/>
</title>
<link>
<xsl:value-of select="$SITE"/>
</link>
<description/>
<xsl:apply-templates select="event"/>
</channel>
</rss>
</xsl:template>
<xsl:template match="event[position() <= 10]">
<xsl:variable name="year">
<xsl:value-of select="substring(../event[position()=1]/@date, 1, 4)"/>
</xsl:variable>
<xsl:variable name="y">
<xsl:value-of select="substring(@date, 1, 4)"/>
</xsl:variable>
<xsl:variable name="page">
<xsl:if test="$year != $y">
<xsl:value-of select="concat($y, '.html')"/>
</xsl:if>
</xsl:variable>
<item>
<title>
<xsl:apply-templates select="para[1]//text()"/>
</title>
<guid>
<xsl:value-of select="$SITE"/>
<xsl:text>/</xsl:text>
<xsl:value-of select="$page"/>
<xsl:text>#</xsl:text>
<xsl:value-of select="@date"/>
</guid>
<link>
<xsl:value-of select="$SITE"/>
<xsl:text>/</xsl:text>
<xsl:value-of select="$page"/>
<xsl:text>#</xsl:text>
<xsl:value-of select="@date"/>
</link>
<pubdate>
<xsl:value-of select=" concat(date:day-abbreviation(@date), ', ', format-number(date:day-in-month(@date), '00'), ' ', date:month-abbreviation(@date), ' ', date:year(@date), ' 00:00:00 +0300')"/>
</pubdate>
<description>
<xsl:text disable-output-escaping="yes"><![CDATA[</xsl:text>
<xsl:value-of select="@date"/>
<xsl:apply-templates select="para"/>
<xsl:text disable-output-escaping="yes">]]></xsl:text>
</description>
</item>
</xsl:template>
<xsl:template match="event"/>
</xsl:stylesheet>