-
Notifications
You must be signed in to change notification settings - Fork 15
/
disco-features.xsl
89 lines (81 loc) · 3.26 KB
/
disco-features.xsl
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
<?xml version='1.0' encoding='UTF-8'?>
<!-- stylesheet for disco feature vars -->
<xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'>
<xsl:output doctype-public='-//W3C//DTD XHTML 1.0 Transitional//EN' doctype-system='http://www.w3.org/TR/xhtml1/DTD/xhtml1-loose.dtd' method='xml'/>
<xsl:template match='/'>
<html>
<head>
<meta name="url" content="{$OUTPUT_FILENAME}"/>
<meta name="save_as" content="{$OUTPUT_FILENAME}"/>
<title><xsl:value-of select='/registry/meta/title'/></title>
<link rel='stylesheet' type='text/css' href='https://xmpp.org/xmpp.css' />
<link rel='shortcut icon' type='image/x-icon' href='https://xmpp.org/favicon.ico' />
</head>
<body bgcolor='#FFFFFF'>
<h2><xsl:value-of select='/registry/meta/title'/></h2>
<xsl:apply-templates select='/registry/meta/overview'/>
<!--<p><xsl:value-of select='/registry/meta/legal'/></p>-->
<p>Last Updated: <xsl:value-of select='/registry/meta/revision/date'/></p>
<p>XML: <a href='https://xmpp.org/registrar/disco-features.xml'>https://xmpp.org/registrar/disco-features.xml</a></p>
<hr />
<table border='1' cellpadding='3' cellspacing='0'>
<tr class='body'>
<th>Name</th>
<th>Description</th>
<th>Documentation</th>
</tr>
<xsl:apply-templates select='/registry/var[status = "permanent" or not(status)]'/>
</table>
<xsl:if test='count(/registry/var[status = "provisional"]) > 0'>
<h3>Provisional Features</h3>
<table border='1' cellpadding='3' cellspacing='0'>
<tr class='body'>
<th>Name</th>
<th>Description</th>
<th>Documentation</th>
</tr>
<xsl:apply-templates select='/registry/var[status = "provisional"]'/>
</table>
</xsl:if>
<xsl:if test='count(/registry/var[status = "historical"]) > 0'>
<h3>Historical Features</h3>
<table border='1' cellpadding='3' cellspacing='0'>
<tr class='body'>
<th>Name</th>
<th>Description</th>
<th>Documentation</th>
</tr>
<xsl:apply-templates select='/registry/var[status = "historical"]'/>
</table>
</xsl:if>
<hr />
<h2>Revision History</h2>
<blockquote>
<xsl:apply-templates select='/registry/meta/revision'/>
</blockquote>
<hr />
</body>
</html>
</xsl:template>
<xsl:template match='var'>
<tr class='body'>
<td><xsl:value-of select='name'/></td>
<td><xsl:value-of select='desc'/></td>
<xsl:apply-templates select='doc'/>
</tr>
</xsl:template>
<xsl:template match='overview'>
<p><xsl:apply-templates/></p>
</xsl:template>
<xsl:template match='doc'>
<td><xsl:apply-templates/></td>
</xsl:template>
<xsl:template match='link'>
<a href='{@url}'>
<xsl:apply-templates/>
</a>
</xsl:template>
<xsl:template match='revision'>
<p><strong><xsl:value-of select='date'/></strong><xsl:text> </xsl:text><xsl:value-of select='remark'/><xsl:text> </xsl:text>(<xsl:value-of select='initials'/>)</p>
</xsl:template>
</xsl:stylesheet>