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

(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl (-1 / +1 lines)
Lines 7-13 Link Here
7
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
7
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8
  exclude-result-prefixes="marc items">
8
  exclude-result-prefixes="marc items">
9
    <xsl:import href="MARC21slimUtils.xsl"/>
9
    <xsl:import href="MARC21slimUtils.xsl"/>
10
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" />
10
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
11
    <xsl:template match="/">
11
    <xsl:template match="/">
12
            <xsl:apply-templates/>
12
            <xsl:apply-templates/>
13
    </xsl:template>
13
    </xsl:template>
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACMARCdetail.xsl (-2 / +5 lines)
Lines 1-11 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<!DOCTYPE stylesheet [<!ENTITY nbsp "&#160;" >]>
2
<!DOCTYPE stylesheet [<!ENTITY nbsp "&#160;" >]>
3
<xsl:stylesheet version="1.0" xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3
<xsl:stylesheet version="1.0" xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
4
	<xsl:output method="html"/>
4
    <xsl:output method="html" encoding="UTF-8"/>
5
5
6
	<xsl:template match="/">
6
	<xsl:template match="/">
7
		<html>
7
		<html>
8
			<xsl:apply-templates/>
8
          <head><title>MARC View</title></head>
9
          <body>
10
           <xsl:apply-templates/>
11
          </body>
9
		</html>
12
		</html>
10
	</xsl:template>
13
	</xsl:template>
11
14
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl (-1 / +1 lines)
Lines 7-13 Link Here
7
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
7
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8
  exclude-result-prefixes="marc items">
8
  exclude-result-prefixes="marc items">
9
    <xsl:import href="MARC21slimUtils.xsl"/>
9
    <xsl:import href="MARC21slimUtils.xsl"/>
10
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" />
10
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
11
    <xsl:key name="item-by-status" match="items:item" use="items:status"/>
11
    <xsl:key name="item-by-status" match="items:item" use="items:status"/>
12
    <xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:homebranch)"/>
12
    <xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:homebranch)"/>
13
13
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/NORMARCslim2OPACDetail.xsl (-1 / +1 lines)
Lines 9-15 Link Here
9
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
9
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10
  exclude-result-prefixes="marc items">
10
  exclude-result-prefixes="marc items">
11
    <xsl:import href="NORMARCslimUtils.xsl"/>
11
    <xsl:import href="NORMARCslimUtils.xsl"/>
12
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" />
12
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
13
    <xsl:template match="/">
13
    <xsl:template match="/">
14
            <xsl:apply-templates/>
14
            <xsl:apply-templates/>
15
    </xsl:template>
15
    </xsl:template>
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/NORMARCslim2OPACResults.xsl (-1 / +1 lines)
Lines 9-15 Link Here
9
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
9
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
10
  exclude-result-prefixes="marc items">
10
  exclude-result-prefixes="marc items">
11
    <xsl:import href="NORMARCslimUtils.xsl"/>
11
    <xsl:import href="NORMARCslimUtils.xsl"/>
12
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" />
12
    <xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
13
    <xsl:key name="item-by-status" match="items:item" use="items:status"/>
13
    <xsl:key name="item-by-status" match="items:item" use="items:status"/>
14
    <xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:homebranch)"/>
14
    <xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:homebranch)"/>
15
15
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/UNIMARCslim2OPACDetail.xsl (-1 / +1 lines)
Lines 9-15 Link Here
9
  exclude-result-prefixes="marc items">
9
  exclude-result-prefixes="marc items">
10
10
11
<xsl:import href="UNIMARCslimUtils.xsl"/>
11
<xsl:import href="UNIMARCslimUtils.xsl"/>
12
<xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" />
12
<xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
13
<xsl:template match="/">
13
<xsl:template match="/">
14
  <xsl:apply-templates/>
14
  <xsl:apply-templates/>
15
</xsl:template>
15
</xsl:template>
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/UNIMARCslim2OPACResults.xsl (-2 / +1 lines)
Lines 9-15 Link Here
9
  exclude-result-prefixes="marc items">
9
  exclude-result-prefixes="marc items">
10
10
11
<xsl:import href="UNIMARCslimUtils.xsl"/>
11
<xsl:import href="UNIMARCslimUtils.xsl"/>
12
<xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" />
12
<xsl:output method = "html" indent="yes" omit-xml-declaration = "yes" encoding="UTF-8"/>
13
<xsl:key name="item-by-status" match="items:item" use="items:status"/>
13
<xsl:key name="item-by-status" match="items:item" use="items:status"/>
14
<xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:homebranch)"/>
14
<xsl:key name="item-by-status-and-branch" match="items:item" use="concat(items:status, ' ', items:homebranch)"/>
15
15
16
- 

Return to bug 8872