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