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>
192 <xsl:template match="nota_red">
193 <xsl:param name="mixed" />
195 <xsl:call-template name="standard-attributes" />
196 <xsl:apply-templates select="child::node()">
197 <xsl:with-param name="mixed" select="false()" />
198 </xsl:apply-templates>
203 Tagi obejmujące tekst dedykacji (styl wieloakapitowy bądź wielostrofowy):
204 <dedykacja> tekst-dedykacji </dedykacja>
206 <xsl:template match="dedykacja">
207 <xsl:param name="mixed" />
209 <xsl:call-template name="standard-attributes" />
210 <xsl:apply-templates select="child::node()">
211 <xsl:with-param name="mixed" select="false()" />
212 </xsl:apply-templates>
217 Tagi obejmujące tekst w ramce (styl wieloakapitowy bądź wielostrofowy):
218 <ramka> tekst-w-ramce </ramka>
220 <xsl:template match="ramka">
221 <xsl:param name="mixed" />
223 <xsl:call-template name="standard-attributes" />
224 <xsl:apply-templates select="child::node()">
225 <xsl:with-param name="mixed" select="false()" />
226 </xsl:apply-templates>
231 Tagi obejmujące tekst motta (styl wieloakapitowy bądź wielostrofowy):
232 <motto> tekst-motta </motto>
234 <xsl:template match="motto">
235 <xsl:param name="mixed" />
236 <div class="motto_container" data-pass-thru="true">
237 <div x-editable="true">
238 <xsl:call-template name="standard-attributes" />
239 <xsl:apply-templates select="child::node()">
240 <xsl:with-param name="mixed" select="true()" />
241 </xsl:apply-templates>
243 <xsl:apply-templates select="following-sibling::*[1][self::motto_podpis]" mode="motto">
244 <xsl:with-param name="mixed" select="true()" />
245 </xsl:apply-templates>
250 Catch stand-alone "motto_podpis" and make then render properly.
251 If not, editing will fail :(.
253 TODO: Make "motto" & "motto_podpis" one block in edit mode (like strofa)
255 <xsl:template match="motto_podpis[not(preceding-sibling::*[1][self::motto])]">
256 <xsl:apply-templates select="." mode="motto">
257 <xsl:with-param name="mixed" select="true()" />
258 </xsl:apply-templates>
261 <xsl:template match="motto_podpis" mode="motto">
262 <xsl:param name="mixed" />
263 <p x-editable="true">
264 <xsl:call-template name="standard-attributes" />
265 <xsl:call-template name="context-menu" />
266 <xsl:apply-templates select="child::node()">
267 <xsl:with-param name="mixed" select="true()" />
268 </xsl:apply-templates>
272 <xsl:template match="motto_podpis" />
277 Tagi obejmujące listę osób poprzedzającą tekst dramatu
278 (zwykle składaną na osobnej stronie; to odmiana stylu listy):
280 <lista_osob> osoby </lista_osob>
282 <xsl:template match="lista_osob">
283 <xsl:param name="mixed" />
285 <xsl:call-template name="standard-attributes" />
286 <xsl:apply-templates select="child::node()">
287 <xsl:with-param name="mixed" select="false()" />
288 </xsl:apply-templates>
292 <xsl:template match="naglowek_listy">
293 <xsl:param name="mixed" />
294 <p x-editable="true">
295 <xsl:call-template name="standard-attributes" />
296 <xsl:call-template name="context-menu" />
297 <xsl:apply-templates select="child::node()">
298 <xsl:with-param name="mixed" select="true()" />
299 </xsl:apply-templates>
303 <xsl:template match="lista_osoba">
304 <xsl:param name="mixed" />
305 <p x-editable="true">
306 <xsl:call-template name="standard-attributes" />
307 <xsl:call-template name="context-menu" />
308 <xsl:apply-templates select="child::node()">
309 <xsl:with-param name="mixed" select="true()" />
310 </xsl:apply-templates>
314 <!-- Tagi obejmujące inne komentarze wprowadzające
315 przed tekstem dramatu (składane razem z listą osób):
317 <miejsce_czas> komentarze-wprowadzające </miejsce_czas>
319 <xsl:template match="miejsce_czas">
320 <xsl:param name="mixed" />
321 <p x-editable="true">
322 <xsl:call-template name="standard-attributes" />
323 <xsl:call-template name="context-menu" />
324 <xsl:apply-templates select="child::node()">
325 <xsl:with-param name="mixed" select="true()" />
326 </xsl:apply-templates>
332 ***************************
333 TAGI STYLÓW TEKSTU GŁÓWNEGO
334 ***************************
338 Tagi nagłówka części/księgi:
339 <naglowek_czesc> nagłówek-części-lub-księgi </naglowek_czesc>
341 <xsl:template match="naglowek_czesc">
342 <xsl:param name="mixed" />
343 <h2 x-editable="true">
344 <xsl:call-template name="standard-attributes" />
345 <xsl:call-template name="context-menu" />
346 <xsl:apply-templates select="child::node()">
347 <xsl:with-param name="mixed" select="true()" />
348 </xsl:apply-templates>
353 Tagi tytułu rozdziału:
354 <naglowek_rozdzial> nr-i/lub-tytuł </naglowek_rozdzial>
356 <xsl:template match="naglowek_rozdzial">
357 <xsl:param name="mixed" />
358 <h3 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>
368 Tagi tytułu podrozdziału:
369 <naglowek_podrozdzial> nr-i/lub-podtytuł </naglowek_podrozdzial>
371 <xsl:template match="naglowek_podrozdzial">
372 <xsl:param name="mixed" />
373 <h4 x-editable="true">
374 <xsl:call-template name="standard-attributes" />
375 <xsl:call-template name="context-menu" />
376 <xsl:apply-templates select="child::node()">
377 <xsl:with-param name="mixed" select="true()" />
378 </xsl:apply-templates>
384 <srodtytul> śródtytuł </srodtytul>
386 Tagi nagłówków aktów:
387 <naglowek_akt> nagłówek-aktu </naglowek_akt>
390 <xsl:template match="srodtytul">
391 <xsl:param name="mixed" />
392 <h2 x-editable="true">
393 <xsl:call-template name="standard-attributes" />
394 <xsl:call-template name="context-menu" />
395 <xsl:apply-templates select="child::node()">
396 <xsl:with-param name="mixed" select="true()" />
397 </xsl:apply-templates>
401 <xsl:template match="naglowek_akt">
402 <xsl:param name="mixed" />
403 <h2 x-editable="true">
404 <xsl:call-template name="standard-attributes" />
405 <xsl:call-template name="context-menu" />
406 <xsl:apply-templates select="child::node()">
407 <xsl:with-param name="mixed" select="true()" />
408 </xsl:apply-templates>
414 <naglowek_scena> nagłówek-sceny </naglowek_scena>
417 <xsl:template match="naglowek_scena">
418 <xsl:param name="mixed" />
419 <h3 x-editable="true">
420 <xsl:call-template name="standard-attributes" />
421 <xsl:call-template name="context-menu" />
422 <xsl:apply-templates select="child::node()">
423 <xsl:with-param name="mixed" select="true()" />
424 </xsl:apply-templates>
428 <xsl:template match="naglowek_osoba">
429 <xsl:param name="mixed" />
430 <h4 x-editable="true">
431 <xsl:call-template name="standard-attributes" />
432 <xsl:call-template name="context-menu" />
433 <xsl:apply-templates select="child::node()">
434 <xsl:with-param name="mixed" select="true()" />
435 </xsl:apply-templates>
440 ************************
441 Bloki w tekście głównym
442 ************************
445 <xsl:template match="dlugi_cytat">
446 <xsl:param name="mixed" />
448 <xsl:call-template name="standard-attributes" />
449 <xsl:apply-templates select="child::node()">
450 <xsl:with-param name="mixed" select="false()" />
451 </xsl:apply-templates>
455 <xsl:template match="poezja_cyt">
456 <xsl:param name="mixed" />
458 <xsl:call-template name="standard-attributes" />
459 <xsl:apply-templates select="child::node()">
460 <xsl:with-param name="mixed" select="false()" />
461 </xsl:apply-templates>
465 <xsl:template match="kwestia">
466 <xsl:param name="mixed" />
468 <xsl:call-template name="standard-attributes" />
469 <xsl:apply-templates select="child::node()">
470 <xsl:with-param name="mixed" select="false()" />
471 </xsl:apply-templates>
475 <xsl:template match="didaskalia">
476 <xsl:param name="mixed" />
477 <div x-editable="true">
478 <xsl:call-template name="standard-attributes" />
479 <xsl:apply-templates select="child::node()">
480 <xsl:with-param name="mixed" select="true()" />
481 </xsl:apply-templates>
485 <xsl:template match="wywiad_pyt">
486 <xsl:param name="mixed" />
488 <xsl:call-template name="standard-attributes" />
489 <xsl:apply-templates select="child::node()">
490 <xsl:with-param name="mixed" select="false()" />
491 </xsl:apply-templates>
495 <xsl:template match="wywiad_odp">
496 <xsl:param name="mixed" />
498 <xsl:call-template name="standard-attributes" />
499 <xsl:apply-templates select="child::node()">
500 <xsl:with-param name="mixed" select="false()" />
501 </xsl:apply-templates>
506 ***********************************
507 Style akapitowe oraz strofy i wersy
508 ***********************************
511 <xsl:template match="akap">
512 <xsl:param name="mixed" />
513 <p x-editable="true">
514 <xsl:call-template name="standard-attributes" />
515 <xsl:call-template name="context-menu" />
516 <xsl:apply-templates select="child::node()">
517 <xsl:with-param name="mixed" select="true()" />
518 </xsl:apply-templates>
522 <xsl:template match="akap_cd">
523 <xsl:param name="mixed" />
524 <p x-editable="true">
525 <xsl:call-template name="standard-attributes" />
526 <xsl:call-template name="context-menu" />
527 <xsl:apply-templates select="child::node()">
528 <xsl:with-param name="mixed" select="true()" />
529 </xsl:apply-templates>
533 <xsl:template match="akap_dialog">
534 <xsl:param name="mixed" />
535 <p x-editable="true">
536 <xsl:call-template name="standard-attributes" />
537 <xsl:call-template name="context-menu" />
538 <xsl:apply-templates select="child::node()">
539 <xsl:with-param name="mixed" select="true()" />
540 </xsl:apply-templates>
549 <xsl:template match="strofa">
550 <div x-editable="true">
551 <xsl:call-template name="standard-attributes" />
552 <xsl:call-template name="context-menu" />
555 <xsl:when test="count(br) > 0">
556 <xsl:variable name="first-verse" select="br[1]/preceding-sibling::node()" />
557 <xsl:call-template name="verse">
558 <xsl:with-param name="verse-content" select="$first-verse" />
560 <xsl:for-each select="br">
561 <xsl:variable name="lnum" select="count(preceding-sibling::br)" />
562 <!-- select all nodes up to the next br or end of stanza -->
563 <xsl:variable name="current-verse"
564 select="following-sibling::node()[count(preceding-sibling::br) = $lnum+1]" />
565 <xsl:call-template name="verse">
566 <xsl:with-param name="verse-content" select="$current-verse" />
571 <xsl:call-template name="verse">
572 <xsl:with-param name="verse-content" select="child::node()" />
579 <xsl:template name="verse">
580 <!-- the verse contents including the last br (if any) -->
581 <xsl:param name="verse-content" />
582 <xsl:variable name="first-tag-name" select="name($verse-content/self::*)" />
583 <!-- name of text nodes is '' == false -->
585 <!-- THIS IS A HORROR!!! -->
586 <!-- Possible variants: -->
588 <!-- Simple verse == not wers_ tags anywhere until the ending br -->
589 <xsl:when test="not($verse-content[starts-with(name(), 'wers_')])">
590 <p class="wers" x-node="wers" x-verse="true">
591 <xsl:apply-templates select="$verse-content[local-name(.) != 'br']">
592 <xsl:with-param name="mixed" select="true()" />
593 </xsl:apply-templates>
598 <xsl:apply-templates select="$verse-content[local-name(.) != 'br']">
599 <xsl:with-param name="mixed" select="false()" />
600 </xsl:apply-templates>
605 <xsl:template match="wers_cd|wers_akap|wers_wciety">
606 <xsl:param name="mixed" />
608 <xsl:when test="ancestor::*[0]/self::strofa"> -->
610 <xsl:call-template name="standard-attributes" />
611 <xsl:apply-templates select="child::node()">
612 <xsl:with-param name="mixed" select="true()" />
613 </xsl:apply-templates>
619 <xsl:template match="br"><xsl:text>/</xsl:text></xsl:template>
629 Tagi obejmujące tytuł dzieła, np. książki, filmu, piosenki,
630 modlitwy, przedstawienia teatr. itd.:
632 <tytul_dziela> tytuł-dzieła </tytul_dziela>
634 <xsl:template match="tytul_dziela">
635 <xsl:param name="mixed" />
637 <xsl:call-template name="standard-attributes" />
638 <xsl:apply-templates select="child::node()">
639 <xsl:with-param name="mixed" select="true()" />
640 </xsl:apply-templates>
644 <xsl:template match="wyroznienie|slowo_obce|mat|didask_tekst|osoba|wyp_osoba|www">
645 <xsl:param name="mixed" />
647 <xsl:call-template name="standard-attributes" />
648 <xsl:apply-templates select="child::node()">
649 <xsl:with-param name="mixed" select="true()" />
650 </xsl:apply-templates>
659 <xsl:template match="sekcja_swiatlo">
660 <xsl:param name="mixed" />
661 <hr><xsl:call-template name="standard-attributes" /></hr>
664 <xsl:template match="sekcja_asterysk">
665 <xsl:param name="mixed" />
666 <p><xsl:call-template name="standard-attributes" /></p>
669 <xsl:template match="separator_linia">
670 <xsl:param name="mixed" />
671 <hr><xsl:call-template name="standard-attributes" /></hr>
674 <xsl:template match="zastepnik_wersu">
675 <xsl:param name="mixed" />
677 <xsl:call-template name="standard-attributes" />
678 <xsl:apply-templates select="child::node()">
679 <xsl:with-param name="mixed" select="true()" />
680 </xsl:apply-templates>
693 <xsl:template match="pr|pa|pe|pt">
694 <span x-editable="true" x-common="common">
695 <xsl:call-template name="standard-attributes">
696 <xsl:with-param name="extra-class" select="'annotation-inline-box'" />
698 <a name="anchor-{generate-id(.)}" />
699 <!-- the link to the non-inline version -->
700 <a href="#annotation-{generate-id(.)}" class="annotation"></a>
701 <!-- inline contents -->
702 <span x-annotation-box="true" x-pass-thru="true">
703 <xsl:call-template name="context-menu" />
704 <xsl:apply-templates select="node()">
705 <xsl:with-param name="mixed" select="true()" />
706 </xsl:apply-templates>
711 <xsl:template match="begin">
713 <xsl:call-template name="standard-attributes" />
714 <xsl:attribute name="theme-class">
715 <xsl:value-of select="substring-after(@id, 'b')" />
720 <xsl:template match="extra|uwaga">
721 <span x-common="common">
722 <xsl:call-template name="standard-attributes" />
723 <xsl:apply-templates select="child::node()">
724 <xsl:with-param name="mixed" select="true()" />
725 </xsl:apply-templates>
729 <xsl:template match="motyw">
730 <span x-editable="true" x-common="common">
731 <xsl:call-template name="standard-attributes" />
732 <xsl:attribute name="theme-class">
733 <xsl:value-of select="substring-after(@id, 'm')" />
735 <xsl:call-template name="context-menu" />
736 <span x-pass-thru="true" class="theme-text-list"><xsl:value-of select=".|node()" /></span>
740 <xsl:template match="end">
742 <xsl:call-template name="standard-attributes" />
743 <xsl:attribute name="theme-class">
744 <xsl:value-of select="substring-after(@id, 'e')" />
750 **************************
752 **************************
758 <xsl:template match="lista">
759 <xsl:variable name="listtag">
761 <xsl:when test="@typ='num' or @typ='alfa'">ol</xsl:when>
762 <xsl:when test="@typ='punkt' or @typ='slowniczek' or @typ='czytelnia'">ul</xsl:when>
763 <xsl:otherwise>ul</xsl:otherwise>
766 <xsl:element name="{$listtag}">
767 <xsl:call-template name="standard-attributes" />
768 <xsl:apply-templates select="child::node()">
769 <xsl:with-param name="mixed" select="true()" />
770 </xsl:apply-templates>
775 <xsl:template match="punkt[../@typ='slowniczek']">
776 <dl x-node="punkt" class="punkt">
777 <xsl:call-template name="standard-attributes" />
778 <xsl:apply-templates select="child::node()">
779 <xsl:with-param name="mixed" select="true()" />
780 </xsl:apply-templates>
784 <xsl:template match="punkt[../@typ!='slowniczek']">
785 <li x-editable="true" x-node="punkt" class="punkt">
786 <xsl:call-template name="standard-attributes" />
787 <xsl:apply-templates select="child::node()">
788 <xsl:with-param name="mixed" select="true()" />
789 </xsl:apply-templates>
796 <xsl:template match="definiendum">
797 <dt x-editable="true" x-node="definiendum" class="definiendum">
798 <xsl:call-template name="standard-attributes" />
799 <xsl:apply-templates select="child::node()">
800 <xsl:with-param name="mixed" select="true()" />
801 </xsl:apply-templates>
805 <xsl:template match="definiens">
806 <dd x-editable="true" x-node="definiendum" class="definiendum">
807 <xsl:call-template name="standard-attributes" />
808 <xsl:apply-templates select="child::node()">
809 <xsl:with-param name="mixed" select="true()" />
810 </xsl:apply-templates>
818 <xsl:template match="wiersz">
820 <xsl:call-template name="standard-attributes" />
821 <xsl:apply-templates select="child::node()">
822 <xsl:with-param name="mixed" select="true()" />
823 </xsl:apply-templates>
828 <xsl:template match="kol">
830 <xsl:call-template name="standard-attributes" />
831 <div x-editable="true" x-node="kol-inside" x-pass-thru="true">
832 <xsl:apply-templates select="child::node()">
833 <xsl:with-param name="mixed" select="true()" />
834 </xsl:apply-templates>
843 <xsl:template match="obraz">
844 <img x-node="obraz" src="http://i.imgur.com/{@name}.jpg" class="obraz">
845 <xsl:call-template name="standard-attributes" />
852 <xsl:template match="pomoce|forma|czas|opis|kol-inside">
853 <span x-editable="true">
854 <xsl:call-template name="standard-attributes" />
855 <xsl:apply-templates select="child::node()">
856 <xsl:with-param name="mixed" select="true()" />
857 </xsl:apply-templates>
869 <xsl:template match="text()">
870 <!-- <xsl:value-of select="." /> -->
871 <xsl:param name="mixed" />
873 <xsl:when test="normalize-space(.) = ''">
874 <xsl:value-of select="." />
876 <xsl:when test="not($mixed)">
877 <span x-node="out-of-flow-text" class="out-of-flow-text" x-editable="true">
878 <xsl:value-of select="." />
881 <xsl:otherwise><xsl:value-of select="." /></xsl:otherwise>
885 <xsl:template match="comment()">
886 <xsl:comment><xsl:value-of select="." /></xsl:comment>
889 <xsl:template match="*[name() != local-name()]">
891 <xsl:call-template name="standard-attributes" />
892 <xsl:apply-templates select="child::node()">
893 <xsl:with-param name="mixed" select="true()" />
894 </xsl:apply-templates>
899 Earlier versions of html2wl introduced a BUG, that 'causes "out-of-flow-text" tag to appear.
900 Instead of marking it as "unknown", just pass thru it.
901 Keep a pass-thru span for out-of-flow box editing
903 <xsl:template match="out-of-flow-text">
904 <span data-pass-thru="true">
905 <xsl:apply-templates select="child::node()">
906 <xsl:with-param name="mixed" select="false()" />
907 </xsl:apply-templates>
911 <xsl:template match="*">
913 <xsl:call-template name="standard-attributes">
914 <xsl:with-param name="extra-class">unknown-tag</xsl:with-param>
916 <xsl:apply-templates select="child::node()">
917 <xsl:with-param name="mixed" select="true()" />
918 </xsl:apply-templates>
922 <xsl:template name="context-menu">
923 <!-- <span class="default-menu context-menu"> -->
924 <!-- <button class="edit-button">Edytuj</button> -->
925 <!-- <span class="delete-button">Delete</span> -->
927 <!-- <span class="edit-menu context-menu">
928 <span class="accept-button">Accept</span>
929 <span class="reject-button">Close</span>
933 <xsl:template name="standard-attributes">
934 <xsl:param name="extra-class" />
935 <xsl:attribute name="class"><xsl:value-of select="local-name()" /><xsl:text> </xsl:text><xsl:value-of select="$extra-class" /></xsl:attribute>
937 <xsl:attribute name="x-node"><xsl:value-of select="local-name()" /></xsl:attribute>
939 <xsl:if test="local-name() != name()">
940 <xsl:attribute name="x-ns"><xsl:value-of select="namespace-uri()" /></xsl:attribute>
943 <xsl:for-each select="@*">
944 <xsl:variable name="id" select="generate-id()" />
945 <xsl:attribute name="x-attr-value-{$id}"><xsl:value-of select="."/></xsl:attribute>
946 <xsl:attribute name="x-attr-name-{$id}"><xsl:value-of select="local-name()"/></xsl:attribute>
948 <xsl:when test="namespace-uri()">
949 <xsl:attribute name="x-attr-ns-{$id}"><xsl:value-of select="namespace-uri()"/></xsl:attribute>
951 <!-- if the element belongs to default namespace and attribut has no namespace -->
952 <xsl:when test="not(namespace-uri(.))">
953 <xsl:attribute name="data-wlf-{local-name()}"><xsl:value-of select="."/></xsl:attribute>
959 <xsl:template match="alien">
960 <span class="alien" x-pass-thru="true">
961 <xsl:apply-templates select="node()">
962 <xsl:with-param name="mixed" select="true()" />
963 </xsl:apply-templates>
967 <xsl:template match="comment()">
968 <xsl:comment><xsl:value-of select="."/></xsl:comment>