-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdoc2html.xslt
146 lines (124 loc) · 3.26 KB
/
doc2html.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="description">
<h2>Description</h2>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="sysreqs">
<h2>System requirements</h2>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="installation">
<h2>Installation</h2>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="usage">
<h2>Usage</h2>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="configuration">
<h2>Configuration</h2>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="bugs">
<h2>Bugs</h2>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="feature-requests">
<h2>Feature requests</h2>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="history">
<h2>Version history</h2>
<xsl:for-each select="version">
<p>
<xsl:value-of select="@nr"/>
</p>
<ul>
<xsl:for-each select="feature">
<li>
<xsl:value-of select="."/>
<xsl:if test="@see != ''">
<xsl:text xml:space="preserve"> </xsl:text>
(see <xsl:element name="a" xml:space="preserve"><xsl:attribute name="href"><xsl:value-of select="@see"/></xsl:attribute>tracker item</xsl:element>)
</xsl:if>
</li>
</xsl:for-each>
<xsl:for-each select="bugfix">
<li>
Bugfix:
<xsl:value-of select="."/>
<xsl:if test="@see != ''">
<xsl:text xml:space="preserve"> </xsl:text>
(see <xsl:element name="a" xml:space="preserve"><xsl:attribute name="href"><xsl:value-of select="@see"/></xsl:attribute>tracker item</xsl:element>)
</xsl:if>
</li>
</xsl:for-each>
</ul>
</xsl:for-each>
</xsl:template>
<xsl:template match="contact">
<h2>Contact</h2>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="thanks">
<h2>Thanks</h2>
<xsl:apply-templates/>
</xsl:template>
<xsl:template match="thanklist">
<ul>
<xsl:for-each select="thank">
<li>
<strong>
<xsl:value-of select="@who"/>
</strong>
<xsl:value-of select="."/>
</li>
</xsl:for-each>
</ul>
</xsl:template>
<xsl:template match="license">
<h2>License</h2>
<xsl:apply-templates/>
</xsl:template>
<!-- HTML-like tags -->
<xsl:template match="p">
<p>
<xsl:apply-templates/>
</p>
</xsl:template>
<xsl:template match="code" xml:space="preserve"><code><xsl:apply-templates/></code></xsl:template>
<xsl:template match="ul">
<ul>
<xsl:apply-templates/>
</ul>
</xsl:template>
<xsl:template match="ol">
<ol>
<xsl:apply-templates/>
</ol>
</xsl:template>
<xsl:template match="li">
<li>
<xsl:apply-templates/>
</li>
</xsl:template>
<xsl:template match="a">
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of select="@href"/>
</xsl:attribute>
<xsl:value-of select="."/>
</xsl:element>
</xsl:template>
<xsl:template match="em">
<em>
<xsl:apply-templates/>
</em>
</xsl:template>
<xsl:template match="strong">
<strong>
<xsl:apply-templates/>
</strong>
</xsl:template>
</xsl:stylesheet>