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

(-)a/C4/XSLT.pm (-1 / +1 lines)
Lines 218-224 sub buildKohaItemsNamespace { Link Here
218
        . "</item>";
218
        . "</item>";
219
219
220
    }
220
    }
221
    $xml = "<items xmlns=\"http://www.koha.org/items\">".$xml."</items>";
221
    $xml = "<items xmlns=\"http://www.koha-community.org/items\">".$xml."</items>";
222
    return $xml;
222
    return $xml;
223
}
223
}
224
224
(-)a/etc/zebradb/marc_defs/marc21/authorities/authority-koha-indexdefs.xml (-1 / +1 lines)
Lines 1-5 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<kohaidx:index_defs xmlns:kohaidx="http://www.koha.org/schemas/index-defs">
2
<kohaidx:index_defs xmlns:kohaidx="http://www.koha-community.org/schemas/index-defs">
3
  <!-- variables -->
3
  <!-- variables -->
4
  <kohaidx:var name="form_subdivision_subfield">v</kohaidx:var>
4
  <kohaidx:var name="form_subdivision_subfield">v</kohaidx:var>
5
  <kohaidx:var name="general_subdivision_subfield">x</kohaidx:var>
5
  <kohaidx:var name="general_subdivision_subfield">x</kohaidx:var>
(-)a/etc/zebradb/marc_defs/marc21/authorities/authority-zebra-indexdefs.xsl (-1 / +1 lines)
Lines 1-5 Link Here
1
<?xml version="1.0" encoding="UTF-8"?>
1
<?xml version="1.0" encoding="UTF-8"?>
2
<xslo:stylesheet xmlns:xslo="http://www.w3.org/1999/XSL/Transform" xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:z="http://indexdata.com/zebra-2.0" xmlns:kohaidx="http://www.koha.org/schemas/index-defs" version="1.0">
2
<xslo:stylesheet xmlns:xslo="http://www.w3.org/1999/XSL/Transform" xmlns:marc="http://www.loc.gov/MARC21/slim" xmlns:z="http://indexdata.com/zebra-2.0" xmlns:kohaidx="http://www.koha-community.org/schemas/index-defs" version="1.0">
3
  <xslo:output indent="yes" method="xml" version="1.0" encoding="UTF-8"/>
3
  <xslo:output indent="yes" method="xml" version="1.0" encoding="UTF-8"/>
4
  <xslo:template match="text()"/>
4
  <xslo:template match="text()"/>
5
  <xslo:template match="text()" mode="index_subfields"/>
5
  <xslo:template match="text()" mode="index_subfields"/>
(-)a/etc/zebradb/marc_defs/marc21/authorities/koha-indexdefs-to-zebra.xsl (-1 / +1 lines)
Lines 4-10 Link Here
4
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5
                xmlns:xslo="http://www.w3.org/1999/XSL/TransformAlias"
5
                xmlns:xslo="http://www.w3.org/1999/XSL/TransformAlias"
6
                xmlns:z="http://indexdata.com/zebra-2.0"
6
                xmlns:z="http://indexdata.com/zebra-2.0"
7
                xmlns:kohaidx="http://www.koha.org/schemas/index-defs">
7
                xmlns:kohaidx="http://www.koha-community.org/schemas/index-defs">
8
8
9
    <xsl:namespace-alias stylesheet-prefix="xslo" result-prefix="xsl"/>
9
    <xsl:namespace-alias stylesheet-prefix="xslo" result-prefix="xsl"/>
10
    <xsl:output indent="yes" method="xml" version="1.0" encoding="UTF-8"/>
10
    <xsl:output indent="yes" method="xml" version="1.0" encoding="UTF-8"/>
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/MARC21slim2intranetDetail.xsl (-1 / +1 lines)
Lines 2-8 Link Here
2
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
2
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
3
<xsl:stylesheet version="1.0"
3
<xsl:stylesheet version="1.0"
4
  xmlns:marc="http://www.loc.gov/MARC21/slim"
4
  xmlns:marc="http://www.loc.gov/MARC21/slim"
5
  xmlns:items="http://www.koha.org/items"
5
  xmlns:items="http://www.koha-community.org/items"
6
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
6
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
7
  exclude-result-prefixes="marc items">
7
  exclude-result-prefixes="marc items">
8
    <xsl:import href="MARC21slimUtils.xsl"/>
8
    <xsl:import href="MARC21slimUtils.xsl"/>
(-)a/koha-tmpl/intranet-tmpl/prog/en/xslt/UNIMARCslim2intranetDetail.xsl (-1 / +1 lines)
Lines 4-10 Link Here
4
4
5
<xsl:stylesheet version="1.0"
5
<xsl:stylesheet version="1.0"
6
  xmlns:marc="http://www.loc.gov/MARC21/slim"
