93767cf0df5c65f62843a11c1d7eee4e89765293
[librarian.git] / src / librarian / epub / xsltScheme.xsl
1 <?xml version="1.0" encoding="utf-8"?>
2 <xsl:stylesheet version="1.0"  xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:mml="http://www.w3.org/1998/Math/MathML" xmlns:wl="http://wolnelektury.pl/functions" exclude-result-prefixes="mml wl">
3   <xsl:output method="html" version="1.0" encoding="utf-8" />
4
5   <xsl:template match="/" >
6     <xsl:element name="html" xmlns="http://www.w3.org/1999/xhtml">
7       <xsl:element name="head">
8         <link rel="stylesheet" href="style.css" type="text/css" />
9         <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
10         <title>
11           WolneLektury.pl
12         </title>
13       </xsl:element>
14       <xsl:element name="body" xmlns="http://www.w3.org/1999/xhtml">
15         <xsl:element name="div" xmlns="http://www.w3.org/1999/xhtml">
16           <xsl:attribute name="id">book-text</xsl:attribute>
17           <xsl:if test="//nazwa_utworu">
18             <!--h1 xmlns="http://www.w3.org/1999/xhtml"-->
19               <xsl:apply-templates select=" //nazwa_utworu" mode="poczatek"/>
20               <xsl:apply-templates select=" //podtytul" mode="poczatek"/>
21             <!--/h1-->
22           </xsl:if>
23           <xsl:apply-templates />
24         </xsl:element>
25       </xsl:element>
26     </xsl:element>
27   </xsl:template>
28
29   <!--===========================================================-->
30   <!-- Tagi BLOKOWE -->
31   <!--===========================================================-->
32
33   <xsl:template match="nota">
34     <div class="note" xmlns="http://www.w3.org/1999/xhtml">
35       <xsl:apply-templates />
36     </div>
37   </xsl:template>
38
39   <xsl:template match="lista_osob" >
40     <div class="person-list" xmlns="http://www.w3.org/1999/xhtml">
41       <div class="h3" xmlns="http://www.w3.org/1999/xhtml">
42         <xsl:apply-templates select="child::naglowek_listy" />
43       </div>
44       <ol xmlns="http://www.w3.org/1999/xhtml">
45         <xsl:apply-templates select="lista_osoba" />
46       </ol>
47     </div>
48   </xsl:template>
49
50   <xsl:template match="dedykacja">
51     <div class="dedication" xmlns="http://www.w3.org/1999/xhtml">
52       <xsl:apply-templates />
53     </div>
54   </xsl:template>
55
56   <xsl:template match="kwestia">
57     <div class="kwestia" xmlns="http://www.w3.org/1999/xhtml">
58       <xsl:apply-templates select="strofa|akapit|didaskalia|akap " />
59     </div>
60   </xsl:template>
61
62   <xsl:template match="dlugi_cytat|poezja_cyt">
63     <div class="block" xmlns="http://www.w3.org/1999/xhtml">
64       <xsl:apply-templates />
65     </div>
66   </xsl:template>
67
68   <xsl:template match="ramka">
69     <div class="frame" xmlns="http://www.w3.org/1999/xhtml">
70       <xsl:apply-templates />
71     </div>
72   </xsl:template>
73
74   <xsl:template match="motto">
75     <div class="motto" xmlns="http://www.w3.org/1999/xhtml">
76       <xsl:apply-templates />
77     </div>
78   </xsl:template>
79
80   <xsl:template match="ilustr">
81     <img>
82       <xsl:attribute name="src">
83         <xsl:value-of select="@src" />
84       </xsl:attribute>
85       <xsl:attribute name="alt">
86         <xsl:value-of select="@alt" />
87       </xsl:attribute>
88       <xsl:attribute name="title">
89         <xsl:value-of select="@alt" />
90       </xsl:attribute>
91     </img>
92   </xsl:template>
93
94   <!--===========================================================-->
95   <!-- Tagi PARAGRAFOWE -->
96   <!--===========================================================-->
97
98   <xsl:template match="autor_utworu" mode="poczatek">
99     <h2 class="author" xmlns="http://www.w3.org/1999/xhtml">
100       <xsl:apply-templates />
101     </h2>
102   </xsl:template>
103
104   <xsl:template match="autor_utworu" />
105
106   <xsl:template match="dzielo_nadrzedne" mode="poczatek">
107     <h2 class="collection" xmlns="http://www.w3.org/1999/xhtml">
108       <xsl:apply-templates />
109     </h2>
110   </xsl:template>
111
112   <xsl:template match="dzielo_nadrzedne" />
113
114   <xsl:template match="nazwa_utworu" mode="poczatek" >
115     <h2 class="intitle" xmlns="http://www.w3.org/1999/xhtml">
116       <xsl:apply-templates />
117     </h2>
118   </xsl:template>
119
120   <xsl:template match="nazwa_utworu" />
121
122   <xsl:template match="podtytul" mode="poczatek">
123     <h2 class="insubtitle" xmlns="http://www.w3.org/1999/xhtml">
124       <xsl:apply-templates />
125     </h2>
126   </xsl:template>
127
128   <xsl:template match="podtytul" />
129
130   <xsl:template match="naglowek_czesc|srodtytul">
131     <h2 class="h2" xmlns="http://www.w3.org/1999/xhtml">
132       <xsl:apply-templates />
133     </h2>
134   </xsl:template>
135
136   <xsl:template match="naglowek_akt">
137     <h2 class="h2" xmlns="http://www.w3.org/1999/xhtml">
138       <xsl:apply-templates />
139     </h2>
140   </xsl:template>
141
142   <xsl:template match="naglowek_scena">
143     <a id="sub{@sub}" xmlns="http://www.w3.org/1999/xhtml"><xsl:comment/><!-- hack to keep closing tags --></a>
144     <h2 class="h3" xmlns="http://www.w3.org/1999/xhtml">
145       <xsl:apply-templates />
146     </h2>
147   </xsl:template>
148
149   <xsl:template match="naglowek_podrozdzial">
150     <a id="sub{@sub}" xmlns="http://www.w3.org/1999/xhtml"><xsl:comment/><!-- same as above --></a>
151     <h2 class="h4" xmlns="http://www.w3.org/1999/xhtml">
152       <xsl:apply-templates />
153     </h2>
154   </xsl:template>
155
156   <xsl:template match="naglowek_rozdzial">
157     <h2 class="h3" xmlns="http://www.w3.org/1999/xhtml">
158       <xsl:apply-templates />
159     </h2>
160   </xsl:template>
161
162   <xsl:template match="podtytul_czesc|podtytul_akt">
163     <h2 class="h2"><small>
164       <xsl:apply-templates />
165     </small></h2>
166   </xsl:template>
167
168   <xsl:template match="podtytul_rozdzial|podtytul_scena">
169     <h2 class="h3"><small>
170       <xsl:apply-templates />
171     </small></h2>
172   </xsl:template>
173
174   <xsl:template match="podtytul_podrozdzial">
175     <h2 class="h4"><small>
176       <xsl:apply-templates />
177     </small></h2>
178   </xsl:template>
179
180
181   <xsl:template match="naglowek_osoba">
182     <h2 class="h4" xmlns="http://www.w3.org/1999/xhtml">
183       <xsl:apply-templates />
184     </h2>
185   </xsl:template>
186
187   <xsl:template match="miejsce_czas">
188     <div class="place-and-time" xmlns="http://www.w3.org/1999/xhtml">
189       <xsl:apply-templates />
190     </div>
191   </xsl:template>
192
193   <xsl:template match="didaskalia">
194     <div class="didaskalia" xmlns="http://www.w3.org/1999/xhtml">
195       <xsl:apply-templates />
196     </div>
197   </xsl:template>
198
199   <xsl:template match="akap|akap_dialog|akap_cd">
200     <p class="paragraph" xmlns="http://www.w3.org/1999/xhtml">
201       <xsl:apply-templates />
202     </p>
203   </xsl:template>
204
205   <xsl:template match="strofa">
206     <div class="stanza" xmlns="http://www.w3.org/1999/xhtml">
207       <xsl:apply-templates />
208     </div><div class='stanza-spacer' xmlns="http://www.w3.org/1999/xhtml">&#160;</div>
209   </xsl:template>
210
211   <xsl:template match="wers_normalny">
212     <div class="verse" xmlns="http://www.w3.org/1999/xhtml">
213       <xsl:apply-templates />
214     &#160;</div>
215   </xsl:template>
216
217   <xsl:template match="wers_akap">
218     <div class="verse" style="margin-left: 1em;" xmlns="http://www.w3.org/1999/xhtml">
219       <xsl:apply-templates />
220     &#160;</div>
221   </xsl:template>
222
223   <xsl:template match="wers_wciety">
224     <div class="verse" style='margin-left:1em;' xmlns="http://www.w3.org/1999/xhtml">
225       <xsl:apply-templates />
226     &#160;</div>
227   </xsl:template>
228
229   <xsl:template match="wers_do_prawej">
230     <div class="verse" style='text-align: right;' xmlns="http://www.w3.org/1999/xhtml">
231       <xsl:apply-templates/>
232     &#160;</div>
233   </xsl:template>
234
235   <xsl:template match="wers_wciety[@typ!='']">
236     <div class="verse" xmlns="http://www.w3.org/1999/xhtml">
237       <xsl:attribute name="style">
238           margin-left: <xsl:value-of select="@typ" />em;
239       </xsl:attribute>
240       <xsl:apply-templates />
241     &#160;</div>
242   </xsl:template>
243
244   <xsl:template match="wers_cd">
245     <div class="verse" style="margin-left: 12em;" xmlns="http://www.w3.org/1999/xhtml">
246       <xsl:apply-templates />
247     &#160;</div>
248   </xsl:template>
249
250   <xsl:template match="motto_podpis">
251     <div class="motto_podpis" xmlns="http://www.w3.org/1999/xhtml">
252       <xsl:apply-templates />
253     </div>
254   </xsl:template>
255
256   <!--===========================================================-->
257   <!-- Tagi LINIOWE -->
258   <!--===========================================================-->
259
260   <xsl:template match="slowo_obce">
261     <em class="foreign-word" xmlns="http://www.w3.org/1999/xhtml">
262       <xsl:apply-templates />
263     </em>
264   </xsl:template>
265
266   <xsl:template match="mat" >
267     <em class="math" xmlns="http://www.w3.org/1999/xhtml">
268       <xsl:apply-templates />
269     </em>
270   </xsl:template>
271
272   <xsl:template match="didask_tekst" >
273     <em class="didaskalia" xmlns="http://www.w3.org/1999/xhtml">
274       <xsl:apply-templates />
275     </em>
276   </xsl:template>
277
278   <xsl:template match="tytul_dziela" >
279     <em class="book-title" xmlns="http://www.w3.org/1999/xhtml">
280       <xsl:if test="@typ = '1'" >„</xsl:if>
281       <xsl:apply-templates />
282       <xsl:if test="@typ = '1'">”</xsl:if>
283     </em>
284   </xsl:template>
285
286   <xsl:template match="wyroznienie" >
287     <em class="author-emphasis" xmlns="http://www.w3.org/1999/xhtml">
288       <xsl:apply-templates />
289     </em>
290   </xsl:template>
291
292   <xsl:template match="wieksze_odstepy" >
293     <em class="wieksze-odstepy" xmlns="http://www.w3.org/1999/xhtml">
294       <xsl:apply-templates />
295     </em>
296   </xsl:template>
297
298   <xsl:template match="indeks_dolny" >
299     <sub xmlns="http://www.w3.org/1999/xhtml">
300       <xsl:apply-templates />
301     </sub>
302   </xsl:template>
303
304   <xsl:template match="osoba" >
305     <em class="person" xmlns="http://www.w3.org/1999/xhtml">
306       <xsl:apply-templates />
307     </em>
308   </xsl:template>
309
310   <xsl:template match="naglowek_listy"  >
311     <xsl:apply-templates />
312   </xsl:template>
313
314   <xsl:template match="lista_osoba" >
315     <li xmlns="http://www.w3.org/1999/xhtml">
316       <xsl:apply-templates />
317     </li>
318   </xsl:template>
319
320   <!--===========================================================-->
321   <!-- Tagi STANDALONE -->
322   <!--===========================================================-->
323
324   <xsl:template match="sekcja_swiatlo">
325     <p class="spacer" xmlns="http://www.w3.org/1999/xhtml">&#160;</p>
326   </xsl:template>
327
328   <xsl:template match="sekcja_asterysk">
329     <p class="spacer-asterisk" xmlns="http://www.w3.org/1999/xhtml">*</p>
330   </xsl:template>
331
332   <xsl:template match="separator_linia">
333     <hr class="spacer-line" xmlns="http://www.w3.org/1999/xhtml"></hr>
334   </xsl:template>
335
336   <!--===========================================================-->
337   <!-- Tagi SPECJALNE -->
338   <!--===========================================================-->
339
340   <xsl:template match="motyw" />
341
342 <xsl:template match="mat">
343     <img xmlns="http://www.w3.org/1999/xhtml">
344         <xsl:attribute name="src">
345             <xsl:value-of select="wl:mathml(.)" />
346         </xsl:attribute>
347     </img>
348 </xsl:template>
349
350 <xsl:template match="tabela|tabelka">
351     <xsl:choose>
352         <xsl:when test="@ramka = '1'">
353             <table class="border" xmlns="http://www.w3.org/1999/xhtml"><xsl:apply-templates /></table>
354         </xsl:when>
355         <xsl:otherwise>
356             <table xmlns="http://www.w3.org/1999/xhtml"><xsl:apply-templates /></table>
357         </xsl:otherwise>
358     </xsl:choose>
359 </xsl:template>
360 <xsl:template match="wiersz">
361   <tr xmlns="http://www.w3.org/1999/xhtml">
362       <xsl:apply-templates />
363   </tr>
364 </xsl:template>
365 <xsl:template match="kol">
366   <td xmlns="http://www.w3.org/1999/xhtml">
367      <xsl:apply-templates />
368   </td>
369 </xsl:template>
370
371
372   <!--===========================================================-->
373   <!-- Tagi IGNOROWANE -->
374   <!--===========================================================-->
375
376   <xsl:template match="extra" />
377
378   <xsl:template match="pe|pa|pr|pt" >
379     <a class="anchor" id="anchor-{.}" href="annotations.xhtml#annotation-{.}"
380        xmlns="http://www.w3.org/1999/xhtml"><sup xmlns="http://www.w3.org/1999/xhtml"><xsl:apply-templates /></sup></a>
381   </xsl:template>
382
383   <xsl:template match="uwaga" />
384
385   <xsl:template match="nota_red" />
386   <xsl:template match="abstrakt" />
387
388   <!--pominięcie tych metadanych-->
389   <xsl:template match="rdf:RDF" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" />
390
391   <!--===========================================================-->
392   <!-- Tagi TEKSTOWE -->
393   <!--===========================================================-->
394
395   <xsl:template match="text()"  >
396     <xsl:value-of select="." />
397   </xsl:template>
398
399   <xsl:template match="text()" >
400     <xsl:value-of select="." />
401   </xsl:template>
402
403 </xsl:stylesheet>