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