6
  xmlns:marc="http://www.loc.gov/MARC21/slim"
7
  xmlns:items="http://www.koha.org/items"
7
  xmlns:items="http://www.koha-community.org/items"
8
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
9
  exclude-result-prefixes="marc items">
9
  exclude-result-prefixes="marc items">
10
10
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACDetail.xsl (-1 / +1 lines)
Lines 2-8 Link Here
2
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
2
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
3
<xsl:stylesheet version="1.0"
3
<xsl:stylesheet version="1.0"
4
  xmlns:marc="http://www.loc.gov/MARC21/slim"
4
  xmlns:marc="http://www.loc.gov/MARC21/slim"
5
  xmlns:items="http://www.koha.org/items"
5
  xmlns:items="http://www.koha-community.org/items"
6
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
6
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
7
  exclude-result-prefixes="marc items">
7
  exclude-result-prefixes="marc items">
8
    <xsl:import href="MARC21slimUtils.xsl"/>
8
    <xsl:import href="MARC21slimUtils.xsl"/>
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/MARC21slim2OPACResults.xsl (-1 / +1 lines)
Lines 2-8 Link Here
2
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
2
<!-- $Id: MARC21slim2DC.xsl,v 1.1 2003/01/06 08:20:27 adam Exp $ -->
3
<xsl:stylesheet version="1.0"
3
<xsl:stylesheet version="1.0"
4
  xmlns:marc="http://www.loc.gov/MARC21/slim"
4
  xmlns:marc="http://www.loc.gov/MARC21/slim"
5
  xmlns:items="http://www.koha.org/items"
5
  xmlns:items="http://www.koha-community.org/items"
6
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
6
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
7
  exclude-result-prefixes="marc items">
7
  exclude-result-prefixes="marc items">
8
    <xsl:import href="MARC21slimUtils.xsl"/>
8
    <xsl:import href="MARC21slimUtils.xsl"/>
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/UNIMARCslim2OPACDetail.xsl (-1 / +1 lines)
Lines 4-10 Link Here
4
4
5
<xsl:stylesheet version="1.0"
5
<xsl:stylesheet version="1.0"
6
  xmlns:marc="http://www.loc.gov/MARC21/slim"
6
  xmlns:marc="http://www.loc.gov/MARC21/slim"
7
  xmlns:items="http://www.koha.org/items"
7
  xmlns:items="http://www.koha-community.org/items"
8
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
9
  exclude-result-prefixes="marc items">
9
  exclude-result-prefixes="marc items">
10
10
(-)a/koha-tmpl/opac-tmpl/prog/en/xslt/UNIMARCslim2OPACResults.xsl (-1 / +1 lines)
Lines 4-10 Link Here
4
4
5
<xsl:stylesheet version="1.0"
5
<xsl:stylesheet version="1.0"
6
  xmlns:marc="http://www.loc.gov/MARC21/slim"
6
  xmlns:marc="http://www.loc.gov/MARC21/slim"
7
  xmlns:items="http://www.koha.org/items"
7
  xmlns:items="http://www.koha-community.org/items"
8
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
8
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
9
  exclude-result-prefixes="marc items">
9
  exclude-result-prefixes="marc items">
