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