Bugzilla – Attachment 39099 Details for
Bug 6499
MARC21 035 -- Other-control-number -- Indexing & Matching
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 6499: Add Zebra index "Other-control-number" covering MARC21 035$a, 035$z and 035 (entire tag)
SIGNED-OFF-Bug-6499-Add-Zebra-index-Other-control-.patch (text/plain), 6.91 KB, created by
Bernardo Gonzalez Kriegel
on 2015-05-12 17:11:50 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 6499: Add Zebra index "Other-control-number" covering MARC21 035$a, 035$z and 035 (entire tag)
Filename:
MIME Type:
Creator:
Bernardo Gonzalez Kriegel
Created:
2015-05-12 17:11:50 UTC
Size:
6.91 KB
patch
obsolete
>From e69cdcf92b90794569333473d50fce83441ee8b1 Mon Sep 17 00:00:00 2001 >From: Barton Chittenden <barton@bywatersolutions.com> >Date: Thu, 10 Jul 2014 09:54:56 -0400 >Subject: [PATCH] [SIGNED-OFF] Bug 6499: Add Zebra index > "Other-control-number" covering MARC21 035$a, 035$z and 035 > (entire tag) > >1) Apply patch >2) Make sure that you have a bib that has MARC21 035$a (and possibly also 035$z) populated. > >pre 3) Replace all modified zebra files and restart zebra server > >3) Rebuild zebra: misc/migration_tools/rebuild_zebra.pl -x -b -z >4) Add the following to the intranetuserjs syspref: > >$(document).ready(function(){ > // Add Other Control Number to advanced search > if (window.location.href.indexOf("catalogue/search.pl") > -1) { > $(".advsearch").append('<option value="Other-control-number">Other Control Number</option>'); > } >}); > >5) Do an advanced search, select "Other Control Number" from the search menu, then add the Other Control Number in 035$a for the bib specified in step 1. > >Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >Works, no koha-qa errors >--- > C4/Search.pm | 1 + > etc/zebradb/biblios/etc/bib1.att | 3 +- > etc/zebradb/ccl.properties | 3 ++ > .../marc21/biblios/biblio-koha-indexdefs.xml | 14 +++++++++- > .../marc21/biblios/biblio-zebra-indexdefs.xsl | 29 ++++++++++++++++++++ > etc/zebradb/marc_defs/marc21/biblios/record.abs | 4 ++- > 6 files changed, 51 insertions(+), 3 deletions(-) > >diff --git a/C4/Search.pm b/C4/Search.pm >index 990ed39..3b6f4c2 100644 >--- a/C4/Search.pm >+++ b/C4/Search.pm >@@ -1187,6 +1187,7 @@ sub getIndexes{ > 'notes', > 'ns', > 'nt', >+ 'Other-control-number', > 'pb', > 'Personal-name', > 'Personal-name-heading', >diff --git a/etc/zebradb/biblios/etc/bib1.att b/etc/zebradb/biblios/etc/bib1.att >index ed8c64b..79cdfc9 100644 >--- a/etc/zebradb/biblios/etc/bib1.att >+++ b/etc/zebradb/biblios/etc/bib1.att >@@ -191,7 +191,8 @@ att 1207 Instruments-total-number > att 1208 Instruments-distint-number > att 1209 Identifier-URN > att 1210 Sears-Subject-Heading >-att 1211 OCLC-Number >+#att 1211 OCLC-Number >+att 1211 Other-control-number > att 1212 Composition > att 1213 Intellectual-level > att 1214 EAN >diff --git a/etc/zebradb/ccl.properties b/etc/zebradb/ccl.properties >index 99e3498..57f5118 100644 >--- a/etc/zebradb/ccl.properties >+++ b/etc/zebradb/ccl.properties >@@ -361,6 +361,9 @@ Date/time-last-modified 1=1012 > # academic degree. > Dissertation-information 1=1056 > >+#OCLC Number 1211 OCLC Number MARC21 035 >+Other-control-number 1=1211 >+ > #EAN 1214 European article number UNIMARC 073 > EAN 1=1214 > ean EAN >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 8ad9db1..459eeb0 100644 >--- a/etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml >+++ b/etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml >@@ -165,7 +165,19 @@ > <index_data_field 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 75: melm 035$a Other-control-number--> >+ <index_subfields tag="035" subfields="a"> >+ <target_index>Other-control-number:w</target_index> >+ </index_subfields> >+ <!--record.abs line 76: melm 035$z Other-control-number--> >+ <index_subfields tag="035" subfields="z"> >+ <target_index>Other-control-number:w</target_index> >+ </index_subfields> >+ <!--record.abs line 77: melm 035 Other-control-number--> >+ <index_data_field tag="035"> >+ <target_index>Other-control-number:w</target_index> >+ </index_data_field> >+ <!--record.abs line 78: melm 037 Identifier-standard,Stock-number--> > <index_data_field tag="037"> > <target_index>Identifier-standard:w</target_index> > <target_index>Stock-number:w</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 a0f68f1..039d312 100644 >--- a/etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl >+++ b/etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl >@@ -159,6 +159,22 @@ definition file (probably something like {biblio,authority}-koha-indexdefs.xml) > </xslo:if> > </xslo:for-each> > </xslo:template> >+ <xslo:template mode="index_subfields" match="marc:datafield[@tag='035']"> >+ <xslo:for-each select="marc:subfield"> >+ <xslo:if test="contains('a', @code)"> >+ <z:index name="Other-control-number:w"> >+ <xslo:value-of select="."/> >+ </z:index> >+ </xslo:if> >+ </xslo:for-each> >+ <xslo:for-each select="marc:subfield"> >+ <xslo:if test="contains('z', @code)"> >+ <z:index name="Other-control-number:w"> >+ <xslo:value-of select="."/> >+ </z:index> >+ </xslo:if> >+ </xslo:for-each> >+ </xslo:template> > <xslo:template mode="index_subfields" match="marc:datafield[@tag='041']"> > <xslo:for-each select="marc:subfield"> > <xslo:if test="contains('a', @code)"> >@@ -1527,6 +1543,19 @@ definition file (probably something like {biblio,authority}-koha-indexdefs.xml) > <xslo:value-of select="normalize-space($raw_heading)"/> > </z:index> > </xslo:template> >+ <xslo:template mode="index_data_field" match="marc:datafield[@tag='035']"> >+ <z:index name="Other-control-number:w"> >+ <xslo:variable name="raw_heading"> >+ <xslo:for-each select="marc:subfield"> >+ <xslo:if test="position() > 1"> >+ <xslo:value-of select="substring(' ', 1, 1)"/> >+ </xslo:if> >+ <xslo:value-of select="."/> >+ </xslo:for-each> >+ </xslo:variable> >+ <xslo:value-of select="normalize-space($raw_heading)"/> >+ </z:index> >+ </xslo:template> > <xslo:template mode="index_data_field" match="marc:datafield[@tag='037']"> > <z:index name="Identifier-standard:w Stock-number:w"> > <xslo:variable name="raw_heading"> >diff --git a/etc/zebradb/marc_defs/marc21/biblios/record.abs b/etc/zebradb/marc_defs/marc21/biblios/record.abs >index dcb3cad..a9d1172 100644 >--- a/etc/zebradb/marc_defs/marc21/biblios/record.abs >+++ b/etc/zebradb/marc_defs/marc21/biblios/record.abs >@@ -72,7 +72,9 @@ melm 028 Identifier-publisher-for-music,Identifier-standard > melm 030 CODEN,Identifier-standard > #melm 033 Date > melm 034 Map-scale >-#melm 035 Local-number,Identifier-standard >+melm 035$a Other-control-number >+melm 035$z Other-control-number >+melm 035 Other-control-number > melm 037 Identifier-standard,Stock-number > melm 040 Code-institution,Record-source > melm 041$a ln,ln-audio:w >-- >1.7.9.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 6499
:
29591
|
29605
|
36104
|
36105
|
39099
|
41710
|
41711