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