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/"
11 xmlns="http://www.gribuser.ru/xml/fictionbook/2.0"
12 xmlns:l="http://www.w3.org/1999/xlink">
14 <xsl:include href="description.xslt"/>
15 <xsl:include href="footnotes.xslt"/>
16 <xsl:include href="inline.xslt"/>
17 <xsl:include href="paragraphs.xslt"/>
18 <xsl:include href="poems.xslt"/>
19 <xsl:include href="sections.xslt"/>
20 <xsl:include href="drama.xslt"/>
22 <xsl:strip-space elements="*"/>
23 <xsl:output encoding="utf-8" method="xml" indent="yes"/>
25 <xsl:template match="utwor">
27 <xsl:apply-templates mode="outer"/>
29 <body name="footnotes">
30 <xsl:apply-templates mode="footnotes"/>
35 <!-- we can't handle lyrics nicely yet -->
36 <xsl:template match="powiesc|opowiadanie|liryka_l|liryka_lp|dramat_wierszowany_l|dramat_wierszowany_lp" mode="outer">
37 <body> <!-- main body for main book flow -->
38 <xsl:if test="autor_utworu or nazwa_utworu">
40 <xsl:apply-templates mode="title"
41 select="autor_utworu|dzielo_nadrzedne|nazwa_utworu|podtytul"/>
42 <xsl:call-template name="translators" />
48 Utwór opracowany został w ramach projektu
49 <a l:href="http://www.wolnelektury.pl/">Wolne Lektury</a>
50 przez <a l:href="http://www.nowoczesnapolska.org.pl/">fundację
51 Nowoczesna Polska</a>.
55 <xsl:call-template name="section" />
59 <xsl:template match="uwaga" mode="outer"/>
60 <xsl:template match="extra" mode="outer"/>
62 <xsl:template mode="title" match="*">
65 <p><xsl:apply-templates mode="inline"/></p>
68 <xsl:template name="translators">
69 <xsl:if test="//dc:contributor.translator">
71 <xsl:text>tłum. </xsl:text>
72 <xsl:for-each select="//dc:contributor.translator">
73 <xsl:if test="position() != 1">, </xsl:if>
74 <xsl:apply-templates mode="person" />
80 <xsl:template match="text()" mode="person">
81 <xsl:value-of select="wl:person_name(.)" />
85 <xsl:template match="uwaga" mode="title"/>
86 <xsl:template match="extra" mode="title"/>