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

(-)a/C4/Search.pm (-1 / +1 lines)
Lines 1021-1027 sub getIndexes{ Link Here
1021
                    'notes',
1021
                    'notes',
1022
                    'ns',
1022
                    'ns',
1023
                    'nt',
1023
                    'nt',
1024
                    'OCLC-Number',
1024
                    'Other-control-number',
1025
                    'pb',
1025
                    'pb',
1026
                    'Personal-name',
1026
                    'Personal-name',
1027
                    'Personal-name-heading',
1027
                    'Personal-name-heading',
(-)a/etc/zebradb/biblios/etc/bib1.att (-1 / +2 lines)
Lines 191-197 att 1207 Instruments-total-number Link Here
191
att 1208    Instruments-distint-number
191
att 1208    Instruments-distint-number
192
att 1209    Identifier-URN
192
att 1209    Identifier-URN
193
att 1210    Sears-Subject-Heading
193
att 1210    Sears-Subject-Heading
194
att 1211    OCLC-Number
194
#att 1211    OCLC-Number
195
att 1211    Other-control-number
195
att 1212    Composition
196
att 1212    Composition
196
att 1213    Intellectual-level
197
att 1213    Intellectual-level
197
att 1214    EAN
198
att 1214    EAN
(-)a/etc/zebradb/ccl.properties (-1 / +1 lines)
Lines 363-369 Dissertation-information 1=1056 Link Here
363
363
364
364
365
#OCLC Number          1211  OCLC Number                     MARC21 035
365
#OCLC Number          1211  OCLC Number                     MARC21 035
366
OCLC-Number 1=1211
366
Other-control-number 1=1211
367
367
368
#EAN                  1214  European article number         UNIMARC 073
368
#EAN                  1214  European article number         UNIMARC 073
369
EAN 1=1214
369
EAN 1=1214
(-)a/etc/zebradb/marc_defs/marc21/biblios/biblio-koha-indexdefs.xml (-6 / +6 lines)
Lines 164-180 Link Here
164
  <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="034">
164
  <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="034">
165
    <target_index>Map-scale:w</target_index>
165
    <target_index>Map-scale:w</target_index>
166
  </index_data_field>
166
  </index_data_field>
167
  <!--record.abs line 75: melm 035$a      OCLC-Number-->
167
  <!--record.abs line 75: melm 035$a      Other-control-number-->
168
  <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="035" subfields="a">
168
  <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="035" subfields="a">
169
    <target_index>OCLC-Number:w</target_index>
169
    <target_index>Other-control-number:w</target_index>
170
  </index_subfields>
170
  </index_subfields>
171
  <!--record.abs line 76: melm 035$z      OCLC-Number-->
171
  <!--record.abs line 76: melm 035$z      Other-control-number-->
172
  <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="035" subfields="z">
172
  <index_subfields xmlns="http://www.koha-community.org/schemas/index-defs" tag="035" subfields="z">
173
    <target_index>OCLC-Number:w</target_index>
173
    <target_index>Other-control-number:w</target_index>
174
  </index_subfields>
174
  </index_subfields>
175
  <!--record.abs line 77: melm 035        OCLC-Number-->
175
  <!--record.abs line 77: melm 035        Other-control-number-->
176
  <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="035">
176
  <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="035">
177
    <target_index>OCLC-Number:w</target_index>
177
    <target_index>Other-control-number:w</target_index>
178
  </index_data_field>
178
  </index_data_field>
179
  <!--record.abs line 78: melm 037        Identifier-standard,Stock-number-->
179
  <!--record.abs line 78: melm 037        Identifier-standard,Stock-number-->
180
  <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="037">
180
  <index_data_field xmlns="http://www.koha-community.org/schemas/index-defs" tag="037">
(-)a/etc/zebradb/marc_defs/marc21/biblios/biblio-zebra-indexdefs.xsl (-3 / +3 lines)
Lines 160-173 definition file (probably something like {biblio,authority}-koha-indexdefs.xml) Link Here
160
  <xslo:template mode="index_subfields" match="marc:datafield[@tag='035']">
160
  <xslo:template mode="index_subfields" match="marc:datafield[@tag='035']">
161
    <xslo:for-each select="marc:subfield">
161
    <xslo:for-each select="marc:subfield">
162
      <xslo:if test="contains('a', @code)">
162
      <xslo:if test="contains('a', @code)">
163
        <z:index name="OCLC-Number:w">
163
        <z:index name="Other-control-number:w">
164
          <xslo:value-of select="."/>
164
          <xslo:value-of select="."/>
165
        </z:index>
165
        </z:index>
166
      </xslo:if>
166
      </xslo:if>
167
    </xslo:for-each>
167
    </xslo:for-each>
168
    <xslo:for-each select="marc:subfield">
168
    <xslo:for-each select="marc:subfield">
169
      <xslo:if test="contains('z', @code)">
169
      <xslo:if test="contains('z', @code)">
170
        <z:index name="OCLC-Number:w">
170
        <z:index name="Other-control-number:w">
171
          <xslo:value-of select="."/>
171
          <xslo:value-of select="."/>
172
        </z:index>
172
        </z:index>
173
      </xslo:if>
173
      </xslo:if>
Lines 1542-1548 definition file (probably something like {biblio,authority}-koha-indexdefs.xml) Link Here
1542
    </z:index>
1542
    </z:index>
1543
  </xslo:template>
1543
  </xslo:template>
1544
  <xslo:template mode="index_data_field" match="marc:datafield[@tag='035']">
1544
  <xslo:template mode="index_data_field" match="marc:datafield[@tag='035']">
1545
    <z:index name="OCLC-Number:w">
1545
    <z:index name="Other-control-number:w">
1546
      <xslo:variable name="raw_heading">
1546
      <xslo:variable name="raw_heading">
1547
        <xslo:for-each select="marc:subfield">
1547
        <xslo:for-each select="marc:subfield">
1548
          <xslo:if test="position() &gt; 1">
1548
          <xslo:if test="position() &gt; 1">
(-)a/etc/zebradb/marc_defs/marc21/biblios/record.abs (-4 / +3 lines)
Lines 72-80 melm 028 Identifier-publisher-for-music,Identifier-standard Link Here
72
melm 030        CODEN,Identifier-standard
72
melm 030        CODEN,Identifier-standard
73
#melm 033       Date
73
#melm 033       Date
74
melm 034        Map-scale
74
melm 034        Map-scale
75
melm 035$a      OCLC-Number
75
melm 035$a      Other-control-number
76
melm 035$z      OCLC-Number
76
melm 035$z      Other-control-number
77
melm 035        OCLC-Number
77
melm 035        Other-control-number
78
melm 037        Identifier-standard,Stock-number
78
melm 037        Identifier-standard,Stock-number
79
melm 040        Code-institution,Record-source
79
melm 040        Code-institution,Record-source
80
melm 041$a      ln,ln-audio:w
80
melm 041$a      ln,ln-audio:w
81
- 

Return to bug 6499