1 <?xml version="1.0" encoding="UTF-8"?>
2 <xsl:stylesheet version="1.0"
3 xmlns="http://www.w3.org/1999/xhtml"
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
7 Dokument ten opisuje jednoznaczne przekształcenie WLML 0.1 -> XHTML.
9 <xsl:output method="html" omit-xml-declaration="yes" encoding="utf-8" indent="no" />
12 Base tag for rendering a fragment of text
14 <xsl:template match="chunk">
15 <xsl:apply-templates select="child::node()">
16 <xsl:with-param name="mixed" select="true()" />
17 </xsl:apply-templates>
21 Base tag for rendering the whole text
24 <xsl:template match="utwor">
26 <xsl:call-template name="standard-attributes" />
27 <xsl:apply-templates select="child::node()">
28 <xsl:with-param name="mixed" select="false()" />
29 </xsl:apply-templates>
34 Przekształcenia poszczególnych elementów zgodnie z:
35 http://wiki.wolnepodreczniki.pl/Lektury:Sk%C5%82ad/Tagi_sk%C5%82adu
38 <!-- TAGI MASTERÓW STYLÓW
40 Tagi rozpoczynające i kończące tekst utworu lirycznego o standardowej szerokości łamu:
43 <xsl:template match="opowiadanie|powiesc">
44 <xsl:param name="mixed" />
46 <xsl:call-template name="standard-attributes" />
47 <xsl:apply-templates select="child::node()">
48 <xsl:with-param name="mixed" select="false()" />
49 </xsl:apply-templates>
53 <xsl:template match="liryka_l|liryka_lp">
54 <xsl:param name="mixed" />
56 <xsl:call-template name="standard-attributes" />
57 <xsl:apply-templates select="child::node()">
58 <xsl:with-param name="mixed" select="false()" />
59 </xsl:apply-templates>
63 <xsl:template match="dramat_wierszowany_l|dramat_wierszowany_lp|dramat_wspolczesny">
64 <xsl:param name="mixed" />
66 <xsl:call-template name="standard-attributes" />
67 <xsl:apply-templates select="child::node()">
68 <xsl:with-param name="mixed" select="false()" />
69 </xsl:apply-templates>
73 <xsl:template match="wywiad">
74 <xsl:param name="mixed" />
76 <xsl:call-template name="standard-attributes" />
77 <xsl:apply-templates select="child::node()">
78 <xsl:with-param name="mixed" select="false()" />
79 </xsl:apply-templates>
84 *****************************
85 ELEMENTY POZA TEKSTEM GŁÓWNYM
86 *****************************
90 Autor składanego utworu
92 Element strony tytułowej - lub odpowiadającej jej przestrzeni,
93 np. na stronie internetowej) :
95 <autor_utworu> imiona-itd.-autora-składanego-utworu </autor_utworu>
97 <xsl:template match="autor_utworu">
98 <xsl:param name="mixed" />
99 <h2 x-editable="true">
100 <xsl:call-template name="standard-attributes" />
101 <xsl:call-template name="context-menu" />
102 <xsl:apply-templates select="child::node()">
103 <xsl:with-param name="mixed" select="true()" />
104 </xsl:apply-templates>
109 Nazwa składanego utworu
111 Element strony tytułowej - lub odpowiadającej jej przestrzeni,
112 np. na stronie internetowej
114 <nazwa_utworu> tytuł-składanego-utworu </nazwa_utworu>
116 <xsl:template match="nazwa_utworu">
117 <xsl:param name="mixed" />
118 <h1 x-editable="true">
119 <xsl:call-template name="standard-attributes" />
120 <xsl:call-template name="context-menu" />
121 <xsl:apply-templates select="child::node()">
122 <xsl:with-param name="mixed" select="true()" />
123 </xsl:apply-templates>
128 Nazwa utworu nadrzędnego, w którego skład wchodzi dany utwór
129 <dzielo_nadrzedne> tytuł-dzieła-nadrzędnego </dzielo_nadrzedne>
135 <autor_utworu>Bruno Jasieński</autor_utworu>
136 <dzielo_nadrzedne>But w butonierce</dzielo_nadrzedne>
137 <nazwa_utworu>Deszcz</nazwa_utworu>
140 <xsl:template match="dzielo_nadrzedne">
141 <xsl:param name="mixed" />
142 <h2 x-editable="true">
143 <xsl:call-template name="standard-attributes" />
144 <xsl:call-template name="context-menu" />
145 <xsl:apply-templates select="child::node()">
146 <xsl:with-param name="mixed" select="true()" />
147 </xsl:apply-templates>
152 Podtytuł, czyli wszystkie dopiski do tytułu
154 Element strony tytułowej - lub odpowiadającej jej przestrzeni.
155 <podtytul> podtytuł-składanego-utworu </podtytul>
160 <autor_utworu>Daniel Defoe</autor_utworu>
161 <nazwa_utworu>Robinson Crusoe</nazwa_utworu>
162 <podtytul>Jego życia losy, doświadczenia i przypadki</podtytul>
165 <xsl:template match="podtytul">
166 <xsl:param name="mixed" />
167 <h3 x-editable="true">
168 <xsl:call-template name="standard-attributes" />
169 <xsl:call-template name="context-menu" />
170 <xsl:apply-templates select="child::node()">
171 <xsl:with-param name="mixed" select="true()" />
172 </xsl:apply-templates>
177 Tagi obejmujące tekst noty poprzedzającej tekst główny (styl wieloakapitowy):
179 <nota><akap> tekst-noty </akap></nota> (styl wieloakapitowy)
182 <xsl:template match="nota">
183 <xsl:param name="mixed" />
185 <xsl:call-template name="standard-attributes" />
186 <xsl:apply-templates select="child::node()">
187 <xsl:with-param name="mixed" select="false()" />
188 </xsl:apply-templates>
193 Tagi obejmujące tekst dedykacji (styl wieloakapitowy bądź wielostrofowy):
194 <dedykacja> tekst-dedykacji </dedykacja>
196 <xsl:template match="dedykacja">
197 <xsl:param name="mixed" />
199 <xsl:call-template name="standard-attributes" />
200 <xsl:apply-templates select="child::node()">
201 <xsl:with-param name="mixed" select="false()" />
202 </xsl:apply-templates>
207 Tagi obejmujące tekst motta (styl wieloakapitowy bądź wielostrofowy):
208 <motto> tekst-motta </motto>
210 <xsl:template match="motto">
211 <xsl:param name="mixed" />
212 <div x-editable="true">
213 <xsl:call-template name="standard-attributes" />
214 <xsl:apply-templates select="child::node()">
215 <xsl:with-param name="mixed" select="true()" />
216 </xsl:apply-templates>
220 <xsl:template match="motto_podpis">
221 <xsl:param name="mixed" />
222 <p x-editable="true">
223 <xsl:call-template name="standard-attributes" />
224 <xsl:call-template name="context-menu" />
225 <xsl:apply-templates select="child::node()">
226 <xsl:with-param name="mixed" select="true()" />
227 </xsl:apply-templates>
232 Tagi obejmujące listę osób poprzedzającą tekst dramatu
233 (zwykle składaną na osobnej stronie; to odmiana stylu listy):
235 <lista_osob> osoby </lista_osob>
237 <xsl:template match="lista_osob">
238 <xsl:param name="mixed" />
240 <xsl:call-template name="standard-attributes" />
241 <xsl:apply-templates select="child::node()">
242 <xsl:with-param name="mixed" select="false()" />
243 </xsl:apply-templates>
247 <xsl:template match="naglowek_listy">
248 <xsl:param name="mixed" />
249 <p x-editable="true">
250 <xsl:call-template name="standard-attributes" />
251 <xsl:call-template name="context-menu" />
252 <xsl:apply-templates select="child::node()">
253 <xsl:with-param name="mixed" select="true()" />
254 </xsl:apply-templates>
258 <xsl:template match="lista_osoba">
259 <xsl:param name="mixed" />
260 <p x-editable="true">
261 <xsl:call-template name="standard-attributes" />
262 <xsl:call-template name="context-menu" />
263 <xsl:apply-templates select="child::node()">
264 <xsl:with-param name="mixed" select="true()" />
265 </xsl:apply-templates>
269 <!-- Tagi obejmujące inne komentarze wprowadzające
270 przed tekstem dramatu (składane razem z listą osób):
272 <miejsce_czas> komentarze-wprowadzające </miejsce_czas>
274 <xsl:template match="miejsce_czas">
275 <xsl:param name="mixed" />
276 <p x-editable="true">
277 <xsl:call-template name="standard-attributes" />
278 <xsl:call-template name="context-menu" />
279 <xsl:apply-templates select="child::node()">
280 <xsl:with-param name="mixed" select="true()" />
281 </xsl:apply-templates>
287 ***************************
288 TAGI STYLÓW TEKSTU GŁÓWNEGO
289 ***************************
293 Tagi nagłówka części/księgi:
294 <naglowek_czesc> nagłówek-części-lub-księgi </naglowek_czesc>
296 <xsl:template match="naglowek_czesc">
297 <xsl:param name="mixed" />
298 <h2 x-editable="true">
299 <xsl:call-template name="standard-attributes" />
300 <xsl:call-template name="context-menu" />
301 <xsl:apply-templates select="child::node()">
302 <xsl:with-param name="mixed" select="true()" />
303 </xsl:apply-templates>
308 Tagi tytułu rozdziału:
309 <naglowek_rozdzial> nr-i/lub-tytuł </naglowek_rozdzial>
311 <xsl:template match="naglowek_rozdzial">
312 <xsl:param name="mixed" />
313 <h3 x-editable="true">
314 <xsl:call-template name="standard-attributes" />
315 <xsl:call-template name="context-menu" />
316 <xsl:apply-templates select="child::node()">
317 <xsl:with-param name="mixed" select="true()" />
318 </xsl:apply-templates>
323 Tagi tytułu podrozdziału:
324 <naglowek_podrozdzial> nr-i/lub-podtytuł </naglowek_podrozdzial>
326 <xsl:template match="naglowek_podrozdzial">
327 <xsl:param name="mixed" />
328 <h4 x-editable="true">
329 <xsl:call-template name="standard-attributes" />
330 <xsl:call-template name="context-menu" />
331 <xsl:apply-templates select="child::node()">
332 <xsl:with-param name="mixed" select="true()" />
333 </xsl:apply-templates>
339 <srodtytul> śródtytuł </srodtytul>
341 Tagi nagłówków aktów:
342 <naglowek_akt> nagłówek-aktu </naglowek_akt>
345 <xsl:template match="srodtytul">
346 <xsl:param name="mixed" />
347 <h2 x-editable="true">
348 <xsl:call-template name="standard-attributes" />
349 <xsl:call-template name="context-menu" />
350 <xsl:apply-templates select="child::node()">
351 <xsl:with-param name="mixed" select="true()" />
352 </xsl:apply-templates>
356 <xsl:template match="naglowek_akt">
357 <xsl:param name="mixed" />
358 <h2 x-editable="true">
359 <xsl:call-template name="standard-attributes" />
360 <xsl:call-template name="context-menu" />
361 <xsl:apply-templates select="child::node()">
362 <xsl:with-param name="mixed" select="true()" />
363 </xsl:apply-templates>
369 <naglowek_scena> nagłówek-sceny </naglowek_scena>
372 <xsl:template match="naglowek_scena">
373 <xsl:param name="mixed" />
374 <h3 x-editable="true">
375 <xsl:call-template name="standard-attributes" />
376 <xsl:call-template name="context-menu" />
377 <xsl:apply-templates select="child::node()">
378 <xsl:with-param name="mixed" select="true()" />
379 </xsl:apply-templates>
383 <xsl:template match="naglowek_osoba">
384 <xsl:param name="mixed" />
385 <h4 x-editable="true">
386 <xsl:call-template name="standard-attributes" />
387 <xsl:call-template name="context-menu" />
388 <xsl:apply-templates select="child::node()">
389 <xsl:with-param name="mixed" select="true()" />
390 </xsl:apply-templates>
395 ************************
396 Bloki w tekście głównym
397 ************************
400 <xsl:template match="dlugi_cytat">
401 <xsl:param name="mixed" />
403 <xsl:call-template name="standard-attributes" />
404 <xsl:apply-templates select="child::node()">
405 <xsl:with-param name="mixed" select="false()" />
406 </xsl:apply-templates>
410 <xsl:template match="poezja_cyt">
411 <xsl:param name="mixed" />
413 <xsl:call-template name="standard-attributes" />
414 <xsl:apply-templates select="child::node()">
415 <xsl:with-param name="mixed" select="false()" />
416 </xsl:apply-templates>
420 <xsl:template match="kwestia">
421 <xsl:param name="mixed" />
423 <xsl:call-template name="standard-attributes" />
424 <xsl:apply-templates select="child::node()">
425 <xsl:with-param name="mixed" select="false()" />
426 </xsl:apply-templates>
430 <xsl:template match="didaskalia">
431 <xsl:param name="mixed" />
432 <div x-editable="true">
433 <xsl:call-template name="standard-attributes" />
434 <xsl:apply-templates select="child::node()">
435 <xsl:with-param name="mixed" select="true()" />
436 </xsl:apply-templates>
440 <xsl:template match="wywiad_pyt">
441 <xsl:param name="mixed" />
443 <xsl:call-template name="standard-attributes" />
444 <xsl:apply-templates select="child::node()">
445 <xsl:with-param name="mixed" select="false()" />
446 </xsl:apply-templates>
450 <xsl:template match="wywiad_odp">
451 <xsl:param name="mixed" />
453 <xsl:call-template name="standard-attributes" />
454 <xsl:apply-templates select="child::node()">
455 <xsl:with-param name="mixed" select="false()" />
456 </xsl:apply-templates>
461 ***********************************
462 Style akapitowe oraz strofy i wersy
463 ***********************************
466 <xsl:template match="akap">
467 <xsl:param name="mixed" />
468 <p x-editable="true">
469 <xsl:call-template name="standard-attributes" />
470 <xsl:call-template name="context-menu" />
471 <xsl:apply-templates select="child::node()">
472 <xsl:with-param name="mixed" select="true()" />
473 </xsl:apply-templates>
477 <xsl:template match="akap_cd">
478 <xsl:param name="mixed" />
479 <p x-editable="true">
480 <xsl:call-template name="standard-attributes" />
481 <xsl:call-template name="context-menu" />
482 <xsl:apply-templates select="child::node()">
483 <xsl:with-param name="mixed" select="true()" />
484 </xsl:apply-templates>
488 <xsl:template match="akap_dialog">
489 <xsl:param name="mixed" />
490 <p x-editable="true">
491 <xsl:call-template name="standard-attributes" />
492 <xsl:call-template name="context-menu" />
493 <xsl:apply-templates select="child::node()">
494 <xsl:with-param name="mixed" select="true()" />
495 </xsl:apply-templates>
504 <xsl:template match="strofa">
505 <div x-editable="true">
506 <xsl:call-template name="standard-attributes" />
507 <xsl:call-template name="context-menu" />
510 <xsl:when test="count(br) > 0">
511 <xsl:variable name="first-verse" select="br[1]/preceding-sibling::node()" />
512 <xsl:call-template name="verse">
513 <xsl:with-param name="verse-content" select="$first-verse" />
515 <xsl:for-each select="br">
516 <xsl:variable name="lnum" select="count(preceding-sibling::br)" />
517 <!-- select all nodes up to the next br or end of stanza -->
518 <xsl:variable name="current-verse"
519 select="following-sibling::node()[count(preceding-sibling::br) = $lnum+1]" />
520 <xsl:call-template name="verse">
521 <xsl:with-param name="verse-content" select="$current-verse" />
526 <xsl:call-template name="verse">
527 <xsl:with-param name="verse-content" select="child::node()" />
534 <xsl:template name="verse">
535 <!-- the verse contents including the last br (if any) -->
536 <xsl:param name="verse-content" />
537 <xsl:variable name="first-tag-name" select="name($verse-content/self::*)" />
538 <!-- name of text nodes is '' == false -->
540 <!-- THIS IS A HORROR!!! -->
541 <!-- Possible variants: -->
543 <!-- Simple verse == not wers_ tags anywhere until the ending br -->
544 <xsl:when test="not($verse-content[starts-with(name(), 'wers_')])">
545 <p class="wers" x-node="wers" x-verse="true">
546 <xsl:apply-templates select="$verse-content[local-name(.) != 'br']">
547 <xsl:with-param name="mixed" select="true()" />
548 </xsl:apply-templates>
553 <xsl:apply-templates select="$verse-content[local-name(.) != 'br']">
554 <xsl:with-param name="mixed" select="false()" />
555 </xsl:apply-templates>
560 <xsl:template match="wers_cd|wers_akap|wers_wciety">
561 <xsl:param name="mixed" />
563 <xsl:call-template name="standard-attributes" />
564 <xsl:apply-templates select="child::node()">
565 <xsl:with-param name="mixed" select="true()" />
566 </xsl:apply-templates>
570 <xsl:template match="br"><xsl:text>/</xsl:text></xsl:template>
580 Tagi obejmujące tytuł dzieła, np. książki, filmu, piosenki,
581 modlitwy, przedstawienia teatr. itd.:
583 <tytul_dziela> tytuł-dzieła </tytul_dziela>
585 <xsl:template match="tytul_dziela">
586 <xsl:param name="mixed" />
588 <xsl:call-template name="standard-attributes" />
589 <xsl:apply-templates select="child::node()">
590 <xsl:with-param name="mixed" select="true()" />
591 </xsl:apply-templates>
595 <xsl:template match="wyroznienie|slowo_obce|mat|didask_tekst|osoba|wyp_osoba|www">
596 <xsl:param name="mixed" />
598 <xsl:call-template name="standard-attributes" />
599 <xsl:apply-templates select="child::node()">
600 <xsl:with-param name="mixed" select="true()" />
601 </xsl:apply-templates>
610 <xsl:template match="sekcja_swiatlo">
611 <xsl:param name="mixed" />
612 <br><xsl:call-template name="standard-attributes" /></br>
615 <xsl:template match="sekcja_asterysk">
616 <xsl:param name="mixed" />
617 <hr><xsl:call-template name="standard-attributes" /></hr>
620 <xsl:template match="separator_linia">
621 <xsl:param name="mixed" />
622 <hr><xsl:call-template name="standard-attributes" /></hr>
625 <xsl:template match="zastepnik_wersu">
626 <xsl:param name="mixed" />
627 <hr><xsl:call-template name="standard-attributes" /></hr>
639 <xsl:template match="pr|pa|pe|pt">
640 <span x-editable="true">
641 <xsl:call-template name="standard-attributes">
642 <xsl:with-param name="extra-class" select="'annotation-inline-box'" />
644 <a name="anchor-{generate-id(.)}" />
645 <!-- the link to the non-inline version -->
646 <a href="#annotation-{generate-id(.)}" class="annotation"></a>
647 <!-- inline contents -->
648 <span x-annotation-box="true" x-pass-thru="true">
649 <xsl:call-template name="context-menu" />
650 <xsl:apply-templates select="node()">
651 <xsl:with-param name="mixed" select="true()" />
652 </xsl:apply-templates>
657 <xsl:template match="begin">
659 <xsl:call-template name="standard-attributes" />
660 <xsl:attribute name="theme-class">
661 <xsl:value-of select="substring-after(@id, 'b')" />
666 <xsl:template match="extra|uwaga">
668 <xsl:call-template name="standard-attributes" />
669 <xsl:apply-templates select="node()" />
673 <xsl:template match="motyw">
674 <span x-editable="true">
675 <xsl:call-template name="standard-attributes" />
676 <xsl:attribute name="theme-class">
677 <xsl:value-of select="substring-after(@id, 'm')" />
679 <xsl:call-template name="context-menu" />
680 <span x-pass-thru="true" class="theme-text-list"><xsl:value-of select=".|node()" /></span>
684 <xsl:template match="end">
686 <xsl:call-template name="standard-attributes" />
687 <xsl:attribute name="theme-class">
688 <xsl:value-of select="substring-after(@id, 'e')" />
700 <xsl:template match="text()">
701 <!-- <xsl:value-of select="." /> -->
702 <xsl:param name="mixed" />
704 <xsl:when test="normalize-space(.) = ''" />
705 <xsl:when test="not($mixed)">
706 <span x-node="out-of-flow-text" class="out-of-flow-text" x-editable="true">
707 <xsl:value-of select="." />
710 <xsl:otherwise><xsl:value-of select="." /></xsl:otherwise>
714 <xsl:template match="comment()">
715 <xsl:comment><xsl:value-of select="." /></xsl:comment>
718 <xsl:template match="*[name() != local-name()]">
720 <xsl:call-template name="standard-attributes" />
721 <xsl:apply-templates select="child::node()">
722 <xsl:with-param name="mixed" select="true()" />
723 </xsl:apply-templates>
727 <xsl:template match="*">
728 <div class="unknown-tag" x-node="{name()}">
729 <xsl:apply-templates select="child::node()">
730 <xsl:with-param name="mixed" select="true()" />
731 </xsl:apply-templates>
735 <xsl:template name="context-menu">
736 <!-- <span class="default-menu context-menu"> -->
737 <!-- <button class="edit-button">Edytuj</button> -->
738 <!-- <span class="delete-button">Delete</span> -->
740 <!-- <span class="edit-menu context-menu">
741 <span class="accept-button">Accept</span>
742 <span class="reject-button">Close</span>
746 <xsl:template name="standard-attributes">
747 <xsl:param name="extra-class" />
748 <xsl:attribute name="class"><xsl:value-of select="local-name()" /><xsl:text> </xsl:text><xsl:value-of select="$extra-class" /></xsl:attribute>
750 <xsl:attribute name="x-node"><xsl:value-of select="local-name()" /></xsl:attribute>
752 <xsl:if test="local-name() != name()">
753 <xsl:attribute name="x-ns"><xsl:value-of select="namespace-uri()" /></xsl:attribute>
756 <xsl:for-each select="@*">
757 <xsl:variable name="id" select="generate-id()" />
758 <xsl:attribute name="x-attr-value-{$id}"><xsl:value-of select="."/></xsl:attribute>
759 <xsl:attribute name="x-attr-name-{$id}"><xsl:value-of select="local-name()"/></xsl:attribute>
760 <xsl:if test="namespace-uri()">
761 <xsl:attribute name="x-attr-ns-{$id}"><xsl:value-of select="namespace-uri()"/></xsl:attribute>