Merge remote-tracking branch 'kc/new/enh/bug_5917' into kcmaster
[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='a']">
347                     <xsl:call-template name="subfieldSelect">
348                         <xsl:with-param name="codes">a</xsl:with-param>
349                     </xsl:call-template>&nbsp;
350                 </xsl:if>
351                 <xsl:if test="marc:subfield[@code='b']">
352                 <a href="/cgi-bin/koha/opac-search.pl?q=pb:{marc:subfield[@code='b']}">
353                     <xsl:call-template name="subfieldSelect">
354                         <xsl:with-param name="codes">b</xsl:with-param>
355                     </xsl:call-template>
356                </a>
357                </xsl:if>
358                <xsl:text> </xsl:text>
359                 <xsl:call-template name="chopPunctuation">
360                   <xsl:with-param name="chopString">
361                     <xsl:call-template name="subfieldSelect">
362                         <xsl:with-param name="codes">cg</xsl:with-param>
363                     </xsl:call-template>
364                    </xsl:with-param>
365                </xsl:call-template>
366                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
367             </xsl:for-each>
368         </span>
369         </xsl:if>
370
371         <!-- Edition Statement: Alternate Graphic Representation (MARC 880) -->
372         <xsl:if test="$display880">
373             <xsl:call-template name="m880Select">
374                 <xsl:with-param name="basetags">250</xsl:with-param>
375                 <xsl:with-param name="codes">ab</xsl:with-param>
376                 <xsl:with-param name="class">results_summary</xsl:with-param>
377                 <xsl:with-param name="label">Edition: </xsl:with-param>
378             </xsl:call-template>
379         </xsl:if>
380
381         <xsl:if test="marc:datafield[@tag=250]">
382         <span class="results_summary"><span class="label">Edition: </span>
383             <xsl:for-each select="marc:datafield[@tag=250]">
384                 <xsl:call-template name="chopPunctuation">
385                   <xsl:with-param name="chopString">
386                     <xsl:call-template name="subfieldSelect">
387                         <xsl:with-param name="codes">ab</xsl:with-param>
388                     </xsl:call-template>
389                    </xsl:with-param>
390                </xsl:call-template>
391                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
392             </xsl:for-each>
393         </span>
394         </xsl:if>
395
396         <!-- Description: Alternate Graphic Representation (MARC 880) -->
397         <xsl:if test="$display880">
398             <xsl:call-template name="m880Select">
399                 <xsl:with-param name="basetags">300</xsl:with-param>
400                 <xsl:with-param name="codes">abceg</xsl:with-param>
401                 <xsl:with-param name="class">results_summary</xsl:with-param>
402                 <xsl:with-param name="label">Description: </xsl:with-param>
403             </xsl:call-template>
404         </xsl:if>
405
406         <xsl:if test="marc:datafield[@tag=300]">
407         <span class="results_summary"><span class="label">Description: </span>
408             <xsl:for-each select="marc:datafield[@tag=300]">
409                 <xsl:call-template name="chopPunctuation">
410                   <xsl:with-param name="chopString">
411                     <xsl:call-template name="subfieldSelect">
412                         <xsl:with-param name="codes">abceg</xsl:with-param>
413                     </xsl:call-template>
414                    </xsl:with-param>
415                </xsl:call-template>
416                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
417             </xsl:for-each>
418         </span>
419        </xsl:if>
420
421        <xsl:if test="marc:datafield[@tag=020]">
422         <span class="results_summary"><span class="label">ISBN: </span>
423         <xsl:for-each select="marc:datafield[@tag=020]">
424         <xsl:variable name="isbn" select="marc:subfield[@code='a']"/>
425                 <xsl:value-of select="marc:subfield[@code='a']"/>
426                 <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
427         </xsl:for-each>
428         </span>
429         </xsl:if>
430
431         <xsl:if test="marc:datafield[@tag=022]">
432         <span class="results_summary"><span class="label">ISSN: </span>
433         <xsl:for-each select="marc:datafield[@tag=022]">
434                 <xsl:value-of select="marc:subfield[@code='a']"/>
435                 <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
436         </xsl:for-each>
437         </span>
438         </xsl:if>
439
440         <!-- Other Title  Statement: Alternate Graphic Representation (MARC 880) -->
441         <xsl:if test="$display880">
442             <xsl:call-template name="m880Select">
443                 <xsl:with-param name="basetags">246</xsl:with-param>
444                 <xsl:with-param name="codes">abhfgnp</xsl:with-param>
445                 <xsl:with-param name="class">results_summary</xsl:with-param>
446                 <xsl:with-param name="label">Other Title: </xsl:with-param>
447             </xsl:call-template>
448         </xsl:if>
449
450         <xsl:if test="marc:datafield[@tag=246]">
451         <span class="results_summary"><span class="label">Other Title: </span>
452             <xsl:for-each select="marc:datafield[@tag=246]">
453                 <xsl:call-template name="chopPunctuation">
454                   <xsl:with-param name="chopString">
455                     <xsl:call-template name="subfieldSelect">
456                         <xsl:with-param name="codes">iabhfgnp</xsl:with-param>
457                     </xsl:call-template>
458                    </xsl:with-param>
459                </xsl:call-template>
460                     <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
461             </xsl:for-each>
462         </span>
463        </xsl:if>
464
465         <!-- Uniform Title  Statement: Alternate Graphic Representation (MARC 880) -->
466         <xsl:if test="$display880">
467             <xsl:call-template name="m880Select">
468                 <xsl:with-param name="basetags">130,240</xsl:with-param>
469                 <xsl:with-param name="codes">adfklmor</xsl:with-param>
470                 <xsl:with-param name="class">results_summary</xsl:with-param>
471                 <xsl:with-param name="label">Uniform Title: </xsl:with-param>
472             </xsl:call-template>
473         </xsl:if>
474
475         <xsl:if test="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
476         <span class="results_summary"><span class="label">Uniform titles: </span>
477         <xsl:for-each select="marc:datafield[@tag=130]|marc:datafield[@tag=240]|marc:datafield[@tag=730][@ind2!=2]">
478             <xsl:variable name="str">
479                 <xsl:for-each select="marc:subfield">
480                     <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'])))">
481                         <xsl:value-of select="text()"/>
482                         <xsl:text> </xsl:text>
483                      </xsl:if>
484                 </xsl:for-each>
485             </xsl:variable>
486             <xsl:call-template name="chopPunctuation">
487                 <xsl:with-param name="chopString">
488                     <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
489
490                 </xsl:with-param>
491             </xsl:call-template>
492             <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
493         </xsl:for-each>
494         </span>
495         </xsl:if>
496
497         <xsl:if test="marc:datafield[substring(@tag, 1, 1) = '6']">
498             <span class="results_summary"><span class="label">Subject(s): </span>
499             <xsl:for-each select="marc:datafield[substring(@tag, 1, 1) = '6']">
500             <a>
501             <xsl:choose>
502             <xsl:when test="marc:subfield[@code=9] and $UseAuthoritiesForTracings='1'">
503                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=an:<xsl:value-of select="marc:subfield[@code=9]"/></xsl:attribute>
504             </xsl:when>
505             <xsl:when test="$TraceSubjectSubdivisions='1'">
506                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:call-template name="subfieldSelect">
507                         <xsl:with-param name="codes">abcdfgklmnopqrstvxyz</xsl:with-param>
508                         <xsl:with-param name="delimeter"> and </xsl:with-param>
509                         <xsl:with-param name="prefix">(su<xsl:value-of select="$SubjectModifier"/>:{</xsl:with-param>
510                         <xsl:with-param name="suffix">})</xsl:with-param>
511                     </xsl:call-template>
512                 </xsl:attribute>
513             </xsl:when>
514             <xsl:otherwise>
515                 <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>
516             </xsl:otherwise>
517             </xsl:choose>
518             <xsl:call-template name="chopPunctuation">
519                 <xsl:with-param name="chopString">
520                     <xsl:call-template name="subfieldSelect">
521                         <xsl:with-param name="codes">abcdfgklmnopqrstvxyz</xsl:with-param>
522                         <xsl:with-param name="subdivCodes">vxyz</xsl:with-param>
523                         <xsl:with-param name="subdivDelimiter">-- </xsl:with-param>
524                     </xsl:call-template>
525                 </xsl:with-param>
526             </xsl:call-template>
527             </a>
528             <xsl:choose>
529             <xsl:when test="position()=last()"></xsl:when>
530             <xsl:otherwise> | </xsl:otherwise>
531             </xsl:choose>
532
533             </xsl:for-each>
534             </span>
535         </xsl:if>
536
537 <!-- Image processing code added here, takes precedence over text links including y3z text   -->
538         <xsl:if test="marc:datafield[@tag=856]">
539         <span class="results_summary"><span class="label">Online Resources: </span>
540         <xsl:for-each select="marc:datafield[@tag=856]">
541             <xsl:variable name="SubqText"><xsl:value-of select="marc:subfield[@code='q']"/></xsl:variable>
542             <a><xsl:attribute name="href"><xsl:value-of select="marc:subfield[@code='u']"/></xsl:attribute>
543             <xsl:if test="$OPACURLOpenInNewWindow='1'">
544                 <xsl:attribute name="target">_blank</xsl:attribute>
545             </xsl:if>
546             <xsl:choose>
547             <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')">
548                 <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>
549             </xsl:when>                                    
550             <xsl:when test="marc:subfield[@code='y' or @code='3' or @code='z']">
551                 <xsl:call-template name="subfieldSelect">
552                     <xsl:with-param name="codes">y3z</xsl:with-param>
553                 </xsl:call-template>
554             </xsl:when>
555             <xsl:when test="$URLLinkText!=''">
556                 <xsl:value-of select="$URLLinkText"/>
557             </xsl:when>
558             <xsl:otherwise>
559                 <xsl:text>Click here to access online</xsl:text>
560             </xsl:otherwise>
561             </xsl:choose>
562             </a>
563             <xsl:choose>
564             <xsl:when test="position()=last()"><xsl:text>  </xsl:text></xsl:when>
565             <xsl:otherwise> | </xsl:otherwise>
566             </xsl:choose>
567         </xsl:for-each>
568         </span>
569         </xsl:if>
570
571         <!-- 530 -->
572         <xsl:if test="marc:datafield[@tag=530]">
573         <xsl:for-each select="marc:datafield[@tag=530]">
574         <span class="results_summary additionalforms">
575             <xsl:call-template name="subfieldSelect">
576                 <xsl:with-param name="codes">abcd</xsl:with-param>
577             </xsl:call-template>
578             <xsl:for-each select="marc:subfield[@code='u']">
579                 <a><xsl:attribute name="href"><xsl:value-of select="text()"/></xsl:attribute>
580                 <xsl:if test="$OPACURLOpenInNewWindow='1'">
581                     <xsl:attribute name="target">_blank</xsl:attribute>
582                 </xsl:if>
583                 <xsl:value-of select="text()"/>
584                 </a>
585             </xsl:for-each>
586         </span>
587         </xsl:for-each>
588         </xsl:if>
589
590         <!-- 505 -->
591         <xsl:if test="marc:datafield[@tag=505]">
592         <xsl:for-each select="marc:datafield[@tag=505]">
593         <span class="results_summary contents">
594         <xsl:choose>
595         <xsl:when test="@ind1=1">
596             <span class="label">Incomplete contents:</span>
597         </xsl:when>
598         <xsl:when test="@ind1=1">
599             <span class="label">Partial contents:</span>
600         </xsl:when>
601         <xsl:otherwise>
602             <span class="label">Contents:</span>
603         </xsl:otherwise>
604         </xsl:choose>
605         <xsl:choose>
606         <xsl:when test="@ind2=0">
607             <xsl:call-template name="subfieldSelect">
608                 <xsl:with-param name="codes">tru</xsl:with-param>
609             </xsl:call-template>
610         </xsl:when>
611         <xsl:otherwise>
612             <xsl:call-template name="subfieldSelect">
613                 <xsl:with-param name="codes">au</xsl:with-param>
614             </xsl:call-template>
615         </xsl:otherwise>
616         </xsl:choose>
617         </span>
618         </xsl:for-each>
619         </xsl:if>
620
621         <!-- 583 -->
622         <xsl:if test="marc:datafield[@tag=583]">
623         <xsl:for-each select="marc:datafield[@tag=583]">
624             <xsl:if test="@ind1=1 or @ind1=' '">
625             <span class="results_summary actionnote">
626                 <xsl:choose>
627                 <xsl:when test="marc:subfield[@code='z']">
628                     <xsl:value-of select="marc:subfield[@code='z']"/>
629                 </xsl:when>
630                 <xsl:otherwise>
631                     <xsl:call-template name="subfieldSelect">
632                         <xsl:with-param name="codes">abcdefgijklnou</xsl:with-param>
633                     </xsl:call-template>
634                 </xsl:otherwise>
635                 </xsl:choose>
636             </span>
637             </xsl:if>
638         </xsl:for-each>
639         </xsl:if>
640
641         <!-- 586 -->
642         <xsl:if test="marc:datafield[@tag=586]">
643         <xsl:for-each select="marc:datafield[@tag=586]">
644             <span class="results_summary awardsnote">
645                 <xsl:if test="@ind1=' '">
646                 <span class="label">Awards: </span>
647                 </xsl:if>
648                 <xsl:value-of select="marc:subfield[@code='a']"/>
649             </span>
650         </xsl:for-each>
651         </xsl:if>
652
653         <!-- 773 -->
654         <xsl:if test="marc:datafield[@tag=773]">
655         <xsl:for-each select="marc:datafield[@tag=773]">
656         <xsl:if test="@ind1=0">
657         <span class="results_summary"><span class="label">
658         <xsl:choose>
659         <xsl:when test="@ind2=' '">
660             In:
661         </xsl:when>
662         <xsl:when test="@ind2=8">
663             <xsl:if test="marc:subfield[@code='i']">
664                 <xsl:value-of select="marc:subfield[@code='i']"/>
665             </xsl:if>
666         </xsl:when>
667         </xsl:choose>
668         </span>
669                 <xsl:variable name="f773">
670                     <xsl:call-template name="chopPunctuation"><xsl:with-param name="chopString"><xsl:call-template name="subfieldSelect">
671                         <xsl:with-param name="codes">at</xsl:with-param>
672                     </xsl:call-template></xsl:with-param></xsl:call-template>
673                 </xsl:variable>
674             <xsl:choose>
675                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
676                     <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>
677                         <xsl:value-of select="translate($f773, '()', '')"/>
678                     </a>
679                     <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
680                 </xsl:when>
681                 <xsl:otherwise>
682                     <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Title:<xsl:value-of select="translate($f773, '()', '')"/></xsl:attribute>
683                         <xsl:value-of select="$f773"/>
684                     </a>
685                     <xsl:if test="marc:subfield[@code='g']"><xsl:text> </xsl:text><xsl:value-of select="marc:subfield[@code='g']"/></xsl:if>
686                 </xsl:otherwise>
687             </xsl:choose>
688         </span>
689
690         <xsl:if test="marc:subfield[@code='n']">
691             <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
692         </xsl:if>
693
694         </xsl:if>
695         </xsl:for-each>
696         </xsl:if>
697
698         <xsl:for-each select="marc:datafield[@tag=520]">
699         <span class="results_summary"><span class="label">
700         <xsl:choose>
701           <xsl:when test="@ind1=0"><xsl:text>Subject: </xsl:text></xsl:when>
702           <xsl:when test="@ind1=1"><xsl:text>Review: </xsl:text></xsl:when>
703           <xsl:when test="@ind1=2"><xsl:text>Scope and content: </xsl:text></xsl:when>
704           <xsl:when test="@ind1=3"><xsl:text>Abstract: </xsl:text></xsl:when>
705           <xsl:when test="@ind1=4"><xsl:text>Content advice: </xsl:text></xsl:when>
706           <xsl:otherwise><xsl:text>Summary: </xsl:text></xsl:otherwise>
707         </xsl:choose>
708         </span>
709         <xsl:call-template name="subfieldSelect">
710           <xsl:with-param name="codes">abcu</xsl:with-param>
711         </xsl:call-template>
712         </span>
713         </xsl:for-each>
714
715         <!-- 866 holdings public note -->
716         <xsl:if test="marc:datafield[@tag=866]">
717         <span class="results_summary"><span class="label">Holdings Note: </span>
718         <xsl:for-each select="marc:datafield[@tag=866]">
719                 <xsl:value-of select="marc:subfield[@code='z']"/>
720                 <xsl:choose><xsl:when test="position()=last()"><xsl:text>.</xsl:text></xsl:when><xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise></xsl:choose>
721         </xsl:for-each>
722         </span>
723         </xsl:if>
724
725         <!--  775 Other Edition  -->
726         <xsl:if test="marc:datafield[@tag=775]">
727         <span class="results_summary"><span class="label">Other Editions: </span>
728         <xsl:for-each select="marc:datafield[@tag=775]">
729             <xsl:if test="marc:subfield[@code='i']">
730                 <xsl:call-template name="subfieldSelect">
731                     <xsl:with-param name="codes">i</xsl:with-param>
732                 </xsl:call-template>
733                 <xsl:text>: </xsl:text>
734             </xsl:if>
735             <a>
736             <xsl:choose>
737             <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
738                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Control-number:<xsl:value-of select="marc:subfield[@code='w']"/></xsl:attribute>
739             </xsl:when>
740             <xsl:otherwise>
741                 <xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=Title:<xsl:value-of select="translate(marc:subfield[@code='t'], '.', '')"/></xsl:attribute>
742             </xsl:otherwise>
743             </xsl:choose>
744             <xsl:call-template name="subfieldSelect">
745                 <xsl:with-param name="codes">t</xsl:with-param>
746             </xsl:call-template>
747             </a>
748             <xsl:choose>
749                 <xsl:when test="position()=last()"></xsl:when>
750                 <xsl:otherwise><xsl:text>; </xsl:text></xsl:otherwise>
751             </xsl:choose>
752         </xsl:for-each>
753         </span>
754         </xsl:if>
755
756         <!-- 780 -->
757         <xsl:if test="marc:datafield[@tag=780]">
758         <xsl:for-each select="marc:datafield[@tag=780]">
759         <xsl:if test="@ind1=0">
760         <span class="results_summary">
761         <xsl:choose>
762         <xsl:when test="@ind2=0">
763             <span class="label">Continues:</span>
764         </xsl:when>
765         <xsl:when test="@ind2=1">
766             <span class="label">Continues in part:</span>
767         </xsl:when>
768         <xsl:when test="@ind2=2">
769             <span class="label">Supersedes:</span>
770         </xsl:when>
771         <xsl:when test="@ind2=3">
772             <span class="label">Supersedes in part:</span>
773         </xsl:when>
774         <xsl:when test="@ind2=4">
775             <span class="label">Formed by the union: ... and: ...</span>
776         </xsl:when>
777         <xsl:when test="@ind2=5">
778             <span class="label">Absorbed:</span>
779         </xsl:when>
780         <xsl:when test="@ind2=6">
781             <span class="label">Absorbed in part:</span>
782         </xsl:when>
783         <xsl:when test="@ind2=7">
784             <span class="label">Separated from:</span>
785         </xsl:when>
786         </xsl:choose>
787                 <xsl:variable name="f780">
788                     <xsl:call-template name="subfieldSelect">
789                         <xsl:with-param name="codes">at</xsl:with-param>
790                     </xsl:call-template>
791                 </xsl:variable>
792             <xsl:choose>
793                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
794                     <a href="/cgi-bin/koha/opac-search.pl?q=Control-number:{marc:subfield[@code='w']}">
795                         <xsl:value-of select="translate($f780, '()', '')"/>
796                     </a>
797                 </xsl:when>
798                 <xsl:otherwise>
799                     <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:value-of select="translate($f780, '()', '')"/></xsl:attribute>
800                         <xsl:value-of select="translate($f780, '()', '')"/>
801                     </a>
802                 </xsl:otherwise>
803             </xsl:choose>
804         </span>
805
806         <xsl:if test="marc:subfield[@code='n']">
807             <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
808         </xsl:if>
809
810         </xsl:if>
811         </xsl:for-each>
812         </xsl:if>
813
814         <!-- 785 -->
815         <xsl:if test="marc:datafield[@tag=785]">
816         <xsl:for-each select="marc:datafield[@tag=785]">
817         <xsl:if test="@ind1=0">
818         <span class="results_summary">
819         <xsl:choose>
820         <xsl:when test="@ind2=0">
821             <span class="label">Continued by:</span>
822         </xsl:when>
823         <xsl:when test="@ind2=1">
824             <span class="label">Continued in part by:</span>
825         </xsl:when>
826         <xsl:when test="@ind2=2">
827             <span class="label">Superseded by:</span>
828         </xsl:when>
829         <xsl:when test="@ind2=3">
830             <span class="label">Superseded in part by:</span>
831         </xsl:when>
832         <xsl:when test="@ind2=4">
833             <span class="label">Absorbed by:</span>
834         </xsl:when>
835         <xsl:when test="@ind2=5">
836             <span class="label">Absorbed in part by:</span>
837         </xsl:when>
838         <xsl:when test="@ind2=6">
839             <span class="label">Split into .. and ...:</span>
840         </xsl:when>
841         <xsl:when test="@ind2=7">
842             <span class="label">Merged with ... to form ...</span>
843         </xsl:when>
844         <xsl:when test="@ind2=8">
845             <span class="label">Changed back to:</span>
846         </xsl:when>
847
848         </xsl:choose>
849                    <xsl:variable name="f785">
850                     <xsl:call-template name="subfieldSelect">
851                         <xsl:with-param name="codes">at</xsl:with-param>
852                     </xsl:call-template>
853                 </xsl:variable>
854
855             <xsl:choose>
856                 <xsl:when test="$UseControlNumber = '1' and marc:subfield[@code='w']">
857                     <a href="/cgi-bin/koha/opac-search.pl?q=Control-number:{marc:subfield[@code='w']}">
858                         <xsl:value-of select="translate($f785, '()', '')"/>
859                     </a>
860                 </xsl:when>
861                 <xsl:otherwise>
862                     <a><xsl:attribute name="href">/cgi-bin/koha/opac-search.pl?q=<xsl:value-of select="translate($f785, '()', '')"/></xsl:attribute>
863                         <xsl:value-of select="translate($f785, '()', '')"/>
864                     </a>
865                 </xsl:otherwise>
866             </xsl:choose>
867
868         </span>
869
870         <xsl:if test="marc:subfield[@code='n']">
871             <span class="results_summary"><xsl:value-of select="marc:subfield[@code='n']"/></span>
872         </xsl:if>
873
874         </xsl:if>
875         </xsl:for-each>
876         </xsl:if>
877
878     </xsl:template>
879
880     <xsl:template name="nameABCDQ">
881             <xsl:call-template name="chopPunctuation">
882                 <xsl:with-param name="chopString">
883                     <xsl:call-template name="subfieldSelect">
884                         <xsl:with-param name="codes">aq</xsl:with-param>
885                     </xsl:call-template>
886                 </xsl:with-param>
887                 <xsl:with-param name="punctuation">
888                     <xsl:text>:,;/ </xsl:text>
889                 </xsl:with-param>
890             </xsl:call-template>
891         <xsl:call-template name="termsOfAddress"/>
892     </xsl:template>
893
894     <xsl:template name="nameABCDN">
895         <xsl:for-each select="marc:subfield[@code='a']">
896                 <xsl:call-template name="chopPunctuation">
897                     <xsl:with-param name="chopString" select="."/>
898                 </xsl:call-template>
899         </xsl:for-each>
900         <xsl:for-each select="marc:subfield[@code='b']">
901                 <xsl:value-of select="."/>
902         </xsl:for-each>
903         <xsl:if test="marc:subfield[@code='c'] or marc:subfield[@code='d'] or marc:subfield[@code='n']">
904                 <xsl:call-template name="subfieldSelect">
905                     <xsl:with-param name="codes">cdn</xsl:with-param>
906                 </xsl:call-template>
907         </xsl:if>
908     </xsl:template>
909
910     <xsl:template name="nameACDEQ">
911             <xsl:call-template name="subfieldSelect">
912                 <xsl:with-param name="codes">acdeq</xsl:with-param>
913             </xsl:call-template>
914     </xsl:template>
915     <xsl:template name="termsOfAddress">
916         <xsl:if test="marc:subfield[@code='b' or @code='c']">
917             <xsl:call-template name="chopPunctuation">
918                 <xsl:with-param name="chopString">
919                     <xsl:call-template name="subfieldSelect">
920                         <xsl:with-param name="codes">bc</xsl:with-param>
921                     </xsl:call-template>
922                 </xsl:with-param>
923             </xsl:call-template>
924         </xsl:if>
925     </xsl:template>
926
927     <xsl:template name="part">
928         <xsl:variable name="partNumber">
929             <xsl:call-template name="specialSubfieldSelect">
930                 <xsl:with-param name="axis">n</xsl:with-param>
931                 <xsl:with-param name="anyCodes">n</xsl:with-param>
932                 <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
933             </xsl:call-template>
934         </xsl:variable>
935         <xsl:variable name="partName">
936             <xsl:call-template name="specialSubfieldSelect">
937                 <xsl:with-param name="axis">p</xsl:with-param>
938                 <xsl:with-param name="anyCodes">p</xsl:with-param>
939                 <xsl:with-param name="afterCodes">fghkdlmor</xsl:with-param>
940             </xsl:call-template>
941         </xsl:variable>
942         <xsl:if test="string-length(normalize-space($partNumber))">
943                 <xsl:call-template name="chopPunctuation">
944                     <xsl:with-param name="chopString" select="$partNumber"/>
945                 </xsl:call-template>
946         </xsl:if>
947         <xsl:if test="string-length(normalize-space($partName))">
948                 <xsl:call-template name="chopPunctuation">
949                     <xsl:with-param name="chopString" select="$partName"/>
950                 </xsl:call-template>
951         </xsl:if>
952     </xsl:template>
953
954     <xsl:template name="specialSubfieldSelect">
955         <xsl:param name="anyCodes"/>
956         <xsl:param name="axis"/>
957         <xsl:param name="beforeCodes"/>
958         <xsl:param name="afterCodes"/>
959         <xsl:variable name="str">
960             <xsl:for-each select="marc:subfield">
961                 <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])">
962                     <xsl:value-of select="text()"/>
963                     <xsl:text> </xsl:text>
964                 </xsl:if>
965             </xsl:for-each>
966         </xsl:variable>
967         <xsl:value-of select="substring($str,1,string-length($str)-1)"/>
968     </xsl:template>
969 </xsl:stylesheet>