]> git.ipfire.org Git - thirdparty/systemd.git/blame - man/custom-html.xsl
travis: add more ASan options
[thirdparty/systemd.git] / man / custom-html.xsl
CommitLineData
76318284
LP
1<?xml version='1.0'?> <!--*-nxml-*-->
2
3<!--
572eb058
ZJS
4 SPDX-License-Identifier: LGPL-2.1+
5
76318284
LP
6-->
7
8<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
9
10<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/docbook.xsl"/>
d77c25b1
JO
11<!--
12 - The docbook stylesheet injects empty anchor tags into generated HTML, identified by an auto-generated ID.
13 - Ask the docbook stylesheet to generate reproducible output when generating (these) ID values.
14 - This makes the output of this stylesheet reproducible across identical invocations on the same input,
15 - which is an easy and significant win for achieving reproducible builds.
16 -
17 - It may be even better to strip the empty anchors from the document output in addition to turning on consistent IDs,
18 - for this stylesheet contains its own custom ID logic (for generating permalinks) already.
19 -->
20<xsl:param name="generate.consistent.ids" select="1"/>
76318284 21
ecca17f6 22<!-- translate man page references to links to html pages -->
5aded369 23<xsl:template match="citerefentry[not(@project)]">
ecca17f6
KS
24 <a>
25 <xsl:attribute name="href">
958caa58
ZJS
26 <xsl:value-of select="refentrytitle"/><xsl:text>.html#</xsl:text>
27 <xsl:value-of select="refentrytitle/@target"/>
ecca17f6
KS
28 </xsl:attribute>
29 <xsl:call-template name="inline.charseq"/>
30 </a>
31</xsl:template>
32
5aded369
ZJS
33<xsl:template match="citerefentry[@project='man-pages'] | citerefentry[manvolnum='2'] | citerefentry[manvolnum='4']">
34 <a>
35 <xsl:attribute name="href">
36 <xsl:text>http://man7.org/linux/man-pages/man</xsl:text>
37 <xsl:value-of select="manvolnum"/>
38 <xsl:text>/</xsl:text>
39 <xsl:value-of select="refentrytitle"/>
40 <xsl:text>.</xsl:text>
41 <xsl:value-of select="manvolnum"/>
42 <xsl:text>.html</xsl:text>
43 </xsl:attribute>
44 <xsl:call-template name="inline.charseq"/>
45 </a>
46</xsl:template>
47
48<xsl:template match="citerefentry[@project='die-net']">
49 <a>
50 <xsl:attribute name="href">
51 <xsl:text>http://linux.die.net/man/</xsl:text>
52 <xsl:value-of select="manvolnum"/>
53 <xsl:text>/</xsl:text>
54 <xsl:value-of select="refentrytitle"/>
55 </xsl:attribute>
56 <xsl:call-template name="inline.charseq"/>
57 </a>
58</xsl:template>
59
e5719363
JT
60<xsl:template match="citerefentry[@project='wireguard']">
61 <a>
62 <xsl:attribute name="href">
63 <xsl:text>https://git.zx2c4.com/WireGuard/about/src/tools/</xsl:text>
64 <xsl:value-of select="refentrytitle"/>
65 <xsl:text>.</xsl:text>
66 <xsl:value-of select="manvolnum"/>
67 </xsl:attribute>
68 <xsl:call-template name="inline.charseq"/>
69 </a>
70</xsl:template>
71
74a6d87d
ZJS
72<xsl:template match="citerefentry[@project='mankier']">
73 <a>
74 <xsl:attribute name="href">
75 <xsl:text>https://www.mankier.com/</xsl:text>
76 <xsl:value-of select="manvolnum"/>
77 <xsl:text>/</xsl:text>
78 <xsl:value-of select="refentrytitle"/>
79 </xsl:attribute>
80 <xsl:call-template name="inline.charseq"/>
81 </a>
82</xsl:template>
83
5aded369
ZJS
84<xsl:template match="citerefentry[@project='archlinux']">
85 <a>
86 <xsl:attribute name="href">
87 <xsl:text>https://www.archlinux.org/</xsl:text>
88 <xsl:value-of select="refentrytitle"/>
89 <xsl:text>/</xsl:text>
90 <xsl:value-of select="refentrytitle"/>
91 <xsl:text>.</xsl:text>
92 <xsl:value-of select="manvolnum"/>
93 <xsl:text>.html</xsl:text>
94 </xsl:attribute>
95 <xsl:call-template name="inline.charseq"/>
96 </a>
97</xsl:template>
98
b5c7d097
ZJS
99<xsl:template match="citerefentry[@project='freebsd']">
100 <a>
101 <xsl:attribute name="href">
102 <xsl:text>https://www.freebsd.org/cgi/man.cgi?</xsl:text>
103 <xsl:value-of select="refentrytitle"/>
104 <xsl:text>(</xsl:text>
105 <xsl:value-of select="manvolnum"/>
106 <xsl:text>)</xsl:text>
107 </xsl:attribute>
108 <xsl:call-template name="inline.charseq"/>
109 </a>
110</xsl:template>
111
3b5cfcdb
ZJS
112<xsl:template match="citerefentry[@project='dbus']">
113 <a>
114 <xsl:attribute name="href">
115 <xsl:text>http://dbus.freedesktop.org/doc/</xsl:text>
116 <xsl:value-of select="refentrytitle"/>
117 <xsl:text>.</xsl:text>
118 <xsl:value-of select="manvolnum"/>
119 <xsl:text>.html</xsl:text>
120 </xsl:attribute>
121 <xsl:call-template name="inline.charseq"/>
122 </a>
123</xsl:template>
124
aa116977
JO
125<!--
126 - helper template to do conflict resolution between various headings with the same inferred ID attribute/tag from the headerlink template
a8eaaee7 127 - this conflict resolution is necessary to prevent malformed HTML output (multiple ID attributes with the same value)
aa116977
JO
128 - and it fixes xsltproc warnings during compilation of HTML man pages
129 -
130 - A simple top-to-bottom numbering scheme is implemented for nodes with the same ID value to derive unique ID values for HTML output.
131 - It uses two parameters:
132 templateID the proposed ID string to use which must be checked for conflicts
133 keyNode the context node which 'produced' the given templateID.
134 -
135 - Conflicts are detected solely based on keyNode, templateID is not taken into account for that purpose.
136 -->
137<xsl:template name="generateID">
138 <!-- node which generatedID needs to assume as the 'source' of the ID -->
139 <xsl:param name="keyNode"/>
140 <!-- suggested value for generatedID output, a contextually meaningful ID string -->
141 <xsl:param name="templateID"/>
142 <xsl:variable name="conflictSource" select="preceding::refsect1/title|preceding::refsect1/info/title|
143 preceding::refsect2/title|preceding::refsect2/info/title|
144 preceding::varlistentry/term[1]"/>
145 <xsl:variable name="conflictCount" select="count($conflictSource[. = $keyNode])"/>
146 <xsl:choose>
147 <!-- special case conflictCount = 0 to preserve compatibility with URLs generated by previous versions of this XSL stylesheet where possible -->
148 <xsl:when test="$conflictCount = 0">
149 <xsl:value-of select="$templateID"/>
150 </xsl:when>
151 <xsl:otherwise>
152 <xsl:value-of select="concat($templateID, $conflictCount)"/>
153 </xsl:otherwise>
154 </xsl:choose>
155</xsl:template>
156
157<!--
158 - a helper template to abstract over the structure of generated subheading + permalink HTML output
159 - It helps reduce tedious repetition and groups all actual markup output (as opposed to URL/ID logic) in a single location.
160 -->
161<xsl:template name="permalink">
162 <xsl:param name="nodeType"/> <!-- local name of the element node to generate, e.g. 'h2' for <h2></h2> -->
163 <xsl:param name="nodeContent"/> <!-- nodeset to apply further templates to obtain the content of the subheading/term -->
164 <xsl:param name="linkTitle"/> <!-- value for title attribute of generated permalink, e.g. 'this is a permalink' -->
165
166 <!-- parameters passed to generateID template, otherwise unused. -->
167 <xsl:param name="keyNode"/>
168 <xsl:param name="templateID"/>
169
170 <!--
171 - If stable URLs with fragment markers (references to the ID) turn out not to be important:
172 - generatedID could simply take the value of generate-id(), and various other helper templates may be dropped entirely.
b938cb90 173 - Alternatively, if xsltproc is patched to generate reproducible generate-id() output, the same simplifications can be
aa116977
JO
174 - applied at the cost of breaking compatibility with URLs generated from output of previous versions of this stylesheet.
175 -->
176 <xsl:variable name="generatedID">
177 <xsl:call-template name="generateID">
178 <xsl:with-param name="keyNode" select="$keyNode"/>
179 <xsl:with-param name="templateID" select="$templateID"/>
180 </xsl:call-template>
181 </xsl:variable>
182
183 <xsl:element name="{$nodeType}">
20089f95 184 <xsl:attribute name="id">
aa116977 185 <xsl:value-of select="$generatedID"/>
20089f95 186 </xsl:attribute>
aa116977
JO
187 <xsl:apply-templates select="$nodeContent"/>
188 <a class="headerlink" title="{$linkTitle}" href="#{$generatedID}">¶</a>
189 </xsl:element>
20089f95
ZJS
190</xsl:template>
191
aa116977
JO
192<!-- simple wrapper around permalink to avoid repeating common info for each level of subheading covered by the permalink logic (h2, h3) -->
193<xsl:template name="headerlink">
194 <xsl:param name="nodeType"/>
195 <xsl:call-template name="permalink">
196 <xsl:with-param name="nodeType" select="$nodeType"/>
197 <xsl:with-param name="linkTitle" select="'Permalink to this headline'"/>
198 <xsl:with-param name="nodeContent" select="node()"/>
199 <xsl:with-param name="keyNode" select="."/>
200 <!--
201 - To retain compatibility with IDs generated by previous versions of the template, inline.charseq must be called.
202 - The purpose of that template is to generate markup (according to docbook documentation its purpose is to mark/format something as plain text).
203 - The only reason to call this template is to get the auto-generated text such as brackets ([]) before flattening it.
204 -->
205 <xsl:with-param name="templateID">
fa13e4a7 206 <xsl:call-template name="inline.charseq"/>
aa116977
JO
207 </xsl:with-param>
208 </xsl:call-template>
209</xsl:template>
210
211<xsl:template match="refsect1/title|refsect1/info/title">
212 <!-- the ID is output in the block.object call for refsect1 -->
213 <xsl:call-template name="headerlink">
214 <xsl:with-param name="nodeType" select="'h2'"/>
215 </xsl:call-template>
216</xsl:template>
217
218<xsl:template match="refsect2/title|refsect2/info/title">
219 <xsl:call-template name="headerlink">
220 <xsl:with-param name="nodeType" select="'h3'"/>
221 </xsl:call-template>
fa13e4a7
ZJS
222</xsl:template>
223
20089f95 224<xsl:template match="varlistentry">
aa116977
JO
225 <xsl:call-template name="permalink">
226 <xsl:with-param name="nodeType" select="'dt'"/>
227 <xsl:with-param name="linkTitle" select="'Permalink to this term'"/>
228 <xsl:with-param name="nodeContent" select="term"/>
229 <xsl:with-param name="keyNode" select="term[1]"/>
230 <!--
231 - To retain compatibility with IDs generated by previous versions of the template, inline.charseq must be called.
232 - The purpose of that template is to generate markup (according to docbook documentation its purpose is to mark/format something as plain text).
233 - The only reason to call this template is to get the auto-generated text such as brackets ([]) before flattening it.
234 -->
235 <xsl:with-param name="templateID">
20089f95 236 <xsl:call-template name="inline.charseq">
aa116977 237 <xsl:with-param name="content" select="term[1]"/>
20089f95 238 </xsl:call-template>
aa116977
JO
239 </xsl:with-param>
240 </xsl:call-template>
20089f95
ZJS
241 <dd>
242 <xsl:apply-templates select="listitem"/>
243 </dd>
244</xsl:template>
245
246
ecca17f6
KS
247<!-- add Index link at top of page -->
248<xsl:template name="user.header.content">
20089f95
ZJS
249 <style>
250 a.headerlink {
251 color: #c60f0f;
252 font-size: 0.8em;
253 padding: 0 4px 0 4px;
254 text-decoration: none;
255 visibility: hidden;
256 }
257
258 a.headerlink:hover {
259 background-color: #c60f0f;
260 color: white;
261 }
262
263 h1:hover > a.headerlink, h2:hover > a.headerlink, h3:hover > a.headerlink, dt:hover > a.headerlink {
264 visibility: visible;
265 }
266 </style>
267
ecca17f6
KS
268 <a>
269 <xsl:attribute name="href">
270 <xsl:text>index.html</xsl:text>
271 </xsl:attribute>
272 <xsl:text>Index </xsl:text>
2cc8d973
ZJS
273 </a>·
274 <a>
275 <xsl:attribute name="href">
276 <xsl:text>systemd.directives.html</xsl:text>
277 </xsl:attribute>
278 <xsl:text>Directives </xsl:text>
1f35347a 279 </a>
702f64b9
ZJS
280
281 <span style="float:right">
282 <xsl:text>systemd </xsl:text>
283 <xsl:value-of select="$systemd.version"/>
284 </span>
ecca17f6
KS
285 <hr/>
286</xsl:template>
287
909f413d
ZJS
288<xsl:template match="literal">
289 <xsl:text>"</xsl:text>
290 <xsl:call-template name="inline.monoseq"/>
291 <xsl:text>"</xsl:text>
292</xsl:template>
293
76318284
LP
294<!-- Switch things to UTF-8, ISO-8859-1 is soo yesteryear -->
295<xsl:output method="html" encoding="UTF-8" indent="no"/>
296
297</xsl:stylesheet>