forked from nginx/nginx.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnews.xslt
104 lines (82 loc) · 3.38 KB
/
news.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
<?xml version="1.0" encoding="utf-8"?>
<!--
Copyright (C) Igor Sysoev
Copyright (C) Nginx, Inc.
-->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" version="4.0" indent="no" encoding="utf-8"/>
<xsl:strip-space elements="*"/>
<!--
.. a current directory of a XSLT script is where the script is stored,
.. but not where XSLT processor has been started to run the script
-->
<xsl:param select="'../xml'" name="XML"/>
<xsl:param name="YEAR"/>
<xsl:param name="ORIGIN"/>
<xsl:param name="TRANS"/>
<xsl:variable select="'http://nginx.org'" name="SITE"/>
<xsl:variable select="/news/@link" name="LINK"/>
<xsl:variable select="/news/@lang" name="LANG"/>
<xsl:include href="dirname.xslt"/>
<xsl:include href="link.xslt"/>
<xsl:include href="style.xslt"/>
<xsl:include href="body.xslt"/>
<xsl:include href="menu.xslt"/>
<xsl:include href="content.xslt"/>
<xsl:template match="/news">
<html><head>
<link rel="alternate" type="application/rss+xml" title="{@name}" href="{$SITE}/index.rss"/>
<title> <xsl:value-of select="@name"/> <xsl:if test="$YEAR"> <xsl:text>: </xsl:text> <xsl:value-of select="$YEAR"/> </xsl:if> </title>
<xsl:call-template name="style"><xsl:with-param select="@lang" name="lang"/></xsl:call-template></head>
<xsl:call-template name="body"><xsl:with-param select="@lang" name="lang"/></xsl:call-template></html>
</xsl:template>
<xsl:template match="years/year[@year]">
<xsl:if test="position() = 1">
<xsl:text disable-output-escaping="yes">
<div class="dropdown">
<button class="dropbtn">news archive ▾</button>
<div class="dropdown-content">
</xsl:text>
</xsl:if>
<xsl:if test="position() != last()">
<xsl:choose><xsl:when test="$YEAR=@year">
<b><a href="{@href}"><xsl:value-of select="@year"/></a></b>
</xsl:when><xsl:otherwise>
<a href="{@href}"><xsl:value-of select="@year"/></a>
</xsl:otherwise></xsl:choose>
</xsl:if>
<xsl:if test="position() = last()">
<xsl:choose><xsl:when test="$YEAR=@year">
<b><a href="{@href}"><xsl:value-of select="@year"/></a></b>
</xsl:when><xsl:otherwise>
<a href="{@href}"><xsl:value-of select="@year"/></a>
</xsl:otherwise></xsl:choose>
<xsl:text disable-output-escaping="yes">
</div></div>
</xsl:text>
</xsl:if>
</xsl:template>
<xsl:template match="event">
<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>
<!-- News items start at position 2 so that we skip the dropdown menu -->
<xsl:if test="position() = 2">
<xsl:text disable-output-escaping="yes">
<table class="news">
</xsl:text>
</xsl:if>
<xsl:if test="(not($YEAR) and ($year = $y or position() < 12)) or $YEAR=$y">
<tr>
<td class="date">
<a name="{@date}"/> <xsl:value-of select="@date"/>
</td>
<td> <xsl:apply-templates select="para"/> </td>
</tr>
</xsl:if>
<xsl:if test="position() = last()">
<xsl:text disable-output-escaping="yes">
</table>
</xsl:text>
</xsl:if>
</xsl:template>
</xsl:stylesheet>