1 <?xml version="1.0" encoding="utf-8"?>
4 This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
5 Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
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/" >
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">
16 <xsl:when test="@full-page">
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" />
25 <xsl:call-template name="book-text" />
30 <xsl:call-template name="book-text" />
35 <xsl:template name="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)])">
41 <xsl:for-each select="descendant::*[self::pe or self::pa or self::pr or self::pt][not(parent::extra)]">
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>
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>
56 <xsl:apply-templates select="text()|*" mode="inline" />
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">
75 <xsl:apply-templates select="autor_utworu|dzielo_nadrzedne|nazwa_utworu|podtytul" mode="header" />
76 <xsl:call-template name="translators" />
79 <xsl:apply-templates />
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>
91 <xsl:template match="lista_osob">
92 <div class="person-list">
93 <h3><xsl:value-of select="naglowek_listy" /></h3>
95 <xsl:apply-templates select="lista_osoba" />
100 <xsl:template match="dedykacja">
101 <div class="dedication"><xsl:apply-templates /></div>
104 <xsl:template match="kwestia">
105 <div class="kwestia">
106 <xsl:apply-templates select="strofa|akap|didaskalia" />
110 <xsl:template match="dlugi_cytat|poezja_cyt">
111 <blockquote><xsl:apply-templates /></blockquote>
114 <xsl:template match="motto">
115 <div class="motto"><xsl:apply-templates /></div>
118 <xsl:template match="ilustr" mode="inline">
119 <xsl:apply-templates select="."/>
122 <xsl:template match="ilustr">
124 <xsl:attribute name="src">
125 <xsl:value-of select="$gallery" /><xsl:value-of select="@src" />
127 <xsl:attribute name="alt">
128 <xsl:value-of select="@alt" />
130 <xsl:attribute name="title">
131 <xsl:value-of select="@alt" />
137 <!-- ========================================== -->
138 <!-- = PARAGRAPH TAGS = -->
139 <!-- = (can contain inline and special tags) = -->
140 <!-- ========================================== -->
142 <xsl:template match="autor_utworu" mode="header">
143 <span class="author"><xsl:apply-templates mode="inline" /></span>
146 <xsl:template match="nazwa_utworu" mode="header">
147 <span class="title"><xsl:apply-templates mode="inline" /></span>
150 <xsl:template match="dzielo_nadrzedne" mode="header">
151 <span class="collection"><xsl:apply-templates mode="inline" /></span>
154 <xsl:template match="podtytul" mode="header">
155 <span class="subtitle"><xsl:apply-templates mode="inline" /></span>
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>
164 <xsl:template match="naglowek_scena|naglowek_rozdzial">
165 <xsl:call-template name="section-anchor"/>
166 <h3><xsl:apply-templates mode="inline" /></h3>
169 <xsl:template match="naglowek_osoba|naglowek_podrozdzial">
170 <xsl:call-template name="section-anchor"/>
171 <h4><xsl:apply-templates mode="inline" /></h4>
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>
180 <xsl:template match="didaskalia">
181 <xsl:call-template name="section-anchor"/>
182 <div class="didaskalia"><xsl:apply-templates mode="inline" /></div>
185 <xsl:template match="lista_osoba">
186 <li><xsl:apply-templates mode="inline" /></li>
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" />
196 <xsl:template match="strofa">
198 <xsl:call-template name="section-anchor"/>
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'][1]" />
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')][1]" />
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[1]" />
225 <xsl:template name="verse">
226 <xsl:param name="verse-content" />
227 <xsl:param name="verse-type" />
230 <xsl:when test="name($verse-type) = 'wers_akap'">
231 <xsl:attribute name="style">padding-left: 1em</xsl:attribute>
233 <xsl:when test="name($verse-type) = 'wers_wciety'">
235 <xsl:when test="$verse-content/@typ">
236 <xsl:attribute name="style">padding-left: <xsl:value-of select="$verse-content/@typ" />em</xsl:attribute>
239 <xsl:attribute name="style">padding-left: 1em</xsl:attribute>
243 <xsl:when test="name($verse-type) = 'wers_cd'">
244 <xsl:attribute name="style">padding-left: 12em</xsl:attribute>
247 <xsl:apply-templates select="$verse-content" mode="inline" />
251 <xsl:template match="motto_podpis">
252 <p class="motto_podpis"><xsl:apply-templates mode="inline" /></p>
255 <xsl:template match="tabela|tabelka">
256 <table><xsl:apply-templates /></table>
258 <xsl:template match="wiersz">
259 <tr><xsl:apply-templates /></tr>
261 <xsl:template match="kol">
262 <td><xsl:apply-templates mode="inline" /></td>
265 <xsl:template match="mat">
266 <math xmlns="http://www.w3.org/1998/Math/MathML"><xsl:copy-of select="*" /></math>
270 <!-- ================================================ -->
271 <!-- = INLINE TAGS = -->
272 <!-- = (contain other inline tags and special tags) = -->
273 <!-- ================================================ -->
275 <xsl:template match="pa|pe|pr|pt" mode="inline">
276 <a name="{concat('anchor-', generate-id(.))}" />
277 <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>
280 <!-- Other inline tags -->
281 <xsl:template match="mat" mode="inline">
282 <math xmlns="http://www.w3.org/1998/Math/MathML"><xsl:copy-of select="*" /></math>
285 <xsl:template match="didask_tekst" mode="inline">
286 <em class="didaskalia"><xsl:apply-templates mode="inline" /></em>
289 <xsl:template match="slowo_obce" mode="inline">
290 <em class="foreign-word"><xsl:apply-templates mode="inline" /></em>
293 <xsl:template match="tytul_dziela" mode="inline">
294 <em class="book-title">
295 <xsl:if test="@typ = '1'">„</xsl:if><xsl:apply-templates mode="inline" /><xsl:if test="@typ = '1'">”</xsl:if>
299 <xsl:template match="wyroznienie" mode="inline">
300 <em class="author-emphasis"><xsl:apply-templates mode="inline" /></em>
303 <xsl:template match="indeks_dolny" mode="inline">
304 <sub><xsl:apply-templates mode="inline" /></sub>
307 <xsl:template match="osoba" mode="inline">
308 <em class="person"><xsl:apply-templates mode="inline" /></em>
312 <!-- ============================================== -->
313 <!-- = STANDALONE TAGS = -->
314 <!-- = (cannot contain any other tags) = -->
315 <!-- ============================================== -->
316 <xsl:template match="sekcja_swiatlo">
317 <hr class="spacer" />
320 <xsl:template match="sekcja_asterysk">
321 <p class="spacer-asterisk">*</p>
324 <xsl:template match="separator_linia">
325 <hr class="spacer-line" />
329 <!-- ================ -->
330 <!-- = SPECIAL TAGS = -->
331 <!-- ================ -->
333 <xsl:template match="begin" mode="inline">
334 <xsl:variable name="mnum" select="concat('m', substring(@id, 2))" />
335 <a name="m{substring(@id, 2)}" class="theme-begin" fid="{substring(@id, 2)}">
336 <xsl:value-of select="string(following::motyw[@id=$mnum]/text())" />
340 <xsl:template match="end" mode="inline">
341 <span class="theme-end" fid="{substring(@id, 2)}"> </span>
344 <xsl:template match="begin|end">
345 <xsl:apply-templates select='.' mode="inline" />
348 <xsl:template match="motyw" mode="inline" />
351 <xsl:template match="nota_red" mode="special">
353 <xsl:apply-templates />
358 <xsl:template name="translators">
359 <xsl:if test="//dc:contributor.translator">
360 <span class="translator">
361 <xsl:text>tłum. </xsl:text>
362 <xsl:for-each select="//dc:contributor.translator">
363 <xsl:if test="position() != 1">, </xsl:if>
364 <xsl:apply-templates mode="person" />
370 <xsl:template match="text()" mode="person">
371 <xsl:value-of select="wl:person_name(.)" />
375 <!-- ================ -->
376 <!-- = IGNORED TAGS = -->
377 <!-- ================ -->
378 <xsl:template match="extra|uwaga" />
379 <xsl:template match="extra|uwaga" mode="inline" />
381 <xsl:template match="nota_red" />
382 <xsl:template match="abstrakt" />
387 <xsl:template match="text()" />
388 <xsl:template match="text()" mode="inline">
389 <xsl:value-of select="wl:substitute_entities(.)" />
395 <xsl:template name="section-anchor">
397 this formula works as follows:
398 - get all ancestors including self
399 - choose the header (third one from root): utwor/book-type/header
400 - get all preceding siblings
402 - create an <a name="sec123"/> tag.
404 <a name="{concat('sec', count(ancestor-or-self::*[last()-2]/preceding-sibling::*) + 1)}" />