1 <?xml version="1.0" encoding="utf-8"?>
\r
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
\r
3 <xsl:output method="html" version="1.0" encoding="utf-8" />
\r
4 <xsl:output doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />
\r
5 <xsl:output doctype-public="-//W3C//DTD XHTML 1.1//EN" />
\r
7 <xsl:template match="/" >
\r
8 <xsl:element name="html" xmlns="http://www.w3.org/1999/xhtml">
\r
9 <xsl:element name="head">
\r
10 <link rel="stylesheet" href="style.css" type="text/css" />
\r
11 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
\r
16 <xsl:element name="body" xmlns="http://www.w3.org/1999/xhtml">
\r
17 <xsl:element name="div" xmlns="http://www.w3.org/1999/xhtml">
\r
18 <xsl:attribute name="id">book-text</xsl:attribute>
\r
19 <xsl:if test="//nazwa_utworu">
\r
20 <!--h1 xmlns="http://www.w3.org/1999/xhtml"-->
\r
21 <xsl:apply-templates select=" //nazwa_utworu" mode="poczatek"/>
\r
24 <xsl:apply-templates />
\r
30 <!--===========================================================-->
\r
31 <!-- Tagi BLOKOWE -->
\r
32 <!--===========================================================-->
\r
34 <xsl:template match="nota">
\r
35 <div class="note" xmlns="http://www.w3.org/1999/xhtml">
\r
36 <xsl:apply-templates />
\r
40 <xsl:template match="lista_osob" >
\r
41 <div class="person-list" xmlns="http://www.w3.org/1999/xhtml">
\r
42 <div class="h3" xmlns="http://www.w3.org/1999/xhtml">
\r
43 <xsl:apply-templates select="child::naglowek_listy" />
\r
45 <ol xmlns="http://www.w3.org/1999/xhtml">
\r
46 <xsl:apply-templates select="lista_osoba" />
\r
51 <xsl:template match="dedykacja">
\r
52 <div class="dedication" xmlns="http://www.w3.org/1999/xhtml">
\r
53 <xsl:apply-templates />
\r
57 <xsl:template match="kwestia">
\r
58 <div class="kwestia" xmlns="http://www.w3.org/1999/xhtml">
\r
59 <xsl:apply-templates select="strofa|akapit|didaskalia|akap " />
\r
63 <xsl:template match="dlugi_cytat|poezja_cyt">
\r
64 <div class="block" xmlns="http://www.w3.org/1999/xhtml">
\r
65 <xsl:apply-templates />
\r
69 <xsl:template match="motto">
\r
70 <div class="motto" xmlns="http://www.w3.org/1999/xhtml">
\r
71 <xsl:apply-templates />
\r
75 <!--===========================================================-->
\r
76 <!-- Tagi PARAGRAFOWE -->
\r
77 <!--===========================================================-->
\r
79 <xsl:template match="autor_utworu" mode="poczatek">
\r
80 <h2 class="author" xmlns="http://www.w3.org/1999/xhtml">
\r
81 <xsl:apply-templates />
\r
85 <xsl:template match="autor_utworu" />
\r
87 <xsl:template match="dzielo_nadrzedne" mode="poczatek">
\r
88 <h2 class="collection" xmlns="http://www.w3.org/1999/xhtml">
\r
89 <xsl:apply-templates />
\r
93 <xsl:template match="dzielo_nadrzedne" />
\r
95 <xsl:template match="nazwa_utworu" mode="poczatek" >
\r
96 <h2 class="author" xmlns="http://www.w3.org/1999/xhtml">
\r
97 <xsl:apply-templates />
\r
101 <xsl:template match="nazwa_utworu" />
\r
103 <xsl:template match="podtytul" mode="poczatek">
\r
104 <h2 class="subtitle" xmlns="http://www.w3.org/1999/xhtml">
\r
105 <xsl:apply-templates />
\r
109 <xsl:template match="podtytul" />
\r
111 <xsl:template match="naglowek_czesc|srodtytul">
\r
112 <h2 class="h2" xmlns="http://www.w3.org/1999/xhtml">
\r
113 <xsl:apply-templates />
\r
117 <xsl:template match="naglowek_akt">
\r
118 <h2 class="h2" xmlns="http://www.w3.org/1999/xhtml">
\r
119 <xsl:apply-templates />
\r
123 <xsl:template match="naglowek_scena">
\r
124 <a id="sub{@sub}" xmlns="http://www.w3.org/1999/xhtml"></a>
\r
125 <h2 class="h3" xmlns="http://www.w3.org/1999/xhtml">
\r
126 <xsl:apply-templates />
\r
130 <xsl:template match="naglowek_podrozdzial">
\r
131 <a id="sub{@sub}" xmlns="http://www.w3.org/1999/xhtml"></a>
\r
132 <h2 class="h4" xmlns="http://www.w3.org/1999/xhtml">
\r
133 <xsl:apply-templates />
\r
137 <xsl:template match="naglowek_rozdzial">
\r
138 <h2 class="h3" xmlns="http://www.w3.org/1999/xhtml">
\r
139 <xsl:apply-templates />
\r
143 <xsl:template match="naglowek_osoba">
\r
144 <h2 class="h4" xmlns="http://www.w3.org/1999/xhtml">
\r
145 <xsl:apply-templates />
\r
149 <xsl:template match="miejsce_czas">
\r
150 <div class="place-and-time" xmlns="http://www.w3.org/1999/xhtml">
\r
151 <xsl:apply-templates />
\r
155 <xsl:template match="didaskalia">
\r
156 <div class="didaskalia" xmlns="http://www.w3.org/1999/xhtml">
\r
157 <xsl:apply-templates />
\r
161 <xsl:template match="akap|akap_dialog|akap_cd">
\r
162 <p class="paragraph" xmlns="http://www.w3.org/1999/xhtml">
\r
163 <xsl:apply-templates />
\r
167 <xsl:template match="strofa">
\r
168 <div class="stanza" xmlns="http://www.w3.org/1999/xhtml">
\r
169 <xsl:apply-templates />
\r
170 </div><div xmlns="http://www.w3.org/1999/xhtml"> </div>
\r
173 <xsl:template match="wers_normalny">
\r
174 <div class="verse" xmlns="http://www.w3.org/1999/xhtml">
\r
175 <xsl:apply-templates />
\r
179 <xsl:template match="wers_akap">
\r
180 <div class="verse" style="padding-left: 1em;" xmlns="http://www.w3.org/1999/xhtml">
\r
181 <xsl:apply-templates />
\r
185 <xsl:template match="wers_wciety">
\r
186 <div class="verse" style="padding-left: 1em;" xmlns="http://www.w3.org/1999/xhtml">
\r
187 <xsl:apply-templates />
\r
191 <xsl:template match="wers_wciety[@typ='1']">
\r
192 <div class="verse" style="padding-left: 1em;" xmlns="http://www.w3.org/1999/xhtml">
\r
193 <xsl:apply-templates />
\r
197 <xsl:template match="wers_wciety[@typ='2']">
\r
198 <div class="verse" style="padding-left: 2em;" xmlns="http://www.w3.org/1999/xhtml">
\r
199 <xsl:apply-templates />
\r
203 <xsl:template match="wers_wciety[@typ='3']">
\r
204 <div class="verse" style="padding-left: 3em;" xmlns="http://www.w3.org/1999/xhtml">
\r
205 <xsl:apply-templates />
\r
209 <xsl:template match="wers_wciety[@typ='4']">
\r
210 <div class="verse" style="padding-left: 4em;" xmlns="http://www.w3.org/1999/xhtml">
\r
211 <xsl:apply-templates />
\r
215 <xsl:template match="wers_wciety[@typ='5']">
\r
216 <div class="verse" style="padding-left: 5em;" xmlns="http://www.w3.org/1999/xhtml">
\r
217 <xsl:apply-templates />
\r
221 <xsl:template match="wers_wciety[@typ='6']">
\r
222 <div class="verse" style="padding-left: 6em;" xmlns="http://www.w3.org/1999/xhtml">
\r
223 <xsl:apply-templates />
\r
227 <xsl:template match="wers_cd">
\r
228 <div class="verse" style="padding-left: 12em;" xmlns="http://www.w3.org/1999/xhtml">
\r
229 <xsl:apply-templates />
\r
233 <xsl:template match="motto_podpis">
\r
234 <div class="motto_podpis" xmlns="http://www.w3.org/1999/xhtml">
\r
235 <xsl:apply-templates />
\r
239 <!--===========================================================-->
\r
240 <!-- Tagi LINIOWE -->
\r
241 <!--===========================================================-->
\r
243 <xsl:template match="slowo_obce">
\r
244 <em class="foreign-word" xmlns="http://www.w3.org/1999/xhtml">
\r
245 <xsl:apply-templates />
\r
249 <xsl:template match="mat" >
\r
250 <em class="math" xmlns="http://www.w3.org/1999/xhtml">
\r
251 <xsl:apply-templates />
\r
255 <xsl:template match="didask_tekst" >
\r
256 <em class="didaskalia" xmlns="http://www.w3.org/1999/xhtml">
\r
257 <xsl:apply-templates />
\r
261 <xsl:template match="tytul_dziela" >
\r
262 <em class="book-title" xmlns="http://www.w3.org/1999/xhtml">
\r
263 <xsl:if test="@typ = '1'" >„</xsl:if>
\r
264 <xsl:apply-templates />
\r
265 <xsl:if test="@typ = '1'">”</xsl:if>
\r
269 <xsl:template match="wyroznienie" >
\r
270 <em class="author-emphasis" xmlns="http://www.w3.org/1999/xhtml">
\r
271 <xsl:apply-templates />
\r
275 <xsl:template match="osoba" >
\r
276 <em class="person" xmlns="http://www.w3.org/1999/xhtml">
\r
277 <xsl:apply-templates />
\r
281 <xsl:template match="naglowek_listy" >
\r
282 <xsl:apply-templates />
\r
285 <xsl:template match="lista_osoba" >
\r
286 <li xmlns="http://www.w3.org/1999/xhtml">
\r
287 <xsl:apply-templates />
\r
291 <!--===========================================================-->
\r
292 <!-- Tagi STANDALONE -->
\r
293 <!--===========================================================-->
\r
295 <xsl:template match="sekcja_swiatlo">
\r
296 <hr class="spacer" xmlns="http://www.w3.org/1999/xhtml"></hr>
\r
299 <xsl:template match="sekcja_asterysk">
\r
300 <p class="spacer-asterisk" xmlns="http://www.w3.org/1999/xhtml">*</p>
\r
303 <xsl:template match="separator_linia">
\r
304 <hr class="spacer-line" xmlns="http://www.w3.org/1999/xhtml"></hr>
\r
307 <!--===========================================================-->
\r
308 <!-- Tagi SPECJALNE -->
\r
309 <!--===========================================================-->
\r
311 <xsl:template match="motyw" />
\r
313 <!--===========================================================-->
\r
314 <!-- Tagi IGNOROWANE -->
\r
315 <!--===========================================================-->
\r
317 <xsl:template match="pe|pa|pr|pt" />
\r
319 <xsl:template match="extra" />
\r
321 <xsl:template match="pe|pa|pr|pt" >
\r
322 <a id="anchor-{.}" class="anchor" href="annotations.html#annotation-{.}"
\r
323 xmlns="http://www.w3.org/1999/xhtml">[<xsl:apply-templates />]</a>
\r
326 <xsl:template match="uwaga" />
\r
328 <!--pominięcie tych metadanych-->
\r
329 <xsl:template match="rdf:RDF" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" />
\r
331 <!--===========================================================-->
\r
332 <!-- Tagi TEKSTOWE -->
\r
333 <!--===========================================================-->
\r
335 <xsl:template match="text()" >
\r
336 <xsl:value-of select="." disable-output-escaping="yes"/>
\r
339 <xsl:template match="text()" >
\r
340 <xsl:value-of select="." disable-output-escaping="yes"/>
\r