Bug 21887: 856 link problem in XSLT result lists and detail page
[koha.git] / koha-tmpl / intranet-tmpl / prog / en / xslt / MARC21slim2intranetDetail.xsl
1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <!DOCTYPE stylesheet [<!ENTITY nbsp "&#160;" >]>
4
5 <!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
6 <!-- Edited: Bug 1807 [ENH] XSLT enhancements sponsored by bywater solutions 2015/01/19 WS wsalesky@gmail.com  -->
7 <xsl:stylesheet version="1.0"
8   xmlns:marc="http://www.loc.gov/MARC21/slim"
9   xmlns:items="http://www.koha-community.org/items"
10   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
11   xmlns:str="http://exslt.org/strings"
12   exclude-result-prefixes="marc items str">
13     <xsl:import href="MARC21slimUtils.xsl"/>
14     <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
15     <xsl:template match="/">
16             <xsl:apply-templates/>
17     </xsl:template>
18
19     <xsl:template match="marc:record">
20
21         <!-- Option: Display Alternate Graphic Representation (MARC 880)  -->
22         <xsl:variable name="display880" select="boolean(marc:datafield[@tag=880])"/>
23         <xsl:variable name="UseControlNumber" select="marc:sysprefs/marc:syspref[@name='UseControlNumber']"/>
24         <xsl:variable name="URLLinkText" select="marc:sysprefs/marc:syspref[@name='URLLinkText']"/>
25         <xsl:variable name="OPACBaseURL" select="marc:sysprefs/marc:syspref[@name='OPACBaseURL']"/>
26         <xsl:variable name="SubjectModifier"><xsl:if test="marc:sysprefs/marc:syspref[@name='TraceCompleteSubfields']='1'">,complete-subfield</xsl:if></xsl:variable>
27         <xsl:variable name="UseAuthoritiesForTracings" select="marc:sysprefs/marc:syspref[@name='UseAuthoritiesForTracings']"/>
28         <xsl:variable name="TraceSubjectSubdivisions" select="marc:sysprefs/marc:syspref[@name='TraceSubjectSubdivisions']"/>
29         <xsl:variable name="Show856uAsImage" select="marc:sysprefs/marc:syspref[@name='Display856uAsImage']"/>
30         <xsl:variable name="DisplayIconsXSLT" select="marc:sysprefs/marc:syspref[@name='DisplayIconsXSLT']"/>
31         <xsl:variable name="OpacSuppression" select="marc:sysprefs/marc:syspref[@name='OpacSuppression']"/>
32         <xsl:variable name="TracingQuotesLeft">
33            <xsl:choose>
34              <xsl:when test="marc:sysprefs/marc:syspref[@name='UseICU']='1'">{</xsl:when>
35              <xsl:otherwise>"</xsl:otherwise>
36            </xsl:choose>
37         </xsl:variable>
38         <xsl:variable name="TracingQuotesRight">
39           <xsl:choose>
40             <xsl:when test="marc:sysprefs/marc:syspref[@name='UseICU']='1'">}</xsl:when>
41             <xsl:otherwise>"</xsl:otherwise>
42           </xsl:choose>
43         </xsl:variable>
44
45         <xsl:variable name="leader" select="marc:leader"/>
46         <xsl:variable name="leader6" select="substring($leader,7,1)"/>
47         <xsl:variable name="leader7" select="substring($leader,8,1)"/>
48         <xsl:variable name="leader19" select="substring($leader,20,1)"/>
49         <xsl:variable name="controlField008" select="marc:controlfield[@tag=008]"/>
50         <xsl:variable name="materialTypeCode">
51             <xsl:choose>
52                 <xsl:when test="$leader19='a'">ST</xsl:when>
53                 <xsl:when test="$leader6='a'">
54                     <xsl:choose>
55                         <xsl:when test="$leader7='c' or $leader7='d' or $leader7='m'">BK</xsl:when>
56                         <xsl:when test="$leader7='i' or $leader7='s'">SE</xsl:when>
57                         <xsl:when test="$leader7='a' or $leader7='b'">AR</xsl:when>
58                     </xsl:choose>
59                 </xsl:when>
60                 <xsl:when test="$leader6='t'">BK</xsl:when>
61                 <xsl:when test="$leader6='o' or $leader6='p'">MX</xsl:when>
62                 <xsl:when test="$leader6='m'">CF</xsl:when>
63                 <xsl:when test="$leader6='e' or $leader6='f'">MP</xsl:when>
64                 <xsl:when test="$leader6='g' or $leader6='k' or $leader6='r'">VM</xsl:when>
65                 <xsl:when test="$leader6='i' or $leader6='j'">MU</xsl:when>
66                 <xsl:when test="$leader6='c' or $leader6='d'">PR</xsl:when>
67             </xsl:choose>
68         </xsl:variable>
69         <xsl:variable name="materialTypeLabel">
70             <xsl:choose>
71                 <xsl:when test="$leader19='a'">Set</xsl:when>
72                 <xsl:when test="$leader6='a'">
73                     <xsl:choose>
74                         <xsl:when test="$leader7='c' or $leader7='d' or $leader7='m'">Book</xsl:when>
75                         <xsl:when test="$leader7='i' or $leader7='s'">
76                             <xsl:choose>
77                                 <xsl:when test="substring($controlField008,22,1)!='m'">Continuing resource</xsl:when>
78                                 <xsl:otherwise>Series</xsl:otherwise>
79                             </xsl:choose>
80                         </xsl:when>
81                         <xsl:when test="$leader7='a' or $leader7='b'">Article</xsl:when>
82                     </xsl:choose>
83                 </xsl:when>
84                 <xsl:when test="$leader6='t'">Book</xsl:when>
85                 <xsl:when test="$leader6='o'">Kit</xsl:when>                            
86                 <xsl:when test="$leader6='p'">Mixed materials</xsl:when>
87                 <xsl:when test="$leader6='m'">Computer file</xsl:when>
88                 <xsl:when test="$leader6='e' or $leader6='f'">Map</xsl:when>
89                 <xsl:when test="$leader6='g' or $leader6='k' or $leader6='r'">Visual material</xsl:when>
90                 <xsl:when test="$leader6='j'">Music</xsl:when>
91                 <xsl:when test="$leader6='i'">Sound</xsl:when>
92                 <xsl:when test="$leader6='c' or $leader6='d'">Score</xsl:when>
93             </xsl:choose>
94         </xsl:variable>
95
96         <!-- Indicate if record is suppressed in OPAC -->
97         <xsl:if test="$OpacSuppression = 1">
98             <xsl:if test="marc:datafield[@tag=942][marc:subfield[@code='n'] = '1']">
99                 <span class="results_summary suppressed_opac">Suppressed in OPAC</span>
100             </xsl:if>
101         </xsl:if>
102
103         <!-- Title Statement -->
104         <!-- Alternate Graphic Representation (MARC 880) -->
105         <xsl:if test="$display880">
106             <h1 class="title">
107                 <xsl:call-template name="m880Select">
108                     <xsl:with-param name="basetags">245</xsl:with-param>
109                     <xsl:with-param name="codes">abhfgknps</xsl:with-param>
110                 </xsl:call-template>
111             </h1>
112         </xsl:if>
113
114         <!--Bug 13381 -->
115         <xsl:if test="marc:datafield[@tag=245]">
116             <h1 class="title" property="name">
117                 <xsl:for-each select="marc:datafield[@tag=245]">
118                     <xsl:call-template name="subfieldSelect">
119                         <xsl:with-param name="codes">a</xsl:with-param>
120                     </xsl:call-template>
121                     <xsl:text> </xsl:text>
122                     <!-- 13381 add additional subfields-->
123                     <!-- bz 17625 adding subfields f and g -->
124                     <xsl:for-each select="marc:subfield[contains('bcfghknps', @code)]">
125                         <xsl:choose>
126                             <xsl:when test="@code='h'">
127                                 <!--  13381 Span class around subfield h so it can be suppressed via css -->
128                                 <span class="title_medium"><xsl:apply-templates/> <xsl:text> </xsl:text> </span>
129                             </xsl:when>
130                             <xsl:when test="@code='c'">
131                                 <!--  13381 Span class around subfield c so it can be suppressed via css -->
132                                 <span class="title_resp_stmt"><xsl:apply-templates/> <xsl:text> </xsl:text> </span>
133                             </xsl:when>
134                             <xsl:otherwise>
135                                 <xsl:apply-templates/>
136                                 <xsl:text> </xsl:text>
137                             </xsl:otherwise>
138                         </xsl:choose>
139                     </xsl:for-each>
140                 </xsl:for-each>
141             </h1>
142         </xsl:if>
143
144         <!-- Author Statement: Alternate Graphic Representation (MARC 880) -->
145         <xsl:if test="$display880">
146             <h5 class="author">
147                 <xsl:call-template name="m880Select">
148                     <xsl:with-param name="basetags">100,110,111,700,710,711</xsl:with-param>
149                     <xsl:with-param name="codes">abc</xsl:with-param>
150                     <xsl:with-param name="index">au</xsl:with-param>
151                     <xsl:with-param name="UseAuthoritiesForTracings" select="$UseAuthoritiesForTracings"/>
152                     <!-- do not use label 'by ' here, it would be repeated for every occurrence of 100,110,111,700,710,711 -->
153                 </xsl:call-template>
154             </h5>
155         </xsl:if>
156
157         <!-- Author Statement -->
158         <xsl:call-template name="showAuthor">
159             <xsl:with-param name="authorfield" select="marc:datafield[@tag=100 or @tag=110 or @tag=111]"/>
160             <xsl:with-param name="UseAuthoritiesForTracings" select="$UseAuthoritiesForTracings"/>
161         </xsl:call-template>
162
163         <!-- #13382 Suppress 700$i and 7xx/@ind2=2 -->
164         <xsl:call-template name="showAuthor">
165             <xsl:with-param name="authorfield" select="marc:datafield[(@tag=700 or @tag=710 or @tag=711) and not(@ind2=2) and not(marc:subfield[@code='i'])]"/>
166             <xsl:with-param name="UseAuthoritiesForTracings" select="$UseAuthoritiesForTracings"/>
167         </xsl:call-template>
168
169     <xsl:if test="$DisplayIconsXSLT!='0' and $materialTypeCode!=''">
170         <span class="results_summary type"><span class="label">Material type: </span>
171     <xsl:element name="img"><xsl:attribute name="class">materialtype mt_icon_<xsl:value-of select="$materialTypeCode"/></xsl:attribute><xsl:attribute name="src">/intranet-tmpl/prog/img/famfamfam/<xsl:value-of select="$materialTypeCode"/>.png</xsl:attribute><xsl:attribute name="alt"></xsl:attribute></xsl:element>
172         <xsl:text> </xsl:text>
173         <xsl:value-of select="$materialTypeLabel"/>
174         </span>
175     </xsl:if>
176
177
178         <!--Series: Alternate Graphic Representation (MARC 880) -->
179         <xsl:if test="$display880">
180             <xsl:call-template name="m880Select">
181                 <xsl:with-param name="basetags">440,490</xsl:with-param>
182                 <xsl:with-param name="codes">av</xsl:with-param>
183                 <xsl:with-param name="class">results_summary series</xsl:with-param>
184                 <xsl:with-param name="label">Series: </xsl:with-param>
185                 <xsl:with-param name="index">se</xsl:with-param>
186             </xsl:call-template>
187         </xsl:if>
188         
189         <!-- Series -->
190         <xsl:if test="marc:datafield[@tag=440 or @tag=490]">
191         <span class="results_summary series"><span class="label">Series: </span>
192         <!-- 440 -->
193         <xsl:for-each select="marc:datafield[@tag=440]">
194             <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=se,phr:"<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/>"</xsl:attribute>
195             <xsl:call-template name="chopPunctuation">
196                             <xsl:with-param name="chopString">
197                                 <xsl:call-template name="subfieldSelect">
198                                     <xsl:with-param name="codes">av</xsl:with-param>
199                                 </xsl:call-template>
200                             </xsl:with-param>
201                         </xsl:call-template>
202             </a>
203             <xsl:call-template name="part"/>
204             <xsl:choose><xsl:when test="position()=last()"><xsl:text>. </xsl:text></xsl:when><xsl:otherwise><xsl:text> ; </xsl:text></xsl:otherwise></xsl:choose>
205         </xsl:for-each>
206
207         <!-- 490 Series not traced, Ind1 = 0 -->
208         <xsl:for-each select="marc:datafield[@tag=490][@ind1!=1]">
209             <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=se,phr:"<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/>"</xsl:attribute>
210                         <xsl:call-template name="chopPunctuation">
211                             <xsl:with-param name="chopString">
212                                 <xsl:call-template name="subfieldSelect">
213                                     <xsl:with-param name="codes">av</xsl:with-param>
214                                 </xsl:call-template>
215                             </xsl:with-param>
216                         </xsl:call-template>
217             </a>
218                     <xsl:call-template name="part"/>
219         <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
220         </xsl:for-each>
221         <!-- 490 Series traced, Ind1 = 1 -->
222         <xsl:if test="marc:datafield[@tag=490][@ind1=1]">
223             <xsl:for-each select="marc:datafield[@tag=800 or @tag=810 or @tag=811]">
224                 <xsl:choose>
225                     <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
226                         <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=rcn:<xsl:value-of select="str:encode-uri(marc:subfield[@code='w'], true())"/></xsl:attribute>
227                             <xsl:call-template name="chopPunctuation">
228                                 <xsl:with-param name="chopString">
229                                     <xsl:call-template name="subfieldSelect">
230                                         <xsl:with-param name="codes">a_t</xsl:with-param>
231                                     </xsl:call-template>
232                                 </xsl:with-param>
233                             </xsl:call-template>
234                         </a>
235                     </xsl:when>
236                     <xsl:otherwise>
237                         <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=se,phr:"<xsl:value-of select="str:encode-uri(marc:subfield[@code='t'], true())"/>"&amp;q=au:"<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/>"</xsl:attribute>
238                             <xsl:call-template name="chopPunctuation">
239                                 <xsl:with-param name="chopString">
240                                     <xsl:call-template name="subfieldSelect">
241                                         <xsl:with-param name="codes">a_t</xsl:with-param>
242                                     </xsl:call-template>
243                                 </xsl:with-param>
244                             </xsl:call-template>
245                         </a>
246                         <xsl:call-template name="part"/>
247                     </xsl:otherwise>
248                 </xsl:choose>
249                 <xsl:text>: </xsl:text>
250                 <xsl:value-of  select="marc:subfield[@code='v']" />
251             <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
252             </xsl:for-each>
253
254             <xsl:for-each select="marc:datafield[@tag=830]">
255                 <xsl:choose>
256                     <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
257                         <a href="/cgi-bin/koha/catalogue/search.pl?q=rcn:{marc:subfield[@code='w']}">
258                             <xsl:call-template name="chopPunctuation">
259                                 <xsl:with-param name="chopString">
260                                     <xsl:call-template name="subfieldSelect">
261                                         <xsl:with-param name="codes">a_t</xsl:with-param>
262                                     </xsl:call-template>
263                                 </xsl:with-param>
264                             </xsl:call-template>
265                         </a>
266                     </xsl:when>
267                     <xsl:otherwise>
268                         <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=se,phr:"<xsl:value-of select="marc:subfield[@code='a']"/>"</xsl:attribute>
269                             <xsl:call-template name="chopPunctuation">
270                                 <xsl:with-param name="chopString">
271                                     <xsl:call-template name="subfieldSelect">
272                                         <xsl:with-param name="codes">a_t</xsl:with-param>
273                                     </xsl:call-template>
274                                 </xsl:with-param>
275                             </xsl:call-template>
276                         </a>
277                         <xsl:call-template name="part"/>
278                     </xsl:otherwise>
279                 </xsl:choose>
280                 <xsl:text>: </xsl:text>
281                 <xsl:value-of  select="marc:subfield[@code='v']" />
282             <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
283             </xsl:for-each>
284         </xsl:if>
285
286         </span>
287         </xsl:if>
288
289         <!-- Analytics -->
290         <xsl:if test="$leader7='s'">
291         <span class="results_summary analytics"><span class="label">Analytics: </span>
292             <a>
293             <xsl:choose>
294             <xsl:when test="$UseControlNumber = '1' and marc:controlfield[@tag=001]">
295                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=rcn:<xsl:value-of select="str:encode-uri(marc:controlfield[@tag=001], true())"/>+and+(bib-level:a+or+bib-level:b)</xsl:attribute>
296             </xsl:when>
297             <xsl:otherwise>
298                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=Host-item:<xsl:value-of select="str:encode-uri(translate(marc:datafield[@tag=245]/marc:subfield[@code='a'], '/', ''), true())"/></xsl:attribute>
299             </xsl:otherwise>
300             </xsl:choose>
301             <xsl:text>Show analytics</xsl:text>
302             </a>
303         </span>
304         </xsl:if>
305
306         <!-- Volumes of sets and traced series -->
307         <xsl:if test="$materialTypeCode='ST' or substring($controlField008,22,1)='m'">
308         <span class="results_summary volumes"><span class="label">Volumes: </span>
309             <a>
310             <xsl:choose>
311             <xsl:when test="$UseControlNumber = '1' and marc:controlfield[@tag=001]">
312                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=rcn:<xsl:value-of select="str:encode-uri(marc:controlfield[@tag=001], true())"/>+not+(bib-level:a+or+bib-level:b)</xsl:attribute>
313             </xsl:when>
314             <xsl:otherwise>
315                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=ti,phr:<xsl:value-of select="str:encode-uri(translate(marc:datafield[@tag=245]/marc:subfield[@code='a'], '/', ''), true())"/></xsl:attribute>
316             </xsl:otherwise>
317             </xsl:choose>
318             <xsl:text>Show volumes</xsl:text>
319             </a>
320         </span>
321         </xsl:if>
322
323         <!-- Set -->
324         <xsl:if test="$leader19='c'">
325         <span class="results_summary set"><span class="label">Set: </span>
326         <xsl:for-each select="marc:datafield[@tag=773]">
327             <a>
328             <xsl:choose>
329             <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
330                 <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>
331             </xsl:when>
332             <xsl:otherwise>
333                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=ti,phr:<xsl:value-of select="str:encode-uri(translate(//marc:datafield[@tag=245]/marc:subfield[@code='a'], '.', ''), true())"/></xsl:attribute>
334             </xsl:otherwise>
335             </xsl:choose>
336             <xsl:value-of select="translate(//marc:datafield[@tag=245]/marc:subfield[@code='a'], '.', '')" />
337             </a>
338             <xsl:choose>
339                 <xsl:when test="position()=last()"></xsl:when>
340                 <xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise>
341             </xsl:choose>
342         </xsl:for-each>
343         </span>
344         </xsl:if>
345
346         <!-- Publisher Statement: Alternate Graphic Representation (MARC 880) -->
347         <xsl:if test="$display880">
348             <xsl:call-template name="m880Select">
349                 <xsl:with-param name="basetags">260</xsl:with-param>
350                 <xsl:with-param name="codes">abcg</xsl:with-param>
351                 <xsl:with-param name="class">results_summary publisher</xsl:with-param>
352                 <xsl:with-param name="label">Publisher: </xsl:with-param>
353             </xsl:call-template>
354         </xsl:if>
355
356         <!-- Publisher info and RDA related info from tags 260, 264 -->
357         <xsl:choose>
358             <xsl:when test="marc:datafield[@tag=264]">
359                 <xsl:call-template name="showRDAtag264">
360                    <xsl:with-param name="show_url">1</xsl:with-param>
361                 </xsl:call-template>
362             </xsl:when>
363             <xsl:when test="marc:datafield[@tag=260]">
364                 <span class="results_summary publisher"><span class="label">Publisher: </span>
365                     <xsl:for-each select="marc:datafield[@tag=260]">
366                         <xsl:if test="marc:subfield[@code='a']">
367                             <xsl:call-template name="subfieldSelect">
368                                 <xsl:with-param name="codes">a</xsl:with-param>
369                             </xsl:call-template>
370                         </xsl:if>
371                         <xsl:text> </xsl:text>
372                         <xsl:if test="marc:subfield[@code='b']">
373                         <a>
374                             <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=Provider:"<xsl:value-of select="str:encode-uri(marc:subfield[@code='b'], true())"/>"</xsl:attribute>
375                             <xsl:call-template name="subfieldSelect">
376                                 <xsl:with-param name="codes">b</xsl:with-param>
377                             </xsl:call-template>
378                        </a>
379                        </xsl:if>
380                        <xsl:text> </xsl:text>
381                         <xsl:call-template name="chopPunctuation">
382                           <xsl:with-param name="chopString">
383                             <xsl:call-template name="subfieldSelect">
384                                 <xsl:with-param name="codes">cg</xsl:with-param>
385                             </xsl:call-template>
386                            </xsl:with-param>
387                        </xsl:call-template>
388                             <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
389                     </xsl:for-each>
390                 </span>
391             </xsl:when>
392         </xsl:choose>
393
394         <!-- Edition Statement: Alternate Graphic Representation (MARC 880) -->
395         <xsl:if test="$display880">
396             <xsl:call-template name="m880Select">
397                 <xsl:with-param name="basetags">250</xsl:with-param>
398                 <xsl:with-param name="codes">ab</xsl:with-param>
399                 <xsl:with-param name="class">results_summary edition</xsl:with-param>
400                 <xsl:with-param name="label">Edition: </xsl:with-param>
401             </xsl:call-template>
402         </xsl:if>
403         
404         <xsl:if test="marc:datafield[@tag=250]">
405         <span class="results_summary edition"><span class="label">Edition: </span>
406             <xsl:for-each select="marc:datafield[@tag=250]">
407                 <xsl:call-template name="chopPunctuation">
408                   <xsl:with-param name="chopString">
409                     <xsl:call-template name="subfieldSelect">
410                         <xsl:with-param name="codes">ab</xsl:with-param>
411                     </xsl:call-template>
412                    </xsl:with-param>
413                </xsl:call-template>
414                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
415             </xsl:for-each>
416         </span>
417         </xsl:if>
418
419         <!-- Description: Alternate Graphic Representation (MARC 880) -->
420         <xsl:if test="$display880">
421             <xsl:call-template name="m880Select">
422                 <xsl:with-param name="basetags">300</xsl:with-param>
423                 <xsl:with-param name="codes">abceg</xsl:with-param>
424                 <xsl:with-param name="class">results_summary description</xsl:with-param>
425                 <xsl:with-param name="label">Description: </xsl:with-param>
426             </xsl:call-template>
427         </xsl:if>
428         
429         <xsl:if test="marc:datafield[@tag=300]">
430         <span class="results_summary description"><span class="label">Description: </span>
431             <xsl:for-each select="marc:datafield[@tag=300]">
432                 <xsl:call-template name="chopPunctuation">
433                   <xsl:with-param name="chopString">
434                     <xsl:call-template name="subfieldSelect">
435                         <xsl:with-param name="codes">abcefg</xsl:with-param>
436                     </xsl:call-template>
437                    </xsl:with-param>
438                </xsl:call-template>
439                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
440             </xsl:for-each>
441         </span>
442        </xsl:if>
443
444         <!-- Content Type -->
445         <xsl:if test="marc:datafield[@tag=336] or marc:datafield[@tag=337] or marc:datafield[@tag=338]">
446             <span class="results_summary" id="content_type">
447                 <xsl:if test="marc:datafield[@tag=336]">
448                     <span class="label">Content type: </span>
449                     <xsl:for-each select="marc:datafield[@tag=336]">
450                         <xsl:call-template name="subfieldSelect">
451                             <xsl:with-param name="codes">a</xsl:with-param>
452                             <xsl:with-param name="delimeter">, </xsl:with-param>
453                         </xsl:call-template>
454                         <xsl:if test="position() != last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
455                     </xsl:for-each>
456                 </xsl:if>
457                 <xsl:text> </xsl:text>
458                 <!-- Media Type -->
459                 <xsl:if test="marc:datafield[@tag=337]">
460                     <span class="label">Media type: </span>
461                     <xsl:for-each select="marc:datafield[@tag=337]">
462                         <xsl:call-template name="subfieldSelect">
463                             <xsl:with-param name="codes">a</xsl:with-param>
464                             <xsl:with-param name="delimeter">, </xsl:with-param>
465                         </xsl:call-template>
466                         <xsl:if test="position() != last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
467                     </xsl:for-each>
468                 </xsl:if>
469                 <xsl:text> </xsl:text>
470                 <!-- Media Type -->
471                 <xsl:if test="marc:datafield[@tag=338]">
472                     <span class="label">Carrier type: </span>
473                     <xsl:for-each select="marc:datafield[@tag=338]">
474                         <xsl:call-template name="subfieldSelect">
475                             <xsl:with-param name="codes">a</xsl:with-param>
476                             <xsl:with-param name="delimeter">, </xsl:with-param>
477                         </xsl:call-template>
478                         <xsl:if test="position() != last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
479                     </xsl:for-each>
480                 </xsl:if>
481             </span>
482         </xsl:if>
483
484
485         <xsl:call-template name="showISBNISSN"/>
486
487         <xsl:if test="marc:datafield[@tag=013]">
488             <span class="results_summary patent_info">
489                 <span class="label">Patent information: </span>
490                 <xsl:for-each select="marc:datafield[@tag=013]">
491                     <xsl:call-template name="subfieldSelect">
492                         <xsl:with-param name="codes">acdef</xsl:with-param>
493                         <xsl:with-param name="delimeter">, </xsl:with-param>
494                     </xsl:call-template>
495                 <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
496                 </xsl:for-each>
497             </span>
498         </xsl:if>
499
500         <xsl:if test="marc:datafield[@tag=088]">
501             <span class="results_summary report_number">
502                 <span class="label">Report number: </span>
503                 <xsl:for-each select="marc:datafield[@tag=088]">
504                     <xsl:call-template name="subfieldSelect">
505                         <xsl:with-param name="codes">a</xsl:with-param>
506                     </xsl:call-template>
507                 <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
508                 </xsl:for-each>
509             </span>
510         </xsl:if>
511
512         <!-- Other Title  Statement: Alternate Graphic Representation (MARC 880) -->
513         <xsl:if test="$display880">
514             <xsl:call-template name="m880Select">
515                 <xsl:with-param name="basetags">246</xsl:with-param>
516                 <xsl:with-param name="codes">abhfgnp</xsl:with-param>
517                 <xsl:with-param name="class">results_summary other_title</xsl:with-param>
518                 <xsl:with-param name="label">Other title: </xsl:with-param>
519             </xsl:call-template>
520         </xsl:if>
521
522         <xsl:if test="marc:datafield[@tag=246]">
523             <span class="results_summary other_title"><span class="label">Other title: </span>
524                 <xsl:for-each select="marc:datafield[@tag=246]">
525                     <xsl:call-template name="chopPunctuation">
526                         <xsl:with-param name="chopString">
527                             <xsl:call-template name="subfieldSelect">
528                                 <xsl:with-param name="codes">abhfgnp</xsl:with-param>
529                             </xsl:call-template>
530                         </xsl:with-param>
531                     </xsl:call-template>
532                     <xsl:if test="@ind1=1 and not(marc:subfield[@code='i'])">
533                         <xsl:choose>
534                             <xsl:when test="@ind2=0"> [Portion of title]</xsl:when>
535                             <xsl:when test="@ind2=1"> [Parallel title]</xsl:when>
536                             <xsl:when test="@ind2=2"> [Distinctive title]</xsl:when>
537                             <xsl:when test="@ind2=3"> [Other title]</xsl:when>
538                             <xsl:when test="@ind2=4"> [Cover title]</xsl:when>
539                             <xsl:when test="@ind2=5"> [Added title page title]</xsl:when>
540                             <xsl:when test="@ind2=6"> [Caption title]</xsl:when>
541                             <xsl:when test="@ind2=7"> [Running title]</xsl:when>
542                             <xsl:when test="@ind2=8"> [Spine title]</xsl:when>
543                         </xsl:choose>
544                     </xsl:if>
545                     <xsl:if test="marc:subfield[@code='i']">
546                         <xsl:value-of select="concat(' [',marc:subfield[@code='i'],']')"/>
547                     </xsl:if>
548                     <!-- #13386 added separator | -->
549                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise></xsl:choose>
550                 </xsl:for-each>
551             </span>
552         </xsl:if>
553
554         <xsl:if test="marc:datafield[@tag=242]">
555         <span class="results_summary translated_title"><span class="label">Title translated: </span>
556             <xsl:for-each select="marc:datafield[@tag=242]">
557                 <xsl:call-template name="chopPunctuation">
558                   <xsl:with-param name="chopString">
559                     <xsl:call-template name="subfieldSelect">
560                         <xsl:with-param name="codes">abchnp</xsl:with-param>
561                     </xsl:call-template>
562                    </xsl:with-param>
563                </xsl:call-template>
564                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
565             </xsl:for-each>
566         </span>
567        </xsl:if>
568
569         <!-- Uniform Title  Statement: Alternate Graphic Representation (MARC 880) -->
570         <xsl:if test="$display880">
571             <xsl:call-template name="m880Select">
572                 <xsl:with-param name="basetags">130,240</xsl:with-param>
573                 <xsl:with-param name="codes">adfklmor</xsl:with-param>
574                 <xsl:with-param name="class">results_summary uniform_title</xsl:with-param>
575                 <xsl:with-param name="label">Uniform title: </xsl:with-param>
576             </xsl:call-template>
577         </xsl:if>
578
579         <xsl:if test="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
580             <span class="results_summary uniform_title"><span class="label">Uniform titles: </span>
581                 <xsl:for-each select="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
582                     <xsl:for-each select="marc:subfield">
583                         <xsl:if test="contains('adfghklmnoprst',@code)">
584                             <xsl:value-of select="text()"/>
585                             <xsl:text> </xsl:text>
586                         </xsl:if>
587                     </xsl:for-each>
588                     <xsl:if test="position() != last()">
589                         <span class="separator"><xsl:text> | </xsl:text></span>
590                     </xsl:if>
591                 </xsl:for-each>
592             </span>
593         </xsl:if>
594
595         <!-- #13382 Added Related works 700$i -->
596         <xsl:if test="marc:datafield[@tag=700][marc:subfield[@code='i']] or marc:datafield[@tag=710][marc:subfield[@code='i']] or marc:datafield[@tag=711][marc:subfield[@code='i']]">
597             <span class="results_summary related_works"><span class="label">Related works: </span>
598                 <xsl:for-each select="marc:datafield[@tag=700][marc:subfield[@code='i']] | marc:datafield[@tag=710][marc:subfield[@code='i']] | marc:datafield[@tag=711][marc:subfield[@code='i']]">
599                     <xsl:variable name="str">
600                         <xsl:call-template name="subfieldSelect">
601                             <xsl:with-param name="codes">abcdfghiklmnporstux</xsl:with-param>
602                         </xsl:call-template>
603                     </xsl:variable>
604                     <xsl:call-template name="chopPunctuation">
605                         <xsl:with-param name="chopString">
606                             <xsl:value-of select="$str"/>
607                         </xsl:with-param>
608                     </xsl:call-template>
609                     <!-- add relator code too between brackets-->
610                     <xsl:if test="marc:subfield[@code='4' or @code='e']">
611                         <span class="relatorcode">
612                             <xsl:text> [</xsl:text>
613                             <xsl:choose>
614                                 <xsl:when test="marc:subfield[@code='e']">
615                                     <xsl:for-each select="marc:subfield[@code='e']">
616                                         <xsl:value-of select="."/>
617                                         <xsl:if test="position() != last()"><xsl:text>, </xsl:text></xsl:if>
618                                     </xsl:for-each>
619                                 </xsl:when>
620                                 <xsl:otherwise>
621                                     <xsl:for-each select="marc:subfield[@code='4']">
622                                         <xsl:value-of select="."/>
623                                         <xsl:if test="position() != last()"><xsl:text>, </xsl:text></xsl:if>
624                                     </xsl:for-each>
625                                 </xsl:otherwise>
626                             </xsl:choose>
627                             <xsl:text>]</xsl:text>
628                         </span>
629                     </xsl:if>
630                     <xsl:choose>
631                         <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise>
632                     </xsl:choose>
633                 </xsl:for-each>
634             </span>
635         </xsl:if>
636
637         <!-- #13382 Added Contained Works 7xx@ind2=2 -->
638         <xsl:if test="marc:datafield[@tag=700][@ind2=2 and not(marc:subfield[@code='i'])] or marc:datafield[@tag=710][@ind2=2 and not(marc:subfield[@code='i'])] or marc:datafield[@tag=711][@ind2=2 and not(marc:subfield[@code='i'])]">
639             <span class="results_summary contained_works"><span class="label">Contained works: </span>
640                 <xsl:for-each select="marc:datafield[@tag=700][@ind2=2][not(marc:subfield[@code='i'])] | marc:datafield[@tag=710][@ind2=2][not(marc:subfield[@code='i'])] | marc:datafield[@tag=711][@ind2=2][not(marc:subfield[@code='i'])]">
641                     <xsl:variable name="str">
642                         <xsl:call-template name="subfieldSelect">
643                             <xsl:with-param name="codes">abcdfghiklmnporstux</xsl:with-param>
644                         </xsl:call-template>
645                     </xsl:variable>
646                     <xsl:call-template name="chopPunctuation">
647                         <xsl:with-param name="chopString">
648                             <xsl:value-of select="$str"/>
649                         </xsl:with-param>
650                     </xsl:call-template>
651                     <!-- add relator code too between brackets-->
652                     <xsl:if test="marc:subfield[@code='4' or @code='e']">
653                         <span class="relatorcode">
654                             <xsl:text> [</xsl:text>
655                             <xsl:choose>
656                                 <xsl:when test="marc:subfield[@code='e']">
657                                     <xsl:for-each select="marc:subfield[@code='e']">
658                                         <xsl:value-of select="."/>
659                                         <xsl:if test="position() != last()"><xsl:text>, </xsl:text></xsl:if>
660                                     </xsl:for-each>
661                                 </xsl:when>
662                                 <xsl:otherwise>
663                                     <xsl:for-each select="marc:subfield[@code='4']">
664                                         <xsl:value-of select="."/>
665                                         <xsl:if test="position() != last()"><xsl:text>, </xsl:text></xsl:if>
666                                     </xsl:for-each>
667                                 </xsl:otherwise>
668                             </xsl:choose>
669                             <xsl:text>]</xsl:text>
670                         </span>
671                     </xsl:if>
672                     <xsl:choose>
673                         <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise>
674                     </xsl:choose>
675                 </xsl:for-each>
676             </span>
677         </xsl:if>
678
679
680         <xsl:if test="marc:datafield[substring(@tag, 1, 1) = '6' and not(@tag=655)]">
681             <span class="results_summary subjects"><span class="label">Subject(s): </span>
682             <xsl:for-each select="marc:datafield[substring(@tag, 1, 1) = '6'][not(@tag=655)]">
683             <a>
684             <xsl:choose>
685             <!-- #1807 Strip unwanted parenthesis from subjects for searching -->
686             <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
687                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
688             </xsl:when>
689             <xsl:when test="$TraceSubjectSubdivisions='1'">
690                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=<xsl:call-template name="subfieldSelectSubject">
691                         <xsl:with-param name="codes">abcdfgklmnopqrstvxyz</xsl:with-param>
692                         <xsl:with-param name="delimeter"> AND </xsl:with-param>
693                         <xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/></xsl:with-param>
694                         <xsl:with-param name="suffix"><xsl:value-of select="$TracingQuotesRight"/>)</xsl:with-param>
695                         <xsl:with-param name="urlencode">1</xsl:with-param>
696                     </xsl:call-template>
697                 </xsl:attribute>
698             </xsl:when>
699
700             <!-- #1807 Strip unwanted parenthesis from subjects for searching -->
701             <xsl:otherwise>
702                 <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="str:encode-uri(translate(marc:subfield[@code='a'],'()',''), true())"/><xsl:value-of select="$TracingQuotesRight"/></xsl:attribute>
703             </xsl:otherwise>
704             </xsl:choose>
705
706             <xsl:call-template name="chopPunctuation">
707                 <xsl:with-param name="chopString">
708                     <xsl:call-template name="subfieldSelect">
709                         <xsl:with-param name="codes">abcdfgklmnopqrstvxyz</xsl:with-param>
710                         <xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
711                         <xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
712                     </xsl:call-template>
713                 </xsl:with-param>
714             </xsl:call-template>
715             </a>
716
717             <xsl:if test="marc:subfield[@code=9]">
718                 <xsl:text> </xsl:text>
719                 <a class='authlink'>
720                     <xsl:attribute name="href">/cgi-bin/koha/authorities/detail.pl?authid=<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
721                     <xsl:element name="img">
722                         <xsl:attribute name="src">/intranet-tmpl/prog/img/filefind.png</xsl:attribute>
723                         <xsl:attribute name="alt"></xsl:attribute>
724                         <xsl:attribute name="height">15</xsl:attribute>
725                         <xsl:attribute name="width">15</xsl:attribute>
726                     </xsl:element>
727                 </a>
728             </xsl:if>
729
730             <xsl:choose>
731             <xsl:when test="position()=last()"></xsl:when>
732             <xsl:otherwise> | </xsl:otherwise>
733             </xsl:choose>
734
735             </xsl:for-each>
736             </span>
737         </xsl:if>
738
739         <!-- Genre/Form -->
740         <xsl:if test="marc:datafield[@tag=655]">
741             <span class="results_summary genre"><span class="label">Genre/Form: </span>
742                 <xsl:for-each select="marc:datafield[@tag=655]">
743                     <a>
744                         <xsl:choose>
745                             <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
746                                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
747                             </xsl:when>
748                             <xsl:when test="$TraceSubjectSubdivisions='1'">
749                                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=<xsl:call-template name="subfieldSelect">
750                                     <xsl:with-param name="codes">avxyz</xsl:with-param>
751                                     <xsl:with-param name="delimeter"> AND </xsl:with-param>
752                                     <xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/></xsl:with-param>
753                                     <xsl:with-param name="suffix"><xsl:value-of select="$TracingQuotesRight"/>)</xsl:with-param>
754                                     <xsl:with-param name="urlencode">1</xsl:with-param>
755                                 </xsl:call-template>
756                                 </xsl:attribute>
757                             </xsl:when>
758                             <xsl:otherwise>
759                                 <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>
760                             </xsl:otherwise>
761                         </xsl:choose>
762                     <xsl:call-template name="subfieldSelect">
763                         <xsl:with-param name="codes">avxyz</xsl:with-param>
764                         <xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
765                         <xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
766                     </xsl:call-template>
767                     </a>
768
769                     <xsl:if test="marc:subfield[@code=9]">
770                         <xsl:text> </xsl:text>
771                         <a class='authlink'>
772                             <xsl:attribute name="href">/cgi-bin/koha/authorities/detail.pl?authid=<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
773                             <xsl:element name="img">
774                                 <xsl:attribute name="src">/intranet-tmpl/prog/img/filefind.png</xsl:attribute>
775                                 <xsl:attribute name="alt"></xsl:attribute>
776                                 <xsl:attribute name="height">15</xsl:attribute>
777                                 <xsl:attribute name="width">15</xsl:attribute>
778                             </xsl:element>
779                         </a>
780                     </xsl:if>
781                     <xsl:if test="position()!=last()"><span class="separator"> | </span></xsl:if>
782                 </xsl:for-each>
783             </span>
784         </xsl:if>
785
786 <!-- MARC21 776 Additional Physical Form Entry -->
787     <xsl:if test="marc:datafield[@tag=776]">
788         <span class="results_summary add_physical_form">
789             <span class="label">Additional physical formats: </span>
790             <xsl:for-each select="marc:datafield[@tag=776]">
791                 <xsl:variable name="linktext">
792                     <xsl:choose>
793                     <xsl:when test="marc:subfield[@code='t']">
794                         <xsl:value-of select="marc:subfield[@code='t']"/>
795                     </xsl:when>
796                     <xsl:when test="marc:subfield[@code='a']">
797                         <xsl:value-of select="marc:subfield[@code='a']"/>
798                     </xsl:when>
799                     <xsl:otherwise>
800                         <xsl:text>No title</xsl:text>
801                     </xsl:otherwise>
802                     </xsl:choose>
803                 </xsl:variable>
804                 <xsl:if test="@ind2=8 and marc:subfield[@code='i']">
805                     <xsl:call-template name="subfieldSelect">
806                         <xsl:with-param name="codes">i</xsl:with-param>
807                     </xsl:call-template>
808                     <xsl:text>: </xsl:text>
809                 </xsl:if>
810                 <xsl:choose>
811                 <xsl:when test="marc:subfield[@code='w']">
812                     <a>
813                     <xsl:attribute name="href">
814                         <xsl:text>/cgi-bin/koha/catalogue/search.pl?q=control-number:</xsl:text>
815                         <xsl:call-template name="extractControlNumber">
816                             <xsl:with-param name="subfieldW">
817                                 <xsl:value-of select="marc:subfield[@code='w']"/>
818                             </xsl:with-param>
819                         </xsl:call-template>
820                     </xsl:attribute>
821                     <xsl:value-of select="$linktext"/>
822                     </a>
823                 </xsl:when>
824                 <xsl:otherwise>
825                     <xsl:value-of select="$linktext"/>
826                 </xsl:otherwise>
827                 </xsl:choose>
828                 <xsl:if test="position() != last()">
829                     <xsl:text>; </xsl:text>
830                 </xsl:if>
831             </xsl:for-each>
832         </span>
833     </xsl:if>
834
835 <!-- DDC classification -->
836     <xsl:if test="marc:datafield[@tag=082]">
837         <span class="results_summary ddc">
838             <span class="label">DDC classification: </span>
839             <xsl:for-each select="marc:datafield[@tag=082]">
840                 <xsl:call-template name="subfieldSelect">
841                     <xsl:with-param name="codes">a</xsl:with-param>
842                     <xsl:with-param name="delimeter"><xsl:text> | </xsl:text></xsl:with-param>
843                 </xsl:call-template>
844                 <xsl:choose>
845                     <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
846                     <xsl:otherwise> | </xsl:otherwise>
847                 </xsl:choose>
848             </xsl:for-each>
849         </span>
850     </xsl:if>
851
852 <!-- Other classification -->
853     <xsl:if test="marc:datafield[@tag=084]">
854        <span class="results_summary oc">
855            <span class="label">Other classification: </span>
856           <xsl:for-each select="marc:datafield[@tag=084]">
857                 <xsl:call-template name="subfieldSelect">
858                    <xsl:with-param name="codes">a</xsl:with-param>
859                    <xsl:with-param name="delimeter"><xsl:text> | </xsl:text></xsl:with-param>
860                 </xsl:call-template>
861                 <xsl:choose>
862                    <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
863                    <xsl:otherwise> | </xsl:otherwise>
864                 </xsl:choose>
865           </xsl:for-each>
866        </span>
867     </xsl:if>
868
869     <xsl:if test="marc:datafield[@tag=856]">
870         <span class="results_summary online_resources"><span class="label">Online resources: </span>
871         <xsl:for-each select="marc:datafield[@tag=856]">
872             <xsl:variable name="SubqText"><xsl:value-of select="marc:subfield[@code='q']"/></xsl:variable>
873             <a>
874                 <xsl:attribute name="href">
875                     <xsl:if test="not(contains(marc:subfield[@code='u'],'://'))">
876                         <xsl:choose>
877                             <xsl:when test="@ind1=7">
878                                 <xsl:value-of select="marc:subfield[@code='2']"/><xsl:text>://</xsl:text>
879                             </xsl:when>
880                             <xsl:when test="@ind1=1">
881                                 <xsl:text>ftp://</xsl:text>
882                             </xsl:when>
883                             <xsl:otherwise>
884                                 <xsl:text>http://</xsl:text>
885                             </xsl:otherwise>
886                         </xsl:choose>
887                     </xsl:if>
888                     <xsl:value-of select="marc:subfield[@code='u']"/>
889                 </xsl:attribute>
890                 <xsl:choose>
891                     <xsl:when test="($Show856uAsImage='Details' or $Show856uAsImage='Both') and (substring($SubqText,1,6)='image/' or $SubqText='img' or $SubqText='bmp' or $SubqText='cod' or $SubqText='gif' or $SubqText='ief' or $SubqText='jpe' or $SubqText='jpeg' or $SubqText='jpg' or $SubqText='jfif' or $SubqText='png' or $SubqText='svg' or $SubqText='tif' or $SubqText='tiff' or $SubqText='ras' or $SubqText='cmx' or $SubqText='ico' or $SubqText='pnm' or $SubqText='pbm' or $SubqText='pgm' or $SubqText='ppm' or $SubqText='rgb' or $SubqText='xbm' or $SubqText='xpm' or $SubqText='xwd')">
892                         <xsl:element name="img"><xsl:attribute name="src"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute><xsl:attribute name="alt"><xsl:value-of select="marc:subfield[@code='y']"/></xsl:attribute><xsl:attribute name="height">100</xsl:attribute></xsl:element><xsl:text></xsl:text>
893                     </xsl:when>
894                     <xsl:when test="marc:subfield[@code='y' or @code='3' or @code='z']">
895                         <xsl:call-template name="subfieldSelect">
896                             <xsl:with-param name="codes">y3z</xsl:with-param>
897                         </xsl:call-template>
898                     </xsl:when>
899                     <xsl:when test="not(marc:subfield[@code='y']) and not(marc:subfield[@code='3']) and not(marc:subfield[@code='z'])">
900                         <xsl:choose>
901                             <xsl:when test="$URLLinkText!=''">
902                                 <xsl:value-of select="$URLLinkText"/>
903                             </xsl:when>
904                             <xsl:otherwise>
905                                 <xsl:text>Click here to access online</xsl:text>
906                             </xsl:otherwise>
907                         </xsl:choose>
908                     </xsl:when>
909                 </xsl:choose>
910             </a>
911             <xsl:choose>
912                 <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
913                 <xsl:otherwise> | </xsl:otherwise>
914             </xsl:choose>
915
916         </xsl:for-each>
917         </span>
918     </xsl:if>
919
920         <xsl:if test="marc:datafield[@tag=505]">
921             <div class="results_summary contents">
922             <xsl:choose>
923             <xsl:when test="marc:datafield[@tag=505]/@ind1=0">
924                 <span class="label">Contents:</span>
925             </xsl:when>
926             <xsl:when test="marc:datafield[@tag=505]/@ind1=1">
927                 <span class="label">Incomplete contents:</span>
928             </xsl:when>
929             <xsl:when test="marc:datafield[@tag=505]/@ind1=2">
930                 <span class="label">Partial contents:</span>
931             </xsl:when>
932             </xsl:choose>
933                 <xsl:for-each select="marc:datafield[@tag=505]">
934                     <div class='contentblock'>
935                         <xsl:choose>
936                         <xsl:when test="@ind2=0">
937                             <xsl:call-template name="subfieldSelectSpan">
938                                 <xsl:with-param name="codes">tru</xsl:with-param>
939                             </xsl:call-template>
940                         </xsl:when>
941                         <xsl:otherwise>
942                             <xsl:call-template name="subfieldSelectSpan">
943                                 <xsl:with-param name="codes">atru</xsl:with-param>
944                             </xsl:call-template>
945                         </xsl:otherwise>
946                         </xsl:choose>
947                     </div>
948                 </xsl:for-each>
949             </div>
950         </xsl:if>
951
952         <!-- 586 -->
953         <xsl:if test="marc:datafield[@tag=586]">
954             <span class="results_summary awardsnote">
955                 <xsl:if test="marc:datafield[@tag=586]/@ind1=' '">
956                     <span class="label">Awards: </span>
957                 </xsl:if>
958                 <xsl:for-each select="marc:datafield[@tag=586]">
959                     <xsl:value-of select="marc:subfield[@code='a']"/>
960                     <xsl:if test="position()!=last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
961                 </xsl:for-each>
962             </span>
963         </xsl:if>
964
965          <!-- 583 -->
966              <xsl:if test="marc:datafield[@tag=583]">
967                  <xsl:for-each select="marc:datafield[@tag=583]">
968                     <xsl:if test="@ind1=1 or @ind1=' '">
969                       <span class="results_summary actionnote">
970                           <span class="label">Action note: </span>
971                              <xsl:choose>
972                                  <xsl:when test="marc:subfield[@code='z']">
973                                      <xsl:value-of select="marc:subfield[@code='z']"/>
974                                  </xsl:when>
975                                  <xsl:otherwise>
976                                      <xsl:call-template name="subfieldSelect">
977                                          <xsl:with-param name="codes">abcdefgijklnou</xsl:with-param>
978                                      </xsl:call-template>
979                                  </xsl:otherwise>
980                              </xsl:choose>
981                          </span>
982                      </xsl:if>
983                  </xsl:for-each>
984              </xsl:if>
985
986         <!-- 508 -->
987         <xsl:if test="marc:datafield[@tag=508]">
988             <div class="results_summary prod_credits">
989                 <span class="label">Production credits: </span>
990                 <xsl:for-each select="marc:datafield[@tag=508]">
991                     <xsl:call-template name="subfieldSelectSpan">
992                         <xsl:with-param name="codes">a</xsl:with-param>
993                     </xsl:call-template>
994                     <xsl:if test="position()!=last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
995                 </xsl:for-each>
996             </div>
997         </xsl:if>
998
999         <!-- 773 -->
1000         <xsl:if test="marc:datafield[@tag=773]">
1001             <xsl:for-each select="marc:datafield[@tag=773]">
1002                 <xsl:if test="@ind1 !=1">
1003                     <span class="results_summary in"><span class="label">
1004                     <xsl:choose>
1005                         <xsl:when test="@ind2=' '">
1006                             In:
1007                         </xsl:when>
1008                         <xsl:when test="@ind2=8">
1009                             <xsl:if test="marc:subfield[@code='i']">
1010                                 <xsl:value-of select="marc:subfield[@code='i']"/>
1011                             </xsl:if>
1012                         </xsl:when>
1013                     </xsl:choose>
1014                     </span>
1015                     <xsl:variable name="f773">
1016                         <xsl:call-template name="chopPunctuation">
1017                             <xsl:with-param name="chopString">
1018                                 <xsl:call-template name="subfieldSelect">
1019                                     <xsl:with-param name="codes">a_t</xsl:with-param>
1020                                 </xsl:call-template>
1021                             </xsl:with-param>
1022                         </xsl:call-template>
1023                     </xsl:variable>
1024                     <xsl:choose>
1025                         <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1026                             <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>
1027                             <xsl:value-of select="translate($f773, '()', '')"/>
1028                             </a>
1029                         </xsl:when>
1030                         <xsl:when test="marc:subfield[@code='0']">
1031                             <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/detail.pl?biblionumber=<xsl:value-of select="str:encode-uri(marc:subfield[@code='0'], true())"/></xsl:attribute>
1032                             <xsl:value-of select="$f773"/>
1033                             </a>
1034                         </xsl:when>
1035                         <xsl:otherwise>
1036                             <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=ti,phr:<xsl:value-of select="str:encode-uri(translate($f773, '()', ''), true())"/></xsl:attribute>
1037                             <xsl:value-of select="$f773"/>
1038                             </a>
1039                         </xsl:otherwise>
1040                     </xsl:choose>
1041                     <xsl:if test="marc:subfield[@code='g']">
1042                         <xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/>
1043                     </xsl:if>
1044                     </span>
1045
1046                     <xsl:if test="marc:subfield[@code='n']">
1047                         <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
1048                     </xsl:if>
1049
1050                 </xsl:if>
1051             </xsl:for-each>
1052         </xsl:if>
1053
1054         <xsl:if test="marc:datafield[@tag=502]">
1055             <span class="results_summary diss_note">
1056                 <span class="label">Dissertation note: </span>
1057                 <xsl:for-each select="marc:datafield[@tag=502]">
1058                     <xsl:call-template name="subfieldSelect">
1059                         <xsl:with-param name="codes">abcdgo</xsl:with-param>
1060                     </xsl:call-template>
1061                 </xsl:for-each>
1062                 <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text> </xsl:text></xsl:otherwise></xsl:choose>
1063             </span>
1064         </xsl:if>
1065
1066         <!-- 866 textual holdings -->
1067         <xsl:if test="marc:datafield[@tag=866]">
1068             <span class="results_summary holdings_note"><span class="label">Holdings note: </span>
1069                 <xsl:for-each select="marc:datafield[@tag=866]">
1070                     <xsl:call-template name="subfieldSelect">
1071                         <xsl:with-param name="codes">axz</xsl:with-param>
1072                     </xsl:call-template>
1073                     <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
1074                 </xsl:for-each>
1075             </span>
1076         </xsl:if>
1077
1078         <!--  775 Other Edition  -->
1079         <xsl:if test="marc:datafield[@tag=775]">
1080         <span class="results_summary other_editions"><span class="label">Other editions: </span>
1081         <xsl:for-each select="marc:datafield[@tag=775]">
1082             <xsl:variable name="f775">
1083                 <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
1084                 <xsl:with-param name="codes">a_t</xsl:with-param>
1085                 </xsl:call-template></xsl:with-param></xsl:call-template>
1086             </xsl:variable>
1087             <xsl:if test="marc:subfield[@code='i']">
1088                 <xsl:call-template name="subfieldSelect">
1089                     <xsl:with-param name="codes">i</xsl:with-param>
1090                 </xsl:call-template>
1091                 <xsl:text>: </xsl:text>
1092             </xsl:if>
1093             <a>
1094             <xsl:choose>
1095             <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1096                 <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>
1097             </xsl:when>
1098             <xsl:otherwise>
1099                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=ti,phr:<xsl:value-of select="str:encode-uri(translate($f775, '()', ''), true())"/></xsl:attribute>
1100             </xsl:otherwise>
1101             </xsl:choose>
1102             <xsl:call-template name="subfieldSelect">
1103                 <xsl:with-param name="codes">a_t</xsl:with-param>
1104             </xsl:call-template>
1105             </a>
1106             <xsl:choose>
1107                 <xsl:when test="position()=last()"></xsl:when>
1108                 <xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise>
1109             </xsl:choose>
1110         </xsl:for-each>
1111         </span>
1112         </xsl:if>
1113
1114         <!-- 780 -->
1115         <xsl:if test="marc:datafield[@tag=780]">
1116         <xsl:for-each select="marc:datafield[@tag=780]">
1117         <xsl:if test="@ind1=0">
1118         <span class="results_summary preceeding_entry">
1119         <xsl:choose>
1120         <xsl:when test="@ind2=0">
1121             <span class="label">Continues:</span>
1122         </xsl:when>
1123         <xsl:when test="@ind2=1">
1124             <span class="label">Continues in part:</span>
1125         </xsl:when>
1126         <xsl:when test="@ind2=2">
1127             <span class="label">Supersedes:</span>
1128         </xsl:when>
1129         <xsl:when test="@ind2=3">
1130             <span class="label">Supersedes in part:</span>
1131         </xsl:when>
1132         <xsl:when test="@ind2=4">
1133             <span class="label">Formed by the union: ... and: ...</span>
1134         </xsl:when>
1135         <xsl:when test="@ind2=5">
1136             <span class="label">Absorbed:</span>
1137         </xsl:when>
1138         <xsl:when test="@ind2=6">
1139             <span class="label">Absorbed in part:</span>
1140         </xsl:when>
1141         <xsl:when test="@ind2=7">
1142             <span class="label">Separated from:</span>
1143         </xsl:when>
1144         </xsl:choose>
1145         <xsl:text> </xsl:text>
1146                 <xsl:variable name="f780">
1147                     <xsl:call-template name="subfieldSelect">
1148                         <xsl:with-param name="codes">a_t</xsl:with-param>
1149                     </xsl:call-template>
1150                 </xsl:variable>
1151             <xsl:choose>
1152                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1153                     <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>
1154                         <xsl:value-of select="translate($f780, '()', '')"/>
1155                     </a>
1156                 </xsl:when>
1157                 <xsl:otherwise>
1158                     <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=ti,phr:<xsl:value-of select="str:encode-uri(translate($f780, '()', ''), true())"/></xsl:attribute>
1159                         <xsl:value-of select="translate($f780, '()', '')"/>
1160                     </a>
1161                 </xsl:otherwise>
1162             </xsl:choose>
1163         </span>
1164  
1165         <xsl:if test="marc:subfield[@code='n']">
1166             <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
1167         </xsl:if>
1168
1169         </xsl:if>
1170         </xsl:for-each>
1171         </xsl:if>
1172
1173         <!-- 785 -->
1174         <xsl:if test="marc:datafield[@tag=785]">
1175         <xsl:for-each select="marc:datafield[@tag=785]">
1176         <span class="results_summary succeeding_entry">
1177         <xsl:choose>
1178         <xsl:when test="@ind2=0">
1179             <span class="label">Continued by:</span>
1180         </xsl:when>
1181         <xsl:when test="@ind2=1">
1182             <span class="label">Continued in part by:</span>
1183         </xsl:when>
1184         <xsl:when test="@ind2=2">
1185             <span class="label">Superseded by:</span>
1186         </xsl:when>
1187         <xsl:when test="@ind2=3">
1188             <span class="label">Superseded in part by:</span>
1189         </xsl:when>
1190         <xsl:when test="@ind2=4">
1191             <span class="label">Absorbed by:</span>
1192         </xsl:when>
1193         <xsl:when test="@ind2=5">
1194             <span class="label">Absorbed in part by:</span>
1195         </xsl:when>
1196         <xsl:when test="@ind2=6">
1197             <span class="label">Split into .. and ...:</span>
1198         </xsl:when>
1199         <xsl:when test="@ind2=7">
1200             <span class="label">Merged with ... to form ...</span>
1201         </xsl:when>
1202         <xsl:when test="@ind2=8">
1203             <span class="label">Changed back to:</span>
1204         </xsl:when>
1205         </xsl:choose>
1206         <xsl:text> </xsl:text>
1207                    <xsl:variable name="f785">
1208                     <xsl:call-template name="subfieldSelect">
1209                         <xsl:with-param name="codes">a_t</xsl:with-param>
1210                     </xsl:call-template>
1211                 </xsl:variable>
1212
1213             <xsl:choose>
1214                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1215                     <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>
1216                         <xsl:value-of select="translate($f785, '()', '')"/>
1217                     </a>
1218                 </xsl:when>
1219                 <xsl:otherwise>
1220                     <a><xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=ti,phr:<xsl:value-of select="str:encode-uri(translate($f785, '()', ''), true())"/></xsl:attribute>
1221                         <xsl:value-of select="translate($f785, '()', '')"/>
1222                     </a>
1223                 </xsl:otherwise>
1224             </xsl:choose>
1225
1226         </span>
1227         </xsl:for-each>
1228         </xsl:if>
1229
1230         <xsl:if test="$OPACBaseURL!=''">
1231         <span class="results_summary"><span class="label">OPAC view: </span>
1232             <a><xsl:attribute name="href"><xsl:value-of select="$OPACBaseURL"/>/cgi-bin/koha/opac-detail.pl?biblionumber=<xsl:value-of select="str:encode-uri(marc:datafield[@tag=999]/marc:subfield[@code='c'], true())"/></xsl:attribute><xsl:attribute name="target">_blank</xsl:attribute>Open in new window</a>.
1233         </span>
1234         </xsl:if>
1235
1236     </xsl:template>
1237
1238     <xsl:template name="nameABCQ">
1239             <xsl:call-template name="chopPunctuation">
1240                 <xsl:with-param name="chopString">
1241                     <xsl:call-template name="subfieldSelect">
1242                         <xsl:with-param name="codes">abcq</xsl:with-param>
1243                     </xsl:call-template>
1244                 </xsl:with-param>
1245                 <xsl:with-param name="punctuation">
1246                     <xsl:text>:,;/ </xsl:text>
1247                 </xsl:with-param>
1248             </xsl:call-template>
1249     </xsl:template>
1250
1251     <xsl:template name="nameABCDN">
1252             <xsl:call-template name="chopPunctuation">
1253                 <xsl:with-param name="chopString">
1254                     <xsl:call-template name="subfieldSelect">
1255                         <xsl:with-param name="codes">abcdn</xsl:with-param>
1256                     </xsl:call-template>
1257                 </xsl:with-param>
1258                 <xsl:with-param name="punctuation">
1259                     <xsl:text>:,;/ </xsl:text>
1260                 </xsl:with-param>
1261             </xsl:call-template>
1262     </xsl:template>
1263
1264     <xsl:template name="nameACDEQ">
1265             <xsl:call-template name="subfieldSelect">
1266                 <xsl:with-param name="codes">acdeq</xsl:with-param>
1267             </xsl:call-template>
1268     </xsl:template>
1269
1270     <xsl:template name="part">
1271         <xsl:variable name="partNumber">
1272             <xsl:call-template name="specialSubfieldSelect">
1273                 <xsl:with-param name="axis">n</xsl:with-param>
1274                 <xsl:with-param name="anyCodes">n</xsl:with-param>
1275                 <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
1276             </xsl:call-template>
1277         </xsl:variable>
1278         <xsl:variable name="partName">
1279             <xsl:call-template name="specialSubfieldSelect">
1280                 <xsl:with-param name="axis">p</xsl:with-param>
1281                 <xsl:with-param name="anyCodes">p</xsl:with-param>
1282                 <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
1283             </xsl:call-template>
1284         </xsl:variable>
1285         <xsl:if test="string-length(normalize-space($partNumber))">
1286                 <xsl:call-template name="chopPunctuation">
1287                     <xsl:with-param name="chopString" select="$partNumber"/>
1288                 </xsl:call-template>
1289         </xsl:if>
1290         <xsl:if test="string-length(normalize-space($partName))">
1291                 <xsl:call-template name="chopPunctuation">
1292                     <xsl:with-param name="chopString" select="$partName"/>
1293                 </xsl:call-template>
1294         </xsl:if>
1295     </xsl:template>
1296
1297     <xsl:template name="specialSubfieldSelect">
1298         <xsl:param name="anyCodes"/>
1299         <xsl:param name="axis"/>
1300         <xsl:param name="beforeCodes"/>
1301         <xsl:param name="afterCodes"/>
1302         <xsl:variable name="str">
1303             <xsl:for-each select="marc:subfield">
1304                 <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])">
1305                     <xsl:value-of select="text()"/>
1306                     <xsl:text> </xsl:text>
1307                 </xsl:if>
1308             </xsl:for-each>
1309         </xsl:variable>
1310         <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
1311     </xsl:template>
1312
1313     <xsl:template name="showAuthor">
1314         <xsl:param name="authorfield"/>
1315     <xsl:param name="UseAuthoritiesForTracings"/>
1316         <xsl:if test="count($authorfield)&gt;0">
1317         <h5 class="author">
1318         <xsl:for-each select="$authorfield">
1319         <xsl:choose>
1320           <xsl:when test="position()&gt;1"/>
1321           <!-- #13383 -->
1322           <xsl:when test="@tag&lt;700">By: </xsl:when>
1323           <!--#13382 Changed Additional author to contributor -->
1324           <xsl:otherwise>Contributor(s): </xsl:otherwise>
1325         </xsl:choose>
1326         <a>
1327         <xsl:choose>
1328             <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
1329                 <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=an:<xsl:value-of select="str:encode-uri(marc:subfield[@code=9], true())"/></xsl:attribute>
1330             </xsl:when>
1331             <xsl:otherwise>
1332             <xsl:attribute name="href">/cgi-bin/koha/catalogue/search.pl?q=au:"<xsl:value-of select="str:encode-uri(marc:subfield[@code='a'], true())"/>"</xsl:attribute>
1333             </xsl:otherwise>
1334         </xsl:choose>
1335         <xsl:choose>
1336             <xsl:when test="@tag=100 or @tag=110 or @tag=111">
1337                 <!-- #13383 -->
1338                 <xsl:call-template name="chopPunctuation">
1339                     <xsl:with-param name="chopString">
1340                         <xsl:call-template name="subfieldSelect">
1341                             <xsl:with-param name="codes">
1342                                 <xsl:choose>
1343                                     <!-- #13383 include subfield e for field 111, Display only name portion in 1XX -->
1344                                     <xsl:when test="@tag=111">aeq</xsl:when>
1345                                     <xsl:when test="@tag=110">ab</xsl:when>
1346                                     <xsl:otherwise>abcjq</xsl:otherwise>
1347                                 </xsl:choose>
1348                             </xsl:with-param>
1349                         </xsl:call-template>
1350                     </xsl:with-param>
1351                     <xsl:with-param name="punctuation">
1352                         <xsl:text>:,;/ </xsl:text>
1353                     </xsl:with-param>
1354                 </xsl:call-template>
1355                     <!-- Display only name and title portion in 110 field -->
1356                     <xsl:if test="@tag=110 and boolean(marc:subfield[@code='c' or @code='d' or @code='n' or @code='t'])">
1357                     <span class="titleportion">
1358                     <xsl:choose>
1359                         <xsl:when test="marc:subfield[@code='c' or @code='d' or @code='n'][not(marc:subfield[@code='t'])]"><xsl:text> </xsl:text></xsl:when>
1360                         <xsl:otherwise><xsl:text>. </xsl:text></xsl:otherwise>
1361                     </xsl:choose>
1362                     <xsl:call-template name="chopPunctuation">
1363                         <xsl:with-param name="chopString">
1364                         <xsl:call-template name="subfieldSelect">
1365                             <xsl:with-param name="codes">cdnt</xsl:with-param>
1366                         </xsl:call-template>
1367                         </xsl:with-param>
1368                     </xsl:call-template>
1369                     </span>
1370                     </xsl:if>
1371                     <!-- Display only name and title portion in 111 field -->
1372             <xsl:if test="@tag=111 and boolean(marc:subfield[@code='c' or @code='d' or @code='g' or @code='n' or @code='t'])">
1373                     <span class="titleportion">
1374                     <xsl:choose>
1375                         <xsl:when test="marc:subfield[@code='c' or @code='d' or @code='g' or @code='n'][not(marc:subfield[@code='t'])]"><xsl:text> </xsl:text></xsl:when>
1376                         <xsl:otherwise><xsl:text>. </xsl:text></xsl:otherwise>
1377                     </xsl:choose>
1378
1379                     <xsl:call-template name="chopPunctuation">
1380                         <xsl:with-param name="chopString">
1381                         <xsl:call-template name="subfieldSelect">
1382                             <xsl:with-param name="codes">cdgnt</xsl:with-param>
1383                         </xsl:call-template>
1384                         </xsl:with-param>
1385                     </xsl:call-template>
1386                     </span>
1387             </xsl:if>
1388             <!-- Display only dates in 100 field -->
1389             <xsl:if test="@tag=100 and marc:subfield[@code='d']">
1390                 <span class="authordates">
1391                 <xsl:text>, </xsl:text>
1392                 <xsl:call-template name="chopPunctuation">
1393                     <xsl:with-param name="chopString">
1394                         <xsl:call-template name="subfieldSelect">
1395                            <xsl:with-param name="codes">d</xsl:with-param>
1396                         </xsl:call-template>
1397                         </xsl:with-param>
1398                     </xsl:call-template>
1399                     </span>
1400             </xsl:if>
1401
1402             </xsl:when>
1403             <!-- #13382 excludes 700$i and ind2=2, displayed as Related Works -->
1404             <!--#13382 Added all relevant subfields 4, e, and d are handled separately -->
1405             <xsl:when test="@tag=700 or @tag=710 or @tag=711">
1406                     <!-- Includes major changes for 7XX fields; display name portion in 710 and 711 fields -->
1407                     <xsl:if test="@tag=710 or @tag=711">
1408                     <xsl:call-template name="chopPunctuation">
1409                         <xsl:with-param name="chopString">
1410                             <xsl:call-template name="subfieldSelect">
1411                             <xsl:with-param name="codes">
1412                             <xsl:choose>
1413                                 <xsl:when test="@tag=711">aeq</xsl:when>
1414                                 <xsl:otherwise>ab</xsl:otherwise>
1415                             </xsl:choose>
1416                             </xsl:with-param>
1417                             </xsl:call-template>
1418                         </xsl:with-param>
1419                         <xsl:with-param name="punctuation">
1420                             <xsl:text>:,;/ </xsl:text>
1421                         </xsl:with-param>
1422                     </xsl:call-template>
1423                     <!-- Display only name and title portion in 711 field -->
1424                     <xsl:if test="@tag=711 and boolean(marc:subfield[@code='c' or @code='d' or @code='g' or @code='n' or @code='t'])">
1425                     <span class="titleportion">
1426                     <xsl:choose>
1427                         <xsl:when test="marc:subfield[@code='c' or @code='d' or @code='g' or @code='n'][not(marc:subfield[@code='t'])]"><xsl:text> </xsl:text></xsl:when>
1428                         <xsl:otherwise><xsl:text>. </xsl:text></xsl:otherwise>
1429                     </xsl:choose>
1430
1431                     <xsl:call-template name="chopPunctuation">
1432                         <xsl:with-param name="chopString">
1433                         <xsl:call-template name="subfieldSelect">
1434                             <xsl:with-param name="codes">cdgnt</xsl:with-param>
1435                         </xsl:call-template>
1436                         </xsl:with-param>
1437                     </xsl:call-template>
1438                     </span>
1439                     </xsl:if>
1440                     <!-- Display only name and title portion in 710 field -->
1441                     <xsl:if test="@tag=710 and boolean(marc:subfield[@code='c' or @code='d' or @code='n' or @code='t'])">
1442                     <span class="titleportion">
1443                     <xsl:choose>
1444                         <xsl:when test="marc:subfield[@code='c' or @code='d' or @code='n'][not(marc:subfield[@code='t'])]"><xsl:text> </xsl:text></xsl:when>
1445                         <xsl:otherwise><xsl:text>. </xsl:text></xsl:otherwise>
1446                     </xsl:choose>
1447                     <xsl:call-template name="chopPunctuation">
1448                         <xsl:with-param name="chopString">
1449                         <xsl:call-template name="subfieldSelect">
1450                             <xsl:with-param name="codes">cdnt</xsl:with-param>
1451                         </xsl:call-template>
1452                         </xsl:with-param>
1453                     </xsl:call-template>
1454                     </span>
1455                     </xsl:if>
1456
1457                     </xsl:if>
1458                         <!-- Display only name portion in 700 field -->
1459                         <xsl:if test="@tag=700">
1460                            <xsl:call-template name="chopPunctuation">
1461                                <xsl:with-param name="chopString">
1462                                <xsl:call-template name="subfieldSelect">
1463                                   <xsl:with-param name="codes">abcq</xsl:with-param>
1464                                </xsl:call-template>
1465                                </xsl:with-param>
1466                         </xsl:call-template>
1467                         </xsl:if>
1468                         <!-- Display class "authordates" in 700 field -->
1469                         <xsl:if test="@tag=700 and marc:subfield[@code='d']">
1470                         <span class="authordates">
1471                         <xsl:text>, </xsl:text>
1472                         <xsl:call-template name="chopPunctuation">
1473                             <xsl:with-param name="chopString">
1474                             <xsl:call-template name="subfieldSelect">
1475                                <xsl:with-param name="codes">d</xsl:with-param>
1476                             </xsl:call-template>
1477                             </xsl:with-param>
1478                         </xsl:call-template>
1479                         </span>
1480                         </xsl:if>
1481                         <!-- Display class "titleportion" in 700 field -->
1482                         <xsl:variable name="titleportionfields" select="boolean(marc:subfield[@code='t' or @code='j' or @code='k' or @code='u'])"/>
1483                         <xsl:if test="@tag=700 and $titleportionfields">
1484                         <span class="titleportion">
1485                         <xsl:text>. </xsl:text>
1486                         <xsl:call-template name="chopPunctuation">
1487                             <xsl:with-param name="chopString">
1488                             <xsl:call-template name="subfieldSelect">
1489                                 <xsl:with-param name="codes">fghjklmnoprstux</xsl:with-param>
1490                             </xsl:call-template>
1491                             </xsl:with-param>
1492                         </xsl:call-template>
1493                         </span>
1494                         </xsl:if>
1495
1496         </xsl:when>
1497         </xsl:choose>
1498
1499     <!-- add relator code too between brackets-->
1500     <!-- #13383 include relator code j for field 111 -->
1501             <xsl:if test="(@tag!=111 and @tag!=711 and marc:subfield[@code='4' or @code='e']) or ((@tag=111 or @tag=711) and marc:subfield[@code='4' or @code='j'])">
1502                 <span class="relatorcode">
1503                     <xsl:text> [</xsl:text>
1504                     <xsl:choose>
1505                         <xsl:when test="@tag=111 or @tag=711">
1506                             <xsl:choose>
1507                                 <!-- Prefer j over 4 for fields 111 and 711-->
1508                                 <xsl:when test="marc:subfield[@code='j']">
1509                                     <xsl:for-each select="marc:subfield[@code='j']">
1510                                         <xsl:value-of select="."/>
1511                                         <xsl:if test="position() != last()">, </xsl:if>
1512                                     </xsl:for-each>
1513                                 </xsl:when>
1514                                 <xsl:otherwise>
1515                                     <xsl:for-each select="marc:subfield[@code=4]">
1516                                         <xsl:value-of select="."/>
1517                                         <xsl:if test="position() != last()">, </xsl:if>
1518                                     </xsl:for-each>
1519                                 </xsl:otherwise>
1520                             </xsl:choose>
1521                         </xsl:when>
1522                         <!-- Prefer e over 4 for fields 111 and 711-->
1523                         <xsl:when test="marc:subfield[@code='e'][not(@tag=111) or not(@tag=711)]">
1524                             <xsl:for-each select="marc:subfield[@code='e']">
1525                                 <xsl:value-of select="."/>
1526                                 <xsl:if test="position() != last()">, </xsl:if>
1527                             </xsl:for-each>
1528                         </xsl:when>
1529                         <xsl:otherwise>
1530                             <xsl:for-each select="marc:subfield[@code=4]">
1531                                 <xsl:value-of select="."/>
1532                                 <xsl:if test="position() != last()">, </xsl:if>
1533                             </xsl:for-each>
1534                         </xsl:otherwise>
1535                     </xsl:choose>
1536                     <xsl:text>]</xsl:text>
1537                 </span>
1538             </xsl:if>
1539         </a>
1540         <xsl:choose>
1541             <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise>
1542         </xsl:choose>
1543         </xsl:for-each>
1544         </h5>
1545
1546         </xsl:if>
1547     </xsl:template>
1548
1549     <!-- #1807 Strip unwanted parenthesis from subjects for searching -->
1550     <xsl:template name="subfieldSelectSubject">
1551         <xsl:param name="codes"/>
1552         <xsl:param name="delimeter"><xsl:text> </xsl:text></xsl:param>
1553         <xsl:param name="subdivCodes"/>
1554         <xsl:param name="subdivDelimiter"/>
1555         <xsl:param name="prefix"/>
1556         <xsl:param name="suffix"/>
1557         <xsl:param name="urlencode"/>
1558         <xsl:variable name="str">
1559             <xsl:for-each select="marc:subfield">
1560                 <xsl:if test="contains($codes, @code)">
1561                     <xsl:if test="contains($subdivCodes, @code)">
1562                         <xsl:value-of select="$subdivDelimiter"/>
1563                     </xsl:if>
1564                     <xsl:value-of select="$prefix"/><xsl:value-of select="translate(text(),'()','')"/><xsl:value-of select="$suffix"/><xsl:value-of select="$delimeter"/>
1565                 </xsl:if>
1566             </xsl:for-each>
1567         </xsl:variable>
1568         <xsl:choose>
1569             <xsl:when test="$urlencode=1">
1570                 <xsl:value-of select="str:encode-uri(substring($str,1,string-length($str)-string-length($delimeter)), true())"/>
1571             </xsl:when>
1572             <xsl:otherwise>
1573                 <xsl:value-of select="substring($str,1,string-length($str)-string-length($delimeter))"/>
1574             </xsl:otherwise>
1575         </xsl:choose>
1576     </xsl:template>
1577
1578 </xsl:stylesheet>