c4757e1d9d4adbbb152b2b4a2714e1afe6bfae41
[librarian.git] / librarian / xslt / book2html.xslt
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3
4    This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
5    Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
6
7 -->
8 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
9     xmlns:wl="http://wolnelektury.pl/functions"
10     xmlns:dc="http://purl.org/dc/elements/1.1/" >
11
12 <xsl:output encoding="utf-8" indent="yes" omit-xml-declaration = "yes" version="2.0" />
13 <xsl:strip-space  elements="opowiadanie powiesc dramat_wierszowany_l dramat_wierszowany_lp dramat_wspolczesny liryka_l liryka_lp wywiad"/>
14 <xsl:template match="utwor">
15     <xsl:choose>
16         <xsl:when test="@full-page">
17             <html>
18             <head>
19                 <title>Książka z serwisu WolneLektury.pl</title>
20                 <meta charset="utf-8" />
21                 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
22                 <link href="https://static.wolnelektury.pl/css/compressed/book_text.css" rel="stylesheet" type="text/css" />
23             </head>
24             <body>
25                 <xsl:call-template name="book-text" />
26             </body>
27             </html>
28         </xsl:when>
29         <xsl:otherwise>
30             <xsl:call-template name="book-text" />
31         </xsl:otherwise>
32     </xsl:choose>
33 </xsl:template>
34
35 <xsl:template name="book-text">
36     <div id="book-text">
37         <xsl:apply-templates select="powiesc|opowiadanie|liryka_l|liryka_lp|dramat_wierszowany_l|dramat_wierszowany_lp|dramat_wspolczesny" />
38         <xsl:if test="count(descendant::*[self::pe or self::pa or self::pr or self::pt][not(parent::extra)])">
39             <div id="footnotes">
40                 <h3>Przypisy</h3>
41                 <xsl:for-each select="descendant::*[self::pe or self::pa or self::pr or self::pt][not(parent::extra)]">
42                     <div>
43                         <xsl:attribute name="class">fn-<xsl:value-of select="name()" /></xsl:attribute>
44                         <a name="{concat('footnote-', generate-id(.))}" />
45                         <a href="{concat('#anchor-', generate-id(.))}" class="annotation">[<xsl:number value="count(preceding::*[self::pa or self::pe or self::pr or self::pt]) + 1" />]</a>
46                         <xsl:choose>
47                             <xsl:when test="count(akap|akap_cd|strofa) = 0">
48                                 <p><xsl:apply-templates select="text()|*" mode="inline" />
49                                 <xsl:if test="name()='pa'"> [przypis autorski]</xsl:if>
50                                 <xsl:if test="name()='pt'"> [przypis tłumacza]</xsl:if>
51                                 <xsl:if test="name()='pr'"> [przypis redakcyjny]</xsl:if>
52                                 <xsl:if test="name()='pe'"> [przypis edytorski]</xsl:if>
53                                 </p>
54                             </xsl:when>
55                             <xsl:otherwise>
56                                 <xsl:apply-templates select="text()|*" mode="inline" />
57                             </xsl:otherwise>
58                         </xsl:choose>
59                     </div>
60                 </xsl:for-each>
61             </div>
62         </xsl:if>
63     </div>
64 </xsl:template>
65
66
67 <!-- ============================================================================== -->
68 <!-- = MASTER TAG                                                                 = -->
69 <!-- = (can contain block tags, paragraph tags, standalone tags and special tags) = -->
70 <!-- ============================================================================== -->
71 <xsl:template match="powiesc|opowiadanie|liryka_l|liryka_lp|dramat_wierszowany_l|dramat_wierszowany_lp|dramat_wspolczesny">
72     <xsl:apply-templates select="nota_red" mode="special" />
73     <xsl:if test="nazwa_utworu">
74         <h1>
75             <xsl:apply-templates select="autor_utworu|dzielo_nadrzedne|nazwa_utworu|podtytul" mode="header" />
76             <xsl:call-template name="translators" />
77         </h1>
78     </xsl:if>
79     <xsl:apply-templates />
80 </xsl:template>
81
82
83 <!-- ==================================================================================== -->
84 <!-- = BLOCK TAGS                                                                       = -->
85 <!-- = (can contain other block tags, paragraph tags, standalone tags and special tags) = -->
86 <!-- ==================================================================================== -->
87 <xsl:template match="nota">
88     <div class="note"><xsl:apply-templates /></div>
89 </xsl:template>
90
91 <xsl:template match="lista_osob">
92     <div class="person-list">
93         <h3><xsl:value-of select="naglowek_listy" /></h3>
94         <ol>
95             <xsl:apply-templates select="lista_osoba" />
96         </ol>
97     </div>
98 </xsl:template>
99
100 <xsl:template match="dedykacja">
101     <div class="dedication"><xsl:apply-templates /></div>
102 </xsl:template>
103
104 <xsl:template match="kwestia">
105     <div class="kwestia">
106         <xsl:apply-templates select="strofa|akap|didaskalia" />
107     </div>
108 </xsl:template>
109
110 <xsl:template match="dlugi_cytat|poezja_cyt">
111     <blockquote><xsl:apply-templates /></blockquote>
112 </xsl:template>
113
114 <xsl:template match="motto">
115     <div class="motto"><xsl:apply-templates /></div>
116 </xsl:template>
117
118 <xsl:template match="ilustr" mode="inline">
119     <xsl:apply-templates select="."/>
120 </xsl:template>
121
122 <xsl:template match="ilustr">
123     <img>
124         <xsl:attribute name="src">
125             <xsl:value-of select="$gallery" /><xsl:value-of select="@src" />
126         </xsl:attribute>
127         <xsl:attribute name="alt">
128             <xsl:value-of select="@alt" />
129         </xsl:attribute>
130         <xsl:attribute name="title">
131             <xsl:value-of select="@alt" />
132         </xsl:attribute>
133     </img>
134 </xsl:template>
135
136
137 <!-- ========================================== -->
138 <!-- = PARAGRAPH TAGS                         = -->
139 <!-- = (can contain inline and special tags)  = -->
140 <!-- ========================================== -->
141 <!-- Title page -->
142 <xsl:template match="autor_utworu" mode="header">
143     <span class="author"><xsl:apply-templates mode="inline" /></span>
144 </xsl:template>
145
146 <xsl:template match="nazwa_utworu" mode="header">
147     <span class="title"><xsl:apply-templates mode="inline" /></span>
148 </xsl:template>
149
150 <xsl:template match="dzielo_nadrzedne" mode="header">
151     <span class="collection"><xsl:apply-templates mode="inline" /></span>
152 </xsl:template>
153
154 <xsl:template match="podtytul" mode="header">
155     <span class="subtitle"><xsl:apply-templates mode="inline" /></span>
156 </xsl:template>
157
158 <!-- Section headers (included in index)-->
159 <xsl:template match="naglowek_akt|naglowek_czesc|srodtytul">
160   <xsl:call-template name="section-anchor"/>
161     <h2><xsl:apply-templates mode="inline" /></h2>
162 </xsl:template>
163
164 <xsl:template match="naglowek_scena|naglowek_rozdzial">
165     <xsl:call-template name="section-anchor"/>
166     <h3><xsl:apply-templates mode="inline" /></h3>
167 </xsl:template>
168
169 <xsl:template match="naglowek_osoba|naglowek_podrozdzial">
170       <xsl:call-template name="section-anchor"/>
171     <h4><xsl:apply-templates mode="inline" /></h4>
172 </xsl:template>
173
174 <!-- Other paragraph tags -->
175 <xsl:template match="miejsce_czas">
176       <xsl:call-template name="section-anchor"/>
177     <p class="place-and-time"><xsl:apply-templates mode="inline" /></p>
178 </xsl:template>
179
180 <xsl:template match="didaskalia">
181       <xsl:call-template name="section-anchor"/>
182     <div class="didaskalia"><xsl:apply-templates mode="inline" /></div>
183 </xsl:template>
184
185 <xsl:template match="lista_osoba">
186     <li><xsl:apply-templates mode="inline" /></li>
187 </xsl:template>
188
189 <xsl:template match="akap|akap_dialog|akap_cd">
190     <p class="paragraph">
191       <xsl:call-template name="section-anchor"/>
192         <xsl:apply-templates mode="inline" />
193     </p>
194 </xsl:template>
195
196 <xsl:template match="strofa">
197     <div class="stanza">
198       <xsl:call-template name="section-anchor"/>
199         <xsl:choose>
200             <xsl:when test="count(br) > 0">
201                 <xsl:call-template name="verse">
202                     <xsl:with-param name="verse-content" select="br[1]/preceding-sibling::text() | br[1]/preceding-sibling::node()" />
203                     <xsl:with-param name="verse-type" select="br[1]/preceding-sibling::*[name() = 'wers_wciety' or name() = 'wers_akap' or name() = 'wers_cd' or name() = 'wers_do_prawej'][1]" />
204                 </xsl:call-template>
205                 <xsl:for-each select="br">              
206                                 <!-- Each BR tag "consumes" text after it -->
207                     <xsl:variable name="lnum" select="count(preceding-sibling::br)" />
208                     <xsl:call-template name="verse">
209                         <xsl:with-param name="verse-content"
210                             select="following-sibling::text()[count(preceding-sibling::br) = $lnum+1] | following-sibling::node()[count(preceding-sibling::br) = $lnum+1]" />
211                         <xsl:with-param name="verse-type" select="following-sibling::*[count(preceding-sibling::br) = $lnum+1 and (name() = 'wers_wciety' or name() = 'wers_akap' or name() = 'wers_cd' or name() = 'wers_do_prawej')][1]" />
212                     </xsl:call-template>
213                 </xsl:for-each>
214             </xsl:when>
215             <xsl:otherwise>
216                 <xsl:call-template name="verse">
217                     <xsl:with-param name="verse-content" select="text() | node()" />
218                     <xsl:with-param name="verse-type" select="wers_wciety|wers_akap|wers_cd|wers_do_prawej[1]" />
219                  </xsl:call-template>
220             </xsl:otherwise>
221         </xsl:choose>
222     </div>
223 </xsl:template>
224
225 <xsl:template name="verse">
226     <xsl:param name="verse-content" />
227     <xsl:param name="verse-type" />
228     <p class="verse">
229         <xsl:choose>
230             <xsl:when test="name($verse-type) = 'wers_akap'">
231                 <xsl:attribute name="style">padding-left: 1em</xsl:attribute>
232             </xsl:when>
233             <xsl:when test="name($verse-type) = 'wers_wciety'">
234                 <xsl:choose>
235                     <xsl:when test="$verse-content/@typ">
236                         <xsl:attribute name="style">padding-left: <xsl:value-of select="$verse-content/@typ" />em</xsl:attribute>
237                     </xsl:when>
238                     <xsl:otherwise>
239                         <xsl:attribute name="style">padding-left: 1em</xsl:attribute>
240                     </xsl:otherwise>
241                 </xsl:choose>
242             </xsl:when>
243             <xsl:when test="name($verse-type) = 'wers_cd'">
244                 <xsl:attribute name="style">padding-left: 12em</xsl:attribute>
245             </xsl:when>
246             <xsl:when test="name($verse-type) = 'wers_do_prawej'">
247                 <xsl:attribute name="style">text-align: right</xsl:attribute>
248             </xsl:when>
249         </xsl:choose>
250         <xsl:apply-templates select="$verse-content" mode="inline" />
251     </p>
252 </xsl:template>
253
254 <xsl:template match="motto_podpis">
255     <p class="motto_podpis"><xsl:apply-templates mode="inline" /></p>
256 </xsl:template>
257
258 <xsl:template match="tabela|tabelka">
259     <table><xsl:apply-templates /></table>
260 </xsl:template>
261 <xsl:template match="wiersz">
262     <tr><xsl:apply-templates /></tr>
263 </xsl:template>
264 <xsl:template match="kol">
265     <td><xsl:apply-templates mode="inline" /></td>
266 </xsl:template>
267
268 <xsl:template match="mat">
269     <math xmlns="http://www.w3.org/1998/Math/MathML"><xsl:copy-of select="*" /></math>
270 </xsl:template>
271
272
273 <!-- ================================================ -->
274 <!-- = INLINE TAGS                                  = -->
275 <!-- = (contain other inline tags and special tags) = -->
276 <!-- ================================================ -->
277 <!-- Annotations -->
278 <xsl:template match="pa|pe|pr|pt" mode="inline">
279     <a name="{concat('anchor-', generate-id(.))}" />
280     <a href="{concat('#footnote-', generate-id(.))}" class="annotation">[<xsl:number value="count(preceding::*[self::pa or self::pe or self::pr or self::pt]) + 1" />]</a>
281 </xsl:template>
282
283 <!-- Other inline tags -->
284 <xsl:template match="mat" mode="inline">
285     <math xmlns="http://www.w3.org/1998/Math/MathML"><xsl:copy-of select="*" /></math>
286 </xsl:template>
287
288 <xsl:template match="didask_tekst" mode="inline">
289     <em class="didaskalia"><xsl:apply-templates mode="inline" /></em>
290 </xsl:template>
291
292 <xsl:template match="slowo_obce" mode="inline">
293     <em class="foreign-word"><xsl:apply-templates mode="inline" /></em>
294 </xsl:template>
295
296 <xsl:template match="tytul_dziela" mode="inline">
297     <em class="book-title">
298         <xsl:if test="@typ = '1'">„</xsl:if><xsl:apply-templates mode="inline" /><xsl:if test="@typ = '1'">”</xsl:if>
299     </em>
300 </xsl:template>
301
302 <xsl:template match="wyroznienie" mode="inline">
303     <em class="author-emphasis"><xsl:apply-templates mode="inline" /></em>
304 </xsl:template>
305
306 <xsl:template match="wieksze_odstepy" mode="inline">
307     <em class="wieksze-odstepy"><xsl:apply-templates mode="inline" /></em>
308 </xsl:template>
309
310 <xsl:template match="indeks_dolny" mode="inline">
311     <sub><xsl:apply-templates mode="inline" /></sub>
312 </xsl:template>
313
314 <xsl:template match="osoba" mode="inline">
315     <em class="person"><xsl:apply-templates mode="inline" /></em>
316 </xsl:template>
317
318
319 <!-- ============================================== -->
320 <!-- = STANDALONE TAGS                            = -->
321 <!-- = (cannot contain any other tags)            = -->
322 <!-- ============================================== -->
323 <xsl:template match="sekcja_swiatlo">
324     <hr class="spacer" />
325 </xsl:template>
326
327 <xsl:template match="sekcja_asterysk">
328     <p class="spacer-asterisk">*</p>
329 </xsl:template>
330
331 <xsl:template match="separator_linia">
332     <hr class="spacer-line" />
333 </xsl:template>
334
335
336 <!-- ================ -->
337 <!-- = SPECIAL TAGS = -->
338 <!-- ================ -->
339 <!-- Themes -->
340 <xsl:template match="begin" mode="inline">
341     <xsl:variable name="mnum" select="concat('m', substring(@id, 2))" />
342     <a name="m{substring(@id, 2)}" class="theme-begin" fid="{substring(@id, 2)}">
343         <xsl:value-of select="string(following::motyw[@id=$mnum]/text())" />
344     </a>
345 </xsl:template>
346
347 <xsl:template match="end" mode="inline">
348     <span class="theme-end" fid="{substring(@id, 2)}"> </span>
349 </xsl:template>
350
351 <xsl:template match="begin|end">
352     <xsl:apply-templates select='.' mode="inline" />
353 </xsl:template>
354
355 <xsl:template match="motyw" mode="inline" />
356
357
358 <xsl:template match="nota_red" mode="special">
359     <div id="nota_red">
360         <xsl:apply-templates />
361     </div>
362 </xsl:template>
363
364
365 <xsl:template name="translators">
366     <xsl:if test="//dc:contributor.translator">
367         <span class="translator">
368             <xsl:text>tłum. </xsl:text>
369             <xsl:for-each select="//dc:contributor.translator">
370                 <xsl:if test="position() != 1">, </xsl:if>
371                 <xsl:apply-templates mode="person" />
372             </xsl:for-each>
373         </span>
374     </xsl:if>
375 </xsl:template>
376
377 <xsl:template match="text()" mode="person">
378     <xsl:value-of select="wl:person_name(.)" />
379 </xsl:template>
380
381
382 <!-- ================ -->
383 <!-- = IGNORED TAGS = -->
384 <!-- ================ -->
385 <xsl:template match="extra|uwaga" />
386 <xsl:template match="extra|uwaga" mode="inline" />
387
388 <xsl:template match="nota_red" />
389 <xsl:template match="abstrakt" />
390
391 <!-- ======== -->
392 <!-- = TEXT = -->
393 <!-- ======== -->
394 <xsl:template match="text()" />
395 <xsl:template match="text()" mode="inline">
396     <xsl:value-of select="wl:substitute_entities(.)" />
397 </xsl:template>
398
399 <!-- ========= -->
400 <!-- = utils = -->
401 <!-- ========= -->
402 <xsl:template name="section-anchor">
403   <!-- 
404        this formula works as follows:
405        - get all ancestors including self
406        - choose the header (third one from root): utwor/book-type/header
407        - get all preceding siblings
408        - count them
409        - create an <a name="sec123"/> tag.
410   -->
411         <a name="{concat('sec', count(ancestor-or-self::*[last()-2]/preceding-sibling::*) + 1)}" />
412 </xsl:template>
413
414 </xsl:stylesheet>