1 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
2 xmlns:wl="http://wolnelektury.pl/functions" >
4 <xsl:output method="xml" encoding="utf-8" doctype-public="-//W3C//DTD XHTML 1.1//EN" doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" indent="yes" />
6 <xsl:template match="text()" />
7 <xsl:template match="text()" mode="inline">
8 <xsl:value-of select="wl:substitute_entities(.)" />
11 <xsl:template match="extra|uwaga" />
12 <xsl:template match="extra|uwaga" mode="inline" />
14 <xsl:template match="utwor">
17 <title>book2html output</title>
18 <meta http-equiv="content-type" content="text/html;charset=utf-8"/>
19 <link rel="stylesheet" href="master.css" type="text/css" media="all" charset="utf-8" />
22 <xsl:apply-templates select="powiesc|opowiadanie|liryka_l|liryka_lp|dramat_wierszowany_l|dramat_wierszowany_lp|dramat_wspolczesny" />
23 <xsl:if test="count(descendant::*[self::pe or self::pa or self::pr or self::pt][not(parent::extra)])">
26 <xsl:for-each select="descendant::*[self::pe or self::pa or self::pr or self::pt][not(parent::extra)]">
28 <a name="{concat('footnote-', generate-id(.))}" />
29 <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>
31 <xsl:when test="count(akap|akap_cd|strofa) = 0">
32 <p><xsl:apply-templates select="text()|*" mode="inline" /></p>
35 <xsl:apply-templates select="text()|*" mode="inline" />
47 <xsl:template match="powiesc|opowiadanie|liryka_l|liryka_lp|dramat_wierszowany_l|dramat_wierszowany_lp|dramat_wspolczesny">
48 <xsl:if test="nazwa_utworu">
50 <xsl:apply-templates select="autor_utworu|dzielo_nadrzedne|nazwa_utworu|podtytul" mode="header" />
53 <xsl:apply-templates />
56 <!-- ======================= -->
57 <!-- = Header (title page) = -->
58 <!-- ======================= -->
59 <xsl:template match="autor_utworu" mode="header">
60 <span class="author"><xsl:apply-templates mode="inline" /></span>
63 <xsl:template match="nazwa_utworu" mode="header">
64 <span class="title"><xsl:apply-templates mode="inline" /></span>
67 <xsl:template match="dzielo_nadrzedne" mode="header">
68 <span class="collection"><xsl:apply-templates mode="inline" /></span>
71 <xsl:template match="podtytul" mode="header">
72 <span class="subtitle"><xsl:apply-templates mode="inline" /></span>
75 <xsl:template match="nota">
76 <div class="note"><xsl:apply-templates /></div>
79 <xsl:template match="dedykacja">
80 <div class="dedication"><xsl:apply-templates /></div>
83 <xsl:template match="naglowek_akt|naglowek_czesc|srodtytul">
84 <h2><xsl:apply-templates mode="inline" /></h2>
87 <xsl:template match="naglowek_scena|naglowek_rozdzial">
88 <h3><xsl:apply-templates mode="inline" /></h3>
91 <xsl:template match="naglowek_osoba">
92 <h4><xsl:apply-templates mode="inline" /></h4>
95 <xsl:template match="naglowek_osoba">
96 <p class="place-and-time"><xsl:apply-templates mode="inline" /></p>
99 <xsl:template match="kwestia">
100 <div class="kwestia">
101 <xsl:apply-templates select="strofa|akap" />
105 <xsl:template match="didaskalia">
106 <div class="didaskalia"><xsl:apply-templates mode="inline" /></div>
109 <xsl:template match="lista_osob">
110 <div class="person-list">
111 <h3><xsl:value-of select="naglowek_listy" /></h3>
113 <xsl:apply-templates select="lista_osoba" />
118 <xsl:template match="lista_osoba">
119 <li><xsl:apply-templates mode="inline" /></li>
122 <xsl:template match="begin" mode="inline">
123 <xsl:variable name="mnum" select="concat('m', substring(@id, 2))" />
124 <span class="theme-begin" fid="{substring(@id, 2)}">
125 <xsl:value-of select="string(following::motyw[@id=$mnum]/text())" />
129 <xsl:template match="end" mode="inline">
130 <span class="theme-end" fid="{substring(@id, 2)}"> </span>
133 <xsl:template match="begin|end">
134 <xsl:apply-templates select='.' mode="inline" />
137 <xsl:template name="verse">
138 <xsl:param name="line-content" />
139 <xsl:param name="line-number" />
142 <xsl:when test="name($line-content) = 'wers_akap'">
143 <xsl:attribute name="style">indent: 1em</xsl:attribute>
145 <xsl:when test="name($line-content) = 'wers_wciety'">
146 <xsl:attribute name="style">indent: 2em</xsl:attribute>
149 <xsl:apply-templates select="$line-content" mode="inline" />
153 <xsl:template match="pa|pe|pr|pt" mode="inline">
154 <a name="{concat('anchor-', generate-id(.))}" />
155 <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>
158 <xsl:template match="strofa">
161 <xsl:when test="count(br) > 0">
162 <xsl:call-template name="verse">
163 <xsl:with-param name="line-content" select="br[1]/preceding-sibling::text() | br[1]/preceding-sibling::node()" />
164 <xsl:with-param name="line-number" select="1" />
166 <xsl:for-each select="br">
167 <!-- Każdy BR "zjada" to co jest za nim -->
168 <xsl:variable name="lnum" select="count(preceding-sibling::br)" />
169 <xsl:call-template name="verse">
170 <xsl:with-param name="line-number" select="$lnum+2" />
171 <xsl:with-param name="line-content"
172 select="following-sibling::text()[count(preceding-sibling::br) = $lnum+1] | following-sibling::node()[count(preceding-sibling::br) = $lnum+1]" />
177 <xsl:call-template name="verse">
178 <xsl:with-param name="line-content" select="text() | node()" />
179 <xsl:with-param name="line-number" select="1" />
186 <xsl:template match="akap|akap_dialog|akap_cd">
187 <p class="paragraph"><xsl:apply-templates mode="inline" /></p>
190 <xsl:template match="motyw" mode="inline" />
192 <xsl:template match="dlugi_cytat">
193 <blockquote><xsl:apply-templates /></blockquote>
196 <xsl:template match="motto">
197 <p class="motto"><xsl:apply-templates mode="inline" /></p>
200 <xsl:template match="motto_podpis">
201 <p class="motto_podpis"><xsl:apply-templates mode="inline" /></p>
204 <xsl:template match="sekcja_swiatlo">
205 <hr class="spacer" />