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