-
Notifications
You must be signed in to change notification settings - Fork 15
/
amp-actions.xsl
82 lines (73 loc) · 2.98 KB
/
amp-actions.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
<?xml version='1.0' encoding='UTF-8'?>
<!-- stylesheet for Advanced Message Processing rule actions registry -->
<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/amp-actions.xml'>https://xmpp.org/registrar/amp-actions.xml</a></p>
<hr />
<xsl:call-template name='processTOC' />
<hr />
<xsl:apply-templates select='/registry/action'/>
<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='//action' mode='toc'/>
</p>
</xsl:template>
<xsl:template match='overview'>
<p><xsl:apply-templates/></p>
</xsl:template>
<xsl:template match='action' mode='toc'>
<xsl:variable name='thisname'>
<xsl:value-of select='name'/>
</xsl:variable>
<xsl:variable name='num'>
<xsl:number level='multiple' count='action'/><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='action'>
<a>
<xsl:attribute name='name'>
<xsl:value-of select='name'/>
</xsl:attribute>
</a>
<xsl:variable name='num'>
<xsl:number level='multiple' count='action'/><xsl:text>. </xsl:text>
</xsl:variable>
<h3><xsl:value-of select='$num'/><xsl:value-of select='name'/></h3>
<p>Namespace: <xsl:value-of select='ns'/></p>
<p>Behavior: <xsl:value-of select='behavior'/></p>
<p>Defined in <xsl:value-of select='doc'/>.</p>
</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>