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