Fridolin Somers
f38a9927a3
The special character "non breaking space" is not contained in XML syntax by default. So we add it in the file header : <!DOCTYPE stylesheet [<!ENTITY nbsp " " >]> Even if the source code files do no contain this character, it can be that translated files contain it. French for example "Titre :". This entity is missing in all files in koha-tmpl/intranet-tmpl/prog/en/data/ and in some files of koha-tmpl/intranet-tmpl/prog/en/xslt. Test plan : - generate French templates: cd misc/translator ./translate install fr-FR cd ../.. - run test: prove -v t/00-valid-xml.t you get failing error message - apply this patch - translate again - run test again: it passes Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> Works as described following test plan Tes pass, no errors. Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
652 lines
32 KiB
XML
652 lines
32 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
|
|
|
|
<!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:import href="NORMARCslimUtils.xsl"/>
|
|
<xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="marc:record">
|
|
|
|
<!-- Sysprefs -->
|
|
<xsl:variable name="UseControlNumber" select="marc:sysprefs/marc:syspref[@name='UseControlNumber']"/>
|
|
<xsl:variable name="OPACBaseURL" select="marc:sysprefs/marc:syspref[@name='OPACBaseURL']"/>
|
|
<xsl:variable name="SubjectModifier"><xsl:if test="marc:sysprefs/marc:syspref[@name='TraceCompleteSubfields']='1'">,complete-subfield</xsl:if></xsl:variable>
|
|
<xsl:variable name="TraceSubjectSubdivisions" select="marc:sysprefs/marc:syspref[@name='TraceSubjectSubdivisions']"/>
|
|
<xsl:variable name="OpacSuppression" select="marc:sysprefs/marc:syspref[@name='OpacSuppression']"/>
|
|
<xsl:variable name="TracingQuotesLeft">
|
|
<xsl:choose>
|
|
<xsl:when test="marc:sysprefs/marc:syspref[@name='UseICU']='1'">{</xsl:when>
|
|
<xsl:otherwise>"</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<xsl:variable name="TracingQuotesRight">
|
|
<xsl:choose>
|
|
<xsl:when test="marc:sysprefs/marc:syspref[@name='UseICU']='1'">}</xsl:when>
|
|
<xsl:otherwise>"</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
<xsl:variable name="DisplayOPACiconsXSLT" select="marc:sysprefs/marc:syspref[@name='DisplayOPACiconsXSLT']"/>
|
|
|
|
<xsl:variable name="leader" select="marc:leader"/>
|
|
<xsl:variable name="leader6" select="substring($leader,7,1)"/>
|
|
<xsl:variable name="leader7" select="substring($leader,8,1)"/>
|
|
<xsl:variable name="controlField008" select="marc:controlfield[@tag=008]"/>
|
|
<xsl:variable name="field019b" select="marc:datafield[@tag=019]/marc:subfield[@code='b']"/>
|
|
<xsl:variable name="biblionumber" select="marc:datafield[@tag=999]/marc:subfield[@code='c']"/>
|
|
<xsl:variable name="typeOf008">
|
|
<!-- The logic here should be exactly the same for NORMARCslim2intranetDetail.xsl, NORMARCslim2intranetResults.xsl, NORMARCslim2OPACDetail.xsl and NORMARCslim2OPACResults.xsl -->
|
|
<xsl:choose>
|
|
<xsl:when test="$field019b='b' or $field019b='k' or $field019b='l' or $leader6='b'">Mon</xsl:when>
|
|
<xsl:when test="$field019b='e' or contains($field019b,'ec') or contains($field019b,'ed') or contains($field019b,'ee') or contains($field019b,'ef') or $leader6='g'">FV</xsl:when>
|
|
<xsl:when test="$field019b='c' or $field019b='d' or contains($field019b,'da') or contains($field019b,'db') or contains($field019b,'dc') or contains($field019b,'dd') or contains($field019b,'dg') or contains($field019b,'dh') or contains($field019b,'di') or contains($field019b,'dj') or contains($field019b,'dk') or $leader6='c' or $leader6='d' or $leader6='i' or $leader6='j'">Mus</xsl:when>
|
|
<xsl:when test="$field019b='a' or contains($field019b,'ab') or contains($field019b,'aj') or $leader6='e' or $leader6='f'">Kar</xsl:when>
|
|
<xsl:when test="$field019b='f' or $field019b='i' or contains($field019b,'ib') or contains($field019b,'ic') or contains($field019b,'fd') or contains($field019b,'ff') or contains($field019b,'fi') or $leader6='k'">gra</xsl:when>
|
|
<xsl:when test="$field019b='g' or contains($field019b,'gb') or contains($field019b,'gd') or contains($field019b,'ge') or $leader6='m'">Fil</xsl:when>
|
|
<xsl:when test="$leader6='o'">kom</xsl:when>
|
|
<xsl:when test="$field019b='h' or $leader6='r'">trd</xsl:when>
|
|
<xsl:when test="$field019b='j' or $leader6='a'">
|
|
<xsl:choose>
|
|
<xsl:when test="$leader7='a' or $leader7='c' or $leader7='m' or $leader7='p'">Mon</xsl:when>
|
|
<xsl:when test="$field019b='j' or $leader7='b' or $leader7='s'">Per</xsl:when>
|
|
</xsl:choose>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
|
|
<!-- Indicate if record is suppressed in OPAC -->
|
|
<xsl:if test="$OpacSuppression = 1">
|
|
<xsl:if test="marc:datafield[@tag=942][marc:subfield[@code='n'] = '1']">
|
|
<span class="results_summary suppressed_opac">Suppressed in OPAC</span>
|
|
</xsl:if>
|
|
</xsl:if>
|
|
|
|
<!-- Tittel og ansvarsopplysninger -->
|
|
<xsl:if test="marc:datafield[@tag=245]">
|
|
<h1>
|
|
<xsl:for-each select="marc:datafield[@tag=245]">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">a</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:if test="marc:subfield[@code='h']">
|
|
<xsl:text> </xsl:text>
|
|
(<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">h</xsl:with-param>
|
|
</xsl:call-template>)
|
|
</xsl:if>
|
|
<xsl:if test="marc:subfield[@code='b']">
|
|
<xsl:text> : </xsl:text>
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">b</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:if>
|
|
<xsl:text> </xsl:text>
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">np</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:for-each>
|
|
</h1>
|
|
</xsl:if>
|
|
|
|
<!-- Author Statement -->
|
|
<!-- 245$9 is Koha authority number -->
|
|
<xsl:choose>
|
|
<xsl:when test="marc:datafield[@tag=100] or marc:datafield[@tag=110] or marc:datafield[@tag=111] or marc:datafield[@tag=700] or marc:datafield[@tag=710] or marc:datafield[@tag=711]">
|
|
<h5 class="author">av
|
|
<xsl:for-each select="marc:datafield[@tag=100 or @tag=700]">
|
|
<a>
|
|
<xsl:choose>
|
|
<xsl:when test="marc:subfield[@code=9]">
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=au:<xsl:value-of select="marc:subfield[@code='a']"/></xsl:attribute>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
<xsl:call-template name="nameABCDQ"/></a>
|
|
<xsl:choose>
|
|
<xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
|
|
</xsl:for-each>
|
|
|
|
<xsl:for-each select="marc:datafield[@tag=110 or @tag=710]">
|
|
<a>
|
|
<xsl:choose>
|
|
<xsl:when test="marc:subfield[@code=9]">
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=au:<xsl:value-of select="marc:subfield[@code='a']"/></xsl:attribute>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
<xsl:call-template name="nameABCDN"/></a>
|
|
<xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
|
|
</xsl:for-each>
|
|
|
|
<xsl:for-each select="marc:datafield[@tag=111 or @tag=711]">
|
|
<a>
|
|
<xsl:choose>
|
|
<xsl:when test="marc:subfield[@code=9]">
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=au:<xsl:value-of select="marc:subfield[@code='a']"/></xsl:attribute>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
<xsl:call-template name="nameACDEQ"/></a>
|
|
<xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
|
|
|
|
</xsl:for-each>
|
|
</h5>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
|
|
|
|
<xsl:if test="$typeOf008!=''">
|
|
<span class="results_summary">
|
|
<span class="label">Materialtype: </span>
|
|
<xsl:choose>
|
|
<xsl:when test="$typeOf008='Mon'"><img src="/intranet-tmpl/prog/img/famfamfam/BK.png" alt="Bok" title="Bok"/> Bok</xsl:when>
|
|
<xsl:when test="$typeOf008='Per'"><img src="/intranet-tmpl/prog/img/famfamfam/AR.png" alt="Periodika" title="Periodika"/> Periodika</xsl:when>
|
|
<xsl:when test="$typeOf008='Fil'"><img src="/intranet-tmpl/prog/img/famfamfam/CF.png" alt="Fil" title="Fil"/> Fil</xsl:when>
|
|
<xsl:when test="$typeOf008='Kar'"><img src="/intranet-tmpl/prog/img/famfamfam/MP.png" alt="Kart" title="Kart"/> Kart</xsl:when>
|
|
<xsl:when test="$typeOf008='FV'"><img src="/intranet-tmpl/prog/img/famfamfam/VM.png" alt="Film og video" title="Film og video"/> Film og video</xsl:when>
|
|
<xsl:when test="$typeOf008='Mus'"><img src="/intranet-tmpl/prog/img/famfamfam/PR.png" alt="Musikktrykk og lydopptak" title="Musikktrykk og lydopptak"/> Musikk</xsl:when>
|
|
<xsl:when test="$typeOf008='gra'"><img src="/intranet-tmpl/prog/img/famfamfam/GR.png" alt="Grafisk materiale" title="Grafisk materiale"/> Grafisk materiale</xsl:when>
|
|
<xsl:when test="$typeOf008='kom'"><img src="/intranet-tmpl/prog/img/famfamfam/MX.png" alt="Kombidokumenter" title="Kombidokumenter"/> Kombidokumenter</xsl:when>
|
|
<xsl:when test="$typeOf008='trd'"><img src="/intranet-tmpl/prog/img/famfamfam/TD.png" alt="Tre-dimensjonale gjenstander" title="Tre-dimensjonale gjenstander"/> Tre-dimensjonale gjenstander</xsl:when>
|
|
</xsl:choose>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<!--Series -->
|
|
<xsl:if test="marc:datafield[@tag=440 or @tag=490]">
|
|
<span class="results_summary"><span class="label">Series: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=440]">
|
|
<a href="/cgi-bin/koha/catalogue/search.pl?q=se:{marc:subfield[@code='a']}">
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">av</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
</a>
|
|
<xsl:text> </xsl:text><xsl:call-template name="part"/>
|
|
<xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
|
|
</xsl:for-each>
|
|
|
|
<xsl:for-each select="marc:datafield[@tag=490][@ind1=0]">
|
|
<a href="/cgi-bin/koha/catalogue/search.pl?q=se:{marc:subfield[@code='a']}">
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">av</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
</a>
|
|
<xsl:call-template name="part"/>
|
|
<xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<!-- Analytics -->
|
|
<xsl:if test="$leader7='s' or $leader7='c'">
|
|
<span class="results_summary analytics"><span class="label">Analytics: </span>
|
|
<a>
|
|
<xsl:choose>
|
|
<xsl:when test="$UseControlNumber = '1' and marc:controlfield[@tag=001]">
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=rcn:<xsl:value-of select="marc:controlfield[@tag=001]"/>+and+(bib-level:a+or+bib-level:b)</xsl:attribute>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=Host-item:<xsl:value-of select="translate(marc:datafield[@tag=245]/marc:subfield[@code='a'], '/', '')"/></xsl:attribute>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
<xsl:text>Show analytics</xsl:text>
|
|
</a>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<!-- 773 - Links from child to parent -->
|
|
<xsl:if test="marc:datafield[@tag=773]">
|
|
<xsl:for-each select="marc:datafield[@tag=773]">
|
|
<xsl:if test="@ind1=0">
|
|
<span class="results_summary in"><span class="label">
|
|
<xsl:choose>
|
|
<xsl:when test="@ind2=' '">
|
|
In:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=8">
|
|
<xsl:if test="marc:subfield[@code='i']">
|
|
<xsl:value-of select="marc:subfield[@code='i']"/>
|
|
</xsl:if>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
</span>
|
|
<xsl:variable name="f773">
|
|
<xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">a_t</xsl:with-param>
|
|
</xsl:call-template></xsl:with-param></xsl:call-template>
|
|
</xsl:variable>
|
|
<xsl:choose>
|
|
<xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
|
|
<a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=Control-number:<xsl:call-template name="extractControlNumber"><xsl:with-param name="subfieldW" select="marc:subfield[@code='w']"/></xsl:call-template></xsl:attribute>
|
|
<xsl:value-of select="translate($f773, '()', '')"/>
|
|
</a>
|
|
<xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
|
|
</xsl:when>
|
|
<xsl:when test="marc:subfield[@code='0']">
|
|
<a><xsl:attribute name="href">/cgi-bin/koha/catalogue/detail.pl?biblionumber=<xsl:value-of select="marc:subfield[@code='0']"/></xsl:attribute>
|
|
<xsl:value-of select="$f773"/>
|
|
</a>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=ti,phr:<xsl:value-of select="translate($f773, '()', '')"/></xsl:attribute>
|
|
<xsl:value-of select="$f773"/>
|
|
</a>
|
|
<xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</span>
|
|
<xsl:if test="marc:subfield[@code='n']">
|
|
<span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
|
|
</xsl:if>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</xsl:if>
|
|
|
|
<!-- Publisher Statement -->
|
|
|
|
<xsl:if test="marc:datafield[@tag=260]">
|
|
<span class="results_summary"><span class="label">Utgiver: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=260]">
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">bcg</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<!-- Edition Statement -->
|
|
|
|
<xsl:if test="marc:datafield[@tag=250]">
|
|
<span class="results_summary"><span class="label">Utgave: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=250]">
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">ab</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<!-- Description -->
|
|
|
|
<xsl:if test="marc:datafield[@tag=300]">
|
|
<span class="results_summary"><span class="label">Beskrivelse: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=300]">
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">abceg</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<abbr class="unapi-id" title="koha:biblionumber:{marc:datafield[@tag=999]/marc:subfield[@code='c']}" ><!-- unAPI --></abbr>
|
|
|
|
<!-- Build ISBN -->
|
|
<xsl:if test="marc:datafield[@tag=020]/marc:subfield[@code='a']">
|
|
<span class="results_summary isbn"><span class="label">ISBN: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=020]/marc:subfield[@code='a']">
|
|
<span property="isbn">
|
|
<xsl:value-of select="."/>
|
|
<xsl:choose>
|
|
<xsl:when test="position()=last()">
|
|
<xsl:text>.</xsl:text>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:text>; </xsl:text>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</span>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<!-- Build ISSN -->
|
|
<xsl:if test="marc:datafield[@tag=022]/marc:subfield[@code='a']">
|
|
<span class="results_summary issn"><span class="label">ISSN: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=022]/marc:subfield[@code='a']">
|
|
<span property="issn">
|
|
<xsl:value-of select="."/>
|
|
<xsl:choose>
|
|
<xsl:when test="position()=last()">
|
|
<xsl:text>.</xsl:text>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:text>; </xsl:text>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</span>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<!-- Other Title Statement -->
|
|
|
|
<xsl:if test="marc:datafield[@tag=246]">
|
|
<span class="results_summary"><span class="label">Parallelltittel: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=246]">
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">abhfgnp</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<!-- Uniform Title Statement -->
|
|
|
|
<xsl:if test="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
|
|
<span class="results_summary"><span class="label">Standardtittel: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
|
|
<xsl:variable name="str">
|
|
<xsl:for-each select="marc:subfield">
|
|
<xsl:if test="(contains('adfklmor',@code) and (not(../marc:subfield[@code='n' or @code='p']) or (following-sibling::marc:subfield[@code='n' or @code='p'])))">
|
|
<xsl:value-of select="text()"/>
|
|
<xsl:text> </xsl:text>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</xsl:variable>
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString">
|
|
<xsl:value-of select="substring($str,1,string-length($str)-1)"/>
|
|
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
<xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<!-- Subjects -->
|
|
|
|
<xsl:if test="marc:datafield[substring(@tag, 1, 1) = '6']">
|
|
<span class="results_summary subjects"><span class="label">Emne(r): </span>
|
|
<xsl:for-each select="marc:datafield[substring(@tag, 1, 1) = '6']">
|
|
<a>
|
|
<xsl:choose>
|
|
<!-- Will implement this later
|
|
<xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
|
|
</xsl:when>
|
|
-->
|
|
<xsl:when test="$TraceSubjectSubdivisions='1'">
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">abcdvxyz</xsl:with-param>
|
|
<xsl:with-param name="delimeter"> AND </xsl:with-param>
|
|
<xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/></xsl:with-param>
|
|
<xsl:with-param name="suffix"><xsl:value-of select="$TracingQuotesRight"/>)</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:attribute>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/><xsl:value-of select="marc:subfield[@code='a']"/><xsl:value-of select="$TracingQuotesRight"/></xsl:attribute>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">abcdvxyz</xsl:with-param>
|
|
<xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
|
|
<xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
</xsl:call-template>
|
|
</a>
|
|
<xsl:choose>
|
|
<xsl:when test="position()=last()"></xsl:when>
|
|
<xsl:otherwise> | </xsl:otherwise>
|
|
</xsl:choose>
|
|
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<xsl:if test="marc:datafield[@tag=856]">
|
|
<span class="results_summary"><span class="label">Nettbasert ressurs: </span>
|
|
<xsl:for-each select="marc:datafield[@tag=856]">
|
|
<a><xsl:attribute name="href"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute>
|
|
<xsl:choose>
|
|
<xsl:when test="marc:subfield[@code='y' or @code='3' or @code='z']">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">y3z</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:when>
|
|
<xsl:when test="not(marc:subfield[@code='y']) and not(marc:subfield[@code='3']) and not(marc:subfield[@code='z'])">
|
|
Klikk her for tilgang
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
</a>
|
|
<xsl:choose>
|
|
<xsl:when test="position()=last()"></xsl:when>
|
|
<xsl:otherwise> | </xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:for-each>
|
|
</span>
|
|
</xsl:if>
|
|
|
|
<!-- NORMARC does not define indicators for 505
|
|
<xsl:if test="marc:datafield[@tag=505]">
|
|
<xsl:for-each select="marc:datafield[@tag=505]">
|
|
<span class="results_summary"><span class="label">
|
|
<xsl:choose>
|
|
<xsl:when test="@ind1=0">
|
|
Contents:
|
|
</xsl:when>
|
|
<xsl:when test="@ind1=1">
|
|
Incomplete contents:
|
|
</xsl:when>
|
|
<xsl:when test="@ind1=1">
|
|
Partial contents:
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
</span>
|
|
<xsl:choose>
|
|
<xsl:when test="@ind2=0">
|
|
<xsl:for-each select="marc:subfield[@code='t']">
|
|
<xsl:value-of select="marc:subfield[@code=t]"/> <xsl:value-of select="marc:subfield[@code=r]"/>
|
|
</xsl:for-each>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">au</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</span>
|
|
</xsl:for-each>
|
|
</xsl:if>
|
|
-->
|
|
<xsl:if test="marc:datafield[@tag=505]">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">a</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:if>
|
|
|
|
<!-- 780 -->
|
|
<xsl:if test="marc:datafield[@tag=780]">
|
|
<xsl:for-each select="marc:datafield[@tag=780]">
|
|
<span class="results_summary"><span class="label">
|
|
<xsl:choose>
|
|
<xsl:when test="@ind2=0">
|
|
Fortsettelse av:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=1">
|
|
Delvis fortsettelse av:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=2">
|
|
Avløser:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=3">
|
|
Avløser delvis:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=4">
|
|
Sammenslåing av: ... ; og ...
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=5">
|
|
Har tatt opp:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=6">
|
|
Har delvis tatt opp:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=7">
|
|
Utskilt fra:
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
</span>
|
|
<xsl:variable name="f780">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">a_t</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:variable>
|
|
<a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=<xsl:value-of select="translate($f780, '()', '')"/></xsl:attribute>
|
|
<xsl:value-of select="translate($f780, '()', '')"/>
|
|
</a>
|
|
</span>
|
|
|
|
<xsl:choose>
|
|
<xsl:when test="@ind1=0">
|
|
<span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
|
|
</xsl:for-each>
|
|
</xsl:if>
|
|
|
|
<!-- 785 -->
|
|
<xsl:if test="marc:datafield[@tag=785]">
|
|
<xsl:for-each select="marc:datafield[@tag=785]">
|
|
<span class="results_summary"><span class="label">
|
|
<xsl:choose>
|
|
<xsl:when test="@ind2=0">
|
|
Fortsettelse i:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=1">
|
|
Fortsettes delvis i:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=2">
|
|
Avløst av:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=3">
|
|
Delvis avløst av:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=4">
|
|
Gått inn i:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=5">
|
|
Delvis gått inn i:
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=6">
|
|
Fortsettes av: ...; og ...
|
|
</xsl:when>
|
|
<xsl:when test="@ind2=7">
|
|
Slått sammen med: .., til: ...
|
|
</xsl:when>
|
|
</xsl:choose>
|
|
</span>
|
|
<xsl:variable name="f785">
|
|
<xsl:call-template name="subfieldSelect">
|
|
<xsl:with-param name="codes">a_t</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:variable>
|
|
|
|
<a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=<xsl:value-of select="translate($f785, '()', '')"/></xsl:attribute>
|
|
<xsl:value-of select="translate($f785, '()', '')"/>
|
|
</a>
|
|
|
|
</span>
|
|
</xsl:for-each>
|
|
</xsl:if>
|
|
|
|
<!-- This will only work if the OPACBaseURL syspref is set. -->
|
|
<xsl:if test="string-length($OPACBaseURL) > 0">
|
|
<p>OPAC View: <a>
|
|
<xsl:attribute name="href"><xsl:value-of select="$OPACBaseURL"/>/cgi-bin/koha/opac-detail.pl?biblionumber=<xsl:value-of select="$biblionumber"/></xsl:attribute>
|
|
<xsl:attribute name="target">_blank</xsl:attribute>
|
|
Open in new window
|
|
</a></p>
|
|
</xsl:if>
|
|
|
|
</xsl:template>
|
|
|
|
<xsl:template name="part">
|
|
<xsl:variable name="partNumber">
|
|
<xsl:call-template name="specialSubfieldSelect">
|
|
<xsl:with-param name="axis">n</xsl:with-param>
|
|
<xsl:with-param name="anyCodes">n</xsl:with-param>
|
|
<xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:variable>
|
|
<xsl:variable name="partName">
|
|
<xsl:call-template name="specialSubfieldSelect">
|
|
<xsl:with-param name="axis">p</xsl:with-param>
|
|
<xsl:with-param name="anyCodes">p</xsl:with-param>
|
|
<xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
|
|
</xsl:call-template>
|
|
</xsl:variable>
|
|
<xsl:if test="string-length(normalize-space($partNumber))">
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString" select="$partNumber"/>
|
|
</xsl:call-template>
|
|
</xsl:if>
|
|
<xsl:if test="string-length(normalize-space($partName))">
|
|
<xsl:call-template name="chopPunctuation">
|
|
<xsl:with-param name="chopString" select="$partName"/>
|
|
</xsl:call-template>
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="specialSubfieldSelect">
|
|
<xsl:param name="anyCodes"/>
|
|
<xsl:param name="axis"/>
|
|
<xsl:param name="beforeCodes"/>
|
|
<xsl:param name="afterCodes"/>
|
|
<xsl:variable name="str">
|
|
<xsl:for-each select="marc:subfield">
|
|
<xsl:if test="contains($anyCodes, @code) or (contains($beforeCodes,@code) and following-sibling::marc:subfield[@code=$axis]) or (contains($afterCodes,@code) and preceding-sibling::marc:subfield[@code=$axis])">
|
|
<xsl:value-of select="text()"/>
|
|
<xsl:text> </xsl:text>
|
|
</xsl:if>
|
|
</xsl:for-each>
|
|
</xsl:variable>
|
|
<xsl:value-of select="substring($str,1,string-length($str)-1)"/>
|
|
</xsl:template>
|
|
</xsl:stylesheet>
|