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" />
11 <xsl:param name="outputtype"/>
13 <xsl:template match="utwor">
16 <link rel="stylesheet" href="style.css" type="text/css" />
17 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
19 <xsl:text>Strona redakcyjna</xsl:text>
26 <xsl:when test="//dc:rights.license">
27 Ten utwór jest udostepniony na licencji
29 <xsl:attribute name="href">
30 <xsl:value-of select="//dc:rights.license" />
32 <xsl:value-of select="//dc:rights" />
36 Ten utwór nie jest objęty majątkowym prawem autorskim i znajduje się w domenie
37 publicznej, co oznacza że możesz go swobodnie wykorzystywać, publikować
38 i rozpowszechniać. Jeśli utwór opatrzony jest dodatkowymi materiałami
39 (przypisy, motywy literackie etc.), które podlegają prawu autorskiemu, to
40 te dodatkowe materiały udostępnione są na licencji
41 <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons
42 Uznanie Autorstwa – Na Tych Samych Warunkach 3.0 PL</a>.
47 <p class="info">Źródło: <a>
48 <xsl:attribute name="href">
49 <xsl:value-of select="//dc:identifier.url" />
51 <xsl:attribute name="title">
52 <xsl:for-each select="//dc:creator/text()"><xsl:value-of select="wl:person_name(.)"/>, </xsl:for-each><xsl:value-of select="//dc:title" />
54 <xsl:value-of select="//dc:identifier.url" />
57 <xsl:if test="//dc:source" >
58 <p class="info">Tekst opracowany na podstawie: <xsl:value-of select="//dc:source" /></p>
61 <xsl:if test="//dc:publisher">
64 <xsl:for-each select="//dc:publisher/text()">
65 <xsl:value-of select="."/>
66 <xsl:if test="not(position() = last())">, </xsl:if>
71 <xsl:if test="//dc:description" >
72 <p class="info"><xsl:value-of select="//dc:description" /></p>
75 <xsl:call-template name="editors" />
77 <xsl:call-template name="funders" />
79 <xsl:if test="@data-cover-by">
80 <p class="info">Okładka na podstawie:
82 <xsl:when test="@data-cover-source">
84 <xsl:attribute name="href">
85 <xsl:value-of select="@data-cover-source" />
87 <xsl:value-of select="@data-cover-by" />
91 <xsl:value-of select="@data-cover-by" />
97 <xsl:variable name="isbnId" select="concat($outputtype, '-id')"/>
98 <xsl:if test=".//meta[@id=$isbnId]">
99 <xsl:variable name="isbn" select=".//meta[@id=$isbnId]"/>
100 <p class="info">ISBN <xsl:value-of select="substring-after($isbn, 'ISBN-')"/></p>
103 <p class="info"> </p>
104 <p class="minor-info">
105 Plik wygenerowany dnia <span id="file_date"><xsl:value-of select="substring(date:date(), 1, 10)" /></span>.
113 <xsl:template match="text()" >
114 <xsl:value-of select="." />
117 <xsl:template name="editors">
118 <xsl:if test="@editors">
120 <xsl:text>Opracowanie redakcyjne i przypisy: </xsl:text>
121 <xsl:value-of select="@editors" />.</p>
125 <xsl:template name="funders">
126 <xsl:if test="@funders">
127 <p class="minor-info">Publikację wsparli i wsparły:
128 <xsl:value-of select="@funders" />.</p>
132 <xsl:template match="text()" mode="person">
133 <xsl:value-of select="wl:person_name(.)" />