Lines 15-20
Link Here
|
15 |
</xsl:template> |
15 |
</xsl:template> |
16 |
|
16 |
|
17 |
<xsl:template match="marc:record"> |
17 |
<xsl:template match="marc:record"> |
|
|
18 |
<xsl:variable name="IntranetBiblioDefaultView" select="marc:sysprefs/marc:syspref[@name='IntranetBiblioDefaultView']"/> |
18 |
<xsl:variable name="leader" select="marc:leader"/> |
19 |
<xsl:variable name="leader" select="marc:leader"/> |
19 |
<xsl:variable name="leader6" select="substring($leader,7,1)"/> |
20 |
<xsl:variable name="leader6" select="substring($leader,7,1)"/> |
20 |
<xsl:variable name="leader7" select="substring($leader,8,1)"/> |
21 |
<xsl:variable name="leader7" select="substring($leader,8,1)"/> |
Lines 23-33
Link Here
|
23 |
|
24 |
|
24 |
<xsl:if test="marc:datafield[@tag=200]"> |
25 |
<xsl:if test="marc:datafield[@tag=200]"> |
25 |
<xsl:for-each select="marc:datafield[@tag=200]"> |
26 |
<xsl:for-each select="marc:datafield[@tag=200]"> |
26 |
<a><xsl:attribute name="href">/cgi-bin/koha/catalogue/detail.pl?biblionumber=<xsl:value-of select="$biblionumber"/> |
27 |
<a> |
27 |
</xsl:attribute> |
28 |
<xsl:attribute name="href"> |
|
|
29 |
<xsl:call-template name="buildBiblioDefaultViewURL"> |
30 |
<xsl:with-param name="IntranetBiblioDefaultView"> |
31 |
<xsl:value-of select="$IntranetBiblioDefaultView"/> |
32 |
</xsl:with-param> |
33 |
</xsl:call-template> |
34 |
<xsl:value-of select="$biblionumber"/> |
35 |
</xsl:attribute> |
36 |
<xsl:attribute name="class">title</xsl:attribute> |
37 |
|
28 |
<xsl:variable name="title" select="marc:subfield[@code='a']"/> |
38 |
<xsl:variable name="title" select="marc:subfield[@code='a']"/> |
29 |
<xsl:variable name="ntitle" |
39 |
<xsl:variable name="ntitle" |
30 |
select="translate($title, '˜œ슜슛슘슈슉','')"/> |
40 |
select="translate($title, '˜œ슜슛슘슈슉','')"/> |
31 |
<xsl:value-of select="$ntitle" /> |
41 |
<xsl:value-of select="$ntitle" /> |
32 |
</a> |
42 |
</a> |
33 |
<xsl:if test="marc:subfield[@code='e']"> |
43 |
<xsl:if test="marc:subfield[@code='e']"> |