<p class="info">Tekst opracowany na podstawie: <xsl:value-of select="//dc:source" /></p>
</xsl:if>
+ <xsl:if test=".//dc:publisher">
+ <p class="info">
+ Wydawca:
+ <xsl:for-each select="//dc:publisher/text()">
+ <xsl:value-of select="."/>
+ <xsl:if test="not(position() = last())">, </xsl:if>
+ </xsl:for-each>
+ </p>
+ </xsl:if>
+
<xsl:if test="//dc:description" >
<p class="info"><xsl:value-of select="//dc:description" /></p>
</xsl:if>
Tekst opracowany na podstawie: <TeXML escape="1"><xsl:apply-templates select=".//dc:source" mode="inline" /></TeXML>
\vspace{.6em}
</xsl:if>}
+ \def\publisherinfo{
+ <xsl:if test=".//dc:publisher">
+ Wydawca:
+ <TeXML escape="1">
+ <xsl:for-each select="//dc:publisher/text()">
+ <xsl:value-of select="."/>
+ <xsl:if test="not(position() = last())">, </xsl:if>
+ </xsl:for-each>
+ </TeXML>
+ \vspace{.6em}
+ </xsl:if>}
\def\description{<TeXML escape="1"><xsl:apply-templates select=".//dc:description" mode="inline" /></TeXML>}
</TeXML>
</xsl:template>
Utwór opracowany został w ramach projektu Wolne Lektury przez fundację Nowoczesna Polska.
-%(license_description)s.%(source)s
+%(license_description)s.%(source)s%(publisher)s
%(description)s%(contributors)s%(funders)s
"""
funders = ', '.join(parsed_dc.funders)
if funders:
funders = u"\n\nPublikację ufundowali i ufundowały: %s." % funders
+ publisher = '\n\nWydawca: ' + ', '.join(parsed_dc.publisher)
else:
description = 'Publikacja zrealizowana w ramach projektu Wolne Lektury (http://wolnelektury.pl).'
url = '*' * 10
source = ""
contributors = ""
funders = ""
+ publisher = ""
result = (TEMPLATE % {
'description': description,
'url': url,
'source': source,
'contributors': contributors,
'funders': funders,
+ 'publisher': publisher,
}).encode('utf-8')
else:
result = unicode(result).encode('utf-8')