VirtualBox

source: vbox/trunk/doc/manual/docbook-refentry-to-C-help.xsl@ 99118

Last change on this file since 99118 was 99118, checked in by vboxsync, 14 months ago

manual: Revised r156481 a bit, since nested args are used in different ways, so must require role=compact for complicated arguments.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
  • Property svn:mergeinfo set to (toggle deleted branches)
    /branches/VBox-3.0/doc/manual/docbook-refentry-to-manual-overview.xsl58652,​70973
    /branches/VBox-3.2/doc/manual/docbook-refentry-to-manual-overview.xsl66309,​66318
    /branches/VBox-4.0/doc/manual/docbook-refentry-to-manual-overview.xsl70873
    /branches/VBox-4.1/doc/manual/docbook-refentry-to-manual-overview.xsl74233,​78414,​78691,​82579,​85941,​85944-85947,​85949-85950,​85953,​86701,​86728,​87009
    /branches/VBox-4.2/doc/manual/docbook-refentry-to-manual-overview.xsl82653,​86229-86230,​86234,​86529,​91503-91504,​91506-91508,​91510,​91514-91515,​91521
    /branches/VBox-4.3/doc/manual/docbook-refentry-to-manual-overview.xsl91223,​94066,​94839,​94897,​95154,​95164,​95167,​95295,​95338,​95353-95354,​95356,​95367,​95451,​95475,​95477,​95480,​95507,​95640,​95659,​95661,​95663,​98913-98915,​99358
    /branches/VBox-4.3/trunk/doc/manual/docbook-refentry-to-manual-overview.xsl91223
    /branches/andy/draganddrop/doc/manual/docbook-refentry-to-manual-overview.xsl90781-91268
    /branches/andy/guestctrl20/doc/manual/docbook-refentry-to-manual-overview.xsl78916,​78930
    /branches/andy/pdmaudio/doc/manual/docbook-refentry-to-manual-overview.xsl94582,​94641,​94654,​94688,​94778,​94783,​94816,​95197,​95215-95216,​95250,​95279,​95505-95506,​95543,​95694,​96323,​96470-96471,​96582,​96587,​96802-96803,​96817,​96904,​96967,​96999,​97020-97021,​97025,​97050,​97099
    /branches/bird/hardenedwindows/doc/manual/docbook-refentry-to-manual-overview.xsl92692-94610
    /branches/dsen/gui/doc/manual/docbook-refentry-to-manual-overview.xsl79076-79078,​79089,​79109-79110,​79112-79113,​79127-79130,​79134,​79141,​79151,​79155,​79157-79159,​79193,​79197
    /branches/dsen/gui2/doc/manual/docbook-refentry-to-manual-overview.xsl79224,​79228,​79233,​79235,​79258,​79262-79263,​79273,​79341,​79345,​79354,​79357,​79387-79388,​79559-79569,​79572-79573,​79578,​79581-79582,​79590-79591,​79598-79599,​79602-79603,​79605-79606,​79632,​79635,​79637,​79644
    /branches/dsen/gui3/doc/manual/docbook-refentry-to-manual-overview.xsl79645-79692
    /trunk/src/doc/manual/docbook-refentry-to-manual-overview.xsl92342
