-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathformtypes.xsl
100 lines (90 loc) · 3.47 KB
/
formtypes.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
90
91
92
93
94
95
96
97
98
99
100
<?xml version='1.0' encoding='UTF-8'?>
<!-- stylesheet for FORM_TYPE registration -->
<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/formtypes.xml'>https://xmpp.org/registrar/formtypes.xml</a></p>
<hr />
<xsl:call-template name='processTOC' />
<hr />
<xsl:apply-templates select='/registry/form_type'/>
<hr />
<h2>Revision History</h2>
<blockquote>
<xsl:apply-templates select='/registry/meta/revision'/>
</blockquote>
<hr />
</body>
</html>
</xsl:template>
<xsl:template name='processTOC'>
<h4>Table of Contents</h4>
<p>
<xsl:apply-templates select='//form_type' mode='toc'/>
</p>
</xsl:template>
<xsl:template match='overview'>
<p><xsl:apply-templates/></p>
</xsl:template>
<xsl:template match='form_type' mode='toc'>
<xsl:variable name='thisName'>
<xsl:value-of select="translate(name,'/#','-')"/>
</xsl:variable>
<xsl:variable name='num'>
<xsl:number level='multiple' count='form_type'/><xsl:text>. </xsl:text>
</xsl:variable>
<br /><xsl:value-of select='$num'/> <a href='#{$thisName}'><xsl:value-of select='name' /></a>
</xsl:template>
<xsl:template match='form_type'>
<xsl:variable name='thisName'>
<xsl:value-of select="translate(name,'/#','-')"/>
</xsl:variable>
<a>
<xsl:attribute name='name'>
<xsl:value-of select='$thisName'/>
</xsl:attribute>
</a>
<xsl:variable name='num'>
<xsl:number level='multiple' count='form_type'/><xsl:text>. </xsl:text>
</xsl:variable>
<h3><xsl:value-of select='$num'/><xsl:value-of select='name'/></h3>
<p><xsl:value-of select='desc'/></p>
<p>Defined in <xsl:value-of select='doc'/>.</p>
<table border='1' cellpadding='3' cellspacing='0'>
<tr class='body'>
<th>Field Name</th>
<th>Type</th>
<th>Description</th>
</tr>
<xsl:apply-templates select='field'/>
</table>
</xsl:template>
<xsl:template match='field'>
<tr class='body'>
<td><xsl:value-of select='@var'/></td>
<td><xsl:value-of select='@type'/></td>
<td><xsl:value-of select='@label'/></td>
</tr>
</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:template match='link'>
<a href='{@url}'>
<xsl:apply-templates/>
</a>
</xsl:template>
</xsl:stylesheet>