10
10
(-)a/misc/cronjobs/rss/README (-3 / +3 lines)
Lines 42-55 Here's the lastAquired.conf by way of example: Link Here
42
42
43
channel
43
channel
44
title=Recent Koha Acquisitions
44
title=Recent Koha Acquisitions
45
link=http://www.koha.org
45
link=http://www.koha-community.org
46
desc=The 15 most recent acquisitions
46
desc=The 15 most recent acquisitions
47
lang=en
47
lang=en
48
lastBuild=Fri, 09 May 2003 08:00:00
48
lastBuild=Fri, 09 May 2003 08:00:00
49
image
49
image
50
title=Koha, the worlds best Open Source Library System
50
title=Koha, the worlds best Open Source Library System
51
url=http://www.koha.org/images/foo.jpg
51
url=http://www.koha-community.org/images/foo.jpg
52
link=http://www.koha.org
52
link=http://www.koha-community.org
53
config
53
config
54
tmpl=lastAcquired.tmpl
54
tmpl=lastAcquired.tmpl
55
output=lastAcquired.xml
55
output=lastAcquired.xml
(-)a/misc/cronjobs/rss/lastAcquired-1.0.conf (-3 / +3 lines)
Lines 1-12 Link Here
1
channel
1
channel
2
title=Recent Acquisitions
2
title=Recent Acquisitions
3
link=http://www.koha.org
3
link=http://www.koha-community.org
4
desc=The library's 15 most recent acquisitions
4
desc=The library's 15 most recent acquisitions
5
lang=en
5
lang=en
6
image
6
image
7
title=Koha, the worlds best Open Source Library System
7
title=Koha, the worlds best Open Source Library System
8
url=http://www.koha.org/images/foo.jpg
8
url=http://www.koha-community.org/images/foo.jpg
9
link=http://www.koha.org
9
link=http://www.koha-community.org
10
description=Koha, the worlds best Open Source Library System
10
description=Koha, the worlds best Open Source Library System
11
config
11
config
12
tmpl=lastAcquired-1.0.tmpl
12
tmpl=lastAcquired-1.0.tmpl
(-)a/misc/cronjobs/rss/lastAcquired-2.0.conf (-3 / +3 lines)
Lines 1-12 Link Here
1
channel
1
channel
2
title=Recent Acquisitions
2
title=Recent Acquisitions
3
link=http://www.koha.org
3
link=http://www.koha-community.org
4
desc=The library's 15 most recent acquisitions
4
desc=The library's 15 most recent acquisitions
5
lang=en
5
lang=en
6
image
6
image
7
title=Koha, the worlds best Open Source Library System
7
title=Koha, the worlds best Open Source Library System
8
url=http://www.koha.org/images/foo.jpg
8
url=http://www.koha-community.org/images/foo.jpg
9
link=http://www.koha.org
9
link=http://www.koha-community.org
10
description=Koha, the worlds best Open Source Library System
10
description=Koha, the worlds best Open Source Library System
11
width=88
11
width=88
12
height=31
12
height=31
(-)a/misc/cronjobs/rss/lastAcquired.conf (-3 / +3 lines)
Lines 1-13 Link Here
1
channel
1
channel
2
title=Recent Koha Acquisitions
2
title=Recent Koha Acquisitions
3
link=http://www.koha.org
3
link=http://www.koha-community.org
4
desc=The 15 most recent acquisitions
4
desc=The 15 most recent acquisitions
5
lang=en
5
lang=en
6
lastBuild=Fri, 09 May 2003 08:00:00
6
lastBuild=Fri, 09 May 2003 08:00:00
7
image
7
image
8
title=Koha, the world's best Open Source Library System
8
title=Koha, the world's best Open Source Library System
9
url=http://www.koha.org/images/foo.jpg
9
url=http://www.koha-community.org/images/foo.jpg
10
link=http://www.koha.org
10
link=http://www.koha-community.org
11
config
11
config
12
tmpl=lastAcquired.tmpl
12
tmpl=lastAcquired.tmpl
13
output=lastAcquired.xml
13
output=lastAcquired.xml
(-)a/misc/cronjobs/rss/longestUnseen.conf (-3 / +3 lines)
Lines 1-12 Link Here
1
channel
1
channel
2
title=Longest Unseen Koha Items
2
title=Longest Unseen Koha Items
3
link=http://www.koha.org
3
link=http://www.koha-community.org
4
desc=The 15 least recently seen items
4
desc=The 15 least recently seen items
5
lang=en
5
lang=en
6
image
6
image
7
title=Koha, the worlds best Open Source Library System
7
title=Koha, the worlds best Open Source Library System
8
url=http://www.koha.org/images/foo.jpg
8
url=http://www.koha-community.org/images/foo.jpg
9
link=http://www.koha.org
9
link=http://www.koha-community.org
10
config
10
config
11
tmpl=longestUnseen.tmpl
11
tmpl=longestUnseen.tmpl
12
output=longestUnseen.xml
12
output=longestUnseen.xml
(-)a/misc/cronjobs/rss/mostReserved.conf (-4 / +3 lines)
Lines 1-12 Link Here
1
channel
1
channel
2
title=Most Reserved Items
2
title=Most Reserved Items
3
link=http://www.koha.org
3
link=http://www.koha-community.org
4
desc=The 15 most reserved items
4
desc=The 15 most reserved items
5
lang=en
5
lang=en
6
image
6
image
7
title=Koha, the worlds best Open Source Library System
7
title=Koha, the worlds best Open Source Library System
8
url=http://www.koha.org/images/foo.jpg
8
url=http://www.koha-community.org/images/foo.jpg
9
link=http://www.koha.org
9
link=http://www.koha-community.org
10
config
10
config
11
tmpl=mostReserved.tmpl
11
tmpl=mostReserved.tmpl
12
output=mostReserved.xml
12
output=mostReserved.xml
13
- 

Return to bug 5370