File size: 38.7 KB
Line 
1<?xml version="1.0"?>
2<!--
3 docbook-refentry-to-manual-sect1.xsl:
4 XSLT stylesheet for nicking the refsynopsisdiv bit of a
5 refentry (manpage) for use in the command overview section
6 in the user manual.
7-->
8<!--
9 Copyright (C) 2006-2023 Oracle and/or its affiliates.
10
11 This file is part of VirtualBox base platform packages, as
12 available from https://www.virtualbox.org.
13
14 This program is free software; you can redistribute it and/or
15 modify it under the terms of the GNU General Public License
16 as published by the Free Software Foundation, in version 3 of the
17 License.
18
19 This program is distributed in the hope that it will be useful, but
20 WITHOUT ANY WARRANTY; without even the implied warranty of
21 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22 General Public License for more details.
23
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, see <https://www.gnu.org/licenses>.
26
27 SPDX-License-Identifier: GPL-3.0-only
28-->
29
30<xsl:stylesheet
31 version="1.0"
32 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
33 xmlns:str="http://xsltsl.org/string"
34 >
35
36 <xsl:import href="string.xsl"/>
37 <xsl:import href="common-formatcfg.xsl"/>
38
39 <xsl:output method="text" version="1.0" encoding="utf-8" indent="yes"/>
40 <xsl:strip-space elements="*"/>
41
42 <xsl:param name="g_fDebugText" select="0"/>
43
44 <xsl:variable name="g_sUnderlineRefSect1">
45 <xsl:text>===================================================================================================================</xsl:text>
46 </xsl:variable>
47 <xsl:variable name="g_sUnderlineRefSect2">
48 <xsl:text>-------------------------------------------------------------------------------------------------------------------</xsl:text>
49 </xsl:variable>
50 <xsl:variable name="g_sNewLine"><xsl:value-of select="'&#10;'" /></xsl:variable>
51
52 <!-- Sub-command style command (true) or single command (false). -->
53 <xsl:variable name="g_fSubCommands" select="not(not(//refsect2[@id]))" />
54
55 <!-- Translatable strings -->
56 <xsl:variable name="sUsage" select="'Usage'"/>
57 <xsl:variable name="sUsageUnderscore" select="'====='"/>
58
59
60 <!-- Default action, do nothing. -->
61 <xsl:template match="node()|@*"/>
62
63 <!--
64 main() - because we need to order the output in a specific manner
65 that is contrary to the data flow in the refentry, this is
66 going to look a bit more like a C program than a stylesheet.
67 -->
68 <xsl:template match="refentry">
69 <!-- Assert refetry expectations. -->
70 <xsl:if test="not(./refsynopsisdiv)">
71 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refentry must have a refsynopsisdiv</xsl:message>
72 </xsl:if>
73 <xsl:if test="not(./refentryinfo/title)">
74 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refentry must have a refentryinfo with title</xsl:message>
75 </xsl:if>
76 <xsl:if test="not(./refmeta/refentrytitle)">
77 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refentry must have a refentryinfo with title</xsl:message>
78 </xsl:if>
79 <xsl:if test="./refmeta/refentrytitle != ./refnamediv/refname">
80 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>The refmeta/refentrytitle and the refnamediv/refname must be identical</xsl:message>
81 </xsl:if>
82 <xsl:if test="not(./refsect1/title)">
83 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refentry must have a refsect1 with title</xsl:message>
84 </xsl:if>
85 <xsl:if test="not(@id) or @id = ''">
86 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refentry must have an id attribute</xsl:message>
87 </xsl:if>
88
89 <!-- variables -->
90 <xsl:variable name="sBaseId" select="@id"/>
91 <xsl:variable name="sDataBaseSym" select="concat('g_', translate(@id, '-', '_'))"/>
92
93
94 <!--
95 Convert the refsynopsisdiv into REFENTRY::Synopsis data.
96 -->
97 <xsl:text>
98
99static const RTMSGREFENTRYSTR </xsl:text><xsl:value-of select="$sDataBaseSym"/><xsl:text>_synopsis[] =
100{</xsl:text>
101 <xsl:for-each select="./refsynopsisdiv/cmdsynopsis">
102 <!-- Assert synopsis expectations -->
103 <xsl:if test="not(@id) or substring-before(@id, '-') != 'synopsis'">
104 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>The refsynopsisdiv/cmdsynopsis elements must have an id starting with 'synopsis-'.</xsl:message>
105 </xsl:if>
106 <xsl:if test="not(starts-with(substring-after(@id, '-'), $sBaseId))">
107 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>The refsynopsisdiv/cmdsynopsis elements @id is expected to include the refentry @id.</xsl:message>
108 </xsl:if>
109 <xsl:if test="not(../../refsect1/refsect2[@id=./@id]) and $g_fSubCommands">
110 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>No refsect2 with id="<xsl:value-of select="@id"/>" found.</xsl:message>
111 </xsl:if>
112
113 <!-- Do the work. -->
114 <xsl:apply-templates select="."/>
115
116 </xsl:for-each>
117 <xsl:text>
118};</xsl:text>
119
120
121 <!--
122 Convert the whole manpage to help text.
123 -->
124 <xsl:text>
125static const RTMSGREFENTRYSTR </xsl:text><xsl:value-of select="$sDataBaseSym"/><xsl:text>_full_help[] =
126{</xsl:text>
127 <!-- We start by combining the refentry title and the refpurpose into a short description. -->
128 <xsl:text>
129 { </xsl:text><xsl:call-template name="calc-scope-for-refentry"/><xsl:text>,
130 "</xsl:text>
131 <xsl:apply-templates select="./refentryinfo/title/node()"/>
132 <xsl:text> -- </xsl:text>
133 <xsl:call-template name="capitalize">
134 <xsl:with-param name="text">
135 <xsl:apply-templates select="./refnamediv/refpurpose/node()"/>
136 </xsl:with-param>
137 </xsl:call-template>
138 <xsl:text>." },
139 { RTMSGREFENTRYSTR_SCOPE_SAME, "" },</xsl:text>
140
141 <!-- The follows the usage (synopsis) section. -->
142 <xsl:text>
143 { RTMSGREFENTRYSTR_SCOPE_GLOBAL,
144 "</xsl:text><xsl:value-of select="$sUsage"/><xsl:text>" },
145 { RTMSGREFENTRYSTR_SCOPE_SAME,
146 "</xsl:text><xsl:value-of select="$sUsageUnderscore"/><xsl:text>" },</xsl:text>
147 <xsl:apply-templates select="./refsynopsisdiv/node()"/>
148
149 <!-- Then comes the description and other refsect1 -->
150 <xsl:for-each select="./refsect1">
151 <xsl:if test="name(*[1]) != 'title'"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Expected title as the first element in refsect1.</xsl:message></xsl:if>
152 <xsl:if test="text()"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>No text supported in refsect1.</xsl:message></xsl:if>
153 <xsl:if test="not(./remark[@role='help-skip'])">
154 <xsl:variable name="sTitle">
155 <xsl:apply-templates select="./title/node()"/>
156 </xsl:variable>
157 <xsl:text>
158 { </xsl:text><xsl:call-template name="calc-scope-refsect1"/><xsl:text>, "" },
159 { RTMSGREFENTRYSTR_SCOPE_SAME,
160 "</xsl:text><xsl:value-of select="$sTitle"/><xsl:text>" },
161 { RTMSGREFENTRYSTR_SCOPE_SAME,
162 "</xsl:text>
163 <xsl:value-of select="substring($g_sUnderlineRefSect1, 1, string-length($sTitle))"/>
164 <xsl:text>" },</xsl:text>
165
166 <xsl:apply-templates select="./*[name() != 'title']"/>
167
168 <xsl:text>
169 { RTMSGREFENTRYSTR_SCOPE_SAME, "" },</xsl:text>
170 </xsl:if>
171 </xsl:for-each>
172
173 <xsl:text>
174};</xsl:text>
175
176 <!--
177 Generate the refentry structure.
178 -->
179 <xsl:text>
180static const RTMSGREFENTRY </xsl:text><xsl:value-of select="$sDataBaseSym"/><xsl:text> =
181{
182 /* .idInternal = */ HELP_CMD_</xsl:text>
183 <xsl:choose>
184 <xsl:when test="contains(@id, '-')">
185 <xsl:call-template name="str:to-upper"> <!-- Multi level command. -->
186 <xsl:with-param name="text" select="translate(substring-after(@id, '-'), '-', '_')"/>
187 </xsl:call-template>
188 </xsl:when>
189 <xsl:otherwise>
190 <xsl:call-template name="str:to-upper"> <!-- Simple command. -->
191 <xsl:with-param name="text" select="@id"/>
192 </xsl:call-template>
193 </xsl:otherwise>
194 </xsl:choose>
195 <xsl:text>,
196 /* .Synopsis = */ { RT_ELEMENTS(</xsl:text>
197 <xsl:value-of select="$sDataBaseSym"/><xsl:text>_synopsis), 0, </xsl:text>
198 <xsl:value-of select="$sDataBaseSym"/><xsl:text>_synopsis },
199 /* .Help = */ { RT_ELEMENTS(</xsl:text>
200 <xsl:value-of select="$sDataBaseSym"/><xsl:text>_full_help), 0, </xsl:text>
201 <xsl:value-of select="$sDataBaseSym"/><xsl:text>_full_help },
202 /* pszBrief = */ "</xsl:text>
203 <xsl:apply-templates select="./refnamediv/refpurpose/node()"/>
204 <!-- TODO: Add the command name too. -->
205 <xsl:text>"
206};
207</xsl:text>
208 </xsl:template>
209
210
211 <!--
212 Convert command synopsis to text.
213 -->
214 <xsl:template match="cmdsynopsis">
215 <xsl:if test="text()"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>cmdsynopsis with text is not supported.</xsl:message></xsl:if>
216 <xsl:if test="position() = 1">
217 <xsl:text>
218 { </xsl:text><xsl:call-template name="calc-scope-cmdsynopsis"/><xsl:text> | RTMSGREFENTRYSTR_FLAGS_SYNOPSIS, "" },</xsl:text>
219 </xsl:if>
220 <xsl:text>
221 { </xsl:text><xsl:call-template name="calc-scope-cmdsynopsis"/><xsl:text> | RTMSGREFENTRYSTR_FLAGS_SYNOPSIS,
222 "</xsl:text><xsl:call-template name="emit-indentation"/><xsl:apply-templates select="*|@*"/><xsl:text>" },</xsl:text>
223 </xsl:template>
224
225 <xsl:template match="sbr">
226 <xsl:text>" },
227 { RTMSGREFENTRYSTR_SCOPE_SAME | RTMSGREFENTRYSTR_FLAGS_SYNOPSIS,
228 " </xsl:text><xsl:call-template name="emit-indentation"/> <!-- hardcoded in VBoxManageHelp.cpp too -->
229 </xsl:template>
230
231 <xsl:template match="cmdsynopsis/command">
232 <xsl:text>" },
233 { RTMSGREFENTRYSTR_SCOPE_SAME | RTMSGREFENTRYSTR_FLAGS_SYNOPSIS,
234 "</xsl:text><xsl:call-template name="emit-indentation"/>
235 <xsl:apply-templates select="node()|@*"/>
236 </xsl:template>
237
238 <xsl:template match="cmdsynopsis/command[1]" priority="2">
239 <xsl:apply-templates select="node()|@*"/>
240 </xsl:template>
241
242 <xsl:template match="command|option|computeroutput|literal|emphasis|filename|citetitle|note">
243 <xsl:apply-templates select="node()|@*"/>
244 </xsl:template>
245
246 <xsl:template match="ulink">
247 <xsl:value-of select="@url"/>
248 </xsl:template>
249
250 <xsl:template match="replaceable">
251 <xsl:choose>
252 <xsl:when test="ancestor::arg">
253 <xsl:apply-templates />
254 </xsl:when>
255 <xsl:otherwise>
256 <xsl:text>&lt;</xsl:text>
257 <xsl:apply-templates />
258 <xsl:text>&gt;</xsl:text>
259 </xsl:otherwise>
260 </xsl:choose>
261 </xsl:template>
262
263 <!-- duplicated in docbook2latex.xsl -->
264 <xsl:template match="arg|group">
265 <!-- separator char if we're not the first child -->
266 <xsl:if test="position() > 1">
267 <!--<xsl:value-of select="concat('*',name(),'=', position(),'#')"/>-->
268 <xsl:choose>
269 <xsl:when test="parent::group and ancestor::*[@role='compact']"><xsl:value-of select="$arg.or.sep.compact"/></xsl:when>
270 <xsl:when test="parent::group"><xsl:value-of select="$arg.or.sep"/></xsl:when>
271 <xsl:when test="ancestor::*[@role='compact']"></xsl:when>
272 <xsl:when test="ancestor::*/@sepchar"><xsl:value-of select="ancestor::*/@sepchar"/></xsl:when>
273 <xsl:otherwise><xsl:text> </xsl:text></xsl:otherwise>
274 </xsl:choose>
275 </xsl:if>
276
277 <!-- open wrapping -->
278 <xsl:variable name="fWrappers" select="not(ancestor::group)"/>
279 <xsl:if test="$fWrappers">
280 <xsl:choose>
281 <xsl:when test="not(@choice) or @choice = ''"> <xsl:value-of select="$arg.choice.def.open.str"/></xsl:when>
282 <xsl:when test="@choice = 'opt'"> <xsl:value-of select="$arg.choice.opt.open.str"/></xsl:when>
283 <xsl:when test="@choice = 'req'"> <xsl:value-of select="$arg.choice.req.open.str"/></xsl:when>
284 <xsl:when test="@choice = 'plain'"/>
285 <xsl:otherwise><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Invalid arg choice: "<xsl:value-of select="@choice"/>"</xsl:message></xsl:otherwise>
286 </xsl:choose>
287 </xsl:if>
288
289 <!-- render the arg (TODO: may need to do more work here) -->
290 <xsl:apply-templates />
291
292 <!-- repeat wrapping -->
293 <xsl:choose>
294 <xsl:when test="@rep = 'norepeat' or not(@rep) or @rep = ''"/>
295 <xsl:when test="@rep = 'repeat'"> <xsl:value-of select="$arg.rep.repeat.str"/></xsl:when>
296 <xsl:otherwise><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Invalid rep choice: "<xsl:value-of select="@rep"/>"</xsl:message></xsl:otherwise>
297 </xsl:choose>
298
299 <!-- close wrapping -->
300 <xsl:if test="$fWrappers">
301 <xsl:choose>
302 <xsl:when test="not(@choice) or @choice = ''"> <xsl:value-of select="$arg.choice.def.close.str"/></xsl:when>
303 <xsl:when test="@choice = 'opt'"> <xsl:value-of select="$arg.choice.opt.close.str"/></xsl:when>
304 <xsl:when test="@choice = 'req'"> <xsl:value-of select="$arg.choice.req.close.str"/></xsl:when>
305 </xsl:choose>
306 <!-- Add a space padding if we're the last element in a repeating arg or group -->
307 <!-- 2023-03-22 bird: This is incorrectly written. Fix as needed...
308 <xsl:if test="(parent::arg or parent::group) and not(following-sibiling) and not(ancestor::*[@role='compact'])">
309 <xsl:text> </xsl:text>
310 </xsl:if>
311 -->
312 </xsl:if>
313 </xsl:template>
314
315
316 <!--
317 refsect2
318 -->
319 <xsl:template match="refsect2">
320 <!-- assertions -->
321 <xsl:if test="text()"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refsect2 shouldn't contain text</xsl:message></xsl:if>
322 <xsl:if test="count(./title) != 1"><xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>refsect2 requires a title (<xsl:value-of select="ancestor-or-self::*[@id][1]/@id"/>)</xsl:message></xsl:if>
323
324 <!-- title / command synopsis - sets the scope. -->
325 <xsl:variable name="sTitle">
326 <xsl:apply-templates select="./title/text()"/>
327 </xsl:variable>
328 <xsl:text>
329 { </xsl:text><xsl:call-template name="calc-scope-refsect2"/><xsl:text>, "" },
330 { RTMSGREFENTRYSTR_SCOPE_SAME,
331 "</xsl:text><xsl:call-template name="emit-indentation"/>
332 <xsl:value-of select="$sTitle"/>
333 <xsl:text>" },
334 { RTMSGREFENTRYSTR_SCOPE_SAME,
335 "</xsl:text><xsl:call-template name="emit-indentation"/>
336 <xsl:value-of select="substring($g_sUnderlineRefSect2, 1, string-length($sTitle))"/>
337 <xsl:text>" },</xsl:text>
338
339<!-- <xsl:if test="./*[name() != 'title']/following::
340 { RTMSGREFENTRYSTR_SCOPE_SAME, "y" },</xsl:text> cmdsynopsis -->
341
342 <!-- Format the text in the section -->
343 <xsl:for-each select="./*[name() != 'title']">
344 <xsl:apply-templates select="."/>
345 </xsl:for-each>
346
347 <!-- Add two blank lines, unless we're the last element in this refsect1. -->
348 <xsl:if test="position() != last()">
349 <xsl:text>
350 { RTMSGREFENTRYSTR_SCOPE_SAME, "" },</xsl:text>
351 </xsl:if>
352 </xsl:template>
353
354
355 <!--
356 para
357 -->
358 <xsl:template match="para">
359 <xsl:if test="position() != 1 or not(parent::listitem)">
360 <xsl:text>
361 { RTMSGREFENTRYSTR_SCOPE_SAME, "" },</xsl:text>
362 </xsl:if>
363 <xsl:call-template name="process-mixed"/>
364 </xsl:template>
365
366
367 <!--
368 variablelist
369 -->
370 <xsl:template match="variablelist">
371 <xsl:if test="*[not(self::varlistentry)]|text()">
372 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Only varlistentry elements are supported in variablelist </xsl:message>
373 </xsl:if>
374 <xsl:for-each select="./varlistentry">
375 <xsl:if test="not(term) or not(listitem) or count(listitem) > 1">
376 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Expected one or more term members and exactly one listentry member in varlistentry element.</xsl:message>
377 </xsl:if>
378 <xsl:if test="(not(@spacing) or @spacing != 'compact') and (position() > 1 or (count(../preceding-sibling::*) - count(../preceding-sibling::title) > 0))">
379 <xsl:text>
380 { RTMSGREFENTRYSTR_SCOPE_SAME, "" },</xsl:text>
381 </xsl:if>
382 <xsl:apply-templates select="*"/>
383 </xsl:for-each>
384 </xsl:template>
385
386 <xsl:template match="varlistentry/term">
387 <xsl:call-template name="process-mixed"/>
388 </xsl:template>
389
390 <xsl:template match="varlistentry/listitem">
391 <xsl:call-template name="check-children">
392 <xsl:with-param name="UnsupportedNodes" select="*[not(self::para or self::itemizedlist or self::orderedlist or self::variablelist or self::note)]|text()"/>
393 <xsl:with-param name="SupportedNames">para, itemizedlist, orderedlist and note</xsl:with-param>
394 </xsl:call-template>
395
396 <xsl:apply-templates select="*"/>
397 </xsl:template>
398
399
400 <!--
401 itemizedlist and orderedlist
402 -->
403 <xsl:template match="itemizedlist|orderedlist">
404 <xsl:if test="*[not(self::listitem)]|text()">
405 <xsl:message terminate="yes">
406 <xsl:call-template name="error-prefix"/>Only listitem elements are supported in <xsl:value-of select="name()"/>:
407 <xsl:call-template name="list-nodes">
408 <xsl:with-param name="Nodes" select="*[not(self::listitem)]|text()"/>
409 </xsl:call-template>
410 </xsl:message>
411 </xsl:if>
412 <xsl:if test="parent::para">
413 <xsl:message terminate="yes"><xsl:value-of select="name()"/> inside a para is current not supported. <!-- no newline
414 -->Close the para before the list, it makes no difference to html and latex/pdf output.</xsl:message>
415 </xsl:if>
416 <xsl:if test="position() != 1 and (not(@spacing) or @spacing != 'compact')">
417 <xsl:text>
418 { RTMSGREFENTRYSTR_SCOPE_SAME, "" },</xsl:text>
419 </xsl:if>
420 <xsl:for-each select="./listitem">
421 <xsl:apply-templates select="*"/>
422 </xsl:for-each>
423 </xsl:template>
424
425 <xsl:template match="itemizedlist/listitem|orderedlist/listitem">
426 <xsl:if test="*[not(self::para)]|text()">
427 <xsl:message terminate="yes">
428 <xsl:call-template name="error-prefix"/>Expected <xsl:value-of select="name()"/>/listitem to only contain para elements:
429 <xsl:call-template name="list-nodes">
430 <xsl:with-param name="Nodes" select="*[not(self::para)]|text()"/>
431 </xsl:call-template>
432 </xsl:message>
433 </xsl:if>
434
435 <xsl:if test="position() != 1 and @spaceing != 'compact'">
436 <xsl:text>
437 { RTMSGREFENTRYSTR_SCOPE_SAME, "" },</xsl:text>
438 </xsl:if>
439 <xsl:apply-templates select="*"/>
440 </xsl:template>
441
442
443 <!--
444 Screen
445 -->
446 <xsl:template match="screen">
447 <xsl:if test="ancestor::para">
448 <xsl:text>" },</xsl:text>
449 </xsl:if>
450
451 <xsl:text>
452 { RTMSGREFENTRYSTR_SCOPE_SAME,
453 "</xsl:text>
454
455 <xsl:for-each select="node()">
456 <xsl:choose>
457 <xsl:when test="name() = ''">
458 <xsl:call-template name="screen_text_line">
459 <xsl:with-param name="sText" select="."/>
460 </xsl:call-template>
461 </xsl:when>
462 <xsl:otherwise>
463 <xsl:if test="*">
464 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Support for elements under screen has not been implemented: <xsl:value-of select="name()"/></xsl:message>
465 </xsl:if>
466 </xsl:otherwise>
467 </xsl:choose>
468 </xsl:for-each>
469
470 <xsl:if test="not(ancestor::para)">
471 <xsl:text>" },</xsl:text>
472 </xsl:if>
473 </xsl:template>
474
475 <xsl:template name="screen_text_line">
476 <xsl:param name="sText"/>
477
478 <xsl:choose>
479 <xsl:when test="contains($sText, '&#x0a;')">
480 <xsl:call-template name="escape_fixed_text">
481 <xsl:with-param name="sText" select="substring-before($sText,'&#x0a;')"/>
482 </xsl:call-template>
483
484 <xsl:if test="substring-after($sText,'&#x0a;')">
485 <xsl:text>" },
486 { RTMSGREFENTRYSTR_SCOPE_SAME,
487 "</xsl:text>
488 <xsl:call-template name="screen_text_line">
489 <xsl:with-param name="sText" select="substring-after($sText,'&#x0a;')"/>
490 </xsl:call-template>
491 </xsl:if>
492 </xsl:when>
493
494 <xsl:otherwise> <!-- no newline, so use the whole string -->
495 <xsl:call-template name="escape_fixed_text">
496 <xsl:with-param name="sText" select="$sText"/>
497 </xsl:call-template>
498 </xsl:otherwise>
499 </xsl:choose>
500 </xsl:template>
501
502 <!-- Normalizes the current text node taking tailing and leading spaces
503 into account (unlike normalize-space which strips them mercilessly). -->
504 <xsl:template name="my-normalize-space-current">
505 <!-- <xsl:message>dbg0: position=<xsl:value-of select="position()"/> last=<xsl:value-of select="last()"/> .=|<xsl:value-of select="."/>|</xsl:message> -->
506 <xsl:if test="(starts-with(.,' ') or starts-with(., $g_sNewLine)) and position() != 1">
507 <xsl:value-of select="' '"/>
508 </xsl:if>
509 <xsl:value-of select="normalize-space(.)"/>
510 <xsl:if test="((substring(.,string-length(.)) = ' ') or (substring(.,string-length(.)) = $g_sNewLine)) and position() != last()">
511 <xsl:value-of select="' '"/>
512 </xsl:if>
513 </xsl:template>
514
515 <!--
516 Text escaping for C.
517 -->
518 <xsl:template match="text()" name="escape_text">
519 <!-- Leading whitespace hack! -->
520 <xsl:if test="(starts-with(.,' ') or starts-with(.,$g_sNewLine)) and position() != 1">
521 <xsl:text> </xsl:text>
522 <xsl:if test="boolean($g_fDebugText)">
523 <xsl:message>text: add lead space</xsl:message>
524 </xsl:if>
525 </xsl:if>
526
527 <!-- Body of text -->
528 <xsl:choose>
529
530 <xsl:when test="contains(., '\') or contains(., '&quot;')">
531 <xsl:variable name="sTmp">
532 <xsl:call-template name="str:subst">
533 <xsl:with-param name="text" select="normalize-space(.)"/>
534 <xsl:with-param name="replace" select="'\'"/>
535 <xsl:with-param name="with" select="'\\'"/>
536 <xsl:with-param name="disable-output-escaping" select="yes"/>
537 </xsl:call-template>
538 </xsl:variable>
539 <xsl:variable name="sTmp2">
540 <xsl:call-template name="str:subst">
541 <xsl:with-param name="text" select="$sTmp"/>
542 <xsl:with-param name="replace" select="'&quot;'"/>
543 <xsl:with-param name="with" select="'\&quot;'"/>
544 <xsl:with-param name="disable-output-escaping" select="yes"/>
545 </xsl:call-template>
546 </xsl:variable>
547 <xsl:value-of select="$sTmp2"/>
548 <xsl:if test="boolean($g_fDebugText)">
549 <xsl:message>text: |<xsl:value-of select="$sTmp2"/>|(1)</xsl:message>
550 </xsl:if>
551 </xsl:when>
552
553 <xsl:otherwise>
554 <xsl:value-of select="normalize-space(.)"/>
555 <xsl:if test="boolean($g_fDebugText)">
556 <xsl:message>text: |<xsl:value-of select="normalize-space(.)"/>|(2)</xsl:message>
557 </xsl:if>
558 </xsl:otherwise>
559 </xsl:choose>
560
561 <!-- Trailing whitespace hack! -->
562 <xsl:if test="(substring(.,string-length(.)) = ' ' or substring(.,string-length(.)) = $g_sNewLine) and position() != last() and string-length(.) != 1">
563 <xsl:text> </xsl:text>
564 <xsl:if test="boolean($g_fDebugText)">
565 <xsl:message>text: add tail space</xsl:message>
566 </xsl:if>
567 </xsl:if>
568
569 </xsl:template>
570
571 <!-- Elements producing non-breaking strings (single line). -->
572 <xsl:template match="command/text()|option/text()|computeroutput/text()|arg/text()|filename/text()" name="escape_fixed_text">
573 <xsl:param name="sText"><xsl:call-template name="my-normalize-space-current"/></xsl:param>
574 <xsl:choose>
575
576 <xsl:when test="contains($sText, '\') or contains($sText, '&quot;')">
577 <xsl:variable name="sTmp1">
578 <xsl:call-template name="str:subst">
579 <xsl:with-param name="text" select="$sText"/>
580 <xsl:with-param name="replace" select="'\'"/>
581 <xsl:with-param name="with" select="'\\'"/>
582 <xsl:with-param name="disable-output-escaping" select="yes"/>
583 </xsl:call-template>
584 </xsl:variable>
585 <xsl:variable name="sTmp2">
586 <xsl:call-template name="str:subst">
587 <xsl:with-param name="text" select="$sTmp1"/>
588 <xsl:with-param name="replace" select="'&quot;'"/>
589 <xsl:with-param name="with" select="'\&quot;'"/>
590 <xsl:with-param name="disable-output-escaping" select="yes"/>
591 </xsl:call-template>
592 </xsl:variable>
593 <xsl:variable name="sTmp3">
594 <xsl:call-template name="str:subst">
595 <xsl:with-param name="text" select="$sTmp2"/>
596 <xsl:with-param name="replace" select="' '"/>
597 <xsl:with-param name="with" select="'\b'"/>
598 <xsl:with-param name="disable-output-escaping" select="yes"/>
599 </xsl:call-template>
600 </xsl:variable>
601 <xsl:value-of select="$sTmp3"/>
602 <xsl:if test="boolean($g_fDebugText)">
603 <xsl:message>text! |<xsl:value-of select="$sTmp3"/>|</xsl:message>
604 </xsl:if>
605 </xsl:when>
606
607 <xsl:when test="contains($sText, ' ')">
608 <xsl:variable name="sTmp">
609 <xsl:call-template name="str:subst">
610 <xsl:with-param name="text" select="$sText"/>
611 <xsl:with-param name="replace" select="' '"/>
612 <xsl:with-param name="with" select="'\b'"/>
613 <xsl:with-param name="disable-output-escaping" select="yes"/>
614 </xsl:call-template>
615 </xsl:variable>
616 <xsl:value-of select="$sTmp"/>
617 <xsl:if test="boolean($g_fDebugText)">
618 <xsl:message>text! |<xsl:value-of select="$sTmp"/>|</xsl:message>
619 </xsl:if>
620 </xsl:when>
621
622 <xsl:otherwise>
623 <xsl:value-of select="$sText"/>
624 <xsl:if test="boolean($g_fDebugText)">
625 <xsl:message>text! |<xsl:value-of select="$sText"/>|</xsl:message>
626 </xsl:if>
627 </xsl:otherwise>
628 </xsl:choose>
629 </xsl:template>
630
631
632 <!--
633 Unsupported elements and elements handled directly.
634 -->
635 <xsl:template match="synopfragment|synopfragmentref|title|refsect1">
636 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>The <xsl:value-of select="name()"/> element is not supported</xsl:message>
637 </xsl:template>
638
639 <xsl:template match="xref">
640 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>The <xsl:value-of select="name()"/> element is not supported, most likely the linkend is not defined or incorrectly processed by docbook-refentry-link-replacement-xsl-gen.xsl</xsl:message>
641 </xsl:template>
642
643 <!--
644 Fail on misplaced scoping remarks.
645 -->
646 <xsl:template match="remark[@role = 'help-scope']">
647 <xsl:choose>
648 <xsl:when test="parent::refsect1"/>
649 <xsl:when test="parent::refsect2"/>
650 <xsl:when test="parent::cmdsynopsis and ancestor::refsynopsisdiv"/>
651 <xsl:otherwise>
652 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Misplaced remark/@role=help-scope element.
653Only supported on: refsect1, refsect2, refsynopsisdiv/cmdsynopsis</xsl:message>
654 </xsl:otherwise>
655 </xsl:choose>
656 </xsl:template>
657
658 <!--
659 Execute synopsis copy remark (avoids duplication for complicated xml).
660 -->
661 <xsl:template match="remark[@role = 'help-copy-synopsis']">
662 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>remark/@role=help-copy-synopsis is not supported by this stylesheet. Must preprocess input!</xsl:message>
663 </xsl:template>
664
665 <!--
666 Warn about unhandled elements
667 -->
668 <xsl:template match="*">
669 <xsl:message terminate="no">Warning: Unhandled element: <!-- no newline -->
670 <xsl:for-each select="ancestor-or-self::*">
671 <xsl:text>/</xsl:text>
672 <xsl:value-of select="name(.)"/>
673 <xsl:if test="@id">
674 <xsl:value-of select="concat('[id=', @id ,']')"/>
675 </xsl:if>
676 </xsl:for-each>
677 </xsl:message>
678 </xsl:template>
679
680
681 <!--
682 Functions
683 Functions
684 Functions
685 -->
686
687 <!--
688 Processes mixed children, i.e. both text and regular elements.
689 Normalizes whitespace. -->
690 <xsl:template name="process-mixed">
691 <xsl:text>
692 { RTMSGREFENTRYSTR_SCOPE_SAME,
693 "</xsl:text><xsl:call-template name="emit-indentation"/>
694
695 <xsl:for-each select="node()[not(self::remark)]">
696 <xsl:choose>
697 <xsl:when test="name() = ''">
698 <xsl:call-template name="escape_text"/>
699 </xsl:when>
700 <xsl:otherwise>
701 <xsl:apply-templates select="."/>
702 </xsl:otherwise>
703 </xsl:choose>
704 </xsl:for-each>
705
706 <xsl:text>" },</xsl:text>
707 </xsl:template>
708
709
710 <!--
711 Element specific scoping.
712 -->
713
714 <xsl:template name="calc-scope-for-refentry">
715 <xsl:text>HELP_SCOPE_</xsl:text>
716 <xsl:choose>
717 <xsl:when test="contains(@id, '-')"> <!-- Multi level command. -->
718 <xsl:call-template name="str:to-upper">
719 <xsl:with-param name="text" select="translate(substring-after(@id, '-'), '-', '_')"/>
720 </xsl:call-template>
721 </xsl:when>
722 <xsl:otherwise> <!-- Single command. -->
723 <xsl:call-template name="str:to-upper">
724 <xsl:with-param name="text" select="@id"/>
725 </xsl:call-template>
726 </xsl:otherwise>
727 </xsl:choose>
728 </xsl:template>
729
730 <!-- Figures out the scope of a refsect1 element. -->
731 <xsl:template name="calc-scope-refsect1">
732 <xsl:choose>
733 <xsl:when test="title[text() = 'Description']">
734 <xsl:text>RTMSGREFENTRYSTR_SCOPE_GLOBAL</xsl:text>
735 </xsl:when>
736 <xsl:when test="@id or remark[@role='help-scope']">
737 <xsl:call-template name="calc-scope-from-remark-or-id"/>
738 </xsl:when>
739 <xsl:otherwise>
740 <xsl:text>RTMSGREFENTRYSTR_SCOPE_GLOBAL</xsl:text>
741 </xsl:otherwise>
742 </xsl:choose>
743 </xsl:template>
744
745 <!-- Figures out the scope of a refsect2 element. -->
746 <xsl:template name="calc-scope-refsect2">
747 <xsl:choose>
748 <xsl:when test="@id or remark[@role='help-scope']">
749 <xsl:call-template name="calc-scope-from-remark-or-id"/>
750 </xsl:when>
751 <xsl:otherwise>
752 <xsl:text>RTMSGREFENTRYSTR_SCOPE_SAME</xsl:text>
753 </xsl:otherwise>
754 </xsl:choose>
755 </xsl:template>
756
757 <!-- Figures out the scope of a refsect1 element. -->
758 <xsl:template name="calc-scope-cmdsynopsis">
759 <xsl:choose>
760 <xsl:when test="ancestor::refsynopsisdiv">
761 <xsl:call-template name="calc-scope-from-remark-or-id">
762 <xsl:with-param name="sId" select="substring-after(@id, '-')"/>
763 </xsl:call-template>
764 </xsl:when>
765 <xsl:otherwise>
766 <xsl:text>RTMSGREFENTRYSTR_SCOPE_SAME</xsl:text>
767 </xsl:otherwise>
768 </xsl:choose>
769 </xsl:template>
770
771
772 <!--
773 Scoping worker functions.
774 -->
775
776 <!-- Calculates the current scope from the scope remark or @id. -->
777 <xsl:template name="calc-scope-from-remark-or-id">
778 <xsl:param name="sId" select="@id"/>
779 <xsl:choose>
780 <xsl:when test="remark[@role='help-scope']">
781 <xsl:call-template name="calc-scope-consts-from-remark"/>
782 </xsl:when>
783 <xsl:when test="$sId != ''">
784 <xsl:call-template name="calc-scope-const-from-id">
785 <xsl:with-param name="sId" select="$sId"/>
786 </xsl:call-template>
787 </xsl:when>
788 <xsl:otherwise>
789 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>expected remark child or id attribute.</xsl:message>
790 </xsl:otherwise>
791 </xsl:choose>
792 </xsl:template>
793
794 <!-- Turns a @id into a scope constant.
795 Some woodoo taking place here here that chops the everything up to and
796 including the first refentry/@id word from all IDs before turning them into
797 constants (word delimiter '-'). -->
798 <xsl:template name="calc-scope-const-from-id">
799 <xsl:param name="sId" select="@id"/>
800 <xsl:param name="sAncestorId" select="ancestor::refentry/@id"/>
801 <xsl:text>HELP_SCOPE_</xsl:text>
802 <xsl:choose>
803 <xsl:when test="not($sAncestorId)"> <!-- Sanity check. -->
804 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>calc-scope-const-from-id is invoked without an refentry ancestor with a id. <xsl:call-template name="get-node-path"/> </xsl:message>
805 </xsl:when>
806
807 <xsl:when test="contains($sAncestorId, '-')"> <!-- Multi level command. -->
808 <xsl:variable name="sPrefix" select="concat(substring-before($sAncestorId, '-'), '-')"/>
809 <xsl:if test="not(contains($sId, $sPrefix))">
810 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Expected sId (<xsl:value-of select="$sId"/>) to contain <xsl:value-of select="$sPrefix"/></xsl:message>
811 </xsl:if>
812 <xsl:call-template name="str:to-upper">
813 <xsl:with-param name="text" select="translate(substring-after($sId, $sPrefix), '-', '_')"/>
814 </xsl:call-template>
815 </xsl:when>
816
817 <xsl:otherwise> <!-- Single command. -->
818 <xsl:call-template name="str:to-upper">
819 <xsl:with-param name="text" select="translate($sId, '-', '_')"/>
820 </xsl:call-template>
821 </xsl:otherwise>
822 </xsl:choose>
823 </xsl:template>
824
825 <!-- Turns a remark into one or more scope constants. -->
826 <xsl:template name="calc-scope-consts-from-remark">
827 <xsl:param name="sCondition" select="remark/@condition"/>
828 <xsl:variable name="sNormalized" select="concat(normalize-space(translate($sCondition, ',;:|', ' ')), ' ')"/>
829 <xsl:if test="$sNormalized = ' ' or $sNormalized = ''">
830 <xsl:message terminate="yes"><xsl:call-template name="error-prefix"/>Empty @condition for help-scope remark.</xsl:message>
831 </xsl:if>
832 <xsl:choose>
833 <xsl:when test="substring-before($sNormalized, ' ') = 'GLOBAL'">
834 <xsl:text>RTMSGREFENTRYSTR_SCOPE_GLOBAL</xsl:text>
835 </xsl:when>
836 <xsl:otherwise>
837 <xsl:text>HELP_SCOPE_</xsl:text><xsl:value-of select="substring-before($sNormalized, ' ')"/>
838 </xsl:otherwise>
839 </xsl:choose>
840 <xsl:call-template name="calc-scope-const-from-remark-worker">
841 <xsl:with-param name="sList" select="substring-after($sNormalized, ' ')"/>
842 </xsl:call-template>
843 </xsl:template>
844
845 <xsl:template name="calc-scope-const-from-remark-worker">
846 <xsl:param name="sList"/>
847 <xsl:if test="$sList != ''">
848 <xsl:choose>
849 <xsl:when test="substring-before($sList, ' ') = 'GLOBAL'">
850 <xsl:text>| RTMSGREFENTRYSTR_SCOPE_GLOBAL</xsl:text>
851 </xsl:when>
852 <xsl:otherwise>
853 <xsl:text> | HELP_SCOPE_</xsl:text><xsl:value-of select="substring-before($sList, ' ')"/>
854 </xsl:otherwise>
855 </xsl:choose>
856 <xsl:call-template name="calc-scope-const-from-remark-worker">
857 <xsl:with-param name="sList" select="substring-after($sList, ' ')"/>
858 </xsl:call-template>
859 </xsl:if>
860 </xsl:template>
861
862
863 <!--
864 Calculates and emits indentation list markup.
865 -->
866 <xsl:template name="emit-indentation">
867 <xsl:variable name="iDepth" select="count(ancestor-or-self::*)"/>
868 <xsl:for-each select="ancestor-or-self::*">
869 <xsl:choose>
870
871 <xsl:when test="self::refsect1
872 | self::refsect2
873 | self::refsect3
874 | self::refsynopsisdiv">
875 <xsl:text> </xsl:text>
876 </xsl:when>
877
878 <xsl:when test="self::term">
879 <!-- currently no indent. -->
880 </xsl:when>
881
882 <!-- Evidence here (especially with orderedlist) that doing list by for-each
883 listitem in the template matching the list type would be easier... -->
884 <xsl:when test="self::listitem and parent::itemizedlist and (position() + 1) = $iDepth">
885 <xsl:text> - </xsl:text>
886 </xsl:when>
887
888 <xsl:when test="self::listitem and parent::orderedlist and (position() + 1) = $iDepth">
889 <xsl:variable name="iNumber" select="count(preceding-sibling::listitem) + 1"/>
890 <xsl:if test="$iNumber &lt;= 9">
891 <xsl:text> </xsl:text>
892 </xsl:if>
893 <xsl:value-of select="$iNumber"/>
894 <xsl:text>. </xsl:text>
895 </xsl:when>
896
897 <xsl:when test="self::listitem">
898 <xsl:text> </xsl:text>
899 </xsl:when>
900
901 </xsl:choose>
902 </xsl:for-each>
903 </xsl:template>
904
905 <!--
906 Captializes the given text.
907 -->
908 <xsl:template name="capitalize">
909 <xsl:param name="text"/>
910 <xsl:call-template name="str:to-upper">
911 <xsl:with-param name="text" select="substring($text,1,1)"/>
912 </xsl:call-template>
913 <xsl:value-of select="substring($text,2)"/>
914 </xsl:template>
915
916
917 <!--
918 Debug/Diagnostics: Return the path to the specified node (by default the current).
919 -->
920 <xsl:template name="get-node-path">
921 <xsl:param name="Node" select="."/>
922 <xsl:for-each select="$Node">
923 <xsl:for-each select="ancestor-or-self::node()">
924 <xsl:choose>
925 <xsl:when test="name(.) = ''">
926 <xsl:text>text()</xsl:text>
927 </xsl:when>
928 <xsl:otherwise>
929 <xsl:value-of select="concat('/', name(.))"/>
930 <xsl:choose>
931 <xsl:when test="@id">
932 <xsl:text>[@id=</xsl:text>
933 <xsl:value-of select="@id"/>
934 <xsl:text>]</xsl:text>
935 </xsl:when>
936 <xsl:when test="position() > 1">
937 <xsl:text>[</xsl:text><xsl:value-of select="position()"/><xsl:text>]</xsl:text>
938 </xsl:when>
939 </xsl:choose>
940 </xsl:otherwise>
941 </xsl:choose>
942 </xsl:for-each>
943 </xsl:for-each>
944 </xsl:template>
945
946 <!--
947 Debug/Diagnostics: Return error message prefix.
948 -->
949 <xsl:template name="error-prefix">
950 <xsl:param name="Node" select="."/>
951 <xsl:text>error: </xsl:text>
952 <xsl:call-template name="get-node-path">
953 <xsl:with-param name="Node" select="$Node"/>
954 </xsl:call-template>
955 <xsl:text>: </xsl:text>
956 </xsl:template>
957
958 <!--
959 Debug/Diagnostics: Print list of nodes (by default all children of current node).
960 -->
961 <xsl:template name="list-nodes">
962 <xsl:param name="Nodes" select="node()"/>
963 <xsl:for-each select="$Nodes">
964 <xsl:if test="position() != 1">
965 <xsl:text>, </xsl:text>
966 </xsl:if>
967 <xsl:choose>
968 <xsl:when test="name(.) = ''">
969 <xsl:text>text:text()</xsl:text>
970 </xsl:when>
971 <xsl:otherwise>
972 <xsl:value-of select="name(.)"/>
973 <xsl:if test="@id">
974 <xsl:text>[@id=</xsl:text>
975 <xsl:value-of select="@id"/>
976 <xsl:text>]</xsl:text>
977 </xsl:if>
978 </xsl:otherwise>
979 </xsl:choose>
980 </xsl:for-each>
981 </xsl:template>
982
983 <xsl:template name="check-children">
984 <xsl:param name="Node" select="."/>
985 <xsl:param name="UnsupportedNodes" select="*"/>
986 <xsl:param name="SupportedNames" select="'none'"/>
987 <xsl:if test="count($UnsupportedNodes) != 0">
988 <xsl:message terminate="yes">
989 <xsl:call-template name="get-node-path">
990 <xsl:with-param name="Node" select="$Node"/>
991 </xsl:call-template>
992 <!-- -->: error: Only <xsl:value-of select="$SupportedNames"/> are supported as children to <!-- -->
993 <xsl:value-of select="name($Node)"/>
994 <!-- -->
995Unsupported children: <!-- -->
996 <xsl:call-template name="list-nodes">
997 <xsl:with-param name="Nodes" select="$UnsupportedNodes"/>
998 </xsl:call-template>
999 </xsl:message>
1000 </xsl:if>
1001 </xsl:template>
1002
1003</xsl:stylesheet>
1004
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use