Bug 24605: Fix unencoded series link
[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:choose>
782             <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
783                 <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>
784             </xsl:when>
785             <!-- #1807 Strip unwanted parenthesis from subjects for searching -->
786             <xsl:when test="$TraceSubjectSubdivisions='1'">
787                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:call-template name="subfieldSelectSubject">
788                         <xsl:with-param name="codes">abcdfgklmnopqrstvxyz</xsl:with-param>
789                         <xsl:with-param name="delimeter"> AND </xsl:with-param>
790                         <xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/></xsl:with-param>
791                         <xsl:with-param name="suffix"><xsl:value-of select="$TracingQuotesRight"/>)</xsl:with-param>
792                         <xsl:with-param name="urlencode">1</xsl:with-param>
793                     </xsl:call-template>
794                 </xsl:attribute>
795             </xsl:when>
796                 <!-- #1807 Strip unwanted parenthesis from subjects for searching -->
797             <xsl:otherwise>
798                 <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>
799             </xsl:otherwise>
800             </xsl:choose>
801             <xsl:call-template name="chopPunctuation">
802                 <xsl:with-param name="chopString">
803                     <xsl:call-template name="subfieldSelect">
804                         <xsl:with-param name="codes">abcdfgklmnopqrstvxyz</xsl:with-param>
805                         <xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
806                         <xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
807                     </xsl:call-template>
808                 </xsl:with-param>
809             </xsl:call-template>
810             </a>
811             </span>
812             <xsl:if test="marc:subfield[@code=9]">
813                 <a class='authlink'>
814                     <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>
815                     <xsl:element name="img">
816                         <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute>
817                         <xsl:attribute name="style">vertical-align:middle</xsl:attribute>
818                         <xsl:attribute name="height">15</xsl:attribute>
819                         <xsl:attribute name="width">15</xsl:attribute>
820                     </xsl:element>
821                 </a>
822             </xsl:if>
823             <xsl:choose>
824             <xsl:when test="position()=last()"></xsl:when>
825             <xsl:otherwise> | </xsl:otherwise>
826             </xsl:choose>
827
828             </xsl:for-each>
829             </span>
830         </xsl:if>
831
832             <!-- Genre/Form -->
833             <xsl:if test="marc:datafield[@tag=655]">
834                 <span class="results_summary genre"><span class="label">Genre/Form: </span>
835                     <xsl:for-each select="marc:datafield[@tag=655]">
836                         <a>
837                             <xsl:choose>
838                                 <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
839                                     <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>
840                                 </xsl:when>
841                                 <xsl:when test="$TraceSubjectSubdivisions='1'">
842                                     <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:call-template name="subfieldSelectSubject">
843                                         <xsl:with-param name="codes">avxyz</xsl:with-param>
844                                         <xsl:with-param name="delimeter"> AND </xsl:with-param>
845                                         <xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/></xsl:with-param>
846                                         <xsl:with-param name="suffix"><xsl:value-of select="$TracingQuotesRight"/>)</xsl:with-param>
847                                         <xsl:with-param name="urlencode">1</xsl:with-param>
848                                     </xsl:call-template>
849                                     </xsl:attribute>
850                                 </xsl:when>
851                                 <xsl:otherwise>
852                                     <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>
853                                 </xsl:otherwise>
854                             </xsl:choose>
855                         <xsl:call-template name="subfieldSelect">
856                             <xsl:with-param name="codes">avxyz</xsl:with-param>
857                             <xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
858                             <xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
859                         </xsl:call-template>
860                         </a>
861                         <xsl:if test="marc:subfield[@code=9]">
862                             <xsl:text> </xsl:text>
863                             <a class='authlink'>
864                                 <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>
865                                 <xsl:element name="img">
866                                     <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute>
867                                     <xsl:attribute name="alt"></xsl:attribute>
868                                     <xsl:attribute name="height">15</xsl:attribute>
869                                     <xsl:attribute name="width">15</xsl:attribute>
870                                 </xsl:element>
871                             </a>
872                         </xsl:if>
873                         <xsl:if test="position()!=last()"><span class="separator"> | </span></xsl:if>
874                     </xsl:for-each>
875                 </span>
876             </xsl:if>
877
878 <!-- MARC21 776 Additional Physical Form Entry -->
879     <xsl:if test="marc:datafield[@tag=776]">
880         <span class="results_summary add_physical_form">
881             <span class="label">Additional physical formats: </span>
882             <xsl:for-each select="marc:datafield[@tag=776]">
883                 <xsl:variable name="linktext">
884                     <xsl:choose>
885                     <xsl:when test="marc:subfield[@code='t']">
886                         <xsl:value-of select="marc:subfield[@code='t']"/>
887                     </xsl:when>
888                     <xsl:when test="marc:subfield[@code='a']">
889                         <xsl:value-of select="marc:subfield[@code='a']"/>
890                     </xsl:when>
891                     <xsl:otherwise>
892                         <xsl:text>No title</xsl:text>
893                     </xsl:otherwise>
894                     </xsl:choose>
895                 </xsl:variable>
896                 <xsl:if test="@ind2=8 and marc:subfield[@code='i']">
897                     <xsl:call-template name="subfieldSelect">
898                         <xsl:with-param name="codes">i</xsl:with-param>
899                     </xsl:call-template>
900                     <xsl:text>: </xsl:text>
901                 </xsl:if>
902                 <xsl:choose>
903                 <xsl:when test="marc:subfield[@code='w']">
904                     <a>
905                     <xsl:attribute name="href">
906                         <xsl:text>/cgi-bin/koha/opac-search.pl?q=control-number:</xsl:text>
907                         <xsl:call-template name="extractControlNumber">
908                             <xsl:with-param name="subfieldW">
909                                 <xsl:value-of select="marc:subfield[@code='w']"/>
910                             </xsl:with-param>
911                         </xsl:call-template>
912                     </xsl:attribute>
913                     <xsl:value-of select="$linktext"/>
914                     </a>
915                 </xsl:when>
916                 <xsl:otherwise>
917                     <xsl:value-of select="$linktext"/>
918                 </xsl:otherwise>
919                 </xsl:choose>
920                 <xsl:if test="position() != last()">
921                     <xsl:text>; </xsl:text>
922                 </xsl:if>
923             </xsl:for-each>
924         </span>
925     </xsl:if>
926
927 <!-- DDC classification -->
928     <xsl:if test="marc:datafield[@tag=082]">
929         <span class="results_summary ddc">
930             <span class="label">DDC classification: </span>
931             <xsl:for-each select="marc:datafield[@tag=082]">
932                 <xsl:call-template name="subfieldSelect">
933                     <xsl:with-param name="codes">a</xsl:with-param>
934                     <xsl:with-param name="delimeter"><xsl:text> | </xsl:text></xsl:with-param>
935                 </xsl:call-template>
936                 <xsl:choose>
937                     <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
938                     <xsl:otherwise> | </xsl:otherwise>
939                 </xsl:choose>
940             </xsl:for-each>
941         </span>
942     </xsl:if>
943
944 <!-- LOC classification -->
945     <xsl:if test="marc:datafield[@tag=050]">
946         <span class="results_summary loc">
947             <span class="label">LOC classification: </span>
948             <xsl:for-each select="marc:datafield[@tag=050]">
949                 <xsl:call-template name="subfieldSelect">
950                     <xsl:with-param name="codes">ab</xsl:with-param>
951                     <xsl:with-param name="delimeter"><xsl:text> | </xsl:text></xsl:with-param>
952                 </xsl:call-template>
953             </xsl:for-each>
954         </span>
955     </xsl:if>
956
957 <!-- Other classification -->
958     <xsl:if test="marc:datafield[@tag=084]">
959        <span class="results_summary oc">
960            <span class="label">Other classification: </span>
961           <xsl:for-each select="marc:datafield[@tag=084]">
962                 <xsl:call-template name="subfieldSelect">
963                    <xsl:with-param name="codes">a</xsl:with-param>
964                    <xsl:with-param name="delimeter"><xsl:text> | </xsl:text></xsl:with-param>
965                 </xsl:call-template>
966                 <xsl:choose>
967                    <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
968                    <xsl:otherwise> | </xsl:otherwise>
969                 </xsl:choose>
970           </xsl:for-each>
971        </span>
972     </xsl:if>
973
974
975 <!-- Image processing code added here, takes precedence over text links including y3z text   -->
976         <xsl:if test="marc:datafield[@tag=856]">
977         <span class="results_summary online_resources"><span class="label">Online resources: </span>
978         <xsl:for-each select="marc:datafield[@tag=856]">
979             <xsl:variable name="SubqText"><xsl:value-of select="marc:subfield[@code='q']"/></xsl:variable>
980             <a property="url">
981             <xsl:choose>
982               <xsl:when test="$OPACTrackClicks='track'">
983             <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>
984               </xsl:when>
985               <xsl:when test="$OPACTrackClicks='anonymous'">
986             <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>
987               </xsl:when>
988               <xsl:otherwise>
989               <xsl:attribute name="href">
990                   <xsl:if test="not(contains(marc:subfield[@code='u'],'://'))">
991                       <xsl:choose>
992                           <xsl:when test="@ind1=7">
993                               <xsl:value-of select="marc:subfield[@code='2']"/><xsl:text>://</xsl:text>
994                           </xsl:when>
995                           <xsl:when test="@ind1=1">
996                               <xsl:text>ftp://</xsl:text>
997                           </xsl:when>
998                           <xsl:otherwise>
999                               <xsl:text>http://</xsl:text>
1000                           </xsl:otherwise>
1001                       </xsl:choose>
1002                   </xsl:if>
1003                   <xsl:value-of select="marc:subfield[@code='u']"/>
1004               </xsl:attribute>
1005               </xsl:otherwise>
1006             </xsl:choose>
1007             <xsl:if test="$OPACURLOpenInNewWindow='1'">
1008                 <xsl:attribute name="target">_blank</xsl:attribute>
1009             </xsl:if>
1010             <xsl:choose>
1011             <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')">
1012                 <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>
1013             </xsl:when>
1014             <xsl:when test="marc:subfield[@code='y' or @code='3' or @code='z']">
1015                 <xsl:call-template name="subfieldSelect">
1016                     <xsl:with-param name="codes">y3z</xsl:with-param>
1017                 </xsl:call-template>
1018             </xsl:when>
1019             <xsl:when test="$URLLinkText!=''">
1020                 <xsl:value-of select="$URLLinkText"/>
1021             </xsl:when>
1022             <xsl:otherwise>
1023                 <xsl:text>Click here to access online</xsl:text>
1024             </xsl:otherwise>
1025             </xsl:choose>
1026             </a>
1027             <xsl:choose>
1028             <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
1029             <xsl:otherwise> | </xsl:otherwise>
1030             </xsl:choose>
1031         </xsl:for-each>
1032         </span>
1033         </xsl:if>
1034
1035         <!-- 530 -->
1036         <xsl:if test="marc:datafield[@tag=530]">
1037         <xsl:for-each select="marc:datafield[@tag=530]">
1038         <span class="results_summary additionalforms">
1039             <xsl:call-template name="subfieldSelect">
1040                 <xsl:with-param name="codes">abcd</xsl:with-param>
1041             </xsl:call-template>
1042             <xsl:for-each select="marc:subfield[@code='u']">
1043                 <a><xsl:attribute name="href"><xsl:value-of select="text()"/></xsl:attribute>
1044                 <xsl:if test="$OPACURLOpenInNewWindow='1'">
1045                     <xsl:attribute name="target">_blank</xsl:attribute>
1046                 </xsl:if>
1047                 <xsl:value-of select="text()"/>
1048                 </a>
1049             </xsl:for-each>
1050         </span>
1051         </xsl:for-each>
1052         </xsl:if>
1053
1054         <!-- 505 -->
1055         <xsl:if test="marc:datafield[@tag=505]">
1056         <div class="results_summary contents">
1057         <xsl:for-each select="marc:datafield[@tag=505]">
1058         <xsl:if test="position()=1">
1059             <xsl:choose>
1060             <xsl:when test="@ind1=1">
1061                 <span class="label">Incomplete contents:</span>
1062             </xsl:when>
1063             <xsl:when test="@ind1=2">
1064                 <span class="label">Partial contents:</span>
1065             </xsl:when>
1066             <xsl:otherwise>
1067                 <span class="label">Contents:</span>
1068             </xsl:otherwise>
1069             </xsl:choose>
1070         </xsl:if>
1071         <div class='contentblock' property='description'>
1072         <xsl:choose>
1073         <xsl:when test="@ind2=0">
1074             <xsl:call-template name="subfieldSelectSpan">
1075                 <xsl:with-param name="codes">tru</xsl:with-param>
1076             </xsl:call-template>
1077         </xsl:when>
1078         <xsl:otherwise>
1079             <xsl:call-template name="subfieldSelectSpan">
1080                 <xsl:with-param name="codes">atru</xsl:with-param>
1081             </xsl:call-template>
1082         </xsl:otherwise>
1083         </xsl:choose>
1084         </div>
1085         </xsl:for-each>
1086         </div>
1087         </xsl:if>
1088
1089         <!-- 583 -->
1090         <xsl:if test="marc:datafield[@tag=583]">
1091         <xsl:for-each select="marc:datafield[@tag=583]">
1092             <xsl:if test="@ind1=1 or @ind1=' '">
1093             <span class="results_summary actionnote">
1094                 <span class="label">Action note: </span>
1095                 <xsl:choose>
1096                 <xsl:when test="marc:subfield[@code='z']">
1097                     <xsl:value-of select="marc:subfield[@code='z']"/>
1098                 </xsl:when>
1099                 <xsl:otherwise>
1100                     <xsl:call-template name="subfieldSelect">
1101                         <xsl:with-param name="codes">abcdefgijklnou</xsl:with-param>
1102                     </xsl:call-template>
1103                 </xsl:otherwise>
1104                 </xsl:choose>
1105             </span>
1106             </xsl:if>
1107         </xsl:for-each>
1108         </xsl:if>
1109
1110         <!-- 508 -->
1111             <xsl:if test="marc:datafield[@tag=508]">
1112                 <div class="results_summary prod_credits">
1113                     <span class="label">Production Credits: </span>
1114                     <xsl:for-each select="marc:datafield[@tag=508]">
1115                         <xsl:call-template name="subfieldSelectSpan">
1116                             <xsl:with-param name="codes">a</xsl:with-param>
1117                         </xsl:call-template>
1118                         <xsl:if test="position()!=last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
1119                     </xsl:for-each>
1120                 </div>
1121             </xsl:if>
1122
1123         <!-- 586 -->
1124         <xsl:if test="marc:datafield[@tag=586]">
1125             <span class="results_summary awardsnote">
1126                 <xsl:if test="marc:datafield[@tag=586]/@ind1=' '">
1127                     <span class="label">Awards: </span>
1128                 </xsl:if>
1129                 <xsl:for-each select="marc:datafield[@tag=586]">
1130                     <xsl:value-of select="marc:subfield[@code='a']"/>
1131                     <xsl:if test="position()!=last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
1132                 </xsl:for-each>
1133             </span>
1134         </xsl:if>
1135
1136         <!-- 773 -->
1137         <xsl:if test="marc:datafield[@tag=773]">
1138             <xsl:for-each select="marc:datafield[@tag=773]">
1139                 <xsl:if test="@ind1 !=1">
1140                     <span class="results_summary in"><span class="label">
1141                     <xsl:choose>
1142                         <xsl:when test="@ind2=' '">
1143                             In:
1144                         </xsl:when>
1145                         <xsl:when test="@ind2=8">
1146                             <xsl:if test="marc:subfield[@code='i']">
1147                                 <xsl:value-of select="marc:subfield[@code='i']"/>
1148                             </xsl:if>
1149                         </xsl:when>
1150                     </xsl:choose>
1151                     </span>
1152                     <xsl:variable name="f773">
1153                         <xsl:call-template name="chopPunctuation">
1154                             <xsl:with-param name="chopString">
1155                                 <xsl:call-template name="subfieldSelect">
1156                                     <xsl:with-param name="codes">a_t</xsl:with-param>
1157                                 </xsl:call-template>
1158                             </xsl:with-param>
1159                         </xsl:call-template>
1160                     </xsl:variable>
1161                     <xsl:choose>
1162                         <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1163                             <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>
1164                             <xsl:value-of select="translate($f773, '()', '')"/>
1165                             </a>
1166                         </xsl:when>
1167                         <xsl:when test="marc:subfield[@code='0']">
1168                             <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>
1169                             <xsl:value-of select="$f773"/>
1170                             </a>
1171                         </xsl:when>
1172                         <xsl:otherwise>
1173                             <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>
1174                             <xsl:value-of select="$f773"/>
1175                             </a>
1176                         </xsl:otherwise>
1177                     </xsl:choose>
1178                     <xsl:if test="marc:subfield[@code='g']">
1179                         <xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/>
1180                     </xsl:if>
1181                     </span>
1182
1183                     <xsl:if test="marc:subfield[@code='n']">
1184                         <span class="results_summary in_note"><xsl:value-of select="marc:subfield[@code='n']"/></span>
1185                     </xsl:if>
1186
1187                 </xsl:if>
1188             </xsl:for-each>
1189         </xsl:if>
1190
1191         <xsl:for-each select="marc:datafield[@tag=511]">
1192             <span class="results_summary perf_note">
1193                 <span class="label">
1194                     <xsl:if test="@ind1=1"><xsl:text>Cast: </xsl:text></xsl:if>
1195                 </span>
1196                 <xsl:call-template name="subfieldSelect">
1197                     <xsl:with-param name="codes">a</xsl:with-param>
1198                 </xsl:call-template>
1199             </span>
1200         </xsl:for-each>
1201
1202         <xsl:if test="marc:datafield[@tag=502]">
1203             <span class="results_summary diss_note">
1204                 <span class="label">Dissertation note: </span>
1205                 <xsl:for-each select="marc:datafield[@tag=502]">
1206                     <xsl:call-template name="subfieldSelect">
1207                         <xsl:with-param name="codes">abcdgo</xsl:with-param>
1208                     </xsl:call-template>
1209                 </xsl:for-each>
1210                 <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text> </xsl:text></xsl:otherwise></xsl:choose>
1211             </span>
1212         </xsl:if>
1213
1214         <xsl:for-each select="marc:datafield[@tag=520]">
1215         <span class="results_summary summary"><span class="label">
1216         <xsl:choose>
1217           <xsl:when test="@ind1=0"><xsl:text>Subject: </xsl:text></xsl:when>
1218           <xsl:when test="@ind1=1"><xsl:text>Review: </xsl:text></xsl:when>
1219           <xsl:when test="@ind1=2"><xsl:text>Scope and content: </xsl:text></xsl:when>
1220           <xsl:when test="@ind1=3"><xsl:text>Abstract: </xsl:text></xsl:when>
1221           <xsl:when test="@ind1=4"><xsl:text>Content advice: </xsl:text></xsl:when>
1222           <xsl:otherwise><xsl:text>Summary: </xsl:text></xsl:otherwise>
1223         </xsl:choose>
1224         </span>
1225         <xsl:call-template name="subfieldSelect">
1226           <xsl:with-param name="codes">abcu</xsl:with-param>
1227         </xsl:call-template>
1228         </span>
1229         </xsl:for-each>
1230
1231         <!-- 866 textual holdings -->
1232         <xsl:if test="marc:datafield[@tag=866]">
1233             <span class="results_summary holdings_note basic_bibliographic_unit"><span class="label">Holdings: </span>
1234                 <xsl:for-each select="marc:datafield[@tag=866]">
1235                     <span class="holdings_note_data">
1236                         <xsl:call-template name="subfieldSelect">
1237                             <xsl:with-param name="codes">az</xsl:with-param>
1238                         </xsl:call-template>
1239                         <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
1240                     </span>
1241                 </xsl:for-each>
1242             </span>
1243         </xsl:if>
1244
1245         <!-- 867 textual holdings -->
1246         <xsl:if test="marc:datafield[@tag=867]">
1247             <span class="results_summary holdings_note supplementary_material"><span class="label">Supplements: </span>
1248                 <xsl:for-each select="marc:datafield[@tag=867]">
1249                     <span class="holdings_note_data">
1250                         <xsl:call-template name="subfieldSelect">
1251                             <xsl:with-param name="codes">az</xsl:with-param>
1252                         </xsl:call-template>
1253                         <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
1254                     </span>
1255                 </xsl:for-each>
1256             </span>
1257         </xsl:if>
1258
1259         <!-- 868 textual holdings -->
1260         <xsl:if test="marc:datafield[@tag=868]">
1261             <span class="results_summary holdings_note indexes"><span class="label">Indexes: </span>
1262                 <xsl:for-each select="marc:datafield[@tag=868]">
1263                     <span class="holdings_note_data">
1264                         <xsl:call-template name="subfieldSelect">
1265                             <xsl:with-param name="codes">az</xsl:with-param>
1266                         </xsl:call-template>
1267                         <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text><br /></xsl:otherwise></xsl:choose>
1268                     </span>
1269                 </xsl:for-each>
1270             </span>
1271         </xsl:if>
1272
1273         <!--  775 Other Edition  -->
1274         <xsl:if test="marc:datafield[@tag=775]">
1275         <span class="results_summary other_editions"><span class="label">Other editions: </span>
1276         <xsl:for-each select="marc:datafield[@tag=775]">
1277             <xsl:variable name="f775">
1278                 <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
1279                 <xsl:with-param name="codes">a_t</xsl:with-param>
1280                 </xsl:call-template></xsl:with-param></xsl:call-template>
1281             </xsl:variable>
1282             <xsl:if test="marc:subfield[@code='i']">
1283                 <xsl:call-template name="subfieldSelect">
1284                     <xsl:with-param name="codes">i</xsl:with-param>
1285                 </xsl:call-template>
1286                 <xsl:text>: </xsl:text>
1287             </xsl:if>
1288             <a>
1289             <xsl:choose>
1290             <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1291                 <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>
1292             </xsl:when>
1293             <xsl:otherwise>
1294                 <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>
1295             </xsl:otherwise>
1296             </xsl:choose>
1297             <xsl:call-template name="subfieldSelect">
1298                 <xsl:with-param name="codes">a_t</xsl:with-param>
1299             </xsl:call-template>
1300             </a>
1301             <xsl:choose>
1302                 <xsl:when test="position()=last()"></xsl:when>
1303                 <xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise>
1304             </xsl:choose>
1305         </xsl:for-each>
1306         </span>
1307         </xsl:if>
1308
1309         <!-- 780 -->
1310         <xsl:if test="marc:datafield[@tag=780]">
1311         <xsl:for-each select="marc:datafield[@tag=780]">
1312         <xsl:if test="@ind1=0">
1313         <span class="results_summary preceeding_entry">
1314         <xsl:choose>
1315         <xsl:when test="@ind2=0">
1316             <span class="label">Continues:</span>
1317         </xsl:when>
1318         <xsl:when test="@ind2=1">
1319             <span class="label">Continues in part:</span>
1320         </xsl:when>
1321         <xsl:when test="@ind2=2">
1322             <span class="label">Supersedes:</span>
1323         </xsl:when>
1324         <xsl:when test="@ind2=3">
1325             <span class="label">Supersedes in part:</span>
1326         </xsl:when>
1327         <xsl:when test="@ind2=4">
1328             <span class="label">Formed by the union: ... and: ...</span>
1329         </xsl:when>
1330         <xsl:when test="@ind2=5">
1331             <span class="label">Absorbed:</span>
1332         </xsl:when>
1333         <xsl:when test="@ind2=6">
1334             <span class="label">Absorbed in part:</span>
1335         </xsl:when>
1336         <xsl:when test="@ind2=7">
1337             <span class="label">Separated from:</span>
1338         </xsl:when>
1339         </xsl:choose>
1340         <xsl:text> </xsl:text>
1341                 <xsl:variable name="f780">
1342                     <xsl:call-template name="subfieldSelect">
1343                         <xsl:with-param name="codes">a_t</xsl:with-param>
1344                     </xsl:call-template>
1345                 </xsl:variable>
1346             <xsl:choose>
1347                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1348                     <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>
1349                         <xsl:value-of select="translate($f780, '()', '')"/>
1350                     </a>
1351                 </xsl:when>
1352                 <xsl:otherwise>
1353                     <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>
1354                         <xsl:value-of select="translate($f780, '()', '')"/>
1355                     </a>
1356                 </xsl:otherwise>
1357             </xsl:choose>
1358         </span>
1359
1360         <xsl:if test="marc:subfield[@code='n']">
1361             <span class="results_summary preceeding_entry_note"><xsl:value-of select="marc:subfield[@code='n']"/></span>
1362         </xsl:if>
1363
1364         </xsl:if>
1365         </xsl:for-each>
1366         </xsl:if>
1367
1368         <!-- 785 -->
1369         <xsl:if test="marc:datafield[@tag=785]">
1370         <xsl:for-each select="marc:datafield[@tag=785]">
1371         <xsl:if test="@ind1=0">
1372         <span class="results_summary succeeding_entry">
1373         <xsl:choose>
1374         <xsl:when test="@ind2=0">
1375             <span class="label">Continued by:</span>
1376         </xsl:when>
1377         <xsl:when test="@ind2=1">
1378             <span class="label">Continued in part by:</span>
1379         </xsl:when>
1380         <xsl:when test="@ind2=2">
1381             <span class="label">Superseded by:</span>
1382         </xsl:when>
1383         <xsl:when test="@ind2=3">
1384             <span class="label">Superseded in part by:</span>
1385         </xsl:when>
1386         <xsl:when test="@ind2=4">
1387             <span class="label">Absorbed by:</span>
1388         </xsl:when>
1389         <xsl:when test="@ind2=5">
1390             <span class="label">Absorbed in part by:</span>
1391         </xsl:when>
1392         <xsl:when test="@ind2=6">
1393             <span class="label">Split into .. and ...:</span>
1394         </xsl:when>
1395         <xsl:when test="@ind2=7">
1396             <span class="label">Merged with ... to form ...</span>
1397         </xsl:when>
1398         <xsl:when test="@ind2=8">
1399             <span class="label">Changed back to:</span>
1400         </xsl:when>
1401         </xsl:choose>
1402         <xsl:text> </xsl:text>
1403                    <xsl:variable name="f785">
1404                     <xsl:call-template name="subfieldSelect">
1405                         <xsl:with-param name="codes">a_t</xsl:with-param>
1406                     </xsl:call-template>
1407                 </xsl:variable>
1408
1409             <xsl:choose>
1410                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1411                     <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>
1412                         <xsl:value-of select="translate($f785, '()', '')"/>
1413                     </a>
1414                 </xsl:when>
1415                 <xsl:otherwise>
1416                     <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>
1417                         <xsl:value-of select="translate($f785, '()', '')"/>
1418                     </a>
1419                 </xsl:otherwise>
1420             </xsl:choose>
1421
1422         </span>
1423
1424         <xsl:if test="marc:subfield[@code='n']">
1425             <span class="results_summary succeeding_entry_note"><xsl:value-of select="marc:subfield[@code='n']"/></span>
1426         </xsl:if>
1427
1428         </xsl:if>
1429         </xsl:for-each>
1430         </xsl:if>
1431
1432         <!-- OpenURL -->
1433         <xsl:variable name="OPACShowOpenURL" select="marc:sysprefs/marc:syspref[@name='OPACShowOpenURL']" />
1434         <xsl:variable name="OpenURLImageLocation" select="marc:sysprefs/marc:syspref[@name='OpenURLImageLocation']" />
1435         <xsl:variable name="OpenURLText" select="marc:sysprefs/marc:syspref[@name='OpenURLText']" />
1436         <xsl:variable name="OpenURLResolverURL" select="marc:variables/marc:variable[@name='OpenURLResolverURL']" />
1437
1438         <xsl:if test="$OPACShowOpenURL = 1 and $OpenURLResolverURL != ''">
1439           <xsl:variable name="openurltext">
1440             <xsl:choose>
1441               <xsl:when test="$OpenURLText != ''">
1442                 <xsl:value-of select="$OpenURLText" />
1443               </xsl:when>
1444               <xsl:otherwise>
1445                 <xsl:text>OpenURL</xsl:text>
1446               </xsl:otherwise>
1447             </xsl:choose>
1448           </xsl:variable>
1449
1450           <span class="results_summary"><a>
1451             <xsl:attribute name="href">
1452               <xsl:value-of select="$OpenURLResolverURL" />
1453             </xsl:attribute>
1454             <xsl:attribute name="title">
1455               <xsl:value-of select="$openurltext" />
1456             </xsl:attribute>
1457             <xsl:attribute name="class">
1458               <xsl:text>OpenURL</xsl:text>
1459             </xsl:attribute>
1460             <xsl:if test="$OPACURLOpenInNewWindow='1'">
1461               <xsl:attribute name="target">
1462                 <xsl:text>_blank</xsl:text>
1463               </xsl:attribute>
1464             </xsl:if>
1465             <xsl:choose>
1466               <xsl:when test="$OpenURLImageLocation != ''">
1467                 <img>
1468                   <xsl:attribute name="src">
1469                     <xsl:value-of select="$OpenURLImageLocation" />
1470                   </xsl:attribute>
1471                 </img>
1472               </xsl:when>
1473               <xsl:otherwise>
1474                 <xsl:value-of select="$openurltext" />
1475               </xsl:otherwise>
1476             </xsl:choose>
1477           </a></span>
1478         </xsl:if>
1479         <!-- End of OpenURL -->
1480
1481         <xsl:variable name="OPACShowMusicalInscripts" select="marc:sysprefs/marc:syspref[@name='OPACShowMusicalInscripts']" />
1482         <xsl:variable name="OPACPlayMusicalInscripts" select="marc:sysprefs/marc:syspref[@name='OPACPlayMusicalInscripts']" />
1483
1484         <xsl:if test="$OPACShowMusicalInscripts = 1 and marc:datafield[@tag=031]">
1485             <xsl:for-each select="marc:datafield[@tag=031]">
1486
1487                 <span class="results_summary musical_inscripts">
1488                     <xsl:if test="marc:subfield[@code='u']">
1489                         <span class="uri">
1490                             <a>
1491                                 <xsl:attribute name="href">
1492                                     <xsl:value-of select="marc:subfield[@code='u']"/>
1493                                 </xsl:attribute>
1494                                 <xsl:text>Audio file</xsl:text>
1495                             </a>
1496                         </span>
1497                     </xsl:if>
1498                     <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']">
1499                         <div class="inscript" data-system="pae">
1500                             <xsl:attribute name="data-clef">
1501                                 <xsl:value-of select="marc:subfield[@code='g']"/>
1502                             </xsl:attribute>
1503                             <xsl:attribute name="data-keysig">
1504                                 <xsl:value-of select="marc:subfield[@code='n']"/>
1505                             </xsl:attribute>
1506                             <xsl:attribute name="data-timesig">
1507                                 <xsl:value-of select="marc:subfield[@code='o']"/>
1508                             </xsl:attribute>
1509                             <xsl:attribute name="data-notation">
1510                                 <xsl:value-of select="marc:subfield[@code='p']"/>
1511                             </xsl:attribute>
1512                         </div>
1513                         <xsl:if test="$OPACPlayMusicalInscripts = 1">
1514                             <div class="audio_controls hide">
1515                                 <button class="btn play_btn">
1516                                     <i id="carticon" class="fa fa-play"></i>
1517                                     <xsl:text> Play this sample</xsl:text>
1518                                 </button>
1519                             </div>
1520                         </xsl:if>
1521                     </xsl:if>
1522                 </span>
1523             </xsl:for-each>
1524             <xsl:if test="$OPACPlayMusicalInscripts = 1">
1525                 <div class="results_summary">
1526                     <span class="inscript_audio hide"></span>
1527                 </div>
1528             </xsl:if>
1529         </xsl:if>
1530
1531     </xsl:element>
1532     </xsl:template>
1533
1534     <xsl:template name="showAuthor">
1535         <xsl:param name="authorfield" />
1536         <xsl:param name="UseAuthoritiesForTracings" />
1537         <xsl:param name="materialTypeLabel" />
1538         <xsl:param name="theme" />
1539         <xsl:if test="count($authorfield)&gt;0">
1540         <h5 class="author">
1541             <xsl:for-each select="$authorfield">
1542                 <xsl:choose>
1543                     <xsl:when test="position()&gt;1"/>
1544                     <!-- #13383 -->
1545                     <xsl:when test="@tag&lt;700"><span class="byAuthor">By: </span></xsl:when>
1546                     <!--#13382 Changed Additional author to contributor -->
1547                     <xsl:otherwise>Contributor(s): </xsl:otherwise>
1548                 </xsl:choose>
1549             <xsl:choose>
1550                 <xsl:when test="not(@tag=111) or @tag=700 or @tag=710 or @tag=711"/>
1551                 <xsl:when test="marc:subfield[@code='n']">
1552                     <xsl:text> </xsl:text>
1553                     <xsl:call-template name="subfieldSelect">
1554                         <xsl:with-param name="codes">n</xsl:with-param>
1555                     </xsl:call-template>
1556                     <xsl:text> </xsl:text>
1557                 </xsl:when>
1558             </xsl:choose>
1559             <a>
1560                 <xsl:choose>
1561                     <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
1562                         <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>
1563                     </xsl:when>
1564                     <xsl:otherwise>
1565                         <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>
1566                     </xsl:otherwise>
1567                 </xsl:choose>
1568                 <span resource="#record"><span>
1569                     <xsl:choose>
1570                         <xsl:when test="substring(@tag, 1, 1)='1'">
1571                             <xsl:choose>
1572                                 <xsl:when test="$materialTypeLabel='Music'"><xsl:attribute name="property">byArtist</xsl:attribute></xsl:when>
1573                                 <xsl:otherwise><xsl:attribute name="property">author</xsl:attribute></xsl:otherwise>
1574                             </xsl:choose>
1575                         </xsl:when>
1576                         <xsl:otherwise><xsl:attribute name="property">contributor</xsl:attribute></xsl:otherwise>
1577                     </xsl:choose>
1578                     <xsl:choose>
1579                         <xsl:when test="substring(@tag, 2, 1)='0'">
1580                             <xsl:choose>
1581                                 <xsl:when test="$materialTypeLabel='Music'"><xsl:attribute name="typeof">MusicGroup</xsl:attribute></xsl:when>
1582                                 <xsl:otherwise><xsl:attribute name="typeof">Person</xsl:attribute></xsl:otherwise>
1583                             </xsl:choose>
1584                         </xsl:when>
1585                         <xsl:otherwise><xsl:attribute name="typeof">Organization</xsl:attribute></xsl:otherwise>
1586                     </xsl:choose>
1587                 <span property="name">
1588                 <xsl:choose>
1589                     <xsl:when test="@tag=100 or @tag=110 or @tag=111">
1590                         <!-- #13383 -->
1591                         <xsl:call-template name="chopPunctuation">
1592                             <xsl:with-param name="chopString">
1593                                 <xsl:call-template name="subfieldSelect">
1594                                     <xsl:with-param name="codes">
1595                                         <xsl:choose>
1596                                             <!-- #13383 include subfield e for field 111, Display only name portion in 1XX  -->
1597                                             <xsl:when test="@tag=111">aeq</xsl:when>
1598                                             <xsl:when test="@tag=110">ab</xsl:when>
1599                                             <xsl:otherwise>abcjq</xsl:otherwise>
1600                                         </xsl:choose>
1601                                     </xsl:with-param>
1602                                 </xsl:call-template>
1603                             </xsl:with-param>
1604                             <xsl:with-param name="punctuation">
1605                                 <xsl:text>:,;/ </xsl:text>
1606                             </xsl:with-param>
1607                         </xsl:call-template>
1608                     <!-- Display only name and title portion in 110 field -->
1609                     <xsl:if test="@tag=110 and boolean(marc:subfield[@code='c' or @code='d' or @code='n' or @code='t'])">
1610                     <span class="titleportion">
1611                     <xsl:choose>
1612                         <xsl:when test="marc:subfield[@code='c' or @code='d' or @code='n'][not(marc:subfield[@code='t'])]"><xsl:text> </xsl:text></xsl:when>
1613                         <xsl:otherwise><xsl:text>. </xsl:text></xsl:otherwise>
1614                     </xsl:choose>
1615                     <xsl:call-template name="chopPunctuation">
1616                         <xsl:with-param name="chopString">
1617                         <xsl:call-template name="subfieldSelect">
1618                             <xsl:with-param name="codes">cdnt</xsl:with-param>
1619                         </xsl:call-template>
1620                         </xsl:with-param>
1621                     </xsl:call-template>
1622                     </span>
1623                     </xsl:if>
1624                     <!-- Display only name and title portion in 111 field -->
1625             <xsl:if test="@tag=111 and boolean(marc:subfield[@code='c' or @code='d' or @code='g' or @code='n' or @code='t'])">
1626                     <span class="titleportion">
1627                     <xsl:choose>
1628                         <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>
1629                         <xsl:otherwise><xsl:text>. </xsl:text></xsl:otherwise>
1630                     </xsl:choose>
1631
1632                     <xsl:call-template name="chopPunctuation">
1633                         <xsl:with-param name="chopString">
1634                         <xsl:call-template name="subfieldSelect">
1635                             <xsl:with-param name="codes">cdgnt</xsl:with-param>
1636                         </xsl:call-template>
1637                         </xsl:with-param>
1638                     </xsl:call-template>
1639                     </span>
1640             </xsl:if>
1641             <!-- Display only dates in 100 field -->
1642                         <xsl:if test="@tag=100 and marc:subfield[@code='d']">
1643                         <span class="authordates">
1644                         <xsl:text>, </xsl:text>
1645                         <xsl:call-template name="chopPunctuation">
1646                             <xsl:with-param name="chopString">
1647                             <xsl:call-template name="subfieldSelect">
1648                                <xsl:with-param name="codes">d</xsl:with-param>
1649                             </xsl:call-template>
1650                             </xsl:with-param>
1651                         </xsl:call-template>
1652                         </span>
1653                         </xsl:if>
1654                     </xsl:when>
1655                     <!-- #13382 excludes 700$i and ind2=2, displayed as Related Works -->
1656                     <!--#13382 Added all relevant subfields 4, e, and d are handled separately -->
1657                     <xsl:when test="@tag=700 or @tag=710 or @tag=711">
1658                     <!-- Includes major changes for 7XX fields; display name portion in 710 and 711 fields -->
1659                     <xsl:if test="@tag=710 or @tag=711">
1660                     <xsl:call-template name="chopPunctuation">
1661                         <xsl:with-param name="chopString">
1662                             <xsl:call-template name="subfieldSelect">
1663                             <xsl:with-param name="codes">
1664                             <xsl:choose>
1665                                 <xsl:when test="@tag=711">aeq</xsl:when>
1666                                 <xsl:otherwise>ab</xsl:otherwise>
1667                             </xsl:choose>
1668                             </xsl:with-param>
1669                             </xsl:call-template>
1670                         </xsl:with-param>
1671                         <xsl:with-param name="punctuation">
1672                             <xsl:text>:,;/ </xsl:text>
1673                         </xsl:with-param>
1674                     </xsl:call-template>
1675                     <!-- Display only name and title portion in 711 field -->
1676                     <xsl:if test="@tag=711 and boolean(marc:subfield[@code='c' or @code='d' or @code='g' or @code='n' or @code='t'])">
1677                     <span class="titleportion">
1678                     <xsl:choose>
1679                         <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>
1680                         <xsl:otherwise><xsl:text>. </xsl:text></xsl:otherwise>
1681                     </xsl:choose>
1682
1683                     <xsl:call-template name="chopPunctuation">
1684                         <xsl:with-param name="chopString">
1685                         <xsl:call-template name="subfieldSelect">
1686                             <xsl:with-param name="codes">cdgnt</xsl:with-param>
1687                         </xsl:call-template>
1688                         </xsl:with-param>
1689                     </xsl:call-template>
1690                     </span>
1691                     </xsl:if>
1692                     <!-- Display only name and title portion in 710 field -->
1693                     <xsl:if test="@tag=710 and boolean(marc:subfield[@code='c' or @code='d' or @code='n' or @code='t'])">
1694                     <span class="titleportion">
1695                     <xsl:choose>
1696                         <xsl:when test="marc:subfield[@code='c' or @code='d' or @code='n'][not(marc:subfield[@code='t'])]"><xsl:text> </xsl:text></xsl:when>
1697                         <xsl:otherwise><xsl:text>. </xsl:text></xsl:otherwise>
1698                     </xsl:choose>
1699                     <xsl:call-template name="chopPunctuation">
1700                         <xsl:with-param name="chopString">
1701                         <xsl:call-template name="subfieldSelect">
1702                             <xsl:with-param name="codes">cdnt</xsl:with-param>
1703                         </xsl:call-template>
1704                         </xsl:with-param>
1705                     </xsl:call-template>
1706                     </span>
1707                     </xsl:if>
1708
1709                     </xsl:if>
1710                         <!-- Display only name portion in 700 field -->
1711                         <xsl:if test="@tag=700">
1712                            <xsl:call-template name="chopPunctuation">
1713                                <xsl:with-param name="chopString">
1714                                <xsl:call-template name="subfieldSelect">
1715                                   <xsl:with-param name="codes">abcq</xsl:with-param>
1716                                </xsl:call-template>
1717                                </xsl:with-param>
1718                         </xsl:call-template>
1719                         </xsl:if>
1720                         <!-- Display class "authordates" in 700 field -->
1721                         <xsl:if test="@tag=700 and marc:subfield[@code='d']">
1722                         <span class="authordates">
1723                         <xsl:text>, </xsl:text>
1724                         <xsl:call-template name="chopPunctuation">
1725                             <xsl:with-param name="chopString">
1726                             <xsl:call-template name="subfieldSelect">
1727                                <xsl:with-param name="codes">d</xsl:with-param>
1728                             </xsl:call-template>
1729                             </xsl:with-param>
1730                         </xsl:call-template>
1731                         </span>
1732                         </xsl:if>
1733                         <!-- Display class "titleportion" in 700 field -->
1734                         <xsl:variable name="titleportionfields" select="boolean(marc:subfield[@code='t' or @code='j' or @code='k' or @code='u'])"/>
1735                         <xsl:if test="@tag=700 and $titleportionfields">
1736                         <span class="titleportion">
1737                         <xsl:text>. </xsl:text>
1738                         <xsl:call-template name="chopPunctuation">
1739                             <xsl:with-param name="chopString">
1740                             <xsl:call-template name="subfieldSelect">
1741                                 <xsl:with-param name="codes">fghjklmnoprstux</xsl:with-param>
1742                             </xsl:call-template>
1743                             </xsl:with-param>
1744                         </xsl:call-template>
1745                         </span>
1746                         </xsl:if>
1747
1748                     </xsl:when>
1749                 </xsl:choose>
1750                 </span></span></span>
1751
1752                 <!-- #13383 include relator code j for field 111 also include 711$e 'Subordinate unit' -->
1753                 <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'])">
1754
1755                     <span class="relatorcode">
1756                         <xsl:text> [</xsl:text>
1757                         <xsl:choose>
1758                             <xsl:when test="@tag=111 or @tag=711">
1759                                 <xsl:choose>
1760                                     <!-- Prefer j over 4 for 111 and 711 -->
1761                                     <xsl:when test="marc:subfield[@code='j']">
1762                                         <xsl:for-each select="marc:subfield[@code='j']">
1763                                             <xsl:value-of select="."/>
1764                                             <xsl:if test="position() != last()">, </xsl:if>
1765                                         </xsl:for-each>
1766                                     </xsl:when>
1767                                     <xsl:otherwise>
1768                                         <xsl:for-each select="marc:subfield[@code=4]">
1769                                             <xsl:value-of select="."/>
1770                                             <xsl:if test="position() != last()">, </xsl:if>
1771                                         </xsl:for-each>
1772                                     </xsl:otherwise>
1773                                 </xsl:choose>
1774                             </xsl:when>
1775                             <!-- Prefer e over 4 on 100 and 110-->
1776                             <xsl:when test="marc:subfield[@code='e'][not(@tag=111) or not(@tag=711)]">
1777                                 <xsl:for-each select="marc:subfield[@code='e']">
1778                                     <xsl:value-of select="."/>
1779                                     <xsl:if test="position() != last()">, </xsl:if>
1780                                 </xsl:for-each>
1781                             </xsl:when>
1782                             <xsl:otherwise>
1783                                 <xsl:for-each select="marc:subfield[@code=4]">
1784                                     <xsl:value-of select="."/>
1785                                     <xsl:if test="position() != last()">, </xsl:if>
1786                                 </xsl:for-each>
1787                             </xsl:otherwise>
1788                         </xsl:choose>
1789                         <xsl:text>]</xsl:text>
1790                     </span>
1791                 </xsl:if>
1792             </a>
1793             <xsl:if test="marc:subfield[@code=9]">
1794                 <a class='authlink'>
1795                     <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>
1796                     <xsl:element name="img">
1797                         <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute>
1798                         <xsl:attribute name="style">vertical-align:middle</xsl:attribute>
1799                         <xsl:attribute name="height">15</xsl:attribute>
1800                         <xsl:attribute name="width">15</xsl:attribute>
1801                     </xsl:element>
1802                 </a>
1803             </xsl:if>
1804                 <xsl:choose>
1805                     <xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise>
1806                 </xsl:choose>
1807             </xsl:for-each>
1808         </h5>
1809         </xsl:if>
1810     </xsl:template>
1811
1812     <xsl:template name="nameABCQ">
1813             <xsl:call-template name="chopPunctuation">
1814                 <xsl:with-param name="chopString">
1815                     <xsl:call-template name="subfieldSelect">
1816                         <xsl:with-param name="codes">abcq</xsl:with-param>
1817                     </xsl:call-template>
1818                 </xsl:with-param>
1819                 <xsl:with-param name="punctuation">
1820                     <xsl:text>:,;/ </xsl:text>
1821                 </xsl:with-param>
1822             </xsl:call-template>
1823     </xsl:template>
1824
1825     <xsl:template name="nameABCDN">
1826             <xsl:call-template name="chopPunctuation">
1827                 <xsl:with-param name="chopString">
1828                     <xsl:call-template name="subfieldSelect">
1829                         <xsl:with-param name="codes">abcdn</xsl:with-param>
1830                     </xsl:call-template>
1831                 </xsl:with-param>
1832                 <xsl:with-param name="punctuation">
1833                     <xsl:text>:,;/ </xsl:text>
1834                 </xsl:with-param>
1835             </xsl:call-template>
1836     </xsl:template>
1837
1838     <xsl:template name="nameACDEQ">
1839             <xsl:call-template name="subfieldSelect">
1840                 <xsl:with-param name="codes">acdeq</xsl:with-param>
1841             </xsl:call-template>
1842     </xsl:template>
1843
1844     <xsl:template name="part">
1845         <xsl:variable name="partNumber">
1846             <xsl:call-template name="specialSubfieldSelect">
1847                 <xsl:with-param name="axis">n</xsl:with-param>
1848                 <xsl:with-param name="anyCodes">n</xsl:with-param>
1849                 <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
1850             </xsl:call-template>
1851         </xsl:variable>
1852         <xsl:variable name="partName">
1853             <xsl:call-template name="specialSubfieldSelect">
1854                 <xsl:with-param name="axis">p</xsl:with-param>
1855                 <xsl:with-param name="anyCodes">p</xsl:with-param>
1856                 <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
1857             </xsl:call-template>
1858         </xsl:variable>
1859         <xsl:if test="string-length(normalize-space($partNumber))">
1860                 <xsl:call-template name="chopPunctuation">
1861                     <xsl:with-param name="chopString" select="$partNumber"/>
1862                 </xsl:call-template>
1863         </xsl:if>
1864         <xsl:if test="string-length(normalize-space($partName))">
1865                 <xsl:call-template name="chopPunctuation">
1866                     <xsl:with-param name="chopString" select="$partName"/>
1867                 </xsl:call-template>
1868         </xsl:if>
1869     </xsl:template>
1870
1871     <xsl:template name="specialSubfieldSelect">
1872         <xsl:param name="anyCodes"/>
1873         <xsl:param name="axis"/>
1874         <xsl:param name="beforeCodes"/>
1875         <xsl:param name="afterCodes"/>
1876         <xsl:variable name="str">
1877             <xsl:for-each select="marc:subfield">
1878                 <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])">
1879                     <xsl:value-of select="text()"/>
1880                     <xsl:text> </xsl:text>
1881                 </xsl:if>
1882             </xsl:for-each>
1883         </xsl:variable>
1884         <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
1885     </xsl:template>
1886
1887     <!-- #1807 Strip unwanted parenthesis from subjects for searching -->
1888     <xsl:template name="subfieldSelectSubject">
1889         <xsl:param name="codes"/>
1890         <xsl:param name="delimeter"><xsl:text> </xsl:text></xsl:param>
1891         <xsl:param name="subdivCodes"/>
1892         <xsl:param name="subdivDelimiter"/>
1893         <xsl:param name="prefix"/>
1894         <xsl:param name="suffix"/>
1895         <xsl:param name="urlencode"/>
1896         <xsl:variable name="str">
1897             <xsl:for-each select="marc:subfield">
1898                 <xsl:if test="contains($codes, @code)">
1899                     <xsl:if test="contains($subdivCodes, @code)">
1900                         <xsl:value-of select="$subdivDelimiter"/>
1901                     </xsl:if>
1902                     <xsl:value-of select="$prefix"/><xsl:value-of select="translate(text(),'()','')"/><xsl:value-of select="$suffix"/><xsl:value-of select="$delimeter"/>
1903                 </xsl:if>
1904             </xsl:for-each>
1905         </xsl:variable>
1906         <xsl:choose>
1907             <xsl:when test="$urlencode=1">
1908                 <xsl:value-of select="str:encode-uri(substring($str,1,string-length($str)-string-length($delimeter)), true())"/>
1909             </xsl:when>
1910             <xsl:otherwise>
1911                 <xsl:value-of select="substring($str,1,string-length($str)-string-length($delimeter))"/>
1912             </xsl:otherwise>
1913         </xsl:choose>
1914     </xsl:template>
1915 </xsl:stylesheet>