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