00b587e5cc
In some XSLT, "items" namespace is used in exclude-result-prefixes but is not defined. This patch add this namespace where missing. Also corrects a koha.org, instead of koha-community.org, in one namespace URL. Test plan : - Enable XSLT on search results - Perform a search => Look at error logs to check that there is no xsl error like : [Fri Feb 08 15:35:06 2013] [error] [client 127.0.0.1] [Fri Feb 8 15:35:06 2013] opac-search.pl: compilation error: file koha-tmpl/opac-tmpl/prog/en/xslt/UNIMARCslimUtils.xsl line 8 element stylesheet, referer: http://opac.master.community.localhost/cgi-bin/koha/opac-detail.pl?biblionumber=299 [Fri Feb 08 15:35:06 2013] [error] [client 127.0.0.1] [Fri Feb 8 15:35:06 2013] opac-search.pl: xsl:exclude-result-prefixes : undefined namespace items, referer: http://opac.master.community.localhost/cgi-bin/koha/opac-detail.pl?biblionumber=299 Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Mathieu Saby <mathieu.saby@univ-rennes2.fr> Passed-QA-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> With comment on Bugzilla. Signed-off-by: Paul Poulain <paul.poulain@biblibre.com> Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
364 lines
13 KiB
XML
364 lines
13 KiB
XML
<?xml version='1.0'?>
|
|
|
|
<!DOCTYPE stylesheet [<!ENTITY nbsp " " >]>
|
|
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:marc="http://www.loc.gov/MARC21/slim"
|
|
xmlns:items="http://www.koha-community.org/items"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
exclude-result-prefixes="marc items">
|
|
|
|
<xsl:template name="datafield">
|
|
<xsl:param name="tag"/>
|
|
<xsl:param name="ind1"><xsl:text> </xsl:text></xsl:param>
|
|
<xsl:param name="ind2"><xsl:text> </xsl:text></xsl:param>
|
|
<xsl:param name="subfields"/>
|
|
<xsl:element name="datafield">
|
|
<xsl:attribute name="tag">
|
|
<xsl:value-of select="$tag"/>
|
|
</xsl:attribute>
|
|
<xsl:attribute name="ind1">
|
|
<xsl:value-of select="$ind1"/>
|
|
</xsl:attribute>
|
|
<xsl:attribute name="ind2">
|
|
<xsl:value-of select="$ind2"/>
|
|
</xsl:attribute>
|
|
<xsl:copy-of select="$subfields"/>
|
|
</xsl:element>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="subfieldSelect">
|
|
<xsl:param name="codes"/>
|
|
<xsl:param name="delimeter"><xsl:text> </xsl:text></xsl:param>
|
|
<xsl:param name="subdivCodes"/>
|
|
<xsl:param name="subdivDelimiter"/>
|
|
<xsl:variable name="str">
|
|
<xsl:for-each select="marc:subfield">
|
|
<xsl:if test="contains($codes, @code)">
|
|
<xsl:if test="contains($subdivCodes, @code)">
|
|
<xsl:value-of select="$subdivDelimiter"/>
|
|
</xsl:if>
|
|
<xsl:value-of select="text()"/><xsl:value-of select="$delimeter"/>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</xsl:variable>
|
|
<xsl:value-of select="substring($str,1,string-length($str)-string-length($delimeter))"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="buildSpaces">
|
|
<xsl:param name="spaces"/>
|
|
<xsl:param name="char"><xsl:text> </xsl:text></xsl:param>
|
|
<xsl:if test="$spaces>0">
|
|
<xsl:value-of select="$char"/>
|
|
<xsl:call-template name="buildSpaces">
|
|
<xsl:with-param name="spaces" select="$spaces - 1"/>
|
|
<xsl:with-param name="char" select="$char"/>
|
|
</xsl:call-template>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="chopPunctuation">
|
|
<xsl:param name="chopString"/>
|
|
<xsl:variable name="length" select="string-length($chopString)"/>
|
|
<xsl:choose>
|
|
<xsl:when test="$length=0"/>
|
|
<xsl:when test="contains('.:,;/ ', substring($chopString,$length,1))">
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString" select="substring($chopString,1,$length - 1)"/>
|
|
</xsl:call-template>
|
|
</xsl:when>
|
|
<xsl:when test="not($chopString)"/>
|
|
<xsl:otherwise><xsl:value-of select="$chopString"/></xsl:otherwise>
|
|
</xsl:choose>
|
|
<xsl:text> </xsl:text>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="addClassRtl">
|
|
<xsl:variable name="lang" select="marc:subfield[@code='7']" />
|
|
<xsl:if test="$lang = 'ha' or $lang = 'Hebrew' or $lang = 'fa' or $lang = 'Arabe'">
|
|
<xsl:attribute name="class">rtl</xsl:attribute>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="tag_title">
|
|
<xsl:param name="tag" />
|
|
<xsl:param name="label" />
|
|
<xsl:if test="marc:datafield[@tag=$tag]">
|
|
<span class="results_summary">
|
|
<span class="label">
|
|
<xsl:value-of select="$label"/>: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=$tag]">
|
|
<xsl:call-template name="addClassRtl" />
|
|
<xsl:for-each select="marc:subfield">
|
|
<xsl:choose>
|
|
<xsl:when test="@code='a'">
|
|
<xsl:variable name="title" select="."/>
|
|
<xsl:variable name="ntitle"
|
|
select="translate($title, 'ˆ‰˜œ','')"/>
|
|
<xsl:value-of select="$ntitle" />
|
|
</xsl:when>
|
|
<xsl:when test="@code='b'">
|
|
<xsl:text>[</xsl:text>
|
|
<xsl:value-of select="."/>
|
|
<xsl:text>]</xsl:text>
|
|
</xsl:when>
|
|
<xsl:when test="@code='d'">
|
|
<xsl:text> = </xsl:text>
|
|
<xsl:value-of select="."/>
|
|
</xsl:when>
|
|
<xsl:when test="@code='e'">
|
|
<xsl:text> : </xsl:text>
|
|
<xsl:value-of select="."/>
|
|
</xsl:when>
|
|
<xsl:when test="@code='f'">
|
|
<xsl:text> / </xsl:text>
|
|
<xsl:value-of select="."/>
|
|
</xsl:when>
|
|
<xsl:when test="@code='g'">
|
|
<xsl:text> ; </xsl:text>
|
|
<xsl:value-of select="."/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:if test="position()>1">
|
|
<xsl:text>, </xsl:text>
|
|
</xsl:if>
|
|
<xsl:value-of select="."/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:for-each>
|
|
<xsl:if test="not (position() = last())">
|
|
<xsl:text> • </xsl:text>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="tag_comma">
|
|
<xsl:param name="tag" />
|
|
<xsl:param name="label" />
|
|
<xsl:if test="marc:datafield[@tag=$tag]">
|
|
<span class="results_summary">
|
|
<span class="label">
|
|
<xsl:value-of select="$label"/>: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=$tag]">
|
|
<xsl:call-template name="addClassRtl" />
|
|
<xsl:for-each select="marc:subfield">
|
|
<xsl:if test="position()>1">
|
|
<xsl:text>, </xsl:text>
|
|
</xsl:if>
|
|
<xsl:value-of select="."/>
|
|
</xsl:for-each>
|
|
<xsl:if test="not (position() = last())">
|
|
<xsl:text> • </xsl:text>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="tag_210">
|
|
<span class="results_summary">
|
|
<span class="label">Publication:</span>
|
|
<xsl:for-each select="marc:datafield[@tag=210]">
|
|
<span>
|
|
<xsl:call-template name="addClassRtl" />
|
|
<xsl:for-each select="marc:subfield">
|
|
<xsl:choose>
|
|
<xsl:when test="@code='c' or @code='g'">
|
|
<xsl:if test="position()>1">
|
|
<xsl:text> : </xsl:text>
|
|
</xsl:if>
|
|
<xsl:value-of select="."/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:if test="position()>1">
|
|
<xsl:text>, </xsl:text>
|
|
</xsl:if>
|
|
<xsl:value-of select="."/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:for-each>
|
|
<xsl:if test="not (position() = last())">
|
|
<xsl:text> • </xsl:text>
|
|
</xsl:if>
|
|
</span>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="tag_215">
|
|
<xsl:for-each select="marc:datafield[@tag=215]">
|
|
<span class="results_summary">
|
|
<span class="label">Description: </span>
|
|
<xsl:if test="marc:subfield[@code='a']">
|
|
<xsl:value-of select="marc:subfield[@code='a']"/>
|
|
</xsl:if>
|
|
<xsl:if test="marc:subfield[@code='c']"> :
|
|
<xsl:value-of select="marc:subfield[@code='c']"/>
|
|
</xsl:if>
|
|
<xsl:if test="marc:subfield[@code='d']"> ;
|
|
<xsl:value-of select="marc:subfield[@code='d']"/>
|
|
</xsl:if>
|
|
<xsl:if test="marc:subfield[@code='e']"> +
|
|
<xsl:value-of select="marc:subfield[@code='e']"/>
|
|
</xsl:if>
|
|
</span>
|
|
</xsl:for-each>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="tag_onesubject">
|
|
<xsl:choose>
|
|
<xsl:when test="marc:subfield[@code=9]">
|
|
<xsl:for-each select="marc:subfield">
|
|
<xsl:if test="@code='9'">
|
|
<xsl:variable name="start" select="position()"/>
|
|
<xsl:variable name="ends">
|
|
<xsl:for-each select="../marc:subfield[position() > $start]">
|
|
<xsl:if test="@code=9">
|
|
<xsl:variable name="end" select="position() + $start"/>
|
|
<xsl:value-of select="$end"/>
|
|
<xsl:text>,</xsl:text>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</xsl:variable>
|
|
<xsl:variable name="end">
|
|
<xsl:choose>
|
|
<xsl:when test="string-length($ends) > 0">
|
|
<xsl:value-of select="substring-before($ends,',')"/>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:text>1000</xsl:text>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<xsl:variable name="display">
|
|
<xsl:for-each select="../marc:subfield[position() > $start and position() < $end and @code!=2 and @code!=3]">
|
|
<xsl:value-of select="."/>
|
|
<xsl:if test="not(position()=last())">
|
|
<xsl:text>, </xsl:text>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</xsl:variable>
|
|
<a>
|
|
<xsl:attribute name="href">
|
|
<xsl:text>/cgi-bin/koha/opac-search.pl?q=an:</xsl:text>
|
|
<xsl:value-of select="."/>
|
|
</xsl:attribute>
|
|
<xsl:choose>
|
|
<xsl:when test="string-length($display) > 0">
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString">
|
|
<xsl:value-of select="$display"/>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="."/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</a>
|
|
<xsl:variable name="ncommas"
|
|
select="string-length($ends) - string-length(translate($ends, ',', ''))" />
|
|
<xsl:if test="$ncommas > 1">
|
|
<xsl:text> -- </xsl:text>
|
|
</xsl:if>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</xsl:when>
|
|
<xsl:when test="marc:subfield[@code=a]">
|
|
<a>
|
|
<xsl:attribute name="href">
|
|
<xsl:text>/cgi-bin/koha/opac-search.pl?q=su:</xsl:text>
|
|
<xsl:value-of select="marc:subfield[@code='a']"/>
|
|
</xsl:attribute>
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">abcdfijkmnpvxyz</xsl:with-param>
|
|
<xsl:with-param name="subdivCodes">ijknpxyz</xsl:with-param>
|
|
<xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
</a>
|
|
</xsl:when>
|
|
<xsl:otherwise/>
|
|
</xsl:choose>
|
|
<xsl:if test="not(position()=last())">
|
|
<xsl:text> | </xsl:text>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="tag_subject">
|
|
<xsl:param name="tag" />
|
|
<xsl:param name="label" />
|
|
<xsl:if test="marc:datafield[@tag=$tag]">
|
|
<span class="results_summary">
|
|
<span class="label">
|
|
<xsl:value-of select="$label"/>
|
|
<xsl:text>: </xsl:text>
|
|
</span>
|
|
<span class="value">
|
|
<xsl:for-each select="marc:datafield[@tag=$tag]">
|
|
<xsl:call-template name="tag_onesubject">
|
|
</xsl:call-template>
|
|
</xsl:for-each>
|
|
</span>
|
|
</span>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="tag_7xx">
|
|
<xsl:param name="tag" />
|
|
<xsl:param name="label" />
|
|
<xsl:if test="marc:datafield[@tag=$tag]">
|
|
<span class="results_summary">
|
|
<span class="label">
|
|
<xsl:value-of select="$label" />
|
|
<xsl:text>: </xsl:text>
|
|
</span>
|
|
<span class="value">
|
|
<xsl:for-each select="marc:datafield[@tag=$tag]">
|
|
<a>
|
|
<xsl:choose>
|
|
<xsl:when test="marc:subfield[@code=9]">
|
|
<xsl:attribute name="href">
|
|
<xsl:text>/cgi-bin/koha/opac-search.pl?q=an:</xsl:text>
|
|
<xsl:value-of select="marc:subfield[@code=9]"/>
|
|
</xsl:attribute>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:attribute name="href">
|
|
<xsl:text>/cgi-bin/koha/opac-search.pl?q=au:</xsl:text>
|
|
<xsl:value-of select="marc:subfield[@code='a']"/>
|
|
<xsl:text> </xsl:text>
|
|
<xsl:value-of select="marc:subfield[@code='b']"/>
|
|
</xsl:attribute>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
<xsl:for-each select="marc:subfield[@code='a' or @code='b' or @code='4' or @code='c' or @code='d' or @code='f' or @code='g' or @code='p']">
|
|
<xsl:choose>
|
|
<xsl:when test="@code='9'">
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="."/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
<xsl:if test="not(position() = last())">
|
|
<xsl:text>, </xsl:text>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</a>
|
|
<xsl:if test="not(position() = last())">
|
|
<span style="padding: 3px;">
|
|
<xsl:text>;</xsl:text>
|
|
</span>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</span>
|
|
</span>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|