[Koha-patches] [PATCH] Bug 8620 - Barcode searching not working correctly

Martin Renvoize martin.renvoize at ptfs-europe.com
Fri Feb 8 15:35:47 CET 2013


This patch adds barcode back into the any index in the relevant config
files for dom indexing.

To test: Before patch try seraching a for a barcode from the keyword search in
either opac or staff interfaces (like scanning a barcode into the 'search the
catalogue' in the staff client). You'll likely get no results.

After the patch, doing the same search should bring up the specific book your
looking for.
---
 .../marc21/biblios/biblio-koha-indexdefs.xml       |  475 ++++++++++----------
 .../marc21/biblios/biblio-zebra-indexdefs.xsl      |    6 +-
 etc/zebradb/marc_defs/marc21/biblios/record.abs    |    2 +-
 3 files changed, 242 insertions(+), 241 deletions(-)

diff --git a/etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml b/etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml
index 14443d6..c839326 100644
--- a/etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml
+++ b/etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="utf-8"?>
 <kohaidx:index_defs xmlns:kohaidx="http://www.koha-community.org/schemas/index-defs">
-  <!--record.abs line 40: xelm /record/leader llength:w:range(data,0,5),rtype:w:range(data,6,1),Bib-level:w:range(data,7,1)-->
   <id>marc:datafield[@tag='999']/marc:subfield[@code='c']</id>
+  <!--record.abs line 48: xelm /record/leader llength:w:range(data,0,5),rtype:w:range(data,6,1),Bib-level:w:range(data,7,1)-->
   <index_leader xmlns="http://www.koha-community.org/schemas/index-defs" offset="0" length="5">
     <target_index>llength:w</target_index>
   </index_leader>
@@ -11,15 +11,15 @@
   <index_leader xmlns="http://www.koha-community.org/schemas/index-defs" offset="7" length="1">
     <target_index>Bib-level:w</target_index>
   </index_leader>
-  <!--record.abs line 43: melm 001        Control-number-->
+  <!--record.abs line 51: melm 001        Control-number-->
   <index_control_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="001">
     <target_index>Control-number:w</target_index>
   </index_control_field>
-  <!--record.abs line 44: melm 005        Date/time-last-modified-->
+  <!--record.abs line 52: melm 005        Date/time-last-modified-->
   <index_control_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="005">
     <target_index>Date/time-last-modified:w</target_index>
   </index_control_field>
-  <!--record.abs line 45: melm 007        Microform-generation:n:range(data,11,1),Material-type,ff7-00:w:range(data,0,1),ff7-01:w:range(data,1,1),ff7-02:w:range(data,2,1),ff7-01-02:w:range(data,0,2)-->
+  <!--record.abs line 53: melm 007        Microform-generation:n:range(data,11,1),Material-type,ff7-00:w:range(data,0,1),ff7-01:w:range(data,1,1),ff7-02:w:range(data,2,1),ff7-01-02:w:range(data,0,2)-->
   <index_control_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="007" offset="11" length="1">
     <target_index>Microform-generation:n</target_index>
   </index_control_field>
@@ -38,7 +38,7 @@
   <index_control_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="007" offset="0" length="2">
     <target_index>ff7-01-02:w</target_index>
   </index_control_field>
-  <!--record.abs line 47: melm 008        date-entered-on-file:n:range(data,0,5),date-entered-on-file:s:range(data,0,5),pubdate:w:range(data,7,4),pubdate:n:range(data,7,4),pubdate:y:range(data,7,4),pubdate:s:range(data,7,4),pl:w:range(data,15,3),ta:w:range(data,22,1),ff8-23:w:range(data,23,1),ff8-29:w:range(data,29,1),lf:w:range(data,33,1),bio:w:range(data,34,1),ln:n:range(data,35,3),ctype:w:range(data,24,4),Record-source:w:range(data,39,0)-->
+  <!--record.abs line 55: melm 008        date-entered-on-file:n:range(data,0,5),date-entered-on-file:s:range(data,0,5),pubdate:w:range(data,7,4),pubdate:n:range(data,7,4),pubdate:y:range(data,7,4),pubdate:s:range(data,7,4),pl:w:range(data,15,3),ta:w:range(data,22,1),ff8-23:w:range(data,23,1),ff8-29:w:range(data,29,1),lf:w:range(data,33,1),bio:w:range(data,34,1),ln:w:range(data,35,3),ctype:w:range(data,24,4),Record-source:w:range(data,39,0)-->
   <index_control_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="008" offset="0" length="5">
     <target_index>date-entered-on-file:n</target_index>
   </index_control_field>
@@ -76,7 +76,7 @@
     <target_index>bio:w</target_index>
   </index_control_field>
   <index_control_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="008" offset="35" length="3">
-    <target_index>ln:n</target_index>
+    <target_index>ln:w</target_index>
   </index_control_field>
   <index_control_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="008" offset="24" length="4">
     <target_index>ctype:w</target_index>
@@ -84,17 +84,17 @@
   <index_control_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="008" offset="39" length="0">
     <target_index>Record-source:w</target_index>
   </index_control_field>
-  <!--record.abs line 49: melm 010        LC-card-number,Identifier-standard-->
+  <!--record.abs line 57: melm 010        LC-card-number,Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="010">
     <target_index>LC-card-number:w</target_index>
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 50: melm 011        LC-card-number,Identifier-standard-->
+  <!--record.abs line 58: melm 011        LC-card-number,Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="011">
     <target_index>LC-card-number:w</target_index>
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 51: melm 015        BNB-card-number,BGF-number,Number-db,Number-natl-biblio,Identifier-standard-->
+  <!--record.abs line 59: melm 015        BNB-card-number,BGF-number,Number-db,Number-natl-biblio,Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="015">
     <target_index>BNB-card-number:w</target_index>
     <target_index>BGF-number:w</target_index>
@@ -102,141 +102,141 @@
     <target_index>Number-natl-biblio:w</target_index>
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 52: melm 017        Number-legal-deposit,Identifier-standard-->
+  <!--record.abs line 60: melm 017        Number-legal-deposit,Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="017">
     <target_index>Number-legal-deposit:w</target_index>
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 53: melm 018        Identifier-standard-->
+  <!--record.abs line 61: melm 018        Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="018">
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 54: melm 020$a      ISBN:w,Identifier-standard:w-->
+  <!--record.abs line 62: melm 020$a      ISBN:w,Identifier-standard:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="020" subfields="a">
     <target_index>ISBN:w</target_index>
     <target_index>Identifier-standard:w</target_index>
   </index_subfields>
-  <!--record.abs line 55: melm 020        Identifier-standard-->
+  <!--record.abs line 63: melm 020        Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="020">
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 56: melm 022$a      ISSN:w,Identifier-standard:w-->
+  <!--record.abs line 64: melm 022$a      ISSN:w,Identifier-standard:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="022" subfields="a">
     <target_index>ISSN:w</target_index>
     <target_index>Identifier-standard:w</target_index>
   </index_subfields>
-  <!--record.abs line 57: melm 022        Identifier-standard-->
+  <!--record.abs line 65: melm 022        Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="022">
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 58: melm 023        Identifier-standard-->
+  <!--record.abs line 66: melm 023        Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="023">
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 59: melm 024$a      Identifier-other-->
+  <!--record.abs line 67: melm 024$a      Identifier-other-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="024" subfields="a">
     <target_index>Identifier-other:w</target_index>
   </index_subfields>
-  <!--record.abs line 60: melm 024        Identifier-standard-->
+  <!--record.abs line 68: melm 024        Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="024">
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 61: melm 025        Identifier-standard-->
+  <!--record.abs line 69: melm 025        Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="025">
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 62: melm 027        Report-number,Identifier-standard-->
+  <!--record.abs line 70: melm 027        Report-number,Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="027">
     <target_index>Report-number:w</target_index>
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 63: melm 028        Number-music-publisher,Identifier-standard-->
+  <!--record.abs line 71: melm 028        Number-music-publisher,Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="028">
     <target_index>Number-music-publisher:w</target_index>
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 64: melm 030        CODEN,Identifier-standard-->
+  <!--record.abs line 72: melm 030        CODEN,Identifier-standard-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="030">
     <target_index>CODEN:w</target_index>
     <target_index>Identifier-standard:w</target_index>
   </index_data_field>
-  <!--record.abs line 66: melm 034        Map-scale-->
+  <!--record.abs line 74: melm 034        Map-scale-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="034">
     <target_index>Map-scale:w</target_index>
   </index_data_field>
-  <!--record.abs line 68: melm 037        Identifier-standard,Stock-number-->
+  <!--record.abs line 76: melm 037        Identifier-standard,Stock-number-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="037">
     <target_index>Identifier-standard:w</target_index>
     <target_index>Stock-number:w</target_index>
   </index_data_field>
-  <!--record.abs line 69: melm 040        Code-institution,Record-source-->
+  <!--record.abs line 77: melm 040        Code-institution,Record-source-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="040">
     <target_index>Code-institution:w</target_index>
     <target_index>Record-source:w</target_index>
   </index_data_field>
-  <!--record.abs line 70: melm 041$a      ln-->
+  <!--record.abs line 78: melm 041$a      ln-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="041" subfields="a">
     <target_index>ln:w</target_index>
   </index_subfields>
-  <!--record.abs line 71: melm 041$d      ln-->
+  <!--record.abs line 79: melm 041$d      ln-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="041" subfields="d">
     <target_index>ln:w</target_index>
   </index_subfields>
-  <!--record.abs line 72: melm 041$e      ln-->
+  <!--record.abs line 80: melm 041$e      ln-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="041" subfields="e">
     <target_index>ln:w</target_index>
   </index_subfields>
-  <!--record.abs line 73: melm 041$j      ln-->
+  <!--record.abs line 81: melm 041$j      ln-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="041" subfields="j">
     <target_index>ln:w</target_index>
   </index_subfields>
-  <!--record.abs line 74: melm 043        Code-geographic-->
+  <!--record.abs line 82: melm 043        Code-geographic-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="043">
     <target_index>Code-geographic:w</target_index>
   </index_data_field>
-  <!--record.abs line 76: melm 050$b      LC-call-number:w,LC-call-number:p,LC-call-number:s-->
+  <!--record.abs line 84: melm 050$b      LC-call-number:w,LC-call-number:p,LC-call-number:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="050" subfields="b">
     <target_index>LC-call-number:w</target_index>
     <target_index>LC-call-number:p</target_index>
     <target_index>LC-call-number:s</target_index>
   </index_subfields>
-  <!--record.abs line 77: melm 050        LC-call-number:w,LC-call-number:p,LC-call-number:s-->
+  <!--record.abs line 85: melm 050        LC-call-number:w,LC-call-number:p,LC-call-number:s-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="050">
     <target_index>LC-call-number:w</target_index>
     <target_index>LC-call-number:p</target_index>
     <target_index>LC-call-number:s</target_index>
   </index_data_field>
-  <!--record.abs line 78: melm 052        Geographic-class-->
+  <!--record.abs line 86: melm 052        Geographic-class-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="052">
     <target_index>Geographic-class:w</target_index>
   </index_data_field>
-  <!--record.abs line 79: melm 060        NLM-call-number-->
+  <!--record.abs line 87: melm 060        NLM-call-number-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="060">
     <target_index>NLM-call-number:w</target_index>
   </index_data_field>
-  <!--record.abs line 80: melm 070        NAL-call-number-->
+  <!--record.abs line 88: melm 070        NAL-call-number-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="070">
     <target_index>NAL-call-number:w</target_index>
   </index_data_field>
-  <!--record.abs line 81: melm 080        UDC-classification-->
+  <!--record.abs line 89: melm 080        UDC-classification-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="080">
     <target_index>UDC-classification:w</target_index>
   </index_data_field>
-  <!--record.abs line 82: melm 082        Dewey-classification:w,Dewey-classification:s-->
+  <!--record.abs line 90: melm 082        Dewey-classification:w,Dewey-classification:s-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="082">
     <target_index>Dewey-classification:w</target_index>
     <target_index>Dewey-classification:s</target_index>
   </index_data_field>
-  <!--record.abs line 83: melm 086        Number-govt-pub-->
+  <!--record.abs line 91: melm 086        Number-govt-pub-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="086">
     <target_index>Number-govt-pub:w</target_index>
   </index_data_field>
-  <!--record.abs line 90: melm 100$9      Cross-Reference:w,Koha-Auth-Number-->
+  <!--record.abs line 98: melm 100$9      Cross-Reference:w,Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="100" subfields="9">
     <target_index>Cross-Reference:w</target_index>
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 91: melm 100$a      Author,Author:p,Author:s,Editor,Author-personal-bibliography,Author-personal-bibliography:p,Author-personal-bibliography:s-->
+  <!--record.abs line 99: melm 100$a      Author,Author:p,Author:s,Editor,Author-personal-bibliography,Author-personal-bibliography:p,Author-personal-bibliography:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="100" subfields="a">
     <target_index>Author:w</target_index>
     <target_index>Author:p</target_index>
@@ -246,7 +246,7 @@
     <target_index>Author-personal-bibliography:p</target_index>
     <target_index>Author-personal-bibliography:s</target_index>
   </index_subfields>
-  <!--record.abs line 92: melm 100        Author,Author:p,Author:s,Author-title,Author-name-personal,Name,Name-and-title,Personal-name-->
+  <!--record.abs line 100: melm 100        Author,Author:p,Author:s,Author-title,Author-name-personal,Name,Name-and-title,Personal-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="100">
     <target_index>Author:w</target_index>
     <target_index>Author:p</target_index>
@@ -257,11 +257,11 @@
     <target_index>Name-and-title:w</target_index>
     <target_index>Personal-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 93: melm 110$9      Koha-Auth-Number-->
+  <!--record.abs line 101: melm 110$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="110" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 94: melm 110        Author,Author:p,Author:s,Author-title,Author-name-corporate,Name,Name-and-title,Corporate-name-->
+  <!--record.abs line 102: melm 110        Author,Author:p,Author:s,Author-title,Author-name-corporate,Name,Name-and-title,Corporate-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="110">
     <target_index>Author:w</target_index>
     <target_index>Author:p</target_index>
@@ -272,11 +272,11 @@
     <target_index>Name-and-title:w</target_index>
     <target_index>Corporate-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 95: melm 111$9      Koha-Auth-Number-->
+  <!--record.abs line 103: melm 111$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="111" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 96: melm 111        Author,Author:p,Author:s,Author-title,Author-name-corporate,Name,Name-and-title,Conference-name-->
+  <!--record.abs line 104: melm 111        Author,Author:p,Author:s,Author-title,Author-name-corporate,Name,Name-and-title,Conference-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="111">
     <target_index>Author:w</target_index>
     <target_index>Author:p</target_index>
@@ -287,83 +287,83 @@
     <target_index>Name-and-title:w</target_index>
     <target_index>Conference-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 97: melm 130$n      Thematic-number-->
+  <!--record.abs line 105: melm 130$n      Thematic-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="130" subfields="n">
     <target_index>Thematic-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 98: melm 130$r      Music-key-->
+  <!--record.abs line 106: melm 130$r      Music-key-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="130" subfields="r">
     <target_index>Music-key:w</target_index>
   </index_subfields>
-  <!--record.abs line 99: melm 130$9      Koha-Auth-Number-->
+  <!--record.abs line 107: melm 130$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="130" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 100: melm 130        Title,Title:p,Title-uniform-->
+  <!--record.abs line 108: melm 130        Title,Title:p,Title-uniform-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="130">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-uniform:w</target_index>
   </index_data_field>
-  <!--record.abs line 102: melm 210        Title,Title:p,Title-abbreviated-->
+  <!--record.abs line 110: melm 210        Title,Title:p,Title-abbreviated-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="210">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-abbreviated:w</target_index>
   </index_data_field>
-  <!--record.abs line 103: melm 211        Title,Title:p,Title-abbreviated-->
+  <!--record.abs line 111: melm 211        Title,Title:p,Title-abbreviated-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="211">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-abbreviated:w</target_index>
   </index_data_field>
-  <!--record.abs line 104: melm 212        Title,Title:p,Title-other-variant-->
+  <!--record.abs line 112: melm 212        Title,Title:p,Title-other-variant-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="212">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-other-variant:w</target_index>
   </index_data_field>
-  <!--record.abs line 105: melm 214        Title,Title:p,Title-expanded-->
+  <!--record.abs line 113: melm 214        Title,Title:p,Title-expanded-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="214">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-expanded:w</target_index>
   </index_data_field>
-  <!--record.abs line 106: melm 222        Title,Title:p,Title-key-->
+  <!--record.abs line 114: melm 222        Title,Title:p,Title-key-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="222">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-key:w</target_index>
   </index_data_field>
-  <!--record.abs line 107: melm 240$r      Music-key-->
+  <!--record.abs line 115: melm 240$r      Music-key-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="240" subfields="r">
     <target_index>Music-key:w</target_index>
   </index_subfields>
-  <!--record.abs line 108: melm 240$n      Thematic-number-->
+  <!--record.abs line 116: melm 240$n      Thematic-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="240" subfields="n">
     <target_index>Thematic-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 109: melm 240        Title:w,Title:p,Title-uniform-->
+  <!--record.abs line 117: melm 240        Title:w,Title:p,Title-uniform-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="240">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-uniform:w</target_index>
   </index_data_field>
-  <!--record.abs line 110: melm 243$n      Thematic-number-->
+  <!--record.abs line 118: melm 243$n      Thematic-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="243" subfields="n">
     <target_index>Thematic-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 111: melm 243$r      Music-key-->
+  <!--record.abs line 119: melm 243$r      Music-key-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="243" subfields="r">
     <target_index>Music-key:w</target_index>
   </index_subfields>
-  <!--record.abs line 112: melm 243        Title:w,Title:p,Title-collective-->
+  <!--record.abs line 120: melm 243        Title:w,Title:p,Title-collective-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="243">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-collective:w</target_index>
   </index_data_field>
-  <!--record.abs line 113: melm 245$a      Title-cover:w,Title-cover:p,Title-cover:s,Title:w,Title:p,Title:s-->
+  <!--record.abs line 121: melm 245$a      Title-cover:w,Title-cover:p,Title-cover:s,Title:w,Title:p,Title:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="245" subfields="a">
     <target_index>Title-cover:w</target_index>
     <target_index>Title-cover:p</target_index>
@@ -372,24 +372,24 @@
     <target_index>Title:p</target_index>
     <target_index>Title:s</target_index>
   </index_subfields>
-  <!--record.abs line 114: melm 245$c      Author,Author-in-order:w,Author-in-order:p,Author-in-order:s-->
+  <!--record.abs line 122: melm 245$c      Author,Author-in-order:w,Author-in-order:p,Author-in-order:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="245" subfields="c">
     <target_index>Author:w</target_index>
     <target_index>Author-in-order:w</target_index>
     <target_index>Author-in-order:p</target_index>
     <target_index>Author-in-order:s</target_index>
   </index_subfields>
-  <!--record.abs line 115: melm 245$9      Cross-Reference:w,Koha-Auth-Number-->
+  <!--record.abs line 123: melm 245$9      Cross-Reference:w,Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="245" subfields="9">
     <target_index>Cross-Reference:w</target_index>
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 116: melm 245        Title:w,Title:p-->
+  <!--record.abs line 124: melm 245        Title:w,Title:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="245">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
   </index_data_field>
-  <!--record.abs line 117: melm 246        Title,Title:p,Title-abbreviated,Title-expanded,Title-former-->
+  <!--record.abs line 125: melm 246        Title,Title:p,Title-abbreviated,Title-expanded,Title-former-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="246">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
@@ -397,7 +397,7 @@
     <target_index>Title-expanded:w</target_index>
     <target_index>Title-former:w</target_index>
   </index_data_field>
-  <!--record.abs line 118: melm 247        Title,Title:p,Title-former,Title-other-variant,Related-periodical-->
+  <!--record.abs line 126: melm 247        Title,Title:p,Title-former,Title-other-variant,Related-periodical-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="247">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
@@ -405,166 +405,166 @@
     <target_index>Title-other-variant:w</target_index>
     <target_index>Related-periodical:w</target_index>
   </index_data_field>
-  <!--record.abs line 119: melm 260$a      pl:w,pl:p-->
+  <!--record.abs line 127: melm 260$a      pl:w,pl:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="260" subfields="a">
     <target_index>pl:w</target_index>
     <target_index>pl:p</target_index>
   </index_subfields>
-  <!--record.abs line 120: melm 260$b      Publisher:w,Publisher:p-->
+  <!--record.abs line 128: melm 260$b      Publisher:w,Publisher:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="260" subfields="b">
     <target_index>Publisher:w</target_index>
     <target_index>Publisher:p</target_index>
   </index_subfields>
-  <!--record.abs line 121: melm 260$c      copydate,copydate:s-->
+  <!--record.abs line 129: melm 260$c      copydate,copydate:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="260" subfields="c">
     <target_index>copydate:w</target_index>
     <target_index>copydate:s</target_index>
   </index_subfields>
-  <!--record.abs line 122: melm 260        pl-->
+  <!--record.abs line 130: melm 260        pl-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="260">
     <target_index>pl:w</target_index>
   </index_data_field>
-  <!--record.abs line 123: melm 300        Extent:w,Extent:p-->
+  <!--record.abs line 131: melm 300        Extent:w,Extent:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="300">
     <target_index>Extent:w</target_index>
     <target_index>Extent:p</target_index>
   </index_data_field>
-  <!--record.abs line 124: melm 400$a      Name-and-title-->
+  <!--record.abs line 132: melm 400$a      Name-and-title-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="400" subfields="a">
     <target_index>Name-and-title:w</target_index>
   </index_subfields>
-  <!--record.abs line 125: melm 400$t      Author-title,Name-and-title,Title,Title-series-->
+  <!--record.abs line 133: melm 400$t      Author-title,Name-and-title,Title,Title-series-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="400" subfields="t">
     <target_index>Author-title:w</target_index>
     <target_index>Name-and-title:w</target_index>
     <target_index>Title:w</target_index>
     <target_index>Title-series:w</target_index>
   </index_subfields>
-  <!--record.abs line 126: melm 400$9      Koha-Auth-Number-->
+  <!--record.abs line 134: melm 400$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="400" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 127: melm 400        Author,Author-name-personal,Name,Personal-name-->
+  <!--record.abs line 135: melm 400        Author,Author-name-personal,Name,Personal-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="400">
     <target_index>Author:w</target_index>
     <target_index>Author-name-personal:w</target_index>
     <target_index>Name:w</target_index>
     <target_index>Personal-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 128: melm 410$a      Name-and-title-->
+  <!--record.abs line 136: melm 410$a      Name-and-title-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="410" subfields="a">
     <target_index>Name-and-title:w</target_index>
   </index_subfields>
-  <!--record.abs line 129: melm 410$t      Author-title,Title,Title-series-->
+  <!--record.abs line 137: melm 410$t      Author-title,Title,Title-series-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="410" subfields="t">
     <target_index>Author-title:w</target_index>
     <target_index>Title:w</target_index>
     <target_index>Title-series:w</target_index>
   </index_subfields>
-  <!--record.abs line 130: melm 410$9      Koha-Auth-Number-->
+  <!--record.abs line 138: melm 410$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="410" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 131: melm 410        Author,Corporate-name-->
+  <!--record.abs line 139: melm 410        Author,Corporate-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="410">
     <target_index>Author:w</target_index>
     <target_index>Corporate-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 133: melm 411$a      Name-and-title-->
+  <!--record.abs line 141: melm 411$a      Name-and-title-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="411" subfields="a">
     <target_index>Name-and-title:w</target_index>
   </index_subfields>
-  <!--record.abs line 135: melm 411$t      Author-title,Title-series-->
+  <!--record.abs line 143: melm 411$t      Author-title,Title-series-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="411" subfields="t">
     <target_index>Author-title:w</target_index>
     <target_index>Title-series:w</target_index>
   </index_subfields>
-  <!--record.abs line 136: melm 411        Author,Conference-name-->
+  <!--record.abs line 144: melm 411        Author,Conference-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="411">
     <target_index>Author:w</target_index>
     <target_index>Conference-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 139: melm 440$a      Title-series:w,Title-series:p-->
+  <!--record.abs line 147: melm 440$a      Title-series:w,Title-series:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="440" subfields="a">
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
   </index_subfields>
-  <!--record.abs line 140: melm 440$9      Koha-Auth-Number-->
+  <!--record.abs line 148: melm 440$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="440" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 141: melm 440        Title-series:w,Title-series:p,Title,Title-series-->
+  <!--record.abs line 149: melm 440        Title-series:w,Title-series:p,Title,Title-series-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="440">
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
     <target_index>Title:w</target_index>
     <target_index>Title-series:w</target_index>
   </index_data_field>
-  <!--record.abs line 142: melm 490$a      Title-series:w,Title-series:p-->
+  <!--record.abs line 150: melm 490$a      Title-series:w,Title-series:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="490" subfields="a">
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
   </index_subfields>
-  <!--record.abs line 143: melm 490$9      Koha-Auth-Number-->
+  <!--record.abs line 151: melm 490$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="490" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 144: melm 490        Title,Title-series-->
+  <!--record.abs line 152: melm 490        Title,Title-series-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="490">
     <target_index>Title:w</target_index>
     <target_index>Title-series:w</target_index>
   </index_data_field>
-  <!--record.abs line 146: melm 500        Note:w,Note:p-->
+  <!--record.abs line 154: melm 500        Note:w,Note:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="500">
     <target_index>Note:w</target_index>
     <target_index>Note:p</target_index>
   </index_data_field>
-  <!--record.abs line 147: melm 502        Material-type-->
+  <!--record.abs line 155: melm 502        Material-type-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="502">
     <target_index>Material-type:w</target_index>
   </index_data_field>
-  <!--record.abs line 148: melm 505$r      Author-->
+  <!--record.abs line 156: melm 505$r      Author-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="505" subfields="r">
     <target_index>Author:w</target_index>
   </index_subfields>
-  <!--record.abs line 149: melm 505$t      Title-->
+  <!--record.abs line 157: melm 505$t      Title-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="505" subfields="t">
     <target_index>Title:w</target_index>
   </index_subfields>
-  <!--record.abs line 150: melm 505        Note:w,Note:p-->
+  <!--record.abs line 158: melm 505        Note:w,Note:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="505">
     <target_index>Note:w</target_index>
     <target_index>Note:p</target_index>
   </index_data_field>
-  <!--record.abs line 151: melm 510        Indexed-by-->
+  <!--record.abs line 159: melm 510        Indexed-by-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="510">
     <target_index>Indexed-by:w</target_index>
   </index_data_field>
-  <!--record.abs line 152: melm 520        Abstract:w,Abstract:p-->
+  <!--record.abs line 160: melm 520        Abstract:w,Abstract:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="520">
     <target_index>Abstract:w</target_index>
     <target_index>Abstract:p</target_index>
   </index_data_field>
-  <!--record.abs line 153: melm 521$a      lex:n-->
+  <!--record.abs line 161: melm 521$a      lex:n-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="521" subfields="a">
     <target_index>lex:n</target_index>
   </index_subfields>
-  <!--record.abs line 154: melm 526$c      arl,arl:n-->
+  <!--record.abs line 162: melm 526$c      arl,arl:n-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="526" subfields="c">
     <target_index>arl:w</target_index>
     <target_index>arl:n</target_index>
   </index_subfields>
-  <!--record.abs line 155: melm 526$d      arp,arp:n-->
+  <!--record.abs line 163: melm 526$d      arp,arp:n-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="526" subfields="d">
     <target_index>arp:w</target_index>
     <target_index>arp:n</target_index>
   </index_subfields>
-  <!--record.abs line 158: melm 590        Note:w,Note:p-->
+  <!--record.abs line 166: melm 590        Note:w,Note:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="590">
     <target_index>Note:w</target_index>
     <target_index>Note:p</target_index>
   </index_data_field>
-  <!--record.abs line 160: melm 600$a      Name-and-title,Name,Personal-name,Subject-name-personal,Subject,Subject:p-->
+  <!--record.abs line 168: melm 600$a      Name-and-title,Name,Personal-name,Subject-name-personal,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="600" subfields="a">
     <target_index>Name-and-title:w</target_index>
     <target_index>Name:w</target_index>
@@ -573,18 +573,18 @@
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 161: melm 600$t      Name-and-title,Title,Subject,Subject:p-->
+  <!--record.abs line 169: melm 600$t      Name-and-title,Title,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="600" subfields="t">
     <target_index>Name-and-title:w</target_index>
     <target_index>Title:w</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 162: melm 600$9      Koha-Auth-Number-->
+  <!--record.abs line 170: melm 600$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="600" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 164: melm 600        Name,Personal-name,Subject-name-personal,Subject,Subject:p-->
+  <!--record.abs line 172: melm 600        Name,Personal-name,Subject-name-personal,Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="600">
     <target_index>Name:w</target_index>
     <target_index>Personal-name:w</target_index>
@@ -592,204 +592,204 @@
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 165: melm 610$a      Name-and-title,Subject,Subject:p-->
+  <!--record.abs line 173: melm 610$a      Name-and-title,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="610" subfields="a">
     <target_index>Name-and-title:w</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 166: melm 610$t      Name-and-title,Title,Subject,Subject:p-->
+  <!--record.abs line 174: melm 610$t      Name-and-title,Title,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="610" subfields="t">
     <target_index>Name-and-title:w</target_index>
     <target_index>Title:w</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 167: melm 610$9      Koha-Auth-Number-->
+  <!--record.abs line 175: melm 610$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="610" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 168: melm 610        Name,Subject,Subject:p,Corporate-name-->
+  <!--record.abs line 176: melm 610        Name,Subject,Subject:p,Corporate-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="610">
     <target_index>Name:w</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
     <target_index>Corporate-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 169: melm 611$a      Name-and-title,Subject,Subject:p-->
+  <!--record.abs line 177: melm 611$a      Name-and-title,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="611" subfields="a">
     <target_index>Name-and-title:w</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 170: melm 611$t      Name-and-title,Title,Subject,Subject:p-->
+  <!--record.abs line 178: melm 611$t      Name-and-title,Title,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="611" subfields="t">
     <target_index>Name-and-title:w</target_index>
     <target_index>Title:w</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 171: melm 611$9      Koha-Auth-Number-->
+  <!--record.abs line 179: melm 611$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="611" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 172: melm 611        Conference-name,Name,Subject,Subject:p-->
+  <!--record.abs line 180: melm 611        Conference-name,Name,Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="611">
     <target_index>Conference-name:w</target_index>
     <target_index>Name:w</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 173: melm 630$n      Thematic-number,Subject,Subject:p-->
+  <!--record.abs line 181: melm 630$n      Thematic-number,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="630" subfields="n">
     <target_index>Thematic-number:w</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 174: melm 630$r      Music-key,Subject,Subject:p-->
+  <!--record.abs line 182: melm 630$r      Music-key,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="630" subfields="r">
     <target_index>Music-key:w</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 175: melm 630$9      Koha-Auth-Number-->
+  <!--record.abs line 183: melm 630$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="630" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 176: melm 630        Subject,Subject:p-->
+  <!--record.abs line 184: melm 630        Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="630">
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 177: melm 650$9      Koha-Auth-Number    -->
+  <!--record.abs line 185: melm 650$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="650" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 178: melm 650        Subject,Subject:p-->
+  <!--record.abs line 186: melm 650        Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="650">
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 179: melm 651$9      Koha-Auth-Number    -->
+  <!--record.abs line 187: melm 651$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="651" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 180: melm 651        Name-geographic,Subject,Subject:p-->
+  <!--record.abs line 188: melm 651        Name-geographic,Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="651">
     <target_index>Name-geographic:w</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 181: melm 652$9      Koha-Auth-Number    -->
+  <!--record.abs line 189: melm 652$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="652" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 183: melm 653$9      Koha-Auth-Number    -->
+  <!--record.abs line 191: melm 653$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="653" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 184: melm 653        Subject,Subject:p-->
+  <!--record.abs line 192: melm 653        Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="653">
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 185: melm 654$9      Koha-Auth-Number    -->
+  <!--record.abs line 193: melm 654$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="654" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 186: melm 654        Subject,Subject:p-->
+  <!--record.abs line 194: melm 654        Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="654">
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 187: melm 655$9      Koha-Auth-Number    -->
+  <!--record.abs line 195: melm 655$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="655" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 188: melm 655        Subject,Subject:p-->
+  <!--record.abs line 196: melm 655        Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="655">
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 189: melm 656$9      Koha-Auth-Number    -->
+  <!--record.abs line 197: melm 656$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="656" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 190: melm 656        Subject,Subject:p-->
+  <!--record.abs line 198: melm 656        Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="656">
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 191: melm 657$9      Koha-Auth-Number    -->
+  <!--record.abs line 199: melm 657$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="657" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 192: melm 657        Subject,Subject:p-->
+  <!--record.abs line 200: melm 657        Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="657">
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 193: melm 658$a	curriculum:w,curriculum:p,Subject,Subject:p-->
+  <!--record.abs line 201: melm 658$a      curriculum:w,curriculum:p,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="658" subfields="a">
     <target_index>curriculum:w</target_index>
     <target_index>curriculum:p</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 194: melm 658$b	curriculum:w,curriculum:p,Subject,Subject:p-->
+  <!--record.abs line 202: melm 658$b      curriculum:w,curriculum:p,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="658" subfields="b">
     <target_index>curriculum:w</target_index>
     <target_index>curriculum:p</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 195: melm 658$c	curriculum:w,curriculum:p,Subject,Subject:p-->
+  <!--record.abs line 203: melm 658$c      curriculum:w,curriculum:p,Subject,Subject:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="658" subfields="c">
     <target_index>curriculum:w</target_index>
     <target_index>curriculum:p</target_index>
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_subfields>
-  <!--record.abs line 196: melm 658        Subject,Subject:p-->
+  <!--record.abs line 204: melm 658        Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="658">
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 197: melm 690$9      Koha-Auth-Number    -->
+  <!--record.abs line 205: melm 690$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="690" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 198: melm 690        Subject,Subject:p-->
+  <!--record.abs line 206: melm 690        Subject,Subject:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="690">
     <target_index>Subject:w</target_index>
     <target_index>Subject:p</target_index>
   </index_data_field>
-  <!--record.abs line 200: melm 700$9      Cross-Reference,Koha-Auth-Number-->
+  <!--record.abs line 208: melm 700$9      Cross-Reference,Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="700" subfields="9">
     <target_index>Cross-Reference:w</target_index>
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 201: melm 700$a      Author,Author:p-->
+  <!--record.abs line 209: melm 700$a      Author,Author:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="700" subfields="a">
     <target_index>Author:w</target_index>
     <target_index>Author:p</target_index>
   </index_subfields>
-  <!--record.abs line 202: melm 700$n      Thematic-number-->
+  <!--record.abs line 210: melm 700$n      Thematic-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="700" subfields="n">
     <target_index>Thematic-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 203: melm 700$r      Music-key-->
+  <!--record.abs line 211: melm 700$r      Music-key-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="700" subfields="r">
     <target_index>Music-key:w</target_index>
   </index_subfields>
-  <!--record.abs line 205: melm 700$t      Author-title,Name-and-title,Title,Title-uniform-->
+  <!--record.abs line 213: melm 700$t      Author-title,Name-and-title,Title,Title-uniform-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="700" subfields="t">
     <target_index>Author-title:w</target_index>
     <target_index>Name-and-title:w</target_index>
     <target_index>Title:w</target_index>
     <target_index>Title-uniform:w</target_index>
   </index_subfields>
-  <!--record.abs line 206: melm 700        Author,Author:p,Author-name-personal,Name,Editor,Personal-name-->
+  <!--record.abs line 214: melm 700        Author,Author:p,Author-name-personal,Name,Editor,Personal-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="700">
     <target_index>Author:w</target_index>
     <target_index>Author:p</target_index>
@@ -798,43 +798,43 @@
     <target_index>Editor:w</target_index>
     <target_index>Personal-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 208: melm 710$t      Author-title,Name-and-title,Title,Title-uniform-->
+  <!--record.abs line 216: melm 710$t      Author-title,Name-and-title,Title,Title-uniform-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="710" subfields="t">
     <target_index>Author-title:w</target_index>
     <target_index>Name-and-title:w</target_index>
     <target_index>Title:w</target_index>
     <target_index>Title-uniform:w</target_index>
   </index_subfields>
-  <!--record.abs line 210: melm 710$a      Name-and-title-->
+  <!--record.abs line 218: melm 710$a      Name-and-title-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="710" subfields="a">
     <target_index>Name-and-title:w</target_index>
   </index_subfields>
-  <!--record.abs line 211: melm 710$9      Koha-Auth-Number    -->
+  <!--record.abs line 219: melm 710$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="710" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 212: melm 710        Author,Author:p,Corporate-name,Name-->
+  <!--record.abs line 220: melm 710        Author,Author:p,Corporate-name,Name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="710">
     <target_index>Author:w</target_index>
     <target_index>Author:p</target_index>
     <target_index>Corporate-name:w</target_index>
     <target_index>Name:w</target_index>
   </index_data_field>
-  <!--record.abs line 213: melm 711$a      Name-and-title-->
+  <!--record.abs line 221: melm 711$a      Name-and-title-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="711" subfields="a">
     <target_index>Name-and-title:w</target_index>
   </index_subfields>
-  <!--record.abs line 215: melm 711$t      Author-title,Title,Title-uniform-->
+  <!--record.abs line 223: melm 711$t      Author-title,Title,Title-uniform-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="711" subfields="t">
     <target_index>Author-title:w</target_index>
     <target_index>Title:w</target_index>
     <target_index>Title-uniform:w</target_index>
   </index_subfields>
-  <!--record.abs line 216: melm 711$9      Koha-Auth-Number    -->
+  <!--record.abs line 224: melm 711$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="711" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 218: melm 711        Author,Author:p,Author-name-corporate,Name,Conference-name-->
+  <!--record.abs line 226: melm 711        Author,Author:p,Author-name-corporate,Name,Conference-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="711">
     <target_index>Author:w</target_index>
     <target_index>Author:p</target_index>
@@ -842,119 +842,119 @@
     <target_index>Name:w</target_index>
     <target_index>Conference-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 219: melm 730$n      Thematic-number-->
+  <!--record.abs line 227: melm 730$n      Thematic-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="730" subfields="n">
     <target_index>Thematic-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 220: melm 730$r      Music-key-->
+  <!--record.abs line 228: melm 730$r      Music-key-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="730" subfields="r">
     <target_index>Music-key:w</target_index>
   </index_subfields>
-  <!--record.abs line 221: melm 730$9      Koha-Auth-Number-->
+  <!--record.abs line 229: melm 730$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="730" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 222: melm 730        Title,Title:p,Title-uniform-->
+  <!--record.abs line 230: melm 730        Title,Title:p,Title-uniform-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="730">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-uniform:w</target_index>
   </index_data_field>
-  <!--record.abs line 223: melm 740        Title,Title:p,Title-other-variant-->
+  <!--record.abs line 231: melm 740        Title,Title:p,Title-other-variant-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="740">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-other-variant:w</target_index>
   </index_data_field>
-  <!--record.abs line 224: melm 751$a      Name-geographic-->
+  <!--record.abs line 232: melm 751$a      Name-geographic-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="751" subfields="a">
     <target_index>Name-geographic:w</target_index>
   </index_subfields>
-  <!--record.abs line 225: melm 751$9      Koha-Auth-Number-->
+  <!--record.abs line 233: melm 751$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="751" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 226: melm 751        Name-geographic-->
+  <!--record.abs line 234: melm 751        Name-geographic-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="751">
     <target_index>Name-geographic:w</target_index>
   </index_data_field>
-  <!--record.abs line 227: melm 770$w      Record-control-number-->
+  <!--record.abs line 235: melm 770$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="770" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 228: melm 772$w      Record-control-number-->
+  <!--record.abs line 236: melm 772$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="772" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 229: melm 773$a      Host-item-->
+  <!--record.abs line 237: melm 773$a      Host-item-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="773" subfields="a">
     <target_index>Host-item:w</target_index>
   </index_subfields>
-  <!--record.abs line 230: melm 773$9	Host-Item-Number-->
+  <!--record.abs line 238: melm 773$9	Host-Item-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="773" subfields="9">
     <target_index>Host-Item-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 231: melm 773$t      Host-item-->
+  <!--record.abs line 239: melm 773$t      Host-item-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="773" subfields="t">
     <target_index>Host-item:w</target_index>
   </index_subfields>
-  <!--record.abs line 232: melm 773$w      Record-control-number-->
+  <!--record.abs line 240: melm 773$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="773" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 233: melm 774$w      Record-control-number-->
+  <!--record.abs line 241: melm 774$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="774" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 234: melm 775$w      Record-control-number-->
+  <!--record.abs line 242: melm 775$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="775" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 235: melm 776$w      Record-control-number-->
+  <!--record.abs line 243: melm 776$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="776" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 236: melm 777$w      Record-control-number-->
+  <!--record.abs line 244: melm 777$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="777" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 237: melm 780$t      Title-->
+  <!--record.abs line 245: melm 780$t      Title-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="780" subfields="t">
     <target_index>Title:w</target_index>
   </index_subfields>
-  <!--record.abs line 238: melm 780$w      Record-control-number-->
+  <!--record.abs line 246: melm 780$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="780" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 239: melm 780        Title,Title:p,Title-former,Related-periodical-->
+  <!--record.abs line 247: melm 780        Title,Title:p,Title-former,Related-periodical-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="780">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-former:w</target_index>
     <target_index>Related-periodical:w</target_index>
   </index_data_field>
-  <!--record.abs line 240: melm 785$w      Record-control-number-->
+  <!--record.abs line 248: melm 785$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="785" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 241: melm 785        Title,Title:p,Title-later,Related-periodical-->
+  <!--record.abs line 249: melm 785        Title,Title:p,Title-later,Related-periodical-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="785">
     <target_index>Title:w</target_index>
     <target_index>Title:p</target_index>
     <target_index>Title-later:w</target_index>
     <target_index>Related-periodical:w</target_index>
   </index_data_field>
-  <!--record.abs line 242: melm 787$w      Record-control-number-->
+  <!--record.abs line 250: melm 787$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="787" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 244: melm 800$a      Name-and-title,Title-series:w,Title-series:p-->
+  <!--record.abs line 252: melm 800$a      Name-and-title,Title-series:w,Title-series:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="800" subfields="a">
     <target_index>Name-and-title:w</target_index>
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
   </index_subfields>
-  <!--record.abs line 246: melm 800$t      Author-title,Name-and-title,Title,Title-series:w,Title-series:p-->
+  <!--record.abs line 254: melm 800$t      Author-title,Name-and-title,Title,Title-series:w,Title-series:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="800" subfields="t">
     <target_index>Author-title:w</target_index>
     <target_index>Name-and-title:w</target_index>
@@ -962,28 +962,28 @@
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
   </index_subfields>
-  <!--record.abs line 247: melm 800$9      Koha-Auth-Number-->
+  <!--record.abs line 255: melm 800$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="800" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 248: melm 800$w      Record-control-number-->
+  <!--record.abs line 256: melm 800$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="800" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 249: melm 800        Author,Author-name-personal,Name,Personal-name-->
+  <!--record.abs line 257: melm 800        Author,Author-name-personal,Name,Personal-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="800">
     <target_index>Author:w</target_index>
     <target_index>Author-name-personal:w</target_index>
     <target_index>Name:w</target_index>
     <target_index>Personal-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 250: melm 810$a      Name-and-title,Title-series:w,Title-series:p-->
+  <!--record.abs line 258: melm 810$a      Name-and-title,Title-series:w,Title-series:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="810" subfields="a">
     <target_index>Name-and-title:w</target_index>
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
   </index_subfields>
-  <!--record.abs line 251: melm 810$t      Author-title,Name-and-title,Title,Title-series:w,Title-series:p-->
+  <!--record.abs line 259: melm 810$t      Author-title,Name-and-title,Title,Title-series:w,Title-series:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="810" subfields="t">
     <target_index>Author-title:w</target_index>
     <target_index>Name-and-title:w</target_index>
@@ -991,32 +991,32 @@
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
   </index_subfields>
-  <!--record.abs line 252: melm 810$w      Record-control-number-->
+  <!--record.abs line 260: melm 810$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="810" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 253: melm 810$9      Koha-Auth-Number-->
+  <!--record.abs line 261: melm 810$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="810" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 254: melm 810        Author,Corporate-name,Author-name-corporate,Name-->
+  <!--record.abs line 262: melm 810        Author,Corporate-name,Author-name-corporate,Name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="810">
     <target_index>Author:w</target_index>
     <target_index>Corporate-name:w</target_index>
     <target_index>Author-name-corporate:w</target_index>
     <target_index>Name:w</target_index>
   </index_data_field>
-  <!--record.abs line 255: melm 811$a      Name-and-title,Title-series:w,Title-series:p-->
+  <!--record.abs line 263: melm 811$a      Name-and-title,Title-series:w,Title-series:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="811" subfields="a">
     <target_index>Name-and-title:w</target_index>
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
   </index_subfields>
-  <!--record.abs line 256: melm 811$9      Koha-Auth-Number-->
+  <!--record.abs line 264: melm 811$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="811" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 258: melm 811$t      Author-title,Name-and-title,Title,Title-series:w,Title-series:p-->
+  <!--record.abs line 266: melm 811$t      Author-title,Name-and-title,Title,Title-series:w,Title-series:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="811" subfields="t">
     <target_index>Author-title:w</target_index>
     <target_index>Name-and-title:w</target_index>
@@ -1024,240 +1024,241 @@
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
   </index_subfields>
-  <!--record.abs line 259: melm 811$w      Record-control-number-->
+  <!--record.abs line 267: melm 811$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="811" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 260: melm 811        Author,Author-name-corporate,Name,Conference-name-->
+  <!--record.abs line 268: melm 811        Author,Author-name-corporate,Name,Conference-name-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="811">
     <target_index>Author:w</target_index>
     <target_index>Author-name-corporate:w</target_index>
     <target_index>Name:w</target_index>
     <target_index>Conference-name:w</target_index>
   </index_data_field>
-  <!--record.abs line 261: melm 830$w      Record-control-number-->
+  <!--record.abs line 269: melm 830$w      Record-control-number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="830" subfields="w">
     <target_index>Record-control-number:w</target_index>
   </index_subfields>
-  <!--record.abs line 262: melm 830$9      Koha-Auth-Number-->
+  <!--record.abs line 270: melm 830$9      Koha-Auth-Number-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="830" subfields="9">
     <target_index>Koha-Auth-Number:w</target_index>
   </index_subfields>
-  <!--record.abs line 263: melm 830        Title,Title-series:w,Title-series:p-->
+  <!--record.abs line 271: melm 830        Title,Title-series:w,Title-series:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="830">
     <target_index>Title:w</target_index>
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
   </index_data_field>
-  <!--record.abs line 264: melm 840        Title,Title-series:w,Title-series:p-->
+  <!--record.abs line 272: melm 840        Title,Title-series:w,Title-series:p-->
   <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="840">
     <target_index>Title:w</target_index>
     <target_index>Title-series:w</target_index>
     <target_index>Title-series:p</target_index>
   </index_data_field>
-  <!--record.abs line 268: melm 999$c      Local-Number:n,Local-Number:w,Local-Number:s-->
+  <!--record.abs line 276: melm 999$c      Local-Number:n,Local-Number:w,Local-Number:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="999" subfields="c">
     <target_index>Local-Number:n</target_index>
     <target_index>Local-Number:w</target_index>
     <target_index>Local-Number:s</target_index>
   </index_subfields>
-  <!--record.abs line 269: melm 999$d      biblioitemnumber:n,biblioitemnumber:w,biblioitemnumber:s-->
+  <!--record.abs line 277: melm 999$d      biblioitemnumber:n,biblioitemnumber:w,biblioitemnumber:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="999" subfields="d">
     <target_index>biblioitemnumber:n</target_index>
     <target_index>biblioitemnumber:w</target_index>
     <target_index>biblioitemnumber:s</target_index>
   </index_subfields>
-  <!--record.abs line 270: melm 942$0      totalissues:n,totalissues:s-->
+  <!--record.abs line 278: melm 942$0      totalissues:n,totalissues:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="942" subfields="0">
     <target_index>totalissues:n</target_index>
     <target_index>totalissues:s</target_index>
   </index_subfields>
-  <!--record.abs line 271: melm 942$2      cn-bib-source-->
+  <!--record.abs line 279: melm 942$2      cn-bib-source-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="942" subfields="2">
     <target_index>cn-bib-source:w</target_index>
   </index_subfields>
-  <!--record.abs line 272: melm 942$6      cn-bib-sort:n,cn-bib-sort:s-->
+  <!--record.abs line 280: melm 942$6      cn-bib-sort:n,cn-bib-sort:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="942" subfields="6">
     <target_index>cn-bib-sort:n</target_index>
     <target_index>cn-bib-sort:s</target_index>
   </index_subfields>
-  <!--record.abs line 273: melm 942$c      itemtype:w,itemtype:p,itype:w,itype:p-->
+  <!--record.abs line 281: melm 942$c      itemtype:w,itemtype:p,itype:w,itype:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="942" subfields="c">
     <target_index>itemtype:w</target_index>
     <target_index>itemtype:p</target_index>
     <target_index>itype:w</target_index>
     <target_index>itype:p</target_index>
   </index_subfields>
-  <!--record.abs line 274: melm 942$n      Suppress:w,Suppress:n-->
+  <!--record.abs line 282: melm 942$n      Suppress:w,Suppress:n-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="942" subfields="n">
     <target_index>Suppress:w</target_index>
     <target_index>Suppress:n</target_index>
   </index_subfields>
-  <!--record.abs line 277: melm 942$h      cn-class-->
+  <!--record.abs line 285: melm 942$h      cn-class-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="942" subfields="h">
     <target_index>cn-class:w</target_index>
   </index_subfields>
-  <!--record.abs line 278: melm 942$i      cn-item-->
+  <!--record.abs line 286: melm 942$i      cn-item-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="942" subfields="i">
     <target_index>cn-item:w</target_index>
   </index_subfields>
-  <!--record.abs line 279: melm 942$k      cn-prefix-->
+  <!--record.abs line 287: melm 942$k      cn-prefix-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="942" subfields="k">
     <target_index>cn-prefix:w</target_index>
   </index_subfields>
-  <!--record.abs line 280: melm 942$m      cn-suffix-->
+  <!--record.abs line 288: melm 942$m      cn-suffix-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="942" subfields="m">
     <target_index>cn-suffix:w</target_index>
   </index_subfields>
-  <!--record.abs line 283: melm 952$0      withdrawn:n,withdrawn:w-->
+  <!--record.abs line 291: melm 952$0      withdrawn:n,withdrawn:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="0">
     <target_index>withdrawn:n</target_index>
     <target_index>withdrawn:w</target_index>
   </index_subfields>
-  <!--record.abs line 284: melm 952$1      lost,lost:n-->
+  <!--record.abs line 292: melm 952$1      lost,lost:n-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="1">
     <target_index>lost:w</target_index>
     <target_index>lost:n</target_index>
   </index_subfields>
-  <!--record.abs line 285: melm 952$2      classification-source-->
+  <!--record.abs line 293: melm 952$2      classification-source-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="2">
     <target_index>classification-source:w</target_index>
   </index_subfields>
-  <!--record.abs line 286: melm 952$3      materials-specified -->
+  <!--record.abs line 294: melm 952$3      materials-specified-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="3">
     <target_index>materials-specified:w</target_index>
   </index_subfields>
-  <!--record.abs line 287: melm 952$4      damaged:n,damaged:w-->
+  <!--record.abs line 295: melm 952$4      damaged:n,damaged:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="4">
     <target_index>damaged:n</target_index>
     <target_index>damaged:w</target_index>
   </index_subfields>
-  <!--record.abs line 288: melm 952$5      restricted:n,restricted:w-->
+  <!--record.abs line 296: melm 952$5      restricted:n,restricted:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="5">
     <target_index>restricted:n</target_index>
     <target_index>restricted:w</target_index>
   </index_subfields>
-  <!--record.abs line 289: melm 952$6      cn-sort:n,cn-sort:s-->
+  <!--record.abs line 297: melm 952$6      cn-sort:n,cn-sort:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="6">
     <target_index>cn-sort:n</target_index>
     <target_index>cn-sort:s</target_index>
   </index_subfields>
-  <!--record.abs line 290: melm 952$7      notforloan:n,notforloan:w-->
+  <!--record.abs line 298: melm 952$7      notforloan:n,notforloan:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="7">
     <target_index>notforloan:n</target_index>
     <target_index>notforloan:w</target_index>
   </index_subfields>
-  <!--record.abs line 291: melm 952$8      ccode:w,ccode:p-->
+  <!--record.abs line 299: melm 952$8      ccode:w,ccode:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="8">
     <target_index>ccode:w</target_index>
     <target_index>ccode:p</target_index>
   </index_subfields>
-  <!--record.abs line 292: melm 952$9      itemnumber:n,itemnumber:s-->
+  <!--record.abs line 300: melm 952$9      itemnumber:n,itemnumber:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="9">
     <target_index>itemnumber:n</target_index>
     <target_index>itemnumber:s</target_index>
   </index_subfields>
-  <!--record.abs line 293: melm 952$a      homebranch-->
+  <!--record.abs line 301: melm 952$a      homebranch-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="a">
     <target_index>homebranch:w</target_index>
   </index_subfields>
-  <!--record.abs line 294: melm 952$b      holdingbranch-->
+  <!--record.abs line 302: melm 952$b      holdingbranch-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="b">
     <target_index>holdingbranch:w</target_index>
   </index_subfields>
-  <!--record.abs line 295: melm 952$c      location-->
+  <!--record.abs line 303: melm 952$c      location-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="c">
     <target_index>location:w</target_index>
   </index_subfields>
-  <!--record.abs line 298: melm 952$d      Date-of-acquisition,Date-of-acquisition:d,Date-of-acquisition:s-->
+  <!--record.abs line 306: melm 952$d      Date-of-acquisition,Date-of-acquisition:d,Date-of-acquisition:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="d">
     <target_index>Date-of-acquisition:w</target_index>
     <target_index>Date-of-acquisition:d</target_index>
     <target_index>Date-of-acquisition:s</target_index>
   </index_subfields>
-  <!--record.abs line 299: melm 952$e      acqsource-->
+  <!--record.abs line 307: melm 952$e      acqsource-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="e">
     <target_index>acqsource:w</target_index>
   </index_subfields>
-  <!--record.abs line 300: melm 952$f      coded-location-qualifier-->
+  <!--record.abs line 308: melm 952$f      coded-location-qualifier-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="f">
     <target_index>coded-location-qualifier:w</target_index>
   </index_subfields>
-  <!--record.abs line 301: melm 952$g      price-->
+  <!--record.abs line 309: melm 952$g      price-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="g">
     <target_index>price:w</target_index>
   </index_subfields>
-  <!--record.abs line 303: melm 952$i      stocknumber-->
+  <!--record.abs line 311: melm 952$i      stocknumber-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="i">
     <target_index>stocknumber:w</target_index>
   </index_subfields>
-  <!--record.abs line 304: melm 952$j      stack:n,stack:w-->
+  <!--record.abs line 312: melm 952$j      stack:n,stack:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="j">
     <target_index>stack:n</target_index>
     <target_index>stack:w</target_index>
   </index_subfields>
-  <!--record.abs line 306: melm 952$l      issues:n,issues:w,issues:s-->
+  <!--record.abs line 314: melm 952$l      issues:n,issues:w,issues:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="l">
     <target_index>issues:n</target_index>
     <target_index>issues:w</target_index>
     <target_index>issues:s</target_index>
   </index_subfields>
-  <!--record.abs line 307: melm 952$m      renewals:n,renewals:w-->
+  <!--record.abs line 315: melm 952$m      renewals:n,renewals:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="m">
     <target_index>renewals:n</target_index>
     <target_index>renewals:w</target_index>
   </index_subfields>
-  <!--record.abs line 308: melm 952$n      reserves:n,reserves:w-->
+  <!--record.abs line 316: melm 952$n      reserves:n,reserves:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="n">
     <target_index>reserves:n</target_index>
     <target_index>reserves:w</target_index>
   </index_subfields>
-  <!--record.abs line 309: melm 952$o      Local-classification:w,Local-classification:p,Local-classification:s-->
+  <!--record.abs line 317: melm 952$o      Local-classification:w,Local-classification:p,Local-classification:s-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="o">
     <target_index>Local-classification:w</target_index>
     <target_index>Local-classification:p</target_index>
     <target_index>Local-classification:s</target_index>
   </index_subfields>
-  <!--record.abs line 310: melm 952$p      barcode,barcode:n-->
+  <!--record.abs line 318: melm 952$p      barcode,barcode:n,any:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="p">
     <target_index>barcode:w</target_index>
     <target_index>barcode:n</target_index>
+    <target_index>any:w</target_index>
   </index_subfields>
-  <!--record.abs line 311: melm 952$q      onloan:n,onloan:w-->
+  <!--record.abs line 319: melm 952$q      onloan:n,onloan:w-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="q">
     <target_index>onloan:n</target_index>
     <target_index>onloan:w</target_index>
   </index_subfields>
-  <!--record.abs line 312: melm 952$r      datelastseen-->
+  <!--record.abs line 320: melm 952$r      datelastseen-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="r">
     <target_index>datelastseen:w</target_index>
   </index_subfields>
-  <!--record.abs line 313: melm 952$s      datelastborrowed-->
+  <!--record.abs line 321: melm 952$s      datelastborrowed-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="s">
     <target_index>datelastborrowed:w</target_index>
   </index_subfields>
-  <!--record.abs line 314: melm 952$t      copynumber-->
+  <!--record.abs line 322: melm 952$t      copynumber-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="t">
     <target_index>copynumber:w</target_index>
   </index_subfields>
-  <!--record.abs line 315: melm 952$u      uri:u-->
+  <!--record.abs line 323: melm 952$u      uri:u-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="u">
     <target_index>uri:u</target_index>
   </index_subfields>
-  <!--record.abs line 316: melm 952$v      replacementprice-->
+  <!--record.abs line 324: melm 952$v      replacementprice-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="v">
     <target_index>replacementprice:w</target_index>
   </index_subfields>
-  <!--record.abs line 317: melm 952$w      replacementpricedate-->
+  <!--record.abs line 325: melm 952$w      replacementpricedate-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="w">
     <target_index>replacementpricedate:w</target_index>
   </index_subfields>
-  <!--record.abs line 319: melm 952$y      itype:w,itype:p-->
+  <!--record.abs line 327: melm 952$y      itype:w,itype:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="y">
     <target_index>itype:w</target_index>
     <target_index>itype:p</target_index>
   </index_subfields>
-  <!--record.abs line 320: melm 952$z      Note:w,Note:p-->
+  <!--record.abs line 328: melm 952$z      Note:w,Note:p-->
   <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="952" subfields="z">
     <target_index>Note:w</target_index>
     <target_index>Note:p</target_index>
diff --git a/etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl b/etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl
index 14f299e..ad47a71 100644
--- a/etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl
+++ b/etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl
@@ -27,7 +27,7 @@ definition file (probably something like {biblio,authority}-koha-indexdefs.xml)
     </xslo:if>
   </xslo:template>
   <xslo:template match="marc:record">
-    <xslo:variable name="idfield" select="normalize-space(marc:datafield[@tag='999']/marc:subfield[@code='c'])"/>
+    <xslo:variable name="idfield" select="normalize-space()"/>
     <z:record type="update">
       <xslo:attribute name="z:id">
         <xslo:value-of select="$idfield"/>
@@ -119,7 +119,7 @@ definition file (probably something like {biblio,authority}-koha-indexdefs.xml)
     <z:index name="bio:w">
       <xslo:value-of select="substring(., 35, 1)"/>
     </z:index>
-    <z:index name="ln:n">
+    <z:index name="ln:w">
       <xslo:value-of select="substring(., 36, 3)"/>
     </z:index>
     <z:index name="ctype:w">
@@ -1252,7 +1252,7 @@ definition file (probably something like {biblio,authority}-koha-indexdefs.xml)
     </xslo:for-each>
     <xslo:for-each select="marc:subfield">
       <xslo:if test="contains('p', @code)">
-        <z:index name="barcode:w barcode:n">
+        <z:index name="barcode:w barcode:n any:w">
           <xslo:value-of select="."/>
         </z:index>
       </xslo:if>
diff --git a/etc/zebradb/marc_defs/marc21/biblios/record.abs b/etc/zebradb/marc_defs/marc21/biblios/record.abs
index 0f8360e..9dcf072 100644
--- a/etc/zebradb/marc_defs/marc21/biblios/record.abs
+++ b/etc/zebradb/marc_defs/marc21/biblios/record.abs
@@ -315,7 +315,7 @@ melm 952$l      issues:n,issues:w,issues:s
 melm 952$m      renewals:n,renewals:w
 melm 952$n      reserves:n,reserves:w
 melm 952$o      Local-classification:w,Local-classification:p,Local-classification:s
-melm 952$p      barcode,barcode:n
+melm 952$p      barcode,barcode:n,any:w
 melm 952$q      onloan:n,onloan:w
 melm 952$r      datelastseen
 melm 952$s      datelastborrowed
-- 
1.7.10.4



More information about the Koha-patches mailing list