pagestyle empty
[librarian.git] / librarian / epub / xsltLast.xsl
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
12   <xsl:template match="utwor">
13     <html>
14       <head>
15         <link rel="stylesheet" href="style.css" type="text/css" />
16         <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" />
17         <title>
18           <xsl:text>Editorial page</xsl:text>
19         </title>
20       </head>
21       <body>
22         <div id="book-text" >
23           <p class="info">
24               <xsl:choose>
25                   <xsl:when test="//dc:rights.license">
26                       This book is available under the terms of
27                       <a>
28                           <xsl:attribute name="href">
29                               <xsl:value-of select="//dc:rights.license" />
30                           </xsl:attribute>
31                           <xsl:value-of select="//dc:rights" />
32                       </a>.
33                   </xsl:when>
34                   <xsl:otherwise>
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>.
42                   </xsl:otherwise>
43               </xsl:choose>
44           </p>
45
46           <p class="info">Published by <a href="http://nowoczesnapolska.org.pl">Modern Poland Foundation</a>, 2012.</p>
47
48           <xsl:call-template name="editors" />
49
50           <xsl:if test="@data-cover-by">
51             <p class="info">Cover image: 
52             <xsl:choose>
53             <xsl:when test="@data-cover-source">
54                 <a>
55                 <xsl:attribute name="href">
56                   <xsl:value-of select="@data-cover-source" />
57                 </xsl:attribute>
58                 <xsl:value-of select="@data-cover-by" />
59                 </a>
60             </xsl:when>
61             <xsl:otherwise>
62                 <xsl:value-of select="@data-cover-by" />
63             </xsl:otherwise>
64             </xsl:choose>
65             </p>
66           </xsl:if>
67         </div>
68       </body>
69     </html>
70   </xsl:template>
71
72   <xsl:template match="text()" >
73     <xsl:value-of select="." />
74   </xsl:template>
75
76   <xsl:template name="editors">
77     <xsl:if test="//dc:contributor.editor[text()]|//dc:contributor.technical_editor[text()]">
78         <p class="info">
79             <xsl:text>Technical editors: </xsl:text>
80             <xsl:for-each select="//dc:contributor.editor[text()]|//dc:contributor.technical_editor[text() and not(//dc:contributor.editor/text()=text())]">
81                 <xsl:sort />
82                 <xsl:if test="position() != 1">, </xsl:if>
83                 <xsl:apply-templates mode="person" />
84             </xsl:for-each>.
85         </p>
86     </xsl:if>
87   </xsl:template>
88
89   <xsl:template match="dc:contributor.editor|dc:contributor.technical_editor">
90       <br /><xsl:apply-templates mode='person' />
91   </xsl:template>
92
93   <xsl:template match="text()" mode="person">
94     <xsl:value-of select="wl:person_name(.)" />
95   </xsl:template>
96 </xsl:stylesheet>