Bug 5917 : Swapping templates over
[koha.git] / koha-tmpl / opac-tmpl / prog / 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 = "xml" indent="yes" omit-xml-declaration = "yes" />
11     <xsl:template match="/">
12             <xsl:apply-templates/>
13     </xsl:template>
14
15     <xsl:template match="marc:record">
16
17         <!-- Option: Display Alternate Graphic Representation (MARC 880)  -->
18         <xsl:variable name="display880" select="boolean(marc:datafield[@tag=880])"/>
19
20     <xsl:variable name="UseControlNumber" select="marc:sysprefs/marc:syspref[@name='UseControlNumber']"/>
21     <xsl:variable name="DisplayOPACiconsXSLT" select="marc:sysprefs/marc:syspref[@name='DisplayOPACiconsXSLT']"/>
22     <xsl:variable name="OPACurlOpenInNewWindow" select="marc:sysprefs/marc:syspref[@name='OPACurlOpenInNewWindow']"/>
23     <xsl:variable name="urlLinkText" select="marc:sysprefs/marc:syspref[@name='urlLinkText']"/>
24     <xsl:variable name="ShowISBD" select="marc:sysprefs/marc:syspref[@name='viewISBD']"/>
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="leader" select="marc:leader"/>
31         <xsl:variable name="leader6" select="substring($leader,7,1)"/>
32         <xsl:variable name="leader7" select="substring($leader,8,1)"/>
33         <xsl:variable name="leader19" select="substring($leader,20,1)"/>
34         <xsl:variable name="controlField008" select="marc:controlfield[@tag=008]"/>
35         <xsl:variable name="materialTypeCode">
36             <xsl:choose>
37                 <xsl:when test="$leader19='a'">ST</xsl:when>
38                 <xsl:when test="$leader6='a'">
39                     <xsl:choose>
40                         <xsl:when test="$leader7='c' or $leader7='d' or $leader7='m'">BK</xsl:when>
41                         <xsl:when test="$leader7='i' or $leader7='s'">SE</xsl:when>
42                         <xsl:when test="$leader7='a' or $leader7='b'">AR</xsl:when>
43                     </xsl:choose>
44                 </xsl:when>
45                 <xsl:when test="$leader6='t'">BK</xsl:when>
46                 <xsl:when test="$leader6='o' or $leader6='p'">MX</xsl:when>
47                 <xsl:when test="$leader6='m'">CF</xsl:when>
48                 <xsl:when test="$leader6='e' or $leader6='f'">MP</xsl:when>
49                 <xsl:when test="$leader6='g' or $leader6='k' or $leader6='r'">VM</xsl:when>
50                 <xsl:when test="$leader6='i' or $leader6='j'">MU</xsl:when>
51                 <xsl:when test="$leader6='c' or $leader6='d'">PR</xsl:when>
52             </xsl:choose>
53         </xsl:variable>
54         <xsl:variable name="materialTypeLabel">
55             <xsl:choose>
56                 <xsl:when test="$leader19='a'">Set</xsl:when>
57                 <xsl:when test="$leader6='a'">
58                     <xsl:choose>
59                         <xsl:when test="$leader7='c' or $leader7='d' or $leader7='m'">Book</xsl:when>
60                         <xsl:when test="$leader7='i' or $leader7='s'">
61                             <xsl:choose>
62                                 <xsl:when test="substring($controlField008,22,1)!='m'">Continuing Resource</xsl:when>
63                                 <xsl:otherwise>Series</xsl:otherwise>
64                             </xsl:choose>
65                         </xsl:when>
66                         <xsl:when test="$leader7='a' or $leader7='b'">Article</xsl:when>
67                     </xsl:choose>
68                 </xsl:when>
69                 <xsl:when test="$leader6='t'">Book</xsl:when>
70                                 <xsl:when test="$leader6='o'">Kit</xsl:when>
71                 <xsl:when test="$leader6='p'">Mixed Materials</xsl:when>
72                 <xsl:when test="$leader6='m'">Computer File</xsl:when>
73                 <xsl:when test="$leader6='e' or $leader6='f'">Map</xsl:when>
74                 <xsl:when test="$leader6='g' or $leader6='k' or $leader6='r'">Visual Material</xsl:when>
75                 <xsl:when test="$leader6='j'">Music</xsl:when>
76                 <xsl:when test="$leader6='i'">Sound</xsl:when>
77                 <xsl:when test="$leader6='c' or $leader6='d'">Score</xsl:when>
78             </xsl:choose>
79         </xsl:variable>
80
81         <!-- Title Statement -->
82         <!-- Alternate Graphic Representation (MARC 880) -->
83         <xsl:if test="$display880">
84             <h1 class="title">
85                 <xsl:call-template name="m880Select">
86                     <xsl:with-param name="basetags">245</xsl:with-param>
87                     <xsl:with-param name="codes">abhfgknps</xsl:with-param>
88                 </xsl:call-template>
89             </h1>
90         </xsl:if>
91
92         <xsl:if test="marc:datafield[@tag=245]">
93         <h1 class="title">
94             <xsl:for-each select="marc:datafield[@tag=245]">
95                     <xsl:call-template name="subfieldSelect">
96                         <xsl:with-param name="codes">a</xsl:with-param>
97                     </xsl:call-template>
98                     <xsl:if test="marc:subfield[@code='b']">
99                         <xsl:text> </xsl:text>
100                         <xsl:call-template name="subfieldSelect">
101                             <xsl:with-param name="codes">b</xsl:with-param>
102                         </xsl:call-template>
103                     </xsl:if>
104                     <xsl:if test="marc:subfield[@code='h']">
105                         <xsl:text> </xsl:text>
106                         <xsl:call-template name="subfieldSelect">
107                             <xsl:with-param name="codes">h</xsl:with-param>
108                         </xsl:call-template>
109                     </xsl:if>
110                 <xsl:text> </xsl:text>
111                     <xsl:call-template name="subfieldSelect">
112                         <xsl:with-param name="codes">fgknps</xsl:with-param>
113                     </xsl:call-template>
114             </xsl:for-each>
115         </h1>
116         </xsl:if>
117
118         <!-- Author Statement: Alternate Graphic Representation (MARC 880) -->
119         <xsl:if test="$display880">
120             <h5 class="author">
121                 <xsl:call-template name="m880Select">
122                     <xsl:with-param name="basetags">100,110,111,700,710,711</xsl:with-param>
123                     <xsl:with-param name="codes">abc</xsl:with-param>
124                     <xsl:with-param name="index">au</xsl:with-param>
125                     <!-- do not use label 'by ' here, it would be repeated for every occurence of 100,110,111,700,710,711 -->
126                 </xsl:call-template>
127             </h5>
128         </xsl:if>
129
130         <xsl:choose>
131         <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]">
132         <h5 class="author">by
133         <xsl:for-each select="marc:datafield[@tag=100 or @tag=700]">
134         <a>
135         <xsl:choose>
136             <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
137                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
138             </xsl:when>
139             <xsl:otherwise>
140             <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=au:<xsl:value-of select="marc:subfield[@code='a']"/></xsl:attribute>
141             </xsl:otherwise>
142         </xsl:choose>
143         <xsl:call-template name="nameABCDQ"/></a>
144         <xsl:choose>
145         <xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
146         </xsl:for-each>
147
148         <xsl:for-each select="marc:datafield[@tag=110 or @tag=710]">
149         <a>
150         <xsl:choose>
151             <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
152                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
153             </xsl:when>
154             <xsl:otherwise>
155             <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=au:<xsl:value-of select="marc:subfield[@code='a']"/></xsl:attribute>
156             </xsl:otherwise>
157         </xsl:choose>
158         <xsl:call-template name="nameABCDN"/></a>
159         <xsl:choose><xsl:when test="position()=last()"><xsl:text> </xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
160         </xsl:for-each>
161
162         <xsl:for-each select="marc:datafield[@tag=111 or @tag=711]">
163             <xsl:choose>
164             <xsl:when test="marc:subfield[@code='n']">
165                <xsl:text> </xsl:text>
166                <xsl:call-template name="subfieldSelect">
167                   <xsl:with-param name="codes">n</xsl:with-param>                              </xsl:call-template>
168                <xsl:text> </xsl:text>
169             </xsl:when>
170             </xsl:choose>
171         <a>
172         <xsl:choose>
173             <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
174                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
175             </xsl:when>
176             <xsl:otherwise>
177             <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=au:<xsl:value-of select="marc:subfield[@code='a']"/></xsl:attribute>
178             </xsl:otherwise>
179         </xsl:choose>
180         <xsl:call-template name="nameACDEQ"/></a>
181         <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
182
183         </xsl:for-each>
184         </h5>
185         </xsl:when>
186         </xsl:choose>
187
188    <xsl:if test="$DisplayOPACiconsXSLT!='0'">
189         <xsl:if test="$materialTypeCode!=''">
190         <span class="results_summary"><span class="label">Type: </span>
191         <xsl:element name="img"><xsl:attribute name="src">/opac-tmpl/prog/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>
192         <xsl:value-of select="$materialTypeLabel"/>
193         </span>
194         </xsl:if>
195    </xsl:if>
196
197         <!--Series: Alternate Graphic Representation (MARC 880) -->
198         <xsl:if test="$display880">
199             <xsl:call-template name="m880Select">
200                 <xsl:with-param name="basetags">440,490</xsl:with-param>
201                 <xsl:with-param name="codes">av</xsl:with-param>
202                 <xsl:with-param name="class">results_summary</xsl:with-param>
203                 <xsl:with-param name="label">Series: </xsl:with-param>
204                 <xsl:with-param name="index">se</xsl:with-param>
205             </xsl:call-template>
206         </xsl:if>
207
208         <!-- Series -->
209         <xsl:if test="marc:datafield[@tag=440 or @tag=490]">
210         <span class="results_summary"><span class="label">Series: </span>
211         <!-- 440 -->
212         <xsl:for-each select="marc:datafield[@tag=440]">
213              <a href="/cgi-bin/koha/opac-search.pl?q=se:{marc:subfield[@code='a']}">
214             <xsl:call-template name="chopPunctuation">
215                             <xsl:with-param name="chopString">
216                                 <xsl:call-template name="subfieldSelect">
217                                     <xsl:with-param name="codes">av</xsl:with-param>
218                                 </xsl:call-template>
219                             </xsl:with-param>
220                         </xsl:call-template>
221                         </a>
222                     <xsl:text> </xsl:text><xsl:call-template name="part"/>
223             <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
224         </xsl:for-each>
225
226         <!-- 490 Series not traced, Ind1 = 0 -->
227         <xsl:for-each select="marc:datafield[@tag=490][@ind1=0]">
228              <a href="/cgi-bin/koha/opac-search.pl?q=se:{marc:subfield[@code='a']}">
229                         <xsl:call-template name="chopPunctuation">
230                             <xsl:with-param name="chopString">
231                                 <xsl:call-template name="subfieldSelect">
232                                     <xsl:with-param name="codes">av</xsl:with-param>
233                                 </xsl:call-template>
234                             </xsl:with-param>
235                         </xsl:call-template>
236             </a>
237                     <xsl:call-template name="part"/>
238         <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
239         </xsl:for-each>
240         <!-- 490 Series traced, Ind1 = 1 -->
241         <xsl:if test="marc:datafield[@tag=490][@ind1=1]">
242             <xsl:for-each select="marc:datafield[@tag=800 or @tag=810 or @tag=811 or @tag=830]">
243                 <xsl:choose>
244                     <xsl:when test="marc:subfield[@code='w']">
245                         <a href="/cgi-bin/koha/opac-search.pl?q=rcn:{marc:subfield[@code='w']}">
246                             <xsl:call-template name="chopPunctuation">
247                                 <xsl:with-param name="chopString">
248                                     <xsl:call-template name="subfieldSelect">
249                                         <xsl:with-param name="codes">at</xsl:with-param>
250                                     </xsl:call-template>
251                                 </xsl:with-param>
252                             </xsl:call-template>
253                         </a>
254                     </xsl:when>
255                     <xsl:otherwise>
256                         <a href="/cgi-bin/koha/opac-search.pl?q=se:{marc:subfield[@code='a']}">
257                             <xsl:call-template name="chopPunctuation">
258                                 <xsl:with-param name="chopString">
259                                     <xsl:call-template name="subfieldSelect">
260                                         <xsl:with-param name="codes">at</xsl:with-param>
261                                     </xsl:call-template>
262                                 </xsl:with-param>
263                             </xsl:call-template>
264                         </a>
265                         <xsl:call-template name="part"/>
266                     </xsl:otherwise>
267                 </xsl:choose>
268                 <xsl:text>: </xsl:text>
269                 <xsl:value-of  select="marc:subfield[@code='v']" />
270             <xsl:choose><xsl:when test="position()=last()"><xsl:text></xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
271             </xsl:for-each>
272         </xsl:if>
273         </span>
274         </xsl:if>
275         
276         <!-- Analytics -->
277         <xsl:if test="$leader7='s'">
278         <span class="results_summary"><span class="label">Analytics: </span>
279             <a>
280             <xsl:choose>
281             <xsl:when test="$UseControlNumber = '1' and marc:controlfield[@tag=001]">
282                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=rcn:<xsl:value-of select="marc:controlfield[@tag=001]"/></xsl:attribute>
283             </xsl:when>
284             <xsl:otherwise>
285                 <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>
286             </xsl:otherwise>
287             </xsl:choose>
288             <xsl:text>Show analytics</xsl:text>
289             </a>
290         </span>
291         </xsl:if>
292
293         <!-- Volumes of sets and traced series -->
294         <xsl:if test="$materialTypeCode='ST' or substring($controlField008,22,1)='m'">
295         <span class="results_summary"><span class="label">Volumes: </span>
296             <a>
297             <xsl:choose>
298             <xsl:when test="$UseControlNumber = '1' and marc:controlfield[@tag=001]">
299                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=rcn:<xsl:value-of select="marc:controlfield[@tag=001]"/></xsl:attribute>
300             </xsl:when>
301             <xsl:otherwise>
302                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Title:<xsl:value-of select="translate(marc:datafield[@tag=245]/marc:subfield[@code='a'], '/', '')"/></xsl:attribute>
303             </xsl:otherwise>
304             </xsl:choose>
305             <xsl:text>Show volumes</xsl:text>
306             </a>
307         </span>
308         </xsl:if>
309
310         <!-- Set -->
311         <xsl:if test="$leader19='c'">
312         <span class="results_summary"><span class="label">Set: </span>
313         <xsl:for-each select="marc:datafield[@tag=773]">
314             <a>
315             <xsl:choose>
316             <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
317                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Control-number:<xsl:value-of select="marc:subfield[@code='w']"/></xsl:attribute>
318             </xsl:when>
319             <xsl:otherwise>
320                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Title:<xsl:value-of select="translate(//marc:datafield[@tag=245]/marc:subfield[@code='a'], '.', '')"/></xsl:attribute>
321             </xsl:otherwise>
322             </xsl:choose>
323             <xsl:value-of select="translate(//marc:datafield[@tag=245]/marc:subfield[@code='a'], '.', '')" />
324             </a>
325             <xsl:choose>
326                 <xsl:when test="position()=last()"></xsl:when>
327                 <xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise>
328             </xsl:choose>
329         </xsl:for-each>
330         </span>
331         </xsl:if>
332
333         <!-- Publisher Statement: Alternate Graphic Representation (MARC 880) -->
334         <xsl:if test="$display880">
335             <xsl:call-template name="m880Select">
336                 <xsl:with-param name="basetags">260</xsl:with-param>
337                 <xsl:with-param name="codes">abcg</xsl:with-param>
338                 <xsl:with-param name="class">results_summary</xsl:with-param>
339                 <xsl:with-param name="label">Publisher: </xsl:with-param>
340             </xsl:call-template>
341         </xsl:if>
342
343         <xsl:if test="marc:datafield[@tag=260]">
344         <span class="results_summary"><span class="label">Publisher: </span>
345             <xsl:for-each select="marc:datafield[@tag=260]">
346                 <xsl:if test="marc:subfield[@code='b']">
347                 <a href="/cgi-bin/koha/opac-search.pl?q=pb:{marc:subfield[@code='b']}">
348                     <xsl:call-template name="subfieldSelect">
349                         <xsl:with-param name="codes">b</xsl:with-param>
350                     </xsl:call-template>
351                </a>
352                </xsl:if>
353                <xsl:text> </xsl:text>
354                 <xsl:call-template name="chopPunctuation">
355                   <xsl:with-param name="chopString">
356                     <xsl:call-template name="subfieldSelect">
357                         <xsl:with-param name="codes">acg</xsl:with-param>
358                     </xsl:call-template>
359                    </xsl:with-param>
360                </xsl:call-template>
361                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
362             </xsl:for-each>
363         </span>
364         </xsl:if>
365
366         <!-- Edition Statement: Alternate Graphic Representation (MARC 880) -->
367         <xsl:if test="$display880">
368             <xsl:call-template name="m880Select">
369                 <xsl:with-param name="basetags">250</xsl:with-param>
370                 <xsl:with-param name="codes">ab</xsl:with-param>
371                 <xsl:with-param name="class">results_summary</xsl:with-param>
372                 <xsl:with-param name="label">Edition: </xsl:with-param>
373             </xsl:call-template>
374         </xsl:if>
375
376         <xsl:if test="marc:datafield[@tag=250]">
377         <span class="results_summary"><span class="label">Edition: </span>
378             <xsl:for-each select="marc:datafield[@tag=250]">
379                 <xsl:call-template name="chopPunctuation">
380                   <xsl:with-param name="chopString">
381                     <xsl:call-template name="subfieldSelect">
382                         <xsl:with-param name="codes">ab</xsl:with-param>
383                     </xsl:call-template>
384                    </xsl:with-param>
385                </xsl:call-template>
386                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
387             </xsl:for-each>
388         </span>
389         </xsl:if>
390
391         <!-- Description: Alternate Graphic Representation (MARC 880) -->
392         <xsl:if test="$display880">
393             <xsl:call-template name="m880Select">
394                 <xsl:with-param name="basetags">300</xsl:with-param>
395                 <xsl:with-param name="codes">abceg</xsl:with-param>
396                 <xsl:with-param name="class">results_summary</xsl:with-param>
397                 <xsl:with-param name="label">Description: </xsl:with-param>
398             </xsl:call-template>
399         </xsl:if>
400
401         <xsl:if test="marc:datafield[@tag=300]">
402         <span class="results_summary"><span class="label">Description: </span>
403             <xsl:for-each select="marc:datafield[@tag=300]">
404                 <xsl:call-template name="chopPunctuation">
405                   <xsl:with-param name="chopString">
406                     <xsl:call-template name="subfieldSelect">
407                         <xsl:with-param name="codes">abceg</xsl:with-param>
408                     </xsl:call-template>
409                    </xsl:with-param>
410                </xsl:call-template>
411                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
412             </xsl:for-each>
413         </span>
414        </xsl:if>
415
416        <xsl:if test="marc:datafield[@tag=020]">
417         <span class="results_summary"><span class="label">ISBN: </span>
418         <xsl:for-each select="marc:datafield[@tag=020]">
419         <xsl:variable name="isbn" select="marc:subfield[@code='a']"/>
420                 <xsl:value-of select="marc:subfield[@code='a']"/>
421                 <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
422         </xsl:for-each>
423         </span>
424         </xsl:if>
425
426         <xsl:if test="marc:datafield[@tag=022]">
427         <span class="results_summary"><span class="label">ISSN: </span>
428         <xsl:for-each select="marc:datafield[@tag=022]">
429                 <xsl:value-of select="marc:subfield[@code='a']"/>
430                 <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
431         </xsl:for-each>
432         </span>
433         </xsl:if>
434
435         <!-- Other Title  Statement: Alternate Graphic Representation (MARC 880) -->
436         <xsl:if test="$display880">
437             <xsl:call-template name="m880Select">
438                 <xsl:with-param name="basetags">246</xsl:with-param>
439                 <xsl:with-param name="codes">abhfgnp</xsl:with-param>
440                 <xsl:with-param name="class">results_summary</xsl:with-param>
441                 <xsl:with-param name="label">Other Title: </xsl:with-param>
442             </xsl:call-template>
443         </xsl:if>
444
445         <xsl:if test="marc:datafield[@tag=246]">
446         <span class="results_summary"><span class="label">Other Title: </span>
447             <xsl:for-each select="marc:datafield[@tag=246]">
448                 <xsl:call-template name="chopPunctuation">
449                   <xsl:with-param name="chopString">
450                     <xsl:call-template name="subfieldSelect">
451                         <xsl:with-param name="codes">iabhfgnp</xsl:with-param>
452                     </xsl:call-template>
453                    </xsl:with-param>
454                </xsl:call-template>
455                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
456             </xsl:for-each>
457         </span>
458        </xsl:if>
459
460         <!-- Uniform Title  Statement: Alternate Graphic Representation (MARC 880) -->
461         <xsl:if test="$display880">
462             <xsl:call-template name="m880Select">
463                 <xsl:with-param name="basetags">130,240</xsl:with-param>
464                 <xsl:with-param name="codes">adfklmor</xsl:with-param>
465                 <xsl:with-param name="class">results_summary</xsl:with-param>
466                 <xsl:with-param name="label">Uniform Title: </xsl:with-param>
467             </xsl:call-template>
468         </xsl:if>
469
470         <xsl:if test="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
471         <span class="results_summary"><span class="label">Uniform titles: </span>
472         <xsl:for-each select="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
473             <xsl:variable name="str">
474                 <xsl:for-each select="marc:subfield">
475                     <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'])))">
476                         <xsl:value-of select="text()"/>
477                         <xsl:text> </xsl:text>
478                      </xsl:if>
479                 </xsl:for-each>
480             </xsl:variable>
481             <xsl:call-template name="chopPunctuation">
482                 <xsl:with-param name="chopString">
483                     <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
484
485                 </xsl:with-param>
486             </xsl:call-template>
487             <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
488         </xsl:for-each>
489         </span>
490         </xsl:if>
491
492         <xsl:if test="marc:datafield[substring(@tag, 1, 1) = '6']">
493             <span class="results_summary"><span class="label">Subject(s): </span>
494             <xsl:for-each select="marc:datafield[substring(@tag, 1, 1) = '6']">
495             <a>
496             <xsl:choose>
497             <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
498                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
499             </xsl:when>
500             <xsl:when test="$TraceSubjectSubdivisions='1'">
501                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:call-template name="subfieldSelect">
502                         <xsl:with-param name="codes">abcdfgklmnopqrstvxyz</xsl:with-param>
503                         <xsl:with-param name="delimeter"> and </xsl:with-param>
504                         <xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:{</xsl:with-param>
505                         <xsl:with-param name="suffix">})</xsl:with-param>
506                     </xsl:call-template>
507                 </xsl:attribute>
508             </xsl:when>
509             <xsl:otherwise>
510                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=su<xsl:value-of select="$SubjectModifier"/>:{<xsl:value-of select="marc:subfield[@code='a']"/>}</xsl:attribute>
511             </xsl:otherwise>
512             </xsl:choose>
513             <xsl:call-template name="chopPunctuation">
514                 <xsl:with-param name="chopString">
515                     <xsl:call-template name="subfieldSelect">
516                         <xsl:with-param name="codes">abcdfgklmnopqrstvxyz</xsl:with-param>
517                         <xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
518                         <xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
519                     </xsl:call-template>
520                 </xsl:with-param>
521             </xsl:call-template>
522             </a>
523             <xsl:choose>
524             <xsl:when test="position()=last()"></xsl:when>
525             <xsl:otherwise> | </xsl:otherwise>
526             </xsl:choose>
527
528             </xsl:for-each>
529             </span>
530         </xsl:if>
531
532 <!-- Image processing code added here, takes precedence over text links including y3z text   -->
533         <xsl:if test="marc:datafield[@tag=856]">
534         <span class="results_summary"><span class="label">Online Resources: </span>
535         <xsl:for-each select="marc:datafield[@tag=856]">
536             <xsl:variable name="SubqText"><xsl:value-of select="marc:subfield[@code='q']"/></xsl:variable>
537             <a><xsl:attribute name="href"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute>
538             <xsl:if test="$OPACurlOpenInNewWindow='1'">
539                 <xsl:attribute name="target">_blank</xsl:attribute>
540             </xsl:if>
541             <xsl:choose>
542             <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')">
543                 <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="height">100</xsl:attribute></xsl:element><xsl:text></xsl:text>
544             </xsl:when>                                    
545             <xsl:when test="marc:subfield[@code='y' or @code='3' or @code='z']">
546                 <xsl:call-template name="subfieldSelect">
547                     <xsl:with-param name="codes">y3z</xsl:with-param>
548                 </xsl:call-template>
549             </xsl:when>
550             <xsl:when test="$urlLinkText!=''">
551                 <xsl:value-of select="$urlLinkText"/>
552             </xsl:when>
553             <xsl:otherwise>
554                 <xsl:text>Click here to access online</xsl:text>
555             </xsl:otherwise>
556             </xsl:choose>
557             </a>
558             <xsl:choose>
559             <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
560             <xsl:otherwise> | </xsl:otherwise>
561             </xsl:choose>
562         </xsl:for-each>
563         </span>
564         </xsl:if>
565
566         <!-- 530 -->
567         <xsl:if test="marc:datafield[@tag=530]">
568         <xsl:for-each select="marc:datafield[@tag=530]">
569         <span class="results_summary additionalforms">
570             <xsl:call-template name="subfieldSelect">
571                 <xsl:with-param name="codes">abcd</xsl:with-param>
572             </xsl:call-template>
573             <xsl:for-each select="marc:subfield[@code='u']">
574                 <a><xsl:attribute name="href"><xsl:value-of select="text()"/></xsl:attribute>
575                 <xsl:if test="$OPACurlOpenInNewWindow='1'">
576                     <xsl:attribute name="target">_blank</xsl:attribute>
577                 </xsl:if>
578                 <xsl:value-of select="text()"/>
579                 </a>
580             </xsl:for-each>
581         </span>
582         </xsl:for-each>
583         </xsl:if>
584
585         <!-- 505 -->
586         <xsl:if test="marc:datafield[@tag=505]">
587         <xsl:for-each select="marc:datafield[@tag=505]">
588         <span class="results_summary contents">
589         <xsl:choose>
590         <xsl:when test="@ind1=1">
591             <span class="label">Incomplete contents:</span>
592         </xsl:when>
593         <xsl:when test="@ind1=1">
594             <span class="label">Partial contents:</span>
595         </xsl:when>
596         <xsl:otherwise>
597             <span class="label">Contents:</span>
598         </xsl:otherwise>
599         </xsl:choose>
600         <xsl:choose>
601         <xsl:when test="@ind2=0">
602             <xsl:call-template name="subfieldSelect">
603                 <xsl:with-param name="codes">tru</xsl:with-param>
604             </xsl:call-template>
605         </xsl:when>
606         <xsl:otherwise>
607             <xsl:call-template name="subfieldSelect">
608                 <xsl:with-param name="codes">au</xsl:with-param>
609             </xsl:call-template>
610         </xsl:otherwise>
611         </xsl:choose>
612         </span>
613         </xsl:for-each>
614         </xsl:if>
615
616         <!-- 583 -->
617         <xsl:if test="marc:datafield[@tag=583]">
618         <xsl:for-each select="marc:datafield[@tag=583]">
619             <xsl:if test="@ind1=1 or @ind1=' '">
620             <span class="results_summary actionnote">
621                 <xsl:choose>
622                 <xsl:when test="marc:subfield[@code='z']">
623                     <xsl:value-of select="marc:subfield[@code='z']"/>
624                 </xsl:when>
625                 <xsl:otherwise>
626                     <xsl:call-template name="subfieldSelect">
627                         <xsl:with-param name="codes">abcdefgijklnou</xsl:with-param>
628                     </xsl:call-template>
629                 </xsl:otherwise>
630                 </xsl:choose>
631             </span>
632             </xsl:if>
633         </xsl:for-each>
634         </xsl:if>
635
636         <!-- 586 -->
637         <xsl:if test="marc:datafield[@tag=586]">
638         <xsl:for-each select="marc:datafield[@tag=586]">
639             <span class="results_summary awardsnote">
640                 <xsl:if test="@ind1=' '">
641                 <span class="label">Awards: </span>
642                 </xsl:if>
643                 <xsl:value-of select="marc:subfield[@code='a']"/>
644             </span>
645         </xsl:for-each>
646         </xsl:if>
647
648         <!-- 773 -->
649         <xsl:if test="marc:datafield[@tag=773]">
650         <xsl:for-each select="marc:datafield[@tag=773]">
651         <xsl:if test="@ind1=0">
652         <span class="results_summary"><span class="label">
653         <xsl:choose>
654         <xsl:when test="@ind2=' '">
655             In:
656         </xsl:when>
657         <xsl:when test="@ind2=8">
658             <xsl:if test="marc:subfield[@code='i']">
659                 <xsl:value-of select="marc:subfield[@code='i']"/>
660             </xsl:if>
661         </xsl:when>
662         </xsl:choose>
663         </span>
664                 <xsl:variable name="f773">
665                     <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
666                         <xsl:with-param name="codes">at</xsl:with-param>
667                     </xsl:call-template></xsl:with-param></xsl:call-template>
668                 </xsl:variable>
669             <xsl:choose>
670                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
671                     <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>
672                         <xsl:value-of select="translate($f773, '()', '')"/>
673                     </a>
674                     <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
675                 </xsl:when>
676                 <xsl:otherwise>
677                     <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Title:<xsl:value-of select="translate($f773, '()', '')"/></xsl:attribute>
678                         <xsl:value-of select="$f773"/>
679                     </a>
680                     <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
681                 </xsl:otherwise>
682             </xsl:choose>
683         </span>
684
685         <xsl:if test="marc:subfield[@code='n']">
686             <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
687         </xsl:if>
688
689         </xsl:if>
690         </xsl:for-each>
691         </xsl:if>
692
693         <xsl:for-each select="marc:datafield[@tag=520]">
694         <span class="results_summary"><span class="label">
695         <xsl:choose>
696           <xsl:when test="@ind1=0"><xsl:text>Subject: </xsl:text></xsl:when>
697           <xsl:when test="@ind1=1"><xsl:text>Review: </xsl:text></xsl:when>
698           <xsl:when test="@ind1=2"><xsl:text>Scope and content: </xsl:text></xsl:when>
699           <xsl:when test="@ind1=3"><xsl:text>Abstract: </xsl:text></xsl:when>
700           <xsl:when test="@ind1=4"><xsl:text>Content advice: </xsl:text></xsl:when>
701           <xsl:otherwise><xsl:text>Summary: </xsl:text></xsl:otherwise>
702         </xsl:choose>
703         </span>
704         <xsl:call-template name="subfieldSelect">
705           <xsl:with-param name="codes">abcu</xsl:with-param>
706         </xsl:call-template>
707         </span>
708         </xsl:for-each>
709
710         <!-- 866 holdings public note -->
711         <xsl:if test="marc:datafield[@tag=866]">
712         <span class="results_summary"><span class="label">Holdings Note: </span>
713         <xsl:for-each select="marc:datafield[@tag=866]">
714                 <xsl:value-of select="marc:subfield[@code='z']"/>
715                 <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
716         </xsl:for-each>
717         </span>
718         </xsl:if>
719
720         <!--  775 Other Edition  -->
721         <xsl:if test="marc:datafield[@tag=775]">
722         <span class="results_summary"><span class="label">Other Editions: </span>
723         <xsl:for-each select="marc:datafield[@tag=775]">
724             <xsl:if test="marc:subfield[@code='i']">
725                 <xsl:call-template name="subfieldSelect">
726                     <xsl:with-param name="codes">i</xsl:with-param>
727                 </xsl:call-template>
728                 <xsl:text>: </xsl:text>
729             </xsl:if>
730             <a>
731             <xsl:choose>
732             <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
733                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Control-number:<xsl:value-of select="marc:subfield[@code='w']"/></xsl:attribute>
734             </xsl:when>
735             <xsl:otherwise>
736                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Title:<xsl:value-of select="translate(marc:subfield[@code='t'], '.', '')"/></xsl:attribute>
737             </xsl:otherwise>
738             </xsl:choose>
739             <xsl:call-template name="subfieldSelect">
740                 <xsl:with-param name="codes">t</xsl:with-param>
741             </xsl:call-template>
742             </a>
743             <xsl:choose>
744                 <xsl:when test="position()=last()"></xsl:when>
745                 <xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise>
746             </xsl:choose>
747         </xsl:for-each>
748         </span>
749         </xsl:if>
750
751         <!-- 780 -->
752         <xsl:if test="marc:datafield[@tag=780]">
753         <xsl:for-each select="marc:datafield[@tag=780]">
754         <xsl:if test="@ind1=0">
755         <span class="results_summary">
756         <xsl:choose>
757         <xsl:when test="@ind2=0">
758             <span class="label">Continues:</span>
759         </xsl:when>
760         <xsl:when test="@ind2=1">
761             <span class="label">Continues in part:</span>
762         </xsl:when>
763         <xsl:when test="@ind2=2">
764             <span class="label">Supersedes:</span>
765         </xsl:when>
766         <xsl:when test="@ind2=3">
767             <span class="label">Supersedes in part:</span>
768         </xsl:when>
769         <xsl:when test="@ind2=4">
770             <span class="label">Formed by the union: ... and: ...</span>
771         </xsl:when>
772         <xsl:when test="@ind2=5">
773             <span class="label">Absorbed:</span>
774         </xsl:when>
775         <xsl:when test="@ind2=6">
776             <span class="label">Absorbed in part:</span>
777         </xsl:when>
778         <xsl:when test="@ind2=7">
779             <span class="label">Separated from:</span>
780         </xsl:when>
781         </xsl:choose>
782                 <xsl:variable name="f780">
783                     <xsl:call-template name="subfieldSelect">
784                         <xsl:with-param name="codes">at</xsl:with-param>
785                     </xsl:call-template>
786                 </xsl:variable>
787             <xsl:choose>
788                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
789                     <a href="/cgi-bin/koha/opac-search.pl?q=Control-number:{marc:subfield[@code='w']}">
790                         <xsl:value-of select="translate($f780, '()', '')"/>
791                     </a>
792                 </xsl:when>
793                 <xsl:otherwise>
794                     <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:value-of select="translate($f780, '()', '')"/></xsl:attribute>
795                         <xsl:value-of select="translate($f780, '()', '')"/>
796                     </a>
797                 </xsl:otherwise>
798             </xsl:choose>
799         </span>
800
801         <xsl:if test="marc:subfield[@code='n']">
802             <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
803         </xsl:if>
804
805         </xsl:if>
806         </xsl:for-each>
807         </xsl:if>
808
809         <!-- 785 -->
810         <xsl:if test="marc:datafield[@tag=785]">
811         <xsl:for-each select="marc:datafield[@tag=785]">
812         <xsl:if test="@ind1=0">
813         <span class="results_summary">
814         <xsl:choose>
815         <xsl:when test="@ind2=0">
816             <span class="label">Continued by:</span>
817         </xsl:when>
818         <xsl:when test="@ind2=1">
819             <span class="label">Continued in part by:</span>
820         </xsl:when>
821         <xsl:when test="@ind2=2">
822             <span class="label">Superseded by:</span>
823         </xsl:when>
824         <xsl:when test="@ind2=3">
825             <span class="label">Superseded in part by:</span>
826         </xsl:when>
827         <xsl:when test="@ind2=4">
828             <span class="label">Absorbed by:</span>
829         </xsl:when>
830         <xsl:when test="@ind2=5">
831             <span class="label">Absorbed in part by:</span>
832         </xsl:when>
833         <xsl:when test="@ind2=6">
834             <span class="label">Split into .. and ...:</span>
835         </xsl:when>
836         <xsl:when test="@ind2=7">
837             <span class="label">Merged with ... to form ...</span>
838         </xsl:when>
839         <xsl:when test="@ind2=8">
840             <span class="label">Changed back to:</span>
841         </xsl:when>
842
843         </xsl:choose>
844                    <xsl:variable name="f785">
845                     <xsl:call-template name="subfieldSelect">
846                         <xsl:with-param name="codes">at</xsl:with-param>
847                     </xsl:call-template>
848                 </xsl:variable>
849
850             <xsl:choose>
851                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
852                     <a href="/cgi-bin/koha/opac-search.pl?q=Control-number:{marc:subfield[@code='w']}">
853                         <xsl:value-of select="translate($f785, '()', '')"/>
854                     </a>
855                 </xsl:when>
856                 <xsl:otherwise>
857                     <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:value-of select="translate($f785, '()', '')"/></xsl:attribute>
858                         <xsl:value-of select="translate($f785, '()', '')"/>
859                     </a>
860                 </xsl:otherwise>
861             </xsl:choose>
862
863         </span>
864
865         <xsl:if test="marc:subfield[@code='n']">
866             <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
867         </xsl:if>
868
869         </xsl:if>
870         </xsl:for-each>
871         </xsl:if>
872
873     </xsl:template>
874
875     <xsl:template name="nameABCDQ">
876             <xsl:call-template name="chopPunctuation">
877                 <xsl:with-param name="chopString">
878                     <xsl:call-template name="subfieldSelect">
879                         <xsl:with-param name="codes">aq</xsl:with-param>
880                     </xsl:call-template>
881                 </xsl:with-param>
882                 <xsl:with-param name="punctuation">
883                     <xsl:text>:,;/ </xsl:text>
884                 </xsl:with-param>
885             </xsl:call-template>
886         <xsl:call-template name="termsOfAddress"/>
887     </xsl:template>
888
889     <xsl:template name="nameABCDN">
890         <xsl:for-each select="marc:subfield[@code='a']">
891                 <xsl:call-template name="chopPunctuation">
892                     <xsl:with-param name="chopString" select="."/>
893                 </xsl:call-template>
894         </xsl:for-each>
895         <xsl:for-each select="marc:subfield[@code='b']">
896                 <xsl:value-of select="."/>
897         </xsl:for-each>
898         <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
899                 <xsl:call-template name="subfieldSelect">
900                     <xsl:with-param name="codes">cdn</xsl:with-param>
901                 </xsl:call-template>
902         </xsl:if>
903     </xsl:template>
904
905     <xsl:template name="nameACDEQ">
906             <xsl:call-template name="subfieldSelect">
907                 <xsl:with-param name="codes">acdeq</xsl:with-param>
908             </xsl:call-template>
909     </xsl:template>
910     <xsl:template name="termsOfAddress">
911         <xsl:if test="marc:subfield[@code='b' or @code='c']">
912             <xsl:call-template name="chopPunctuation">
913                 <xsl:with-param name="chopString">
914                     <xsl:call-template name="subfieldSelect">
915                         <xsl:with-param name="codes">bc</xsl:with-param>
916                     </xsl:call-template>
917                 </xsl:with-param>
918             </xsl:call-template>
919         </xsl:if>
920     </xsl:template>
921
922     <xsl:template name="part">
923         <xsl:variable name="partNumber">
924             <xsl:call-template name="specialSubfieldSelect">
925                 <xsl:with-param name="axis">n</xsl:with-param>
926                 <xsl:with-param name="anyCodes">n</xsl:with-param>
927                 <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
928             </xsl:call-template>
929         </xsl:variable>
930         <xsl:variable name="partName">
931             <xsl:call-template name="specialSubfieldSelect">
932                 <xsl:with-param name="axis">p</xsl:with-param>
933                 <xsl:with-param name="anyCodes">p</xsl:with-param>
934                 <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
935             </xsl:call-template>
936         </xsl:variable>
937         <xsl:if test="string-length(normalize-space($partNumber))">
938                 <xsl:call-template name="chopPunctuation">
939                     <xsl:with-param name="chopString" select="$partNumber"/>
940                 </xsl:call-template>
941         </xsl:if>
942         <xsl:if test="string-length(normalize-space($partName))">
943                 <xsl:call-template name="chopPunctuation">
944                     <xsl:with-param name="chopString" select="$partName"/>
945                 </xsl:call-template>
946         </xsl:if>
947     </xsl:template>
948
949     <xsl:template name="specialSubfieldSelect">
950         <xsl:param name="anyCodes"/>
951         <xsl:param name="axis"/>
952         <xsl:param name="beforeCodes"/>
953         <xsl:param name="afterCodes"/>
954         <xsl:variable name="str">
955             <xsl:for-each select="marc:subfield">
956                 <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])">
957                     <xsl:value-of select="text()"/>
958                     <xsl:text> </xsl:text>
959                 </xsl:if>
960             </xsl:for-each>
961         </xsl:variable>
962         <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
963     </xsl:template>
964 </xsl:stylesheet>