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

(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/Del952.xsl (+17 lines)
Line 0 Link Here
1
<xsl:stylesheet
2
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
  xmlns:marc="http://www.loc.gov/MARC21/slim"
4
  version="1.0">
5
6
  <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
7
  <xsl:strip-space elements="*"/>
8
9
  <xsl:template match="marc:datafield[@tag=952]"/>
10
11
  <xsl:template match="@* | node()">
12
    <xsl:copy>
13
      <xsl:apply-templates select="@* | node()"/>
14
    </xsl:copy>
15
  </xsl:template>
16
17
</xsl:stylesheet>
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/Del995.xsl (+17 lines)
Line 0 Link Here
1
<xsl:stylesheet
2
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
  xmlns:marc="http://www.loc.gov/MARC21/slim"
4
  version="1.0">
5
6
  <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
7
  <xsl:strip-space elements="*"/>
8
9
  <xsl:template match="marc:datafield[@tag=995]"/>
10
11
  <xsl:template match="@* | node()">
12
    <xsl:copy>
13
      <xsl:apply-templates select="@* | node()"/>
14
    </xsl:copy>
15
  </xsl:template>
16
17
</xsl:stylesheet>
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/Del9LinksExcept952.xsl (+16 lines)
Line 0 Link Here
1
<xsl:stylesheet
2
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
  xmlns:marc="http://www.loc.gov/MARC21/slim"
4
  version="1.0">
5
6
  <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
7
  <xsl:strip-space elements="*"/>
8
9
  <xsl:template match="@* | node()">
10
    <xsl:copy>
11
      <xsl:apply-templates select="@* | node()"/>
12
    </xsl:copy>
13
  </xsl:template>
14
15
  <xsl:template match="marc:datafield[@tag!=952]/marc:subfield[@code=9]"/>
16
</xsl:stylesheet>
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/Del9LinksExcept995.xsl (-1 / +16 lines)
Line 0 Link Here
0
- 
1
<xsl:stylesheet
2
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
  xmlns:marc="http://www.loc.gov/MARC21/slim"
4
  version="1.0">
5
6
  <xsl:output method="xml" indent="yes" encoding="UTF-8"/>
7
  <xsl:strip-space elements="*"/>
8
9
  <xsl:template match="@* | node()">
10
    <xsl:copy>
11
      <xsl:apply-templates select="@* | node()"/>
12
    </xsl:copy>
13
  </xsl:template>
14
15
  <xsl:template match="marc:datafield[@tag!=995]/marc:subfield[@code=9]"/>
16
</xsl:stylesheet>

Return to bug 6681