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" method="text" />
14 <xsl:param name="wrapping" select="0" />
16 <!-- ============================================================================== -->
17 <!-- = MASTER TAG = -->
18 <!-- = (can contain block tags, paragraph tags, standalone tags and special tags) = -->
19 <!-- ============================================================================== -->
20 <xsl:template match="powiesc|opowiadanie|liryka_l|liryka_lp|dramat_wierszowany_l|dramat_wierszowany_lp|dramat_wspolczesny">
21 <xsl:if test="not (../@raw-text) and nazwa_utworu">
22 <xsl:apply-templates select="autor_utworu|dzielo_nadrzedne|nazwa_utworu|podtytul" mode="header" />
23 <xsl:call-template name="translators" />
24 <xsl:call-template name="isbn" />
28 <xsl:apply-templates />
35 <!-- ==================================================================================== -->
36 <!-- = BLOCK TAGS = -->
37 <!-- = (can contain other block tags, paragraph tags, standalone tags and special tags) = -->
38 <!-- ==================================================================================== -->
39 <xsl:template match="nota">
40 <xsl:apply-templates />
43 <xsl:template match="ramka">
44 <xsl:apply-templates />
47 <xsl:template match="lista_osob">
52 <xsl:value-of select="naglowek_listy" />
53 <xsl:apply-templates select="lista_osoba" />
58 <xsl:template match="dedykacja">
62 <xsl:apply-templates />
65 <xsl:template match="kwestia">
66 <xsl:apply-templates select="strofa|akap|didaskalia" />
69 <xsl:template match="dlugi_cytat|poezja_cyt">
72 <xsl:apply-templates />
75 <xsl:template match="motto">
81 <xsl:apply-templates /><xsl:text>
87 <!-- ========================================== -->
88 <!-- = PARAGRAPH TAGS = -->
89 <!-- = (can contain inline and special tags) = -->
90 <!-- ========================================== -->
92 <xsl:template match="autor_utworu" mode="header">
93 <xsl:apply-templates mode="inline" />
99 <xsl:template match="nazwa_utworu" mode="header">
100 <xsl:apply-templates mode="inline" />
105 <xsl:template match="dzielo_nadrzedne" mode="header">
106 <xsl:apply-templates mode="inline" />
111 <xsl:template match="podtytul" mode="header">
112 <xsl:apply-templates mode="inline" />
117 <!-- Section headers (included in index)-->
118 <xsl:template match="naglowek_akt|naglowek_czesc|srodtytul">
125 <xsl:apply-templates mode="inline" />
128 <xsl:template match="naglowek_scena|naglowek_rozdzial">
134 <xsl:apply-templates mode="inline" />
137 <xsl:template match="naglowek_osoba|naglowek_podrozdzial">
142 <xsl:apply-templates mode="inline" />
145 <!-- Other paragraph tags -->
146 <xsl:template match="miejsce_czas">
152 <xsl:apply-templates mode="inline" />
155 <xsl:template match="didaskalia">
156 <xsl:variable name="content">
157 <xsl:apply-templates select="*|text()" mode="inline" />
161 / </xsl:text><xsl:value-of select="wl:wrap_words(wl:strip($content), $wrapping)" /><xsl:text> /</xsl:text>
164 <xsl:template match="lista_osoba">
167 <xsl:apply-templates mode="inline" />
170 <xsl:template match="akap|akap_dialog|akap_cd">
171 <xsl:variable name="content">
172 <xsl:apply-templates select="*|text()" mode="inline" />
177 <xsl:value-of select="wl:wrap_words(wl:strip($content), $wrapping)" />
180 <xsl:template match="strofa">
184 <xsl:when test="count(br) > 0">
185 <xsl:call-template name="verse">
186 <xsl:with-param name="verse-content" select="br[1]/preceding-sibling::text() | br[1]/preceding-sibling::node()" />
187 <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]" />
189 <xsl:for-each select="br">
190 <!-- Each BR tag "consumes" text after it -->
191 <xsl:variable name="lnum" select="count(preceding-sibling::br)" />
192 <xsl:call-template name="verse">
193 <xsl:with-param name="verse-content"
194 select="following-sibling::text()[count(preceding-sibling::br) = $lnum+1] | following-sibling::node()[count(preceding-sibling::br) = $lnum+1]" />
195 <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]" />
200 <xsl:call-template name="verse">
201 <xsl:with-param name="verse-content" select="text() | node()" />
202 <xsl:with-param name="verse-type" select="wers_wciety|wers_akap|wers_cd|wers_do_prawej[1]" />
208 <xsl:template name="verse">
209 <xsl:param name="verse-content" />
210 <xsl:param name="verse-type" />
213 <xsl:variable name="content">
214 <xsl:apply-templates select="$verse-content" mode="inline" />
217 <xsl:when test="name($verse-type) = 'wers_akap'">
218 <xsl:text> </xsl:text>
220 <xsl:when test="name($verse-type) = 'wers_wciety'">
222 <xsl:when test="$verse-content/@typ">
223 <xsl:text> </xsl:text>
226 <xsl:text> </xsl:text>
230 <xsl:when test="name($verse-type) = 'wers_cd'">
231 <xsl:text> </xsl:text>
233 <xsl:when test="name($verse-type) = 'wers_do_prawej'">
234 <xsl:text> </xsl:text>
237 <xsl:value-of select="wl:strip($content)" />
240 <xsl:template match="motto_podpis">
241 <xsl:apply-templates mode="inline" />
244 <xsl:template match="tabela|tabelka">
248 <xsl:apply-templates/>
252 <xsl:template match="wiersz">
253 <xsl:apply-templates />
257 <xsl:template match="kol">
258 <xsl:apply-templates mode="inline" />
259 <xsl:text> </xsl:text>
263 <!-- ================================================ -->
264 <!-- = INLINE TAGS = -->
265 <!-- = (contain other inline tags and special tags) = -->
266 <!-- ================================================ -->
268 <xsl:template match="pa|pe|pr|pt" mode="inline" />
270 <!-- Other inline tags -->
271 <xsl:template match="mat" mode="inline"><xsl:apply-templates mode="inline" /></xsl:template>
273 <xsl:template match="didask_tekst" mode="inline"><xsl:apply-templates mode="inline" /></xsl:template>
275 <xsl:template match="slowo_obce" mode="inline"><xsl:apply-templates mode="inline" /></xsl:template>
277 <xsl:template match="tytul_dziela" mode="inline">
278 <xsl:if test="@typ = '1'">„</xsl:if><xsl:apply-templates mode="inline" /><xsl:if test="@typ = '1'">”</xsl:if>
281 <xsl:template match="wyroznienie" mode="inline">
282 <xsl:text>*</xsl:text><xsl:apply-templates mode="inline" /><xsl:text>*</xsl:text>
285 <xsl:template match="indeks_dolny" mode="inline">
286 <xsl:apply-templates mode="inline" />
289 <xsl:template match="wieksze_odstepy" mode="inline">
290 <xsl:apply-templates mode="inline" />
293 <xsl:template match="osoba" mode="inline">
294 <xsl:apply-templates mode="inline" />
298 <!-- ============================================== -->
299 <!-- = STANDALONE TAGS = -->
300 <!-- = (cannot contain any other tags) = -->
301 <!-- ============================================== -->
302 <xsl:template match="sekcja_swiatlo">
310 <xsl:template match="sekcja_asterysk">
318 <xsl:template match="separator_linia">
321 ------------------------------------------------
327 <!-- ================ -->
328 <!-- = SPECIAL TAGS = -->
329 <!-- ================ -->
331 <xsl:template match="begin" mode="inline" />
333 <xsl:template match="end" mode="inline" />
335 <xsl:template match="begin|end" />
337 <xsl:template match="motyw" mode="inline" />
339 <xsl:template name="translators">
340 <xsl:if test="//dc:contributor.translator">
342 <xsl:for-each select="//dc:contributor.translator/text()">
343 <xsl:if test="position() != 1">
344 <xsl:text>, </xsl:text>
346 <xsl:value-of select="wl:person_name(.)" />
353 <xsl:template name="isbn">
354 <xsl:if test="//meta[@id='txt-id']">
355 <xsl:variable name="isbn" select="//meta[@id='txt-id']"/>
357 ISBN </text><xsl:value-of select="substring-after($isbn, 'ISBN-')"/>
362 <!-- ================ -->
363 <!-- = IGNORED TAGS = -->
364 <!-- ================ -->
365 <xsl:template match="extra|uwaga" />
366 <xsl:template match="extra|uwaga" mode="inline" />
368 <xsl:template match="nota_red" />
369 <xsl:template match="abstrakt" />
374 <xsl:template match="text()" />
375 <xsl:template match="text()" mode="inline">
376 <xsl:value-of select="wl:substitute_entities(.)" />