3 DocBook to yodl converter
5 Lacks support for a few docbook tags, but pretty much all
8 (C) Jelmer Vernooij 2004
9 Published under the GNU GPLv3 or later
11 <xsl:stylesheet xmlns:
xsl=
"http://www.w3.org/1999/XSL/Transform"
12 xmlns:
exsl=
"http://exslt.org/common"
15 <xsl:output method=
"text" encoding=
"iso-8859-1" standalone=
"yes" indent=
"no"/>
16 <xsl:strip-space elements=
"*"/>
18 <xsl:template match=
"refentry">
19 <xsl:text>manpage(
</xsl:text>
20 <xsl:value-of select=
"refmeta/refentrytitle"/>
21 <xsl:text>)()(
</xsl:text>
22 <xsl:value-of select=
"refmeta/manvolnum"/>
23 <xsl:text>)(package)()
</xsl:text>
25 <xsl:apply-templates/>
28 <xsl:template match=
"article">
29 <xsl:text>article(
</xsl:text>
30 <xsl:value-of select=
"title"/>
31 <xsl:text>)(
</xsl:text>
32 <xsl:text>FIXME
</xsl:text>
33 <xsl:text>)(
</xsl:text>
34 <xsl:value-of select=
"articleinfo/pubdate"/>
35 <xsl:text>)
</xsl:text>
36 <xsl:apply-templates/>
39 <xsl:template match=
"report">
40 <xsl:text>report(
</xsl:text>
41 <xsl:value-of select=
"title"/>
42 <xsl:text>)(
</xsl:text>
43 <xsl:text>FIXME
</xsl:text>
44 <xsl:text>)(
</xsl:text>
45 <xsl:value-of select=
"articleinfo/pubdate"/>
46 <xsl:text>)
</xsl:text>
47 <xsl:apply-templates/>
50 <xsl:template match=
"book">
51 <xsl:text>book(
</xsl:text>
52 <xsl:value-of select=
"title"/>
53 <xsl:text>)(
</xsl:text>
54 <xsl:text>FIXME
</xsl:text>
55 <xsl:text>)(
</xsl:text>
56 <xsl:value-of select=
"articleinfo/pubdate"/>
57 <xsl:text>)
</xsl:text>
58 <xsl:apply-templates/>
61 <xsl:template match=
"chapter">
63 <xsl:when test=
"@id = ''">
64 <xsl:text>chapter(
</xsl:text>
65 <xsl:value-of select=
"title"/>
66 <xsl:text>)
</xsl:text>
69 <xsl:text>lchapter(
</xsl:text>
70 <xsl:value-of select=
"@id"/>
71 <xsl:text>)(
</xsl:text>
72 <xsl:value-of select=
"title"/>
73 <xsl:text>)
</xsl:text>
76 <xsl:apply-templates/>
79 <xsl:template match=
"citerefentry">
80 <xsl:value-of select=
"refentrytitle"/>
81 <xsl:text>(
</xsl:text>
82 <xsl:value-of select=
"manvolnum"/>
83 <xsl:text>)
</xsl:text>
86 <xsl:template match=
"para">
87 <xsl:apply-templates/>
88 <xsl:text> </xsl:text>
91 <xsl:template match=
"formalpara">
92 <xsl:text>paragraph(
</xsl:text>
93 <xsl:value-of select=
"title"/>
94 <xsl:text>)
</xsl:text>
95 <xsl:apply-templates/>
98 <xsl:template match=
"part">
99 <xsl:text>part(
</xsl:text>
100 <xsl:value-of select=
"title"/>
101 <xsl:text>)
</xsl:text>
102 <xsl:apply-templates/>
105 <xsl:template match=
"preface">
106 <xsl:text>nchapter(
</xsl:text>
107 <xsl:value-of select=
"title"/>
108 <xsl:text>)
</xsl:text>
109 <xsl:apply-templates/>
112 <xsl:template match=
"quote">
113 <xsl:text>"</xsl:text>
114 <xsl:apply-templates/>
115 <xsl:text>"</xsl:text>
118 <xsl:template match=
"parameter|filename">
119 <xsl:text>code(
</xsl:text>
120 <xsl:apply-templates/>
121 <xsl:text>)
</xsl:text>
124 <xsl:template match=
"emphasis">
125 <xsl:text>em(
</xsl:text>
126 <xsl:apply-templates/>
127 <xsl:text>)
</xsl:text>
130 <xsl:template match=
"command">
131 <xsl:text>bf(
</xsl:text>
132 <xsl:apply-templates/>
133 <xsl:text>)
</xsl:text>
136 <xsl:template match=
"refnamediv">
137 <xsl:text>manpagename(
</xsl:text>
138 <xsl:value-of select=
"refname"/>
139 <xsl:text>)(
</xsl:text>
140 <xsl:value-of select=
"refpurpose"/>
141 <xsl:text>)
</xsl:text>
144 <xsl:template match=
"refsynopsisdiv">
145 <xsl:text>manpagesynopsis()
</xsl:text>
148 <xsl:template match=
"refsect1|refsect2">
150 <xsl:when test=
"title='DESCRIPTION'">
151 <xsl:text> manpagedescription()
</xsl:text>
153 <xsl:when test=
"title='OPTIONS'">
154 <xsl:text> manpageoptions()
</xsl:text>
156 <xsl:when test=
"title='FILES'">
157 <xsl:text> manpagefiles()
</xsl:text>
159 <xsl:when test=
"title='SEE ALSO'">
160 <xsl:text> manpageseealso()
</xsl:text>
162 <xsl:when test=
"title='DIAGNOSTICS'">
163 <xsl:text> manpagediagnostics()
</xsl:text>
165 <xsl:when test=
"title='BUGS'">
166 <xsl:text> manpagebugs()
</xsl:text>
168 <xsl:when test=
"title='AUTHOR'">
169 <xsl:text> manpageauthor()
</xsl:text>
172 <xsl:text> manpagesection(
</xsl:text>
173 <xsl:value-of select=
"title"/>
174 <xsl:text>)
</xsl:text>
177 <xsl:apply-templates/>
180 <xsl:template match=
"orderedlist">
181 <xsl:text>startdit()
</xsl:text>
182 <xsl:for-each select=
"listitem">
183 <xsl:text>dit()
</xsl:text>
185 <xsl:apply-templates/>
187 <xsl:text> </xsl:text>
189 <xsl:text>enddit()
</xsl:text>
192 <xsl:template match=
"itemizedlist">
193 <xsl:text>startit()
</xsl:text>
194 <xsl:for-each select=
"listitem">
195 <xsl:text>it()
</xsl:text>
197 <xsl:apply-templates/>
199 <xsl:text> </xsl:text>
201 <xsl:text>endit()
</xsl:text>
204 <xsl:template match=
"variablelist">
205 <xsl:text>startdit()
</xsl:text>
206 <xsl:for-each select=
"varlistentry">
207 <xsl:text>dit(
</xsl:text>
208 <xsl:copy-of select=
"term">
209 <xsl:apply-templates/>
211 <xsl:text>)
</xsl:text>
212 <xsl:apply-templates select=
"listitem/para"/>
213 <xsl:text> </xsl:text>
215 <xsl:text>enddit()
</xsl:text>
218 <xsl:template match=
"anchor">
219 <xsl:text>label(
</xsl:text>
220 <xsl:value-of select=
"@id"/>
221 <xsl:text>)
</xsl:text>
224 <xsl:template match=
"footnote">
225 <xsl:text>footnote(
</xsl:text>
226 <xsl:apply-templates/>
227 <xsl:text>)
</xsl:text>
230 <xsl:template match=
"toc">
231 <xsl:text>gettocstring()
</xsl:text>
234 <xsl:template match=
"ulink">
235 <xsl:text> </xsl:text>
236 <xsl:text>url(
</xsl:text>
237 <xsl:value-of select=
"url"/>
238 <xsl:text>)(
</xsl:text>
239 <xsl:apply-templates/>
240 <xsl:text>)
</xsl:text>
243 <xsl:template match=
"link">
244 <xsl:text>lref(
</xsl:text>
245 <xsl:apply-templates/>
246 <xsl:text>)(
</xsl:text>
247 <xsl:value-of select=
"@linkend"/>
248 <xsl:text>)
</xsl:text>
251 <xsl:template match=
"index">
252 <xsl:text>printindex()
</xsl:text>
255 <xsl:template match=
"sect1">
257 <xsl:when test=
"@id = ''">
258 <xsl:text>sect(
</xsl:text>
261 <xsl:text>lsect(
</xsl:text>
262 <xsl:value-of select=
"@id"/>
263 <xsl:text>)(
</xsl:text>
266 <xsl:value-of select=
"title"/>
267 <xsl:text>)
</xsl:text>
268 <xsl:apply-templates/>
271 <xsl:template match=
"sect2">
273 <xsl:when test=
"@id = ''">
274 <xsl:text>subsect(
</xsl:text>
277 <xsl:text>lsubsect(
</xsl:text>
278 <xsl:value-of select=
"@id"/>
279 <xsl:text>)(
</xsl:text>
282 <xsl:value-of select=
"title"/>
283 <xsl:text>)
</xsl:text>
284 <xsl:apply-templates/>
287 <xsl:template match=
"sect3">
289 <xsl:when test=
"@id = ''">
290 <xsl:text>subsubsect(
</xsl:text>
293 <xsl:text>lsubsubsect(
</xsl:text>
294 <xsl:value-of select=
"@id"/>
295 <xsl:text>)(
</xsl:text>
298 <xsl:value-of select=
"title"/>
299 <xsl:text>)
</xsl:text>
300 <xsl:apply-templates/>
303 <xsl:template match=
"sect4">
305 <xsl:when test=
"@id = ''">
306 <xsl:text>subsubsubsect(
</xsl:text>
309 <xsl:text>lsubsubsubsect(
</xsl:text>
310 <xsl:value-of select=
"@id"/>
311 <xsl:text>)(
</xsl:text>
314 <xsl:value-of select=
"title"/>
315 <xsl:text>)
</xsl:text>
316 <xsl:apply-templates/>
319 <xsl:template match=
"*"/>