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:param name="outputtype"/>
11 <xsl:template match="utwor">
14 <link rel="stylesheet" href="style.css" type="text/css" />
15 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
17 <xsl:text>Strona redakcyjna</xsl:text>
24 <xsl:when test="//dc:rights.license">
25 Ten utwór jest udostępniony na licencji
27 <xsl:attribute name="href">
28 <xsl:value-of select="//dc:rights.license" />
30 <xsl:value-of select="//dc:rights" />
34 Ten utwór nie jest objęty majątkowym prawem autorskim i znajduje się w domenie
35 publicznej, co oznacza że możesz go swobodnie wykorzystywać, publikować
36 i rozpowszechniać. Jeśli utwór opatrzony jest dodatkowymi materiałami
37 (przypisy, motywy literackie etc.), które podlegają prawu autorskiemu, to
38 te dodatkowe materiały udostępnione są na licencji
39 <a href="http://creativecommons.org/licenses/by-sa/3.0/">Creative Commons
40 Uznanie Autorstwa – Na Tych Samych Warunkach 3.0 PL</a>.
45 <p class="info">Źródło: <a>
46 <xsl:attribute name="href">
47 <xsl:value-of select="//dc:identifier.url" />
49 <xsl:attribute name="title">
50 <xsl:for-each select="//dc:creator/text()"><xsl:value-of select="wl:person_name(.)"/>, </xsl:for-each><xsl:value-of select="//dc:title" />
52 <xsl:value-of select="//dc:identifier.url" />
55 <xsl:if test="//dc:source" >
56 <p class="info">Tekst opracowany na podstawie: <xsl:value-of select="//dc:source" /></p>
59 <xsl:if test="//dc:publisher">
62 <xsl:for-each select="//dc:publisher/text()">
63 <xsl:value-of select="."/>
64 <xsl:if test="not(position() = last())">, </xsl:if>
69 <xsl:if test="//dc:description" >
70 <p class="info"><xsl:value-of select="//dc:description" /></p>
73 <xsl:call-template name="editors" />
75 <xsl:call-template name="funders" />
77 <xsl:if test="@data-cover-by">
78 <p class="info">Okładka na podstawie:
80 <xsl:when test="@data-cover-source">
82 <xsl:attribute name="href">
83 <xsl:value-of select="@data-cover-source" />
85 <xsl:value-of select="@data-cover-by" />
89 <xsl:value-of select="@data-cover-by" />
95 <xsl:variable name="isbnId" select="concat($outputtype, '-id')"/>
96 <xsl:if test=".//meta[@id=$isbnId]">
97 <xsl:variable name="isbn" select=".//meta[@id=$isbnId]"/>
98 <p class="info">ISBN <xsl:value-of select="substring-after($isbn, 'ISBN-')"/></p>
101 <p class="info"> </p>
102 <p class="minor-info">
103 Plik wygenerowany dnia <span id="file_date"><xsl:value-of select="substring(date:date(), 1, 10)" /></span>.
111 <xsl:template match="text()" >
112 <xsl:value-of select="." />
115 <xsl:template name="editors">
116 <xsl:if test="@editors">
118 <xsl:text>Opracowanie redakcyjne i przypisy: </xsl:text>
119 <xsl:value-of select="@editors" />.</p>
123 <xsl:template name="funders">
124 <xsl:if test="@funders">
125 <p class="minor-info">Publikację wsparli i wsparły:
126 <xsl:value-of select="@funders" />.</p>
130 <xsl:template match="text()" mode="person">
131 <xsl:value-of select="wl:person_name(.)" />