Bug 13383: 100/110/111 changes to XSLT
[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
440             <!-- Content Type -->
441             <xsl:if test="marc:datafield[@tag=336] or marc:datafield[@tag=337] or marc:datafield[@tag=338]">
442                 <span class="results_summary" id="content_type">
443                     <xsl:if test="marc:datafield[@tag=336]">
444                         <span class="label">Content Type: </span>
445                         <xsl:for-each select="marc:datafield[@tag=336]">
446                             <xsl:call-template name="subfieldSelect">
447                                 <xsl:with-param name="codes">a</xsl:with-param>
448                                 <xsl:with-param name="delimeter">, </xsl:with-param>
449                             </xsl:call-template>
450                             <xsl:if test="position() != last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
451                         </xsl:for-each>
452                     </xsl:if>
453                     <xsl:text> </xsl:text>
454                     <!-- Media Type -->
455                     <xsl:if test="marc:datafield[@tag=337]">
456                         <span class="label">Media Type: </span>
457                         <xsl:for-each select="marc:datafield[@tag=337]">
458                             <xsl:call-template name="subfieldSelect">
459                                 <xsl:with-param name="codes">a</xsl:with-param>
460                                 <xsl:with-param name="delimeter">, </xsl:with-param>
461                             </xsl:call-template>
462                             <xsl:if test="position() != last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
463                         </xsl:for-each>
464                     </xsl:if>
465                     <xsl:text> </xsl:text>
466                     <!-- Media Type -->
467                     <xsl:if test="marc:datafield[@tag=338]">
468                         <span class="label">Carrier Type: </span>
469                         <xsl:for-each select="marc:datafield[@tag=338]">
470                             <xsl:call-template name="subfieldSelect">
471                                 <xsl:with-param name="codes">a</xsl:with-param>
472                                 <xsl:with-param name="delimeter">, </xsl:with-param>
473                             </xsl:call-template>
474                             <xsl:if test="position() != last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
475                         </xsl:for-each>
476                     </xsl:if>
477                 </span>
478             </xsl:if>
479
480
481
482         <xsl:if test="marc:datafield[@tag=020]/marc:subfield[@code='a']">
483           <span class="results_summary isbn"><span class="label">ISBN: </span>
484             <xsl:for-each select="marc:datafield[@tag=020]/marc:subfield[@code='a']">
485               <span property="isbn">
486                 <xsl:value-of select="."/>
487                 <xsl:choose>
488                   <xsl:when test="position()=last()">
489                     <xsl:text>.</xsl:text>
490                   </xsl:when>
491                   <xsl:otherwise>
492                     <xsl:text>; </xsl:text>
493                   </xsl:otherwise>
494                 </xsl:choose>
495               </span>
496             </xsl:for-each>
497           </span>
498         </xsl:if>
499
500         <!-- Build ISSN -->
501         <xsl:if test="marc:datafield[@tag=022]/marc:subfield[@code='a']">
502           <span class="results_summary issn"><span class="label">ISSN: </span>
503             <xsl:for-each select="marc:datafield[@tag=022]/marc:subfield[@code='a']">
504               <span property="issn">
505                 <xsl:value-of select="."/>
506                 <xsl:choose>
507                   <xsl:when test="position()=last()">
508                     <xsl:text>.</xsl:text>
509                   </xsl:when>
510                   <xsl:otherwise>
511                     <xsl:text>; </xsl:text>
512                   </xsl:otherwise>
513                 </xsl:choose>
514               </span>
515             </xsl:for-each>
516           </span>
517         </xsl:if>
518
519         <xsl:if test="marc:datafield[@tag=013]">
520             <span class="results_summary patent_info">
521                 <span class="label">Patent information: </span>
522                 <xsl:for-each select="marc:datafield[@tag=013]">
523                     <xsl:call-template name="subfieldSelect">
524                         <xsl:with-param name="codes">acdef</xsl:with-param>
525                         <xsl:with-param name="delimeter">, </xsl:with-param>
526                     </xsl:call-template>
527                 <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
528                 </xsl:for-each>
529             </span>
530         </xsl:if>
531
532         <xsl:if test="marc:datafield[@tag=088]">
533             <span class="results_summary report_number">
534                 <span class="label">Report number: </span>
535                 <xsl:for-each select="marc:datafield[@tag=088]">
536                     <xsl:call-template name="subfieldSelect">
537                         <xsl:with-param name="codes">a</xsl:with-param>
538                     </xsl:call-template>
539                 <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
540                 </xsl:for-each>
541             </span>
542         </xsl:if>
543
544         <!-- Other Title  Statement: Alternate Graphic Representation (MARC 880) -->
545         <xsl:if test="$display880">
546             <xsl:call-template name="m880Select">
547                 <xsl:with-param name="basetags">246</xsl:with-param>
548                 <xsl:with-param name="codes">abhfgnp</xsl:with-param>
549                 <xsl:with-param name="class">results_summary other_title</xsl:with-param>
550                 <xsl:with-param name="label">Other title: </xsl:with-param>
551             </xsl:call-template>
552         </xsl:if>
553
554         <xsl:if test="marc:datafield[@tag=246]">
555         <span class="results_summary other_title"><span class="label">Other title: </span>
556             <xsl:for-each select="marc:datafield[@tag=246]">
557                 <span property="alternateName">
558                 <xsl:call-template name="chopPunctuation">
559                   <xsl:with-param name="chopString">
560                     <xsl:call-template name="subfieldSelect">
561                         <xsl:with-param name="codes">iabhfgnp</xsl:with-param>
562                     </xsl:call-template>
563                    </xsl:with-param>
564                </xsl:call-template>
565                 </span>
566                 <!-- #13386 added separator | -->
567                 <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>
568             </xsl:for-each>
569         </span>
570        </xsl:if>
571
572
573         <xsl:if test="marc:datafield[@tag=242]">
574         <span class="results_summary translated_title"><span class="label">Title translated: </span>
575             <xsl:for-each select="marc:datafield[@tag=242]">
576                 <span property="alternateName">
577                 <xsl:call-template name="chopPunctuation">
578                   <xsl:with-param name="chopString">
579                     <xsl:call-template name="subfieldSelect">
580                         <xsl:with-param name="codes">abchnp</xsl:with-param>
581                     </xsl:call-template>
582                    </xsl:with-param>
583                </xsl:call-template>
584                 </span>
585                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
586             </xsl:for-each>
587         </span>
588        </xsl:if>
589
590         <!-- Uniform Title  Statement: Alternate Graphic Representation (MARC 880) -->
591         <xsl:if test="$display880">
592             <span property="alternateName">
593             <xsl:call-template name="m880Select">
594                 <xsl:with-param name="basetags">130,240</xsl:with-param>
595                 <xsl:with-param name="codes">adfklmor</xsl:with-param>
596                 <xsl:with-param name="class">results_summary uniform_title</xsl:with-param>
597                 <xsl:with-param name="label">Uniform titles: </xsl:with-param>
598             </xsl:call-template>
599             </span>
600         </xsl:if>
601
602             <xsl:if test="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
603                 <span class="results_summary uniform_titles"><span class="label">Uniform titles: </span>
604                     <xsl:for-each select="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
605                         <span property="alternateName">
606                             <xsl:for-each select="marc:subfield">
607                                 <xsl:if test="contains('adfghklmnoprst',@code)">
608                                     <xsl:value-of select="text()"/>
609                                     <xsl:text> </xsl:text>
610                                 </xsl:if>
611                             </xsl:for-each>
612                         </span>
613                         <xsl:if test="position() != last()">
614                             <span class="separator"><xsl:text> | </xsl:text></span>
615                         </xsl:if>
616                     </xsl:for-each>
617                 </span>
618             </xsl:if>
619
620
621             <!-- #13382 Added Related works 700$i -->
622             <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']]">
623                 <span class="results_summary related_works"><span class="label">Related Works: </span>
624                     <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']]">
625                         <xsl:variable name="str">
626                             <xsl:call-template name="subfieldSelect">
627                                 <xsl:with-param name="codes">abcdfghiklmnporstux</xsl:with-param>
628                             </xsl:call-template>
629                         </xsl:variable>
630                         <xsl:call-template name="chopPunctuation">
631                             <xsl:with-param name="chopString">
632                                 <xsl:value-of select="$str"/>
633                             </xsl:with-param>
634                         </xsl:call-template>
635                         <!-- add relator code too between brackets-->
636                         <xsl:if test="marc:subfield[@code='4' or @code='e']">
637                             <span class="relatorcode">
638                                 <xsl:text> [</xsl:text>
639                                 <xsl:choose>
640                                     <xsl:when test="marc:subfield[@code='e']">
641                                         <xsl:for-each select="marc:subfield[@code='e']">
642                                             <xsl:value-of select="."/>
643                                             <xsl:if test="position() != last()"><xsl:text>, </xsl:text></xsl:if>
644                                         </xsl:for-each>
645                                     </xsl:when>
646                                     <xsl:otherwise>
647                                         <xsl:for-each select="marc:subfield[@code='4']">
648                                             <xsl:value-of select="."/>
649                                             <xsl:if test="position() != last()"><xsl:text>, </xsl:text></xsl:if>
650                                         </xsl:for-each>
651                                     </xsl:otherwise>
652                                 </xsl:choose>
653                                 <xsl:text>]</xsl:text>
654                             </span>
655                         </xsl:if>
656                         <xsl:choose>
657                             <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise>
658                         </xsl:choose>
659                     </xsl:for-each>
660                 </span>
661             </xsl:if>
662
663             <!-- #13382 Added Contained Works 7xx@ind2=2 -->
664             <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'])]">
665                 <span class="results_summary contained_works"><span class="label">Contained Works: </span>
666                     <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'])]">
667                         <xsl:variable name="str">
668                             <xsl:call-template name="subfieldSelect">
669                                 <xsl:with-param name="codes">abcdfghiklmnporstux</xsl:with-param>
670                             </xsl:call-template>
671                         </xsl:variable>
672                         <xsl:call-template name="chopPunctuation">
673                             <xsl:with-param name="chopString">
674                                 <xsl:value-of select="$str"/>
675                             </xsl:with-param>
676                         </xsl:call-template>
677                         <!-- add relator code too between brackets-->
678                         <xsl:if test="marc:subfield[@code='4' or @code='e']">
679                             <span class="relatorcode">
680                                 <xsl:text> [</xsl:text>
681                                 <xsl:choose>
682                                     <xsl:when test="marc:subfield[@code='e']">
683                                         <xsl:for-each select="marc:subfield[@code='e']">
684                                             <xsl:value-of select="."/>
685                                             <xsl:if test="position() != last()"><xsl:text>, </xsl:text></xsl:if>
686                                         </xsl:for-each>
687                                     </xsl:when>
688                                     <xsl:otherwise>
689                                         <xsl:for-each select="marc:subfield[@code='4']">
690                                             <xsl:value-of select="."/>
691                                             <xsl:if test="position() != last()"><xsl:text>, </xsl:text></xsl:if>
692                                         </xsl:for-each>
693                                     </xsl:otherwise>
694                                 </xsl:choose>
695                                 <xsl:text>]</xsl:text>
696                             </span>
697                         </xsl:if>
698                         <xsl:choose>
699                             <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise>
700                         </xsl:choose>
701                     </xsl:for-each>
702                 </span>
703             </xsl:if>
704
705             <xsl:if test="marc:datafield[substring(@tag, 1, 1) = '6' and not(@tag=655)]">
706             <span class="results_summary subjects"><span class="label">Subject(s): </span>
707                 <xsl:for-each select="marc:datafield[substring(@tag, 1, 1) = '6'][not(@tag=655)]">
708             <span property="keywords">
709             <a>
710             <xsl:choose>
711             <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
712                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
713             </xsl:when>
714             <!-- #1807 Strip unwanted parenthesis from subjects for searching -->
715             <xsl:when test="$TraceSubjectSubdivisions='1'">
716                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:call-template name="subfieldSelectSubject">
717                         <xsl:with-param name="codes">abcdfgklmnopqrstvxyz</xsl:with-param>
718                         <xsl:with-param name="delimeter"> AND </xsl:with-param>
719                         <xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/></xsl:with-param>
720                         <xsl:with-param name="suffix"><xsl:value-of select="$TracingQuotesRight"/>)</xsl:with-param>
721                     </xsl:call-template>
722                 </xsl:attribute>
723             </xsl:when>
724                 <!-- #1807 Strip unwanted parenthesis from subjects for searching -->
725             <xsl:otherwise>
726                 <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>
727             </xsl:otherwise>
728             </xsl:choose>
729             <xsl:call-template name="chopPunctuation">
730                 <xsl:with-param name="chopString">
731                     <xsl:call-template name="subfieldSelect">
732                         <xsl:with-param name="codes">abcdfgklmnopqrstvxyz</xsl:with-param>
733                         <xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
734                         <xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
735                     </xsl:call-template>
736                 </xsl:with-param>
737             </xsl:call-template>
738             </a>
739             </span>
740             <xsl:if test="marc:subfield[@code=9]">
741                 <a class='authlink'>
742                     <xsl:attribute name="href">/cgi-bin/koha/opac-authoritiesdetail.pl?authid=<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
743                     <xsl:element name="img">
744                         <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute>
745                         <xsl:attribute name="style">vertical-align:middle</xsl:attribute>
746                         <xsl:attribute name="height">15</xsl:attribute>
747                         <xsl:attribute name="width">15</xsl:attribute>
748                     </xsl:element>
749                 </a>
750             </xsl:if>
751             <xsl:choose>
752             <xsl:when test="position()=last()"></xsl:when>
753             <xsl:otherwise> | </xsl:otherwise>
754             </xsl:choose>
755
756             </xsl:for-each>
757             </span>
758         </xsl:if>
759
760             <!-- Genre/Form -->
761             <xsl:if test="marc:datafield[@tag=655]">
762                 <span class="results_summary genre"><span class="label">Genre/Form: </span>
763                     <xsl:for-each select="marc:datafield[@tag=655]">
764                         <a>
765                             <xsl:choose>
766                                 <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
767                                     <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
768                                 </xsl:when>
769                                 <xsl:when test="$TraceSubjectSubdivisions='1'">
770                                     <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:call-template name="subfieldSelect">
771                                         <xsl:with-param name="codes">avxyz</xsl:with-param>
772                                         <xsl:with-param name="delimeter"> AND </xsl:with-param>
773                                         <xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:<xsl:value-of select="$TracingQuotesLeft"/></xsl:with-param>
774                                         <xsl:with-param name="suffix"><xsl:value-of select="$TracingQuotesRight"/>)</xsl:with-param>
775                                     </xsl:call-template>
776                                     </xsl:attribute>
777                                 </xsl:when>
778                                 <xsl:otherwise>
779                                     <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>
780                                 </xsl:otherwise>
781                             </xsl:choose>
782                         </a>
783                         <xsl:call-template name="subfieldSelect">
784                             <xsl:with-param name="codes">avxyz</xsl:with-param>
785                             <xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
786                             <xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
787                         </xsl:call-template>
788                         <xsl:if test="position()!=last()"><span class="separator"> | </span></xsl:if>
789                     </xsl:for-each>
790                 </span>
791             </xsl:if>
792
793 <!-- DDC classification -->
794     <xsl:if test="marc:datafield[@tag=082]">
795         <span class="results_summary ddc">
796             <span class="label">DDC classification: </span>
797             <xsl:for-each select="marc:datafield[@tag=082]">
798                 <xsl:call-template name="subfieldSelect">
799                     <xsl:with-param name="codes">a</xsl:with-param>
800                     <xsl:with-param name="delimeter"><xsl:text> | </xsl:text></xsl:with-param>
801                 </xsl:call-template>
802                 <xsl:choose>
803                     <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
804                     <xsl:otherwise> | </xsl:otherwise>
805                 </xsl:choose>
806             </xsl:for-each>
807         </span>
808     </xsl:if>
809
810
811 <!-- Image processing code added here, takes precedence over text links including y3z text   -->
812         <xsl:if test="marc:datafield[@tag=856]">
813         <span class="results_summary online_resources"><span class="label">Online resources: </span>
814         <xsl:for-each select="marc:datafield[@tag=856]">
815             <xsl:variable name="SubqText"><xsl:value-of select="marc:subfield[@code='q']"/></xsl:variable>
816             <a property="url">
817             <xsl:choose>
818               <xsl:when test="$OPACTrackClicks='track'">
819                 <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>
820               </xsl:when>
821               <xsl:when test="$OPACTrackClicks='anonymous'">
822                 <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>
823               </xsl:when>
824               <xsl:otherwise>
825                 <xsl:attribute name="href"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute>
826               </xsl:otherwise>
827             </xsl:choose>
828             <xsl:if test="$OPACURLOpenInNewWindow='1'">
829                 <xsl:attribute name="target">_blank</xsl:attribute>
830             </xsl:if>
831             <xsl:choose>
832             <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')">
833                 <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>
834             </xsl:when>
835             <xsl:when test="marc:subfield[@code='y' or @code='3' or @code='z']">
836                 <xsl:call-template name="subfieldSelect">
837                     <xsl:with-param name="codes">y3z</xsl:with-param>
838                 </xsl:call-template>
839             </xsl:when>
840             <xsl:when test="$URLLinkText!=''">
841                 <xsl:value-of select="$URLLinkText"/>
842             </xsl:when>
843             <xsl:otherwise>
844                 <xsl:text>Click here to access online</xsl:text>
845             </xsl:otherwise>
846             </xsl:choose>
847             </a>
848             <xsl:choose>
849             <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
850             <xsl:otherwise> | </xsl:otherwise>
851             </xsl:choose>
852         </xsl:for-each>
853         </span>
854         </xsl:if>
855
856         <!-- 530 -->
857         <xsl:if test="marc:datafield[@tag=530]">
858         <xsl:for-each select="marc:datafield[@tag=530]">
859         <span class="results_summary additionalforms">
860             <xsl:call-template name="subfieldSelect">
861                 <xsl:with-param name="codes">abcd</xsl:with-param>
862             </xsl:call-template>
863             <xsl:for-each select="marc:subfield[@code='u']">
864                 <a><xsl:attribute name="href"><xsl:value-of select="text()"/></xsl:attribute>
865                 <xsl:if test="$OPACURLOpenInNewWindow='1'">
866                     <xsl:attribute name="target">_blank</xsl:attribute>
867                 </xsl:if>
868                 <xsl:value-of select="text()"/>
869                 </a>
870             </xsl:for-each>
871         </span>
872         </xsl:for-each>
873         </xsl:if>
874
875         <!-- 505 -->
876         <xsl:if test="marc:datafield[@tag=505]">
877         <div class="results_summary contents">
878         <xsl:for-each select="marc:datafield[@tag=505]">
879         <xsl:if test="position()=1">
880             <xsl:choose>
881             <xsl:when test="@ind1=1">
882                 <span class="label">Incomplete contents:</span>
883             </xsl:when>
884             <xsl:when test="@ind1=2">
885                 <span class="label">Partial contents:</span>
886             </xsl:when>
887             <xsl:otherwise>
888                 <span class="label">Contents:</span>
889             </xsl:otherwise>
890             </xsl:choose>
891         </xsl:if>
892         <div class='contentblock' property='description'>
893         <xsl:choose>
894         <xsl:when test="@ind2=0">
895             <xsl:call-template name="subfieldSelectSpan">
896                 <xsl:with-param name="codes">tru</xsl:with-param>
897             </xsl:call-template>
898         </xsl:when>
899         <xsl:otherwise>
900             <xsl:call-template name="subfieldSelectSpan">
901                 <xsl:with-param name="codes">atru</xsl:with-param>
902             </xsl:call-template>
903         </xsl:otherwise>
904         </xsl:choose>
905         </div>
906         </xsl:for-each>
907         </div>
908         </xsl:if>
909
910         <!-- 583 -->
911         <xsl:if test="marc:datafield[@tag=583]">
912         <xsl:for-each select="marc:datafield[@tag=583]">
913             <xsl:if test="@ind1=1 or @ind1=' '">
914             <span class="results_summary actionnote">
915                 <xsl:choose>
916                 <xsl:when test="marc:subfield[@code='z']">
917                     <xsl:value-of select="marc:subfield[@code='z']"/>
918                 </xsl:when>
919                 <xsl:otherwise>
920                     <xsl:call-template name="subfieldSelect">
921                         <xsl:with-param name="codes">abcdefgijklnou</xsl:with-param>
922                     </xsl:call-template>
923                 </xsl:otherwise>
924                 </xsl:choose>
925             </span>
926             </xsl:if>
927         </xsl:for-each>
928         </xsl:if>
929
930         <!-- 508 -->
931             <xsl:if test="marc:datafield[@tag=508]">
932                 <div class="results_summary prod_credits">
933                     <span class="label">Production Credits: </span>
934                     <xsl:for-each select="marc:datafield[@tag=508]">
935                         <xsl:call-template name="subfieldSelectSpan">
936                             <xsl:with-param name="codes">a</xsl:with-param>
937                         </xsl:call-template>
938                     </xsl:for-each>
939                 </div>
940             </xsl:if>
941
942         <!-- 586 -->
943         <xsl:if test="marc:datafield[@tag=586]">
944             <span class="results_summary awardsnote">
945                 <xsl:if test="marc:datafield[@tag=586]/@ind1=' '">
946                     <span class="label">Awards: </span>
947                 </xsl:if>
948                 <xsl:for-each select="marc:datafield[@tag=586]">
949                     <xsl:value-of select="marc:subfield[@code='a']"/>
950                     <xsl:if test="position()!=last()"><span class="separator"><xsl:text> | </xsl:text></span></xsl:if>
951                 </xsl:for-each>
952             </span>
953         </xsl:if>
954
955         <!-- 773 -->
956         <xsl:if test="marc:datafield[@tag=773]">
957         <xsl:for-each select="marc:datafield[@tag=773]">
958         <xsl:if test="@ind1 !=1">
959         <span class="results_summary in"><span class="label">
960         <xsl:choose>
961         <xsl:when test="@ind2=' '">
962             In:
963         </xsl:when>
964         <xsl:when test="@ind2=8">
965             <xsl:if test="marc:subfield[@code='i']">
966                 <xsl:value-of select="marc:subfield[@code='i']"/>
967             </xsl:if>
968         </xsl:when>
969         </xsl:choose>
970         </span>
971                 <xsl:variable name="f773">
972                     <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
973                         <xsl:with-param name="codes">a_t</xsl:with-param>
974                     </xsl:call-template></xsl:with-param></xsl:call-template>
975                 </xsl:variable>
976             <xsl:choose>
977                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
978                     <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>
979                         <xsl:value-of select="translate($f773, '()', '')"/>
980                     </a>
981                     <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
982                 </xsl:when>
983                 <xsl:when test="marc:subfield[@code='0']">
984                     <a><xsl:attribute name="href">/cgi-bin/koha/opac-detail.pl?biblionumber=<xsl:value-of select="marc:subfield[@code='0']"/></xsl:attribute>
985                         <xsl:value-of select="$f773"/>
986                     </a>
987                 </xsl:when>
988                 <xsl:otherwise>
989                     <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=ti,phr:<xsl:value-of select="translate($f773, '()', '')"/></xsl:attribute>
990                         <xsl:value-of select="$f773"/>
991                     </a>
992                     <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
993                 </xsl:otherwise>
994             </xsl:choose>
995         </span>
996
997         <xsl:if test="marc:subfield[@code='n']">
998             <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
999         </xsl:if>
1000
1001         </xsl:if>
1002         </xsl:for-each>
1003         </xsl:if>
1004
1005         <xsl:for-each select="marc:datafield[@tag=511]">
1006             <span class="results_summary perf_note">
1007                 <span class="label">
1008                     <xsl:if test="@ind1=1"><xsl:text>Cast: </xsl:text></xsl:if>
1009                 </span>
1010                 <xsl:call-template name="subfieldSelect">
1011                     <xsl:with-param name="codes">a</xsl:with-param>
1012                 </xsl:call-template>
1013             </span>
1014         </xsl:for-each>
1015
1016         <xsl:if test="marc:datafield[@tag=502]">
1017             <span class="results_summary diss_note">
1018                 <span class="label">Dissertation note: </span>
1019                 <xsl:for-each select="marc:datafield[@tag=502]">
1020                     <xsl:call-template name="subfieldSelect">
1021                         <xsl:with-param name="codes">abcdgo</xsl:with-param>
1022                     </xsl:call-template>
1023                 </xsl:for-each>
1024                 <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text> </xsl:text></xsl:otherwise></xsl:choose>
1025             </span>
1026         </xsl:if>
1027
1028         <xsl:for-each select="marc:datafield[@tag=520]">
1029         <span class="results_summary summary"><span class="label">
1030         <xsl:choose>
1031           <xsl:when test="@ind1=0"><xsl:text>Subject: </xsl:text></xsl:when>
1032           <xsl:when test="@ind1=1"><xsl:text>Review: </xsl:text></xsl:when>
1033           <xsl:when test="@ind1=2"><xsl:text>Scope and content: </xsl:text></xsl:when>
1034           <xsl:when test="@ind1=3"><xsl:text>Abstract: </xsl:text></xsl:when>
1035           <xsl:when test="@ind1=4"><xsl:text>Content advice: </xsl:text></xsl:when>
1036           <xsl:otherwise><xsl:text>Summary: </xsl:text></xsl:otherwise>
1037         </xsl:choose>
1038         </span>
1039         <xsl:call-template name="subfieldSelect">
1040           <xsl:with-param name="codes">abcu</xsl:with-param>
1041         </xsl:call-template>
1042         </span>
1043         </xsl:for-each>
1044
1045         <!-- 866 textual holdings -->
1046         <xsl:if test="marc:datafield[@tag=866]">
1047             <span class="results_summary holdings_note"><span class="label">Holdings note: </span>
1048                 <xsl:for-each select="marc:datafield[@tag=866]">
1049                     <xsl:call-template name="subfieldSelect">
1050                         <xsl:with-param name="codes">az</xsl:with-param>
1051                     </xsl:call-template>
1052                     <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
1053                 </xsl:for-each>
1054             </span>
1055         </xsl:if>
1056
1057         <!--  775 Other Edition  -->
1058         <xsl:if test="marc:datafield[@tag=775]">
1059         <span class="results_summary other_editions"><span class="label">Other editions: </span>
1060         <xsl:for-each select="marc:datafield[@tag=775]">
1061             <xsl:variable name="f775">
1062                 <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
1063                 <xsl:with-param name="codes">a_t</xsl:with-param>
1064                 </xsl:call-template></xsl:with-param></xsl:call-template>
1065             </xsl:variable>
1066             <xsl:if test="marc:subfield[@code='i']">
1067                 <xsl:call-template name="subfieldSelect">
1068                     <xsl:with-param name="codes">i</xsl:with-param>
1069                 </xsl:call-template>
1070                 <xsl:text>: </xsl:text>
1071             </xsl:if>
1072             <a>
1073             <xsl:choose>
1074             <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1075                 <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>
1076             </xsl:when>
1077             <xsl:otherwise>
1078                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=ti,phr:<xsl:value-of select="translate($f775, '()', '')"/></xsl:attribute>
1079             </xsl:otherwise>
1080             </xsl:choose>
1081             <xsl:call-template name="subfieldSelect">
1082                 <xsl:with-param name="codes">a_t</xsl:with-param>
1083             </xsl:call-template>
1084             </a>
1085             <xsl:choose>
1086                 <xsl:when test="position()=last()"></xsl:when>
1087                 <xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise>
1088             </xsl:choose>
1089         </xsl:for-each>
1090         </span>
1091         </xsl:if>
1092
1093         <!-- 780 -->
1094         <xsl:if test="marc:datafield[@tag=780]">
1095         <xsl:for-each select="marc:datafield[@tag=780]">
1096         <xsl:if test="@ind1=0">
1097         <span class="results_summary preceeding_entry">
1098         <xsl:choose>
1099         <xsl:when test="@ind2=0">
1100             <span class="label">Continues:</span>
1101         </xsl:when>
1102         <xsl:when test="@ind2=1">
1103             <span class="label">Continues in part:</span>
1104         </xsl:when>
1105         <xsl:when test="@ind2=2">
1106             <span class="label">Supersedes:</span>
1107         </xsl:when>
1108         <xsl:when test="@ind2=3">
1109             <span class="label">Supersedes in part:</span>
1110         </xsl:when>
1111         <xsl:when test="@ind2=4">
1112             <span class="label">Formed by the union: ... and: ...</span>
1113         </xsl:when>
1114         <xsl:when test="@ind2=5">
1115             <span class="label">Absorbed:</span>
1116         </xsl:when>
1117         <xsl:when test="@ind2=6">
1118             <span class="label">Absorbed in part:</span>
1119         </xsl:when>
1120         <xsl:when test="@ind2=7">
1121             <span class="label">Separated from:</span>
1122         </xsl:when>
1123         </xsl:choose>
1124         <xsl:text> </xsl:text>
1125                 <xsl:variable name="f780">
1126                     <xsl:call-template name="subfieldSelect">
1127                         <xsl:with-param name="codes">a_t</xsl:with-param>
1128                     </xsl:call-template>
1129                 </xsl:variable>
1130             <xsl:choose>
1131                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1132                     <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>
1133                         <xsl:value-of select="translate($f780, '()', '')"/>
1134                     </a>
1135                 </xsl:when>
1136                 <xsl:otherwise>
1137                     <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=ti,phr:<xsl:value-of select="translate($f780, '()', '')"/></xsl:attribute>
1138                         <xsl:value-of select="translate($f780, '()', '')"/>
1139                     </a>
1140                 </xsl:otherwise>
1141             </xsl:choose>
1142         </span>
1143
1144         <xsl:if test="marc:subfield[@code='n']">
1145             <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
1146         </xsl:if>
1147
1148         </xsl:if>
1149         </xsl:for-each>
1150         </xsl:if>
1151
1152         <!-- 785 -->
1153         <xsl:if test="marc:datafield[@tag=785]">
1154         <xsl:for-each select="marc:datafield[@tag=785]">
1155         <xsl:if test="@ind1=0">
1156         <span class="results_summary succeeding_entry">
1157         <xsl:choose>
1158         <xsl:when test="@ind2=0">
1159             <span class="label">Continued by:</span>
1160         </xsl:when>
1161         <xsl:when test="@ind2=1">
1162             <span class="label">Continued in part by:</span>
1163         </xsl:when>
1164         <xsl:when test="@ind2=2">
1165             <span class="label">Superseded by:</span>
1166         </xsl:when>
1167         <xsl:when test="@ind2=3">
1168             <span class="label">Superseded in part by:</span>
1169         </xsl:when>
1170         <xsl:when test="@ind2=4">
1171             <span class="label">Absorbed by:</span>
1172         </xsl:when>
1173         <xsl:when test="@ind2=5">
1174             <span class="label">Absorbed in part by:</span>
1175         </xsl:when>
1176         <xsl:when test="@ind2=6">
1177             <span class="label">Split into .. and ...:</span>
1178         </xsl:when>
1179         <xsl:when test="@ind2=7">
1180             <span class="label">Merged with ... to form ...</span>
1181         </xsl:when>
1182         <xsl:when test="@ind2=8">
1183             <span class="label">Changed back to:</span>
1184         </xsl:when>
1185         </xsl:choose>
1186         <xsl:text> </xsl:text>
1187                    <xsl:variable name="f785">
1188                     <xsl:call-template name="subfieldSelect">
1189                         <xsl:with-param name="codes">a_t</xsl:with-param>
1190                     </xsl:call-template>
1191                 </xsl:variable>
1192
1193             <xsl:choose>
1194                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
1195                     <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>
1196                         <xsl:value-of select="translate($f785, '()', '')"/>
1197                     </a>
1198                 </xsl:when>
1199                 <xsl:otherwise>
1200                     <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=ti,phr:<xsl:value-of select="translate($f785, '()', '')"/></xsl:attribute>
1201                         <xsl:value-of select="translate($f785, '()', '')"/>
1202                     </a>
1203                 </xsl:otherwise>
1204             </xsl:choose>
1205
1206         </span>
1207
1208         <xsl:if test="marc:subfield[@code='n']">
1209             <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
1210         </xsl:if>
1211
1212         </xsl:if>
1213         </xsl:for-each>
1214         </xsl:if>
1215
1216     </xsl:element>
1217     </xsl:template>
1218
1219     <xsl:template name="showAuthor">
1220         <xsl:param name="authorfield" />
1221         <xsl:param name="UseAuthoritiesForTracings" />
1222         <xsl:param name="materialTypeLabel" />
1223         <xsl:param name="theme" />
1224         <xsl:if test="count($authorfield)&gt;0">
1225         <h5 class="author">
1226             <xsl:for-each select="$authorfield">
1227                 <xsl:choose>
1228                     <xsl:when test="position()&gt;1"/>
1229                     <!-- #13383 -->
1230                     <xsl:when test="@tag&lt;700">By: </xsl:when>
1231                     <!--#13382 Changed Additional author to contributor -->
1232                     <xsl:otherwise>Contributor(s): </xsl:otherwise>
1233                 </xsl:choose>
1234             <xsl:choose>
1235                 <xsl:when test="not(@tag=111) or @tag=700 or @tag=710 or @tag=711"/>
1236                 <xsl:when test="marc:subfield[@code='n']">
1237                     <xsl:text> </xsl:text>
1238                     <xsl:call-template name="subfieldSelect">
1239                         <xsl:with-param name="codes">n</xsl:with-param>
1240                     </xsl:call-template>
1241                     <xsl:text> </xsl:text>
1242                 </xsl:when>
1243             </xsl:choose>
1244             <a>
1245                 <xsl:choose>
1246                     <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
1247                         <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:"<xsl:value-of select="marc:subfield[@code=9]"/>"</xsl:attribute>
1248                     </xsl:when>
1249                     <xsl:otherwise>
1250                         <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=au:"<xsl:value-of select="marc:subfield[@code='a']"/>"</xsl:attribute>
1251                     </xsl:otherwise>
1252                 </xsl:choose>
1253                 <span resource="#record"><span>
1254                     <xsl:choose>
1255                         <xsl:when test="substring(@tag, 1, 1)='1'">
1256                             <xsl:choose>
1257                                 <xsl:when test="$materialTypeLabel='Music'"><xsl:attribute name="property">byArtist</xsl:attribute></xsl:when>
1258                                 <xsl:otherwise><xsl:attribute name="property">author</xsl:attribute></xsl:otherwise>
1259                             </xsl:choose>
1260                         </xsl:when>
1261                         <xsl:otherwise><xsl:attribute name="property">contributor</xsl:attribute></xsl:otherwise>
1262                     </xsl:choose>
1263                     <xsl:choose>
1264                         <xsl:when test="substring(@tag, 2, 1)='0'">
1265                             <xsl:choose>
1266                                 <xsl:when test="$materialTypeLabel='Music'"><xsl:attribute name="typeof">MusicGroup</xsl:attribute></xsl:when>
1267                                 <xsl:otherwise><xsl:attribute name="typeof">Person</xsl:attribute></xsl:otherwise>
1268                             </xsl:choose>
1269                         </xsl:when>
1270                         <xsl:otherwise><xsl:attribute name="typeof">Organization</xsl:attribute></xsl:otherwise>
1271                     </xsl:choose>
1272                 <span property="name">
1273                 <xsl:choose>
1274                     <xsl:when test="@tag=100 or @tag=110 or @tag=111">
1275                         <!-- #13383 -->
1276                         <xsl:call-template name="chopPunctuation">
1277                             <xsl:with-param name="chopString">
1278                                 <xsl:call-template name="subfieldSelect">
1279                                     <xsl:with-param name="codes">
1280                                         <xsl:choose>
1281                                             <!-- #13383 include subfield e for field 111  -->
1282                                             <xsl:when test="@tag=111">abcdeqt</xsl:when>
1283                                             <xsl:otherwise>abcdjqt</xsl:otherwise>
1284                                         </xsl:choose>
1285                                     </xsl:with-param>
1286                                 </xsl:call-template>
1287                             </xsl:with-param>
1288                             <xsl:with-param name="punctuation">
1289                                 <xsl:text>:,;/ </xsl:text>
1290                             </xsl:with-param>
1291                         </xsl:call-template>
1292                     </xsl:when>
1293                     <!-- #13382 excludes 700$i and ind2=2, displayed as Related Works -->
1294                     <!--#13382 Added all relevant subfields 4, e, are handled separately -->
1295                     <xsl:when test="@tag=700 or @tag=710 or @tag=711">
1296                         <xsl:variable name="str">
1297                             <xsl:call-template name="subfieldSelect">
1298                                 <xsl:with-param name="codes">abcdfghiklmnoprstux</xsl:with-param>
1299                             </xsl:call-template>
1300                         </xsl:variable>
1301                         <xsl:call-template name="chopPunctuation">
1302                             <xsl:with-param name="chopString">
1303                                 <xsl:value-of select="$str"/>
1304                             </xsl:with-param>
1305                             <xsl:with-param name="punctuation">
1306                                 <xsl:text>:,;/. </xsl:text>
1307                             </xsl:with-param>
1308                         </xsl:call-template>
1309                     </xsl:when>
1310                 </xsl:choose>
1311                 </span></span></span>
1312                 <!-- #13383 include relator code j for field 111 -->
1313                 <xsl:if test="marc:subfield[@code='4' or @code='e'][not(parent::*[@tag=111])] or (self::*[@tag=111] and marc:subfield[@code='4' or @code='j'][. != ''])">
1314                     <span class="relatorcode">
1315                         <xsl:text> [</xsl:text>
1316                         <xsl:choose>
1317                             <xsl:when test="@tag=111">
1318                                 <xsl:choose>
1319                                     <!-- Prefer j over 4 -->
1320                                     <xsl:when test="marc:subfield[@code='j']">
1321                                         <xsl:for-each select="marc:subfield[@code='j']">
1322                                             <xsl:value-of select="."/>
1323                                             <xsl:if test="position() != last()">, </xsl:if>
1324                                         </xsl:for-each>
1325                                     </xsl:when>
1326                                     <xsl:otherwise>
1327                                         <xsl:for-each select="marc:subfield[@code=4]">
1328                                             <xsl:value-of select="."/>
1329                                             <xsl:if test="position() != last()">, </xsl:if>
1330                                         </xsl:for-each>
1331                                     </xsl:otherwise>
1332                                 </xsl:choose>
1333                             </xsl:when>
1334                             <!-- Prefer e over 4 -->
1335                             <xsl:when test="marc:subfield[@code='e']">
1336                                 <xsl:for-each select="marc:subfield[@code='e']">
1337                                     <xsl:value-of select="."/>
1338                                     <xsl:if test="position() != last()">, </xsl:if>
1339                                 </xsl:for-each>
1340                             </xsl:when>
1341                             <xsl:otherwise>
1342                                 <xsl:for-each select="marc:subfield[@code=4]">
1343                                     <xsl:value-of select="."/>
1344                                     <xsl:if test="position() != last()">, </xsl:if>
1345                                 </xsl:for-each>
1346                             </xsl:otherwise>
1347                         </xsl:choose>
1348                         <xsl:text>]</xsl:text>
1349                     </span>
1350                 </xsl:if>
1351             </a>
1352             <xsl:if test="marc:subfield[@code=9]">
1353                 <a class='authlink'>
1354                     <xsl:attribute name="href">/cgi-bin/koha/opac-authoritiesdetail.pl?authid=<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
1355                     <xsl:element name="img">
1356                         <xsl:attribute name="src">/opac-tmpl/<xsl:value-of select="$theme"/>/images/filefind.png</xsl:attribute>
1357                         <xsl:attribute name="style">vertical-align:middle</xsl:attribute>
1358                         <xsl:attribute name="height">15</xsl:attribute>
1359                         <xsl:attribute name="width">15</xsl:attribute>
1360                     </xsl:element>
1361                 </a>
1362             </xsl:if>
1363                 <xsl:choose>
1364                     <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><span class="separator"><xsl:text> | </xsl:text></span></xsl:otherwise>
1365                 </xsl:choose>
1366             </xsl:for-each>
1367         </h5>
1368         </xsl:if>
1369     </xsl:template>
1370
1371     <xsl:template name="nameABCQ">
1372             <xsl:call-template name="chopPunctuation">
1373                 <xsl:with-param name="chopString">
1374                     <xsl:call-template name="subfieldSelect">
1375                         <xsl:with-param name="codes">abcq</xsl:with-param>
1376                     </xsl:call-template>
1377                 </xsl:with-param>
1378                 <xsl:with-param name="punctuation">
1379                     <xsl:text>:,;/ </xsl:text>
1380                 </xsl:with-param>
1381             </xsl:call-template>
1382     </xsl:template>
1383
1384     <xsl:template name="nameABCDN">
1385             <xsl:call-template name="chopPunctuation">
1386                 <xsl:with-param name="chopString">
1387                     <xsl:call-template name="subfieldSelect">
1388                         <xsl:with-param name="codes">abcdn</xsl:with-param>
1389                     </xsl:call-template>
1390                 </xsl:with-param>
1391                 <xsl:with-param name="punctuation">
1392                     <xsl:text>:,;/ </xsl:text>
1393                 </xsl:with-param>
1394             </xsl:call-template>
1395     </xsl:template>
1396
1397     <xsl:template name="nameACDEQ">
1398             <xsl:call-template name="subfieldSelect">
1399                 <xsl:with-param name="codes">acdeq</xsl:with-param>
1400             </xsl:call-template>
1401     </xsl:template>
1402
1403     <xsl:template name="part">
1404         <xsl:variable name="partNumber">
1405             <xsl:call-template name="specialSubfieldSelect">
1406                 <xsl:with-param name="axis">n</xsl:with-param>
1407                 <xsl:with-param name="anyCodes">n</xsl:with-param>
1408                 <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
1409             </xsl:call-template>
1410         </xsl:variable>
1411         <xsl:variable name="partName">
1412             <xsl:call-template name="specialSubfieldSelect">
1413                 <xsl:with-param name="axis">p</xsl:with-param>
1414                 <xsl:with-param name="anyCodes">p</xsl:with-param>
1415                 <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
1416             </xsl:call-template>
1417         </xsl:variable>
1418         <xsl:if test="string-length(normalize-space($partNumber))">
1419                 <xsl:call-template name="chopPunctuation">
1420                     <xsl:with-param name="chopString" select="$partNumber"/>
1421                 </xsl:call-template>
1422         </xsl:if>
1423         <xsl:if test="string-length(normalize-space($partName))">
1424                 <xsl:call-template name="chopPunctuation">
1425                     <xsl:with-param name="chopString" select="$partName"/>
1426                 </xsl:call-template>
1427         </xsl:if>
1428     </xsl:template>
1429
1430     <xsl:template name="specialSubfieldSelect">
1431         <xsl:param name="anyCodes"/>
1432         <xsl:param name="axis"/>
1433         <xsl:param name="beforeCodes"/>
1434         <xsl:param name="afterCodes"/>
1435         <xsl:variable name="str">
1436             <xsl:for-each select="marc:subfield">
1437                 <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])">
1438                     <xsl:value-of select="text()"/>
1439                     <xsl:text> </xsl:text>
1440                 </xsl:if>
1441             </xsl:for-each>
1442         </xsl:variable>
1443         <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
1444     </xsl:template>
1445
1446     <!-- #1807 Strip unwanted parenthesis from subjects for searching -->
1447     <xsl:template name="subfieldSelectSubject">
1448         <xsl:param name="codes"/>
1449         <xsl:param name="delimeter"><xsl:text> </xsl:text></xsl:param>
1450         <xsl:param name="subdivCodes"/>
1451         <xsl:param name="subdivDelimiter"/>
1452         <xsl:param name="prefix"/>
1453         <xsl:param name="suffix"/>
1454         <xsl:variable name="str">
1455             <xsl:for-each select="marc:subfield">
1456                 <xsl:if test="contains($codes, @code)">
1457                     <xsl:if test="contains($subdivCodes, @code)">
1458                         <xsl:value-of select="$subdivDelimiter"/>
1459                     </xsl:if>
1460                     <xsl:value-of select="$prefix"/><xsl:value-of select="translate(text(),'()','')"/><xsl:value-of select="$suffix"/><xsl:value-of select="$delimeter"/>
1461                 </xsl:if>
1462             </xsl:for-each>
1463         </xsl:variable>
1464         <xsl:value-of select="substring($str,1,string-length($str)-string-length($delimeter))"/>
1465     </xsl:template>
1466 </xsl:stylesheet>