View | Details | Raw Unified | Return to bug 5885
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/UNIMARCslim2intranetDetail.xsl (-1 / +1 lines)
Lines 27-33 Link Here
27
        <xsl:call-template name="addClassRtl" />
27
        <xsl:call-template name="addClassRtl" />
28
        <xsl:variable name="title" select="marc:subfield[@code='a']"/>
28
        <xsl:variable name="title" select="marc:subfield[@code='a']"/>
29
        <xsl:variable name="ntitle"
29
        <xsl:variable name="ntitle"
30
         select="translate($title, '&#x0098;&#x009C;','')"/>
30
         select="translate($title, '&#x0098;&#x009C;&#xC29C;&#xC29B;&#xC298;&#xC288;&#xC289;','')"/>
31
        <xsl:value-of select="$ntitle" />
31
        <xsl:value-of select="$ntitle" />
32
        <xsl:if test="marc:subfield[@code='e']">
32
        <xsl:if test="marc:subfield[@code='e']">
33
          <xsl:text> : </xsl:text>
33
          <xsl:text> : </xsl:text>
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/UNIMARCslimUtils.xsl (-1 / +8 lines)
Lines 135-140 Link Here
135
		</xsl:if>
135
		</xsl:if>
136
	</xsl:template>
136
	</xsl:template>
137
137
138
	<xsl:template name="chopSpecialCharacters">
139
        <xsl:param name="title" />
140
        <xsl:variable name="ntitle"
141
             select="translate($title, '&#x0098;&#x009C;&#xC29C;&#xC29B;&#xC298;&#xC288;&#xC289;','')"/>
142
        <xsl:value-of select="$ntitle" />
143
    </xsl:template>
144
145
138
	<xsl:template name="chopPunctuation">
146
	<xsl:template name="chopPunctuation">
139
		<xsl:param name="chopString"/>
147
		<xsl:param name="chopString"/>
140
		<xsl:variable name="length" select="string-length($chopString)"/>
148
		<xsl:variable name="length" select="string-length($chopString)"/>
141
- 

Return to bug 5885