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"
5 xmlns:dc="http://purl.org/dc/elements/1.1/"
6 xmlns:wl="http://wolnelektury.pl/functions"
7 xmlns:date="http://exslt.org/dates-and-times">
8 <xsl:output method="html" version="1.0" encoding="utf-8" />
9 <xsl:output doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" />
10 <xsl:output doctype-public="-//W3C//DTD XHTML 1.1//EN" />
12 <xsl:template match="utwor">
15 <link rel="stylesheet" href="style.css" type="text/css" />
16 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
18 <xsl:text>Strona redakcyjna</xsl:text>
25 <xsl:when test="//dc:rights.license">
26 Ten utwór jest udostepniony na licencji
28 <xsl:attribute name="href">
29 <xsl:value-of select="//dc:rights.license" />
31 <xsl:value-of select="//dc:rights" />
35 Ten utwór nie jest chroniony prawem autorskim i znajduje się w domenie
36 publicznej, co oznacza że możesz go swobodnie wykorzystywać, publikować
37 i rozpowszechniać. Jeśli utwór opatrzony jest dodatkowymi materiałami
38 (przypisy, motywy literackie etc.), które podlegają prawu autorskiemu, to
39 te dodatkowe materiały udostępnione są na licencji
40 <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons
41 Uznanie Autorstwa – Na Tych Samych Warunkach 3.0 PL</a>.
46 <p class="info">Źródło: <a>
47 <xsl:attribute name="href">
48 <xsl:value-of select="//dc:identifier.url" />
50 <xsl:attribute name="title">
51 <xsl:value-of select="wl:person_name(//dc:creator/text())" />, <xsl:value-of select="//dc:title" />
53 <xsl:value-of select="//dc:identifier.url" />
56 <xsl:if test="//dc:source" >
57 <p class="info">Tekst opracowany na podstawie: <xsl:value-of select="//dc:source" /></p>
60 <xsl:if test="//dc:description" >
61 <p class="info"><xsl:value-of select="//dc:description" /></p>
64 <xsl:call-template name="editors" />
66 <xsl:if test="@data-cover-by">
67 <p class="info">Okładka na podstawie:
69 <xsl:when test="@data-cover-source">
71 <xsl:attribute name="href">
72 <xsl:value-of select="@data-cover-source" />
74 <xsl:value-of select="@data-cover-by" />
78 <xsl:value-of select="@data-cover-by" />
85 <img src="jedenprocent.png" alt="Logo 1%" />
86 <div>Przekaż 1% podatku na rozwój Wolnych Lektur.</div>
87 <div>Nazwa organizacji: Fundacja Nowoczesna Polska</div>
88 <div>KRS 0000070056</div>
91 <p class="info"> </p>
92 <p class="minor info">
93 Plik wygenerowany dnia <span id="file_date"><xsl:value-of select="substring(date:date(), 1, 10)" /></span>.
101 <xsl:template match="text()" >
102 <xsl:value-of select="." />
105 <xsl:template name="editors">
106 <xsl:if test="@editors">
108 <xsl:text>Opracowanie redakcyjne i przypisy: </xsl:text>
109 <xsl:value-of select="@editors" />.</p>
113 <xsl:template match="text()" mode="person">
114 <xsl:value-of select="wl:person_name(.)" />