X-Git-Url: https://git.mdrn.pl/librarian.git/blobdiff_plain/387bff61a13e750e1ef4e015025415a8b311b25b..3acdb97ed96bb54a04c031e017c2059f86db57e4:/librarian/epub/xsltLast.xsl?ds=inline diff --git a/librarian/epub/xsltLast.xsl b/librarian/epub/xsltLast.xsl index 0a4ca5f..34d42f7 100644 --- a/librarian/epub/xsltLast.xsl +++ b/librarian/epub/xsltLast.xsl @@ -9,7 +9,7 @@ <xsl:output doctype-system="http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd" /> <xsl:output doctype-public="-//W3C//DTD XHTML 1.1//EN" /> - <xsl:template match="/"> + <xsl:template match="utwor"> <html> <head> <link rel="stylesheet" href="style.css" type="text/css" /> @@ -32,7 +32,7 @@ </a> </xsl:when> <xsl:otherwise> - Ten utwór nie jest chroniony prawem autorskim i znajduje siÄ w domenie + Ten utwór nie jest objÄty majÄ tkowym prawem autorskim i znajduje siÄ w domenie publicznej, co oznacza że możesz go swobodnie wykorzystywaÄ, publikowaÄ i rozpowszechniaÄ. JeÅli utwór opatrzony jest dodatkowymi materiaÅami (przypisy, motywy literackie etc.), które podlegajÄ prawu autorskiemu, to @@ -48,7 +48,7 @@ <xsl:value-of select="//dc:identifier.url" /> </xsl:attribute> <xsl:attribute name="title"> - <xsl:value-of select="wl:person_name(//dc:creator/text())" />, <xsl:value-of select="//dc:title" /> + <xsl:for-each select="//dc:creator/text()"><xsl:value-of select="wl:person_name(.)"/>, </xsl:for-each><xsl:value-of select="//dc:title" /> </xsl:attribute> <xsl:value-of select="//dc:identifier.url" /> </a></p> @@ -63,8 +63,28 @@ <xsl:call-template name="editors" /> + <xsl:call-template name="funders" /> + + <xsl:if test="@data-cover-by"> + <p class="info">OkÅadka na podstawie: + <xsl:choose> + <xsl:when test="@data-cover-source"> + <a> + <xsl:attribute name="href"> + <xsl:value-of select="@data-cover-source" /> + </xsl:attribute> + <xsl:value-of select="@data-cover-by" /> + </a> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="@data-cover-by" /> + </xsl:otherwise> + </xsl:choose> + </p> + </xsl:if> + <p class="info"> </p> - <p class="minor info"> + <p class="minor-info"> Plik wygenerowany dnia <span id="file_date"><xsl:value-of select="substring(date:date(), 1, 10)" /></span>. </p> @@ -74,27 +94,25 @@ </xsl:template> <xsl:template match="text()" > - <xsl:value-of select="." disable-output-escaping="yes" /> + <xsl:value-of select="." /> </xsl:template> <xsl:template name="editors"> - <xsl:if test="//dc:contributor.editor[text()]|//dc:contributor.technical_editor[text()]"> + <xsl:if test="@editors"> <p class="info"> <xsl:text>Opracowanie redakcyjne i przypisy: </xsl:text> - <xsl:for-each select="//dc:contributor.editor[text()]|//dc:contributor.technical_editor[text() and not(//dc:contributor.editor/text()=text())]"> - <xsl:sort /> - <xsl:if test="position() != 1">, </xsl:if> - <xsl:apply-templates mode="person" /> - </xsl:for-each>. - </p> + <xsl:value-of select="@editors" />.</p> </xsl:if> </xsl:template> - <xsl:template match="dc:contributor.editor|dc:contributor.technical_editor"> - <br /><xsl:apply-templates mode='person' /> + <xsl:template name="funders"> + <xsl:if test="@funders"> + <p class="minor-info">PublikacjÄ ufundowali i ufundowaÅy: + <xsl:value-of select="@funders" />.</p> + </xsl:if> </xsl:template> <xsl:template match="text()" mode="person"> <xsl:value-of select="wl:person_name(.)" /> </xsl:template> -</xsl:stylesheet> \ No newline at end of file +</xsl:stylesheet>