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