Bugzilla – Attachment 133127 Details for
Bug 30373
Rewrite UNIMARC installer data to YAML
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30373: Fix visibility, authorised values and descriptions
Bug-30373-Fix-visibility-authorised-values-and-des.patch (text/plain), 1007.58 KB, created by
Bernardo Gonzalez Kriegel
on 2022-04-08 22:26:08 UTC
(
hide
)
Description:
Bug 30373: Fix visibility, authorised values and descriptions
Filename:
MIME Type:
Creator:
Bernardo Gonzalez Kriegel
Created:
2022-04-08 22:26:08 UTC
Size:
1007.58 KB
patch
obsolete
>From 04f6084f7d27c8b5ab3268e21c6ee8b2ec22199e Mon Sep 17 00:00:00 2001 >From: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com> >Date: Fri, 8 Apr 2022 17:51:02 -0300 >Subject: [PATCH] Bug 30373: Fix visibility, authorised values and descriptions > >This patch fixes certain values of default bibliographic >framework. > >It fixes hidden values using as reference default framework >from biblibre demo site. > >Also adds some missing subfields, authorised values and >fixes capitalization on some descriptions. > >To test: >1) On biblibre demo site, run a report > SELECT tagfield,tagsubfield,hidden > FROM marc_subfield_structure > WHERE frameworkcode = '' > ORDER BY tagfield,tagsubfield; >2) Download as tab separated values, ej. biblibre-hidden.txt >3) Apply the patch, remove bib frameworks, load YAML file >4) Run something like this to check correct hidden values > > while read -r -a l; do > t="${l[0]}"; > s="${l[1]}"; > h="${l[2]}"; > b=$( mysql koha -N -B -e "select hidden from marc_subfield_structure where frameworkcode = '' and tagfield = '$t' and tagsubfield = '$s'"); > [ -n "$b" -a "$b" != "$h" ] && echo "$t:$s: -> change $b to $h"; > done < <( cat biblibre-hidden.txt ) > > there must be no output >--- > .../mandatory/unimarc_framework_DEFAULT.yml | 14111 +++++++--------- > 1 file changed, 6535 insertions(+), 7576 deletions(-) > >diff --git a/installer/data/mysql/en/marcflavour/unimarc/mandatory/unimarc_framework_DEFAULT.yml b/installer/data/mysql/en/marcflavour/unimarc/mandatory/unimarc_framework_DEFAULT.yml >index 62086b0c0b..1ddb9d2406 100644 >--- a/installer/data/mysql/en/marcflavour/unimarc/mandatory/unimarc_framework_DEFAULT.yml >+++ b/installer/data/mysql/en/marcflavour/unimarc/mandatory/unimarc_framework_DEFAULT.yml >@@ -1,6 +1,6 @@ > --- > # >-# Copyright 2019 Koha Development Team >+# Copyright 2022 Koha Development Team > # > # This file is part of Koha. > # >@@ -18,7 +18,8 @@ > # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. > # > # ************************************************************* >-# KOHA UNIMARC STANDARD DEFAULT BIBLIOGRAPHIC FRAMEWORKS >+# >+# KOHA UNIMARC STANDARD DEFAULT BIBLIOGRAPHIC FRAMEWORK > # > # ************************************************************* > >@@ -29,7 +30,7 @@ tables: > > - authorised_value_categories: > translatable: [ ] >- multiline: [] >+ multiline: [ ] > rows: > - category_name: "unimarc_146a" > - category_name: "unimarc_181c" >@@ -381,21 +382,39 @@ tables: > translatable: [ liblibrarian, libopac ] > multiline: [] > rows: >+ - tagfield: "090" >+ tagsubfield: "9" >+ liblibrarian: "Koha biblio number" >+ libopac: "Koha biblio number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: -1 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ > - tagfield: "090" > tagsubfield: "a" >- liblibrarian: "Koha biblioitem number (autogenerated)" >- libopac: "Koha biblioitem number (autogenerated)" >+ liblibrarian: "Koha biblioitem number" >+ libopac: "Koha biblioitem number" > repeatable: 0 > mandatory: 0 > kohafield: biblioitems.biblioitemnumber >- tab: 9 >+ tab: -1 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" > defaultvalue: "" > >@@ -417,8 +436,8 @@ tables: > rows: > - tagfield: "099" > tagsubfield: "c" >- liblibrarian: "Date of creation (bib. record)" >- libopac: "Date of creation (bib. record)" >+ liblibrarian: "Koha biblio creation date" >+ libopac: "Koha biblio creation date" > repeatable: 0 > mandatory: 0 > kohafield: biblio.datecreated >@@ -427,16 +446,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 6 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" > defaultvalue: "" > > - tagfield: "099" > tagsubfield: "d" >- liblibrarian: "Last modified date (bib. record)" >- libopac: "Last modified data (bib. record)" >+ liblibrarian: "Koha biblio modification date" >+ libopac: "Koha biblio modification date" > repeatable: 0 > mandatory: 0 > kohafield: biblio.timestamp >@@ -445,9 +464,63 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 6 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "099" >+ tagsubfield: "s" >+ liblibrarian: "Serial" >+ libopac: "Serial" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: biblio.serial >+ tab: 0 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: 7 > frameworkcode: "" >- seealso: >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "099" >+ tagsubfield: "t" >+ liblibrarian: "Koha item type" >+ libopac: "Koha item type" >+ repeatable: 0 >+ mandatory: 1 >+ kohafield: biblioitems.itemtype >+ tab: 0 >+ authorised_value: TYPEDOC >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: 0 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "099" >+ tagsubfield: "x" >+ liblibrarian: "Number of issues" >+ libopac: "Number of issues" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: biblioitems.totalissues >+ tab: 0 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: 6 >+ frameworkcode: "" >+ seealso: "" > link: "" > defaultvalue: "" > >@@ -541,7 +614,7 @@ tables: > > - tagfield: "942" > tagsubfield: "s" >- liblibrarian: "Serial record flag" >+ liblibrarian: "Serial record" > libopac: "Serial record" > repeatable: 0 > mandatory: 0 >@@ -585,7 +658,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -8 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "995" >+ tagsubfield: "1" >+ liblibrarian: "Damaged status" >+ libopac: "Damaged status" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.damaged >+ tab: 10 >+ authorised_value: DAMAGED >+ authtypecode: "" >+ value_builder: "" >+ isurl: >+ hidden: -8 > frameworkcode: "" > seealso: "" > link: "" >@@ -627,18 +718,36 @@ tables: > link: "" > defaultvalue: > >+ - tagfield: "995" >+ tagsubfield: "4" >+ liblibrarian: "Source of classification or shelving scheme" >+ libopac: "Source of classification or shelving scheme" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.cn_source >+ tab: 10 >+ authorised_value: cn_source >+ authtypecode: "" >+ value_builder: "" >+ isurl: >+ hidden: 0 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ > - tagfield: "995" > tagsubfield: "5" > liblibrarian: "Date acquired" >- libopac: "Coded location qualifier" >+ libopac: "Date acquired" > repeatable: 0 > mandatory: 0 > kohafield: items.dateaccessioned > tab: 10 > authorised_value: "" > authtypecode: "" >- value_builder: "" >- isurl: >+ value_builder: dateaccessioned.pl >+ isurl: 0 > hidden: -6 > frameworkcode: "" > seealso: "" >@@ -681,10 +790,28 @@ tables: > link: "" > defaultvalue: > >+ - tagfield: "995" >+ tagsubfield: "8" >+ liblibrarian: "Coded location qualifier" >+ libopac: "Coded location qualifier" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.coded_location_qualifier >+ tab: 10 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: >+ hidden: -8 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ > - tagfield: "995" > tagsubfield: "9" >- liblibrarian: "Internal item number (Koha itemnumber, autogenerated)" >- libopac: "Internal itemnumber (Koha itemnumber)" >+ liblibrarian: "Koha itemnumber (autogenerated)" >+ libopac: "Koha itemnumber (autogenerated)" > repeatable: 0 > mandatory: 0 > kohafield: items.itemnumber >@@ -693,7 +820,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -701,11 +828,11 @@ tables: > > - tagfield: "995" > tagsubfield: "a" >- liblibrarian: "Origin of the item (home branch) (free text)" >- libopac: "Origin of item (home branch) (free text)" >+ liblibrarian: "Source of acquisition" >+ libopac: "Source of acquisition" > repeatable: 0 >- mandatory: 1 >- kohafield: "" >+ mandatory: 0 >+ kohafield: items.booksellerid > tab: 10 > authorised_value: "" > authtypecode: "" >@@ -719,8 +846,8 @@ tables: > > - tagfield: "995" > tagsubfield: "b" >- liblibrarian: "Origin of item (home branch) (coded)" >- libopac: "Origin of item (home branch (coded)" >+ liblibrarian: "Permanent Location" >+ libopac: "Permanent Location" > repeatable: 0 > mandatory: 0 > kohafield: items.homebranch >@@ -729,7 +856,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -1 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -737,8 +864,8 @@ tables: > > - tagfield: "995" > tagsubfield: "c" >- liblibrarian: "Lending or holding organisation (holding branch) code" >- libopac: "Lending or holding organisation (holding branch) code " >+ liblibrarian: "Current Location" >+ libopac: "Current Location" > repeatable: 0 > mandatory: 1 > kohafield: items.holdingbranch >@@ -753,24 +880,6 @@ tables: > link: "" > defaultvalue: > >- - tagfield: "995" >- tagsubfield: "d" >- liblibrarian: "Lending or holding organisation (holding branch) (free text)" >- libopac: "Lending or holding organisation (holding branch) (free text)" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 10 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -1 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- > - tagfield: "995" > tagsubfield: "e" > liblibrarian: "Shelving location" >@@ -807,10 +916,28 @@ tables: > link: "" > defaultvalue: > >+ - tagfield: "995" >+ tagsubfield: "g" >+ liblibrarian: "Cost, replacement price" >+ libopac: "Cost, replacement price" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.replacementprice >+ tab: 10 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -8 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ > - tagfield: "995" > tagsubfield: "h" >- liblibrarian: "Koha collection" >- libopac: "Koha collection" >+ liblibrarian: "Collection code" >+ libopac: "Collection code" > repeatable: 0 > mandatory: 0 > kohafield: items.ccode >@@ -825,6 +952,24 @@ tables: > link: "" > defaultvalue: > >+ - tagfield: "995" >+ tagsubfield: "i" >+ liblibrarian: "Price effective from" >+ libopac: "Price effective from" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.replacementpricedate >+ tab: 10 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -8 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ > - tagfield: "995" > tagsubfield: "j" > liblibrarian: "Inventory number" >@@ -837,7 +982,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -8 > frameworkcode: "" > seealso: "" > link: "" >@@ -845,8 +990,8 @@ tables: > > - tagfield: "995" > tagsubfield: "k" >- liblibrarian: "Call number (full call number)" >- libopac: "Call number (full call number)" >+ liblibrarian: "Full call number" >+ libopac: "Full call number" > repeatable: 0 > mandatory: 0 > kohafield: items.itemcallnumber >@@ -863,8 +1008,8 @@ tables: > > - tagfield: "995" > tagsubfield: "l" >- liblibrarian: "Numbering (volume or other part)" >- libopac: "Numbering (bound volume or other part)" >+ liblibrarian: "Materials specified (bound volume or other part)" >+ libopac: "Materials specified (bound volume or other part)" > repeatable: 0 > mandatory: 0 > kohafield: items.materials >@@ -881,8 +1026,8 @@ tables: > > - tagfield: "995" > tagsubfield: "m" >- liblibrarian: "Date of loan or deposit" >- libopac: "Date of loan or deposit" >+ liblibrarian: "Date last checked out" >+ libopac: "Date last checked out" > repeatable: 0 > mandatory: 0 > kohafield: items.datelastborrowed >@@ -890,8 +1035,8 @@ tables: > authorised_value: "" > authtypecode: "" > value_builder: "" >- isurl: 0 >- hidden: -5 >+ isurl: >+ hidden: 7 > frameworkcode: "" > seealso: "" > link: "" >@@ -899,8 +1044,8 @@ tables: > > - tagfield: "995" > tagsubfield: "n" >- liblibrarian: "Expiration of loan date" >- libopac: "Expiration of loan date" >+ liblibrarian: "Checked out" >+ libopac: "Checked out" > repeatable: 0 > mandatory: 0 > kohafield: items.onloan >@@ -909,7 +1054,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -1 >+ hidden: -6 > frameworkcode: "" > seealso: "" > link: "" >@@ -917,16 +1062,52 @@ tables: > > - tagfield: "995" > tagsubfield: "o" >- liblibrarian: "Circulation type (not for loan)" >- libopac: "Circulation type (not for loan)" >+ liblibrarian: "Not for loan" >+ libopac: "Not for loan" > repeatable: 0 > mandatory: 0 > kohafield: items.notforloan > tab: 10 >+ authorised_value: NOT_LOAN >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: 0 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "995" >+ tagsubfield: "p" >+ liblibrarian: "Cost, normal purchase price" >+ libopac: "Cost, normal purchase price" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.price >+ tab: 10 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "995" >+ tagsubfield: "q" >+ liblibrarian: "Shelving control number" >+ libopac: "Shelving control number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.stack >+ tab: 10 >+ authorised_value: STACK >+ authtypecode: "" >+ value_builder: "" >+ isurl: > hidden: 0 > frameworkcode: "" > seealso: "" >@@ -935,26 +1116,62 @@ tables: > > - tagfield: "995" > tagsubfield: "r" >- liblibrarian: "Type of item and material" >- libopac: "Type of item and material" >+ liblibrarian: "Koha item type" >+ libopac: "Koha item type" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: items.itype > tab: 10 > authorised_value: itemtypes > authtypecode: "" > value_builder: "" >- isurl: 0 >+ isurl: > hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >+ - tagfield: "995" >+ tagsubfield: "s" >+ liblibrarian: "Koha normalized classification for sorting" >+ libopac: "Koha normalized classification for sorting" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.cn_sort >+ tab: -1 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: 7 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "995" >+ tagsubfield: "t" >+ liblibrarian: "Total Holds" >+ libopac: "Total Holds" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.reserves >+ tab: 10 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: >+ hidden: 7 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ > - tagfield: "995" > tagsubfield: "u" >- liblibrarian: "Copy note" >- libopac: "Copy note" >+ liblibrarian: "Public note" >+ libopac: "Public note" > repeatable: 0 > mandatory: 0 > kohafield: items.itemnotes >@@ -962,7 +1179,7 @@ tables: > authorised_value: "" > authtypecode: "" > value_builder: "" >- isurl: 0 >+ isurl: > hidden: 0 > frameworkcode: "" > seealso: "" >@@ -981,7 +1198,79 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -1 >+ hidden: 0 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "995" >+ tagsubfield: "w" >+ liblibrarian: "Total Checkouts" >+ libopac: "Total Checkouts" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.issues >+ tab: 10 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: >+ hidden: 7 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "995" >+ tagsubfield: "x" >+ liblibrarian: "Total Renewals" >+ libopac: "Total Renewals" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.renewals >+ tab: 10 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: >+ hidden: -6 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "995" >+ tagsubfield: "y" >+ liblibrarian: "Date last seen" >+ libopac: "Date last seen" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.datelastseen >+ tab: 10 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: >+ hidden: 7 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "995" >+ tagsubfield: "z" >+ liblibrarian: "Non-public note" >+ libopac: "Non-public note" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: items.itemnotes_nonpublic >+ tab: 10 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -1087,14 +1376,6 @@ tables: > authorised_value: "" > frameworkcode: "" > >- - tagfield: "018" >- liblibrarian: "[Reserved for other International Standard Numbers]" >- libopac: "[Reserved for other International Standard Numbers]" >- repeatable: 1 >- mandatory: 0 >- authorised_value: "" >- frameworkcode: "" >- > - tagfield: "020" > liblibrarian: "National Bibliography Number" > libopac: "National Bibliography Number" >@@ -1415,14 +1696,6 @@ tables: > authorised_value: "" > frameworkcode: "" > >- - tagfield: "204" >- liblibrarian: "General Material Designation [Obsolete]" >- libopac: "General Material Designation [Obsolete]" >- repeatable: 1 >- mandatory: 0 >- authorised_value: "" >- frameworkcode: "" >- > - tagfield: "205" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -2731,17 +3004,17 @@ tables: > translatable: [ liblibrarian, libopac ] > multiline: [] > rows: >- - tagfield: "000" >+ - tagfield: "001" > tagsubfield: "@" >- liblibrarian: "fixed length control field" >- libopac: "fixed length control field" >+ liblibrarian: "control field" >+ libopac: "control field" > repeatable: 0 >- mandatory: 1 >- kohafield: "" >- tab: 0 >+ mandatory: 0 >+ kohafield: biblio.biblionumber >+ tab: -1 > authorised_value: "" > authtypecode: "" >- value_builder: unimarc_leader.pl >+ value_builder: "" > isurl: 0 > hidden: 0 > frameworkcode: "" >@@ -2749,13 +3022,49 @@ tables: > link: "" > defaultvalue: > >- - tagfield: "001" >- tagsubfield: "@" >- liblibrarian: "control field" >- libopac: "control field" >+ - tagfield: "128" >+ tagsubfield: "b" >+ liblibrarian: "[Obsolete] Instruments or Voices for Ensembles" >+ libopac: "[Obsolete] Instruments or Voices for Ensembles" > repeatable: 0 >- mandatory: 1 >- kohafield: biblio.biblionumber >+ mandatory: 0 >+ kohafield: "" >+ tab: -1 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "128" >+ tagsubfield: "c" >+ liblibrarian: "[Obsolete] Instruments or Voices for Soloists" >+ libopac: "[Obsolete] Instruments or Voices for Soloists" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: -1 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "200" >+ tagsubfield: "5" >+ liblibrarian: "Institution to which the Field Applies" >+ libopac: "Institution to which the Field Applies" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" > tab: -1 > authorised_value: "" > authtypecode: "" >@@ -2767,19 +3076,37 @@ tables: > link: "" > defaultvalue: > >+ - tagfield: "000" >+ tagsubfield: "@" >+ liblibrarian: "fixed length control field" >+ libopac: "fixed length control field" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 0 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: unimarc_leader.pl >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ > - tagfield: "003" > tagsubfield: "@" > liblibrarian: "control field" > libopac: "control field" > repeatable: 0 > mandatory: 0 >- kohafield: "" >+ kohafield: biblio.abstract > tab: 0 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -2795,9 +3122,9 @@ tables: > tab: 0 > authorised_value: "" > authtypecode: "" >- value_builder: marc21_field_005.pl >+ value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -2815,7 +3142,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -2869,7 +3196,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -2887,7 +3214,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -2923,7 +3250,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -2941,7 +3268,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -2949,8 +3276,8 @@ tables: > > - tagfield: "011" > tagsubfield: "f" >- liblibrarian: "ISSN-L or Linking ISSN" >- libopac: "ISSN-L or Linking ISSN" >+ liblibrarian: "ISSN-L or linking ISSN" >+ libopac: "ISSN-L or linking ISSN" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -2959,7 +3286,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -2977,7 +3304,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -2995,7 +3322,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3013,7 +3340,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3031,7 +3358,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3039,9 +3366,9 @@ tables: > > - tagfield: "012" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >- repeatable: 0 >+ liblibrarian: "Institution to which the Field Applies" >+ libopac: "Institution to which the Field Applies" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 0 >@@ -3049,7 +3376,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3067,7 +3394,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "013" >+ tagsubfield: "6" >+ liblibrarian: "Interfield Linking Data" >+ libopac: "Interfield Linking Data" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 0 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3085,7 +3430,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -3103,7 +3448,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3121,7 +3466,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3139,7 +3484,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3157,7 +3502,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3175,7 +3520,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -3193,7 +3538,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3211,7 +3556,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -3229,7 +3574,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3247,7 +3592,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3265,7 +3610,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3283,7 +3628,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -3301,7 +3646,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3319,7 +3664,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3337,7 +3682,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3345,8 +3690,8 @@ tables: > > - tagfield: "017" > tagsubfield: "2" >- liblibrarian: "Source of Code" >- libopac: "Source of Code" >+ liblibrarian: "System code" >+ libopac: "System code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -3355,7 +3700,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3363,8 +3708,8 @@ tables: > > - tagfield: "017" > tagsubfield: "a" >- liblibrarian: "Standard Number" >- libopac: "Standard Number" >+ liblibrarian: "Identifier" >+ libopac: "Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -3373,7 +3718,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -3391,7 +3736,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3409,7 +3754,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3417,8 +3762,8 @@ tables: > > - tagfield: "017" > tagsubfield: "z" >- liblibrarian: "Erroneous Number or Code" >- libopac: "Erroneous Number or Code" >+ liblibrarian: "Erroneous Identifier" >+ libopac: "Erroneous Identifier" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -3427,7 +3772,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3438,14 +3783,14 @@ tables: > liblibrarian: "Country Code" > libopac: "Country Code" > repeatable: 0 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 0 >- authorised_value: "" >+ authorised_value: COUNTRY > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -3463,7 +3808,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3471,8 +3816,8 @@ tables: > > - tagfield: "020" > tagsubfield: "z" >- liblibrarian: "Erroneous Number" >- libopac: "Erroneous Number" >+ liblibrarian: "Erroneous number" >+ libopac: "Erroneous number" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -3481,7 +3826,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3492,14 +3837,14 @@ tables: > liblibrarian: "Country Code" > libopac: "Country Code" > repeatable: 0 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 0 >- authorised_value: "" >+ authorised_value: COUNTRY > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -3517,7 +3862,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3535,7 +3880,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3549,11 +3894,11 @@ tables: > mandatory: 0 > kohafield: "" > tab: 0 >- authorised_value: "" >+ authorised_value: COUNTRY > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -3571,7 +3916,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3589,7 +3934,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3607,7 +3952,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3643,7 +3988,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -3661,7 +4006,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3669,8 +4014,8 @@ tables: > > - tagfield: "036" > tagsubfield: "2" >- liblibrarian: "System Code for Musical Notation" >- libopac: "System Code for Musical Notation" >+ liblibrarian: "System code for musical notation" >+ libopac: "System code for musical notation" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -3679,7 +4024,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3687,8 +4032,8 @@ tables: > > - tagfield: "036" > tagsubfield: "a" >- liblibrarian: "Number of Work" >- libopac: "Number of Work" >+ liblibrarian: "Number of work" >+ libopac: "Number of work" > repeatable: 0 > mandatory: 1 > kohafield: "" >@@ -3697,7 +4042,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -3705,8 +4050,8 @@ tables: > > - tagfield: "036" > tagsubfield: "b" >- liblibrarian: "Number of Movement" >- libopac: "Number of Movement" >+ liblibrarian: "Number of movement" >+ libopac: "Number of movement" > repeatable: 0 > mandatory: 1 > kohafield: "" >@@ -3714,8 +4059,8 @@ tables: > authorised_value: "" > authtypecode: "" > value_builder: "" >- isurl: 0 >- hidden: -6 >+ isurl: 1 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3723,8 +4068,8 @@ tables: > > - tagfield: "036" > tagsubfield: "c" >- liblibrarian: "Number of Incipit" >- libopac: "Number of Incipit" >+ liblibrarian: "Number of incipit" >+ libopac: "Number of incipit" > repeatable: 0 > mandatory: 1 > kohafield: "" >@@ -3733,7 +4078,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3741,8 +4086,8 @@ tables: > > - tagfield: "036" > tagsubfield: "d" >- liblibrarian: "Voice/Instrument" >- libopac: "Voice/Instrument" >+ liblibrarian: "Voice/instrument" >+ libopac: "Voice/instrument" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -3751,7 +4096,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3769,7 +4114,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3777,8 +4122,8 @@ tables: > > - tagfield: "036" > tagsubfield: "f" >- liblibrarian: "Movement Caption/Heading" >- libopac: "Movement Caption/Heading" >+ liblibrarian: "Movement caption/heading" >+ libopac: "Movement caption/heading" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -3787,7 +4132,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3795,8 +4140,8 @@ tables: > > - tagfield: "036" > tagsubfield: "g" >- liblibrarian: "Key or Mode" >- libopac: "Key or Mode" >+ liblibrarian: "Key or mode" >+ libopac: "Key or mode" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -3805,7 +4150,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3823,7 +4168,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3831,8 +4176,8 @@ tables: > > - tagfield: "036" > tagsubfield: "n" >- liblibrarian: "Key Signature" >- libopac: "Key Signature" >+ liblibrarian: "Key signature" >+ libopac: "Key signature" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -3841,7 +4186,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3849,8 +4194,8 @@ tables: > > - tagfield: "036" > tagsubfield: "o" >- liblibrarian: "Time Signature" >- libopac: "Time Signature" >+ liblibrarian: "Time signature" >+ libopac: "Time signature" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -3859,7 +4204,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3867,8 +4212,8 @@ tables: > > - tagfield: "036" > tagsubfield: "p" >- liblibrarian: "Musical Notation" >- libopac: "Musical Notation" >+ liblibrarian: "Musical notation" >+ libopac: "Musical notation" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -3877,7 +4222,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3885,8 +4230,8 @@ tables: > > - tagfield: "036" > tagsubfield: "q" >- liblibrarian: "Comments (Free Text)" >- libopac: "Comments (Free Text)" >+ liblibrarian: "Comments (free text)" >+ libopac: "Comments (free text)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -3895,7 +4240,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3903,8 +4248,8 @@ tables: > > - tagfield: "036" > tagsubfield: "r" >- liblibrarian: "Codified Note" >- libopac: "Codified Note" >+ liblibrarian: "Codified note" >+ libopac: "Codified note" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -3913,7 +4258,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3921,8 +4266,8 @@ tables: > > - tagfield: "036" > tagsubfield: "t" >- liblibrarian: "Text Incipit" >- libopac: "Text Incipit" >+ liblibrarian: "Text incipit" >+ libopac: "Text incipit" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -3931,7 +4276,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3949,7 +4294,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3957,8 +4302,8 @@ tables: > > - tagfield: "036" > tagsubfield: "z" >- liblibrarian: "Language of Text" >- libopac: "Language of Text" >+ liblibrarian: "Language of text" >+ libopac: "Language of text" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -3967,7 +4312,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -3985,7 +4330,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4003,7 +4348,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4021,7 +4366,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4039,7 +4384,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4057,7 +4402,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4065,8 +4410,8 @@ tables: > > - tagfield: "071" > tagsubfield: "d" >- liblibrarian: "Terms of Availability and/or Price" >- libopac: "Terms of Availability and/or Price" >+ liblibrarian: "Terms of availability and/or price" >+ libopac: "Terms of availability and/or price" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -4075,7 +4420,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4083,8 +4428,8 @@ tables: > > - tagfield: "071" > tagsubfield: "z" >- liblibrarian: "Erroneous Publisher's Number" >- libopac: "Erroneous Publisher's Number" >+ liblibrarian: "Erroneous publisher's number" >+ libopac: "Erroneous publisher's number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -4093,7 +4438,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4111,7 +4456,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4129,7 +4474,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4137,8 +4482,8 @@ tables: > > - tagfield: "072" > tagsubfield: "c" >- liblibrarian: "Additional Codes Following Standard Number or Code" >- libopac: "Additional Codes Following Standard Number or Code" >+ liblibrarian: "Additional codes following standard number or code" >+ libopac: "Additional codes following standard number or code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -4147,7 +4492,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4165,7 +4510,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4183,7 +4528,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4219,7 +4564,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4227,8 +4572,8 @@ tables: > > - tagfield: "073" > tagsubfield: "c" >- liblibrarian: "Additional Codes Following Standard Number or Code" >- libopac: "Additional Codes Following Standard Number or Code" >+ liblibrarian: "Additional codes following standard number or code" >+ libopac: "Additional codes following standard number or code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -4237,7 +4582,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4255,7 +4600,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4273,7 +4618,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4284,7 +4629,7 @@ tables: > liblibrarian: "General Processing Data" > libopac: "General Processing Data" > repeatable: 0 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" >@@ -4317,17 +4662,17 @@ tables: > > - tagfield: "101" > tagsubfield: "b" >- liblibrarian: "Language of Intermediate Text When Item is Not Translated from Original" >- libopac: "Language of Intermediate Text When Item is Not Translated from Original" >+ liblibrarian: "Language of Intermediate Text when Item is Not Translated from Original" >+ libopac: "Language of Intermediate Text when Item is Not Translated from Original" > repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: LANG > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4341,11 +4686,11 @@ tables: > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: LANG > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4359,11 +4704,11 @@ tables: > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: LANG > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4377,11 +4722,11 @@ tables: > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: LANG > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4389,17 +4734,17 @@ tables: > > - tagfield: "101" > tagsubfield: "f" >- liblibrarian: "Language of Title Page If Different from Text" >- libopac: "Language of Title Page If Different from Text" >+ liblibrarian: "Language of Title Page if Different from Text" >+ libopac: "Language of Title Page if Different from Text" > repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: LANG > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4407,17 +4752,17 @@ tables: > > - tagfield: "101" > tagsubfield: "g" >- liblibrarian: "Language of Title Proper If Not First Language of Text, Soundtrack, etc." >- libopac: "Language of Title Proper If Not First Language of Text, Soundtrack, etc." >+ liblibrarian: "Language of Title Proper if Not First Language of Text, Soundtrack, etc." >+ libopac: "Language of Title Proper if Not First Language of Text, Soundtrack, etc." > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: LANG > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4431,11 +4776,11 @@ tables: > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: LANG > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4443,17 +4788,17 @@ tables: > > - tagfield: "101" > tagsubfield: "i" >- liblibrarian: "Language of Accompanying Material (Other than Summaries, Abstracts or Librettos)" >- libopac: "Language of Accompanying Material (Other than Summaries, Abstracts or Librettos)" >+ liblibrarian: "Language of Accompanying Material" >+ libopac: "Language of Accompanying Material" > repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: LANG > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4467,11 +4812,29 @@ tables: > mandatory: 0 > kohafield: "" > tab: 1 >+ authorised_value: LANG >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "102" >+ tagsubfield: "2" >+ liblibrarian: "Source of non-ISO code" >+ libopac: "Source of non-ISO code" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 1 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4479,10 +4842,10 @@ tables: > > - tagfield: "102" > tagsubfield: "a" >- liblibrarian: "Country of Publication" >- libopac: "Country of Publication" >+ liblibrarian: "Country of publication" >+ libopac: "Country of publication" > repeatable: 1 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: COUNTRY >@@ -4497,8 +4860,8 @@ tables: > > - tagfield: "102" > tagsubfield: "b" >- liblibrarian: "Locality of Publication" >- libopac: "Locality of Publication" >+ liblibrarian: "Locality (non-ISO)" >+ libopac: "Locality (non-ISO)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -4507,7 +4870,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "102" >+ tagsubfield: "c" >+ liblibrarian: "Locality (ISO)" >+ libopac: "Locality (ISO)" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 1 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4518,12 +4899,12 @@ tables: > liblibrarian: "Monograph Coded Data" > libopac: "Monograph Coded Data" > repeatable: 0 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_105.pl > isurl: 0 > hidden: 0 > frameworkcode: "" >@@ -4533,17 +4914,17 @@ tables: > > - tagfield: "106" > tagsubfield: "a" >- liblibrarian: "Textual Material Coded Data Physical Medium Designator" >- libopac: "Textual Material Coded Data Physical Medium Designator" >+ liblibrarian: "Form of resource: Coded Data: Medium Designator" >+ libopac: "Form of resource: Coded Data: Medium Designator" > repeatable: 0 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_106.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4551,17 +4932,17 @@ tables: > > - tagfield: "110" > tagsubfield: "a" >- liblibrarian: "Continuing Resource Coded Data" >- libopac: "Continuing Resource Coded Data" >+ liblibrarian: "Continuing resource Coded Data" >+ libopac: "Continuing resource Coded Data" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_110.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4572,14 +4953,14 @@ tables: > liblibrarian: "Coded Data - General" > libopac: "Coded Data - General" > repeatable: 0 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_115a.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4595,9 +4976,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_115b.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4607,15 +4988,15 @@ tables: > tagsubfield: "a" > liblibrarian: "Coded Data for Graphics" > libopac: "Coded Data for Graphics" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_116.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4626,14 +5007,14 @@ tables: > liblibrarian: "Coded Data for Three-Dimensional Artefacts and Realia" > libopac: "Coded Data for Three-Dimensional Artefacts and Realia" > repeatable: 0 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_117.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4644,14 +5025,14 @@ tables: > liblibrarian: "Cartographic Material Coded Data (General)" > libopac: "Cartographic Material Coded Data (General)" > repeatable: 0 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_120.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4659,17 +5040,17 @@ tables: > > - tagfield: "121" > tagsubfield: "a" >- liblibrarian: "Cartographic Material Coded Data: Physical Attributes (General)" >- libopac: "Cartographic Material Coded Data: Physical Attributes (General)" >+ liblibrarian: "Cartographic Material Coded Data: Physical attributes (General)" >+ libopac: "Cartographic Material Coded Data: Physical attributes (General)" > repeatable: 0 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_121a.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4685,9 +5066,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_121b.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4695,17 +5076,17 @@ tables: > > - tagfield: "122" > tagsubfield: "a" >- liblibrarian: "Time Period, 9999 B.C. to Present" >- libopac: "Time Period, 9999 B.C. to Present" >- repeatable: 1 >- mandatory: 0 >+ liblibrarian: "Time period, 9999 B.C. to present" >+ libopac: "Time period, 9999 B.C. to present" >+ repeatable: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_122.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4721,9 +5102,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_123a.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -4741,7 +5122,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4759,7 +5140,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4767,17 +5148,17 @@ tables: > > - tagfield: "123" > tagsubfield: "d" >- liblibrarian: "Coordinates - Westernmost Longitude" >- libopac: "Coordinates - Westernmost Longitude" >+ liblibrarian: "Co-ordinates - Westernmost Longitude" >+ libopac: "Co-ordinates - Westernmost Longitude" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_123d.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4785,17 +5166,17 @@ tables: > > - tagfield: "123" > tagsubfield: "e" >- liblibrarian: "Coordinates - Easternmost Longitude" >- libopac: "Coordinates - Easternmost Longitude" >+ liblibrarian: "Co-ordinates - Easternmost Longitude" >+ libopac: "Co-ordinates - Easternmost Longitude" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_123e.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4803,17 +5184,17 @@ tables: > > - tagfield: "123" > tagsubfield: "f" >- liblibrarian: "Coordinates - Northernmost Latitude" >- libopac: "Coordinates - Northernmost Latitude" >+ liblibrarian: "Co-ordinates - Northernmost Latitude" >+ libopac: "Co-ordinates - Northernmost Latitude" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_123f.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4821,17 +5202,17 @@ tables: > > - tagfield: "123" > tagsubfield: "g" >- liblibrarian: "Coordinates - Southernmost Latitude" >- libopac: "Coordinates - Southernmost Latitude" >+ liblibrarian: "Co-ordinates - Southernmost Latitude" >+ libopac: "Co-ordinates - Southernmost Latitude" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_123g.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4849,7 +5230,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4865,9 +5246,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_123i.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4883,9 +5264,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_123j.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4893,8 +5274,8 @@ tables: > > - tagfield: "123" > tagsubfield: "k" >- liblibrarian: "Right Ascension - Eastern Limits" >- libopac: "Right Ascension - Eastern Limits" >+ liblibrarian: "Right ascension - Eastern Limits" >+ libopac: "Right ascension - Eastern Limits" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -4903,7 +5284,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4911,8 +5292,8 @@ tables: > > - tagfield: "123" > tagsubfield: "m" >- liblibrarian: "Right Ascension - Western Limits" >- libopac: "Right Ascension - Western Limits" >+ liblibrarian: "Right ascension - Western Limits" >+ libopac: "Right ascension - Western Limits" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -4921,7 +5302,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4939,7 +5320,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4957,7 +5338,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4975,7 +5356,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -4991,9 +5372,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_124a.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5009,9 +5390,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_124b.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5027,9 +5408,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_124c.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5045,9 +5426,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_124d.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5063,9 +5444,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_124e.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5081,9 +5462,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_124f.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5099,9 +5480,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_124g.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5117,9 +5498,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_125a.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5135,9 +5516,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_125b.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5155,7 +5536,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5165,15 +5546,15 @@ tables: > tagsubfield: "a" > liblibrarian: "Sound Recording Coded Data (General)" > libopac: "Sound Recording Coded Data (General)" >- repeatable: 0 >- mandatory: 0 >+ repeatable: 1 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_126a.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5189,9 +5570,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_126b.pl > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5202,14 +5583,14 @@ tables: > liblibrarian: "Duration" > libopac: "Duration" > repeatable: 1 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5225,45 +5606,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_128a.pl > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "128" >- tagsubfield: "b" >- liblibrarian: "Instruments or Voices for Ensembles [Obsolete]" >- libopac: "Instruments or Voices for Ensembles [Obsolete]" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 1 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "128" >- tagsubfield: "c" >- liblibrarian: "Instruments or Voices for Soloists [Obsolete]" >- libopac: "Instruments or Voices for Soloists [Obsolete]" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 1 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5271,8 +5616,8 @@ tables: > > - tagfield: "128" > tagsubfield: "d" >- liblibrarian: "Key or Mode of Musical Work" >- libopac: "Key or Mode of Musical Work" >+ liblibrarian: "Key or mode of Musical Work" >+ libopac: "Key or mode of Musical Work" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -5281,7 +5626,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5292,14 +5637,14 @@ tables: > liblibrarian: "Microform Coded Data Physical Attributes" > libopac: "Microform Coded Data Physical Attributes" > repeatable: 0 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_130.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5317,7 +5662,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5335,7 +5680,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5353,7 +5698,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5371,7 +5716,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5389,7 +5734,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5407,7 +5752,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5425,7 +5770,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5443,7 +5788,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5461,7 +5806,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5479,7 +5824,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5497,7 +5842,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5515,7 +5860,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5531,9 +5876,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_135a.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5549,9 +5894,9 @@ tables: > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_140.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5562,14 +5907,14 @@ tables: > liblibrarian: "Institution and Copy to Which the Field Applies" > libopac: "Institution and Copy to Which the Field Applies" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5577,17 +5922,17 @@ tables: > > - tagfield: "141" > tagsubfield: "a" >- liblibrarian: "Coded Data - Copy Specific Attributes" >- libopac: "Coded Data - Copy Specific Attributes" >+ liblibrarian: "Coded data - Copy specific attributes" >+ libopac: "Coded data - Copy specific attributes" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_141.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5595,8 +5940,8 @@ tables: > > - tagfield: "141" > tagsubfield: "b" >- liblibrarian: "Binding Specific Characteristics" >- libopac: "Binding Specific Characteristics" >+ liblibrarian: "Binding specific characteristics" >+ libopac: "Binding specific characteristics" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -5605,7 +5950,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5623,7 +5968,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5631,8 +5976,8 @@ tables: > > - tagfield: "141" > tagsubfield: "d" >- liblibrarian: "Binding State of Preservation Code - Specific" >- libopac: "Binding State of Preservation Code - Specific" >+ liblibrarian: "Binding State of Preservation code - specific" >+ libopac: "Binding State of Preservation code - specific" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -5641,7 +5986,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5659,7 +6004,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5667,8 +6012,8 @@ tables: > > - tagfield: "141" > tagsubfield: "f" >- liblibrarian: "Body of the Book State of Preservation Code - Specific" >- libopac: "Body of the Book State of Preservation Code - Specific" >+ liblibrarian: "Body of the Book State of Preservation Code - specific" >+ libopac: "Body of the Book State of Preservation Code - specific" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -5677,7 +6022,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5695,7 +6040,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -5705,7 +6050,7 @@ tables: > tagsubfield: "b" > liblibrarian: "Instrument/Voice, Conductor, Other Performer or Device" > libopac: "Instrument/Voice, Conductor, Other Performer or Device" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 >@@ -5713,7 +6058,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5723,7 +6068,7 @@ tables: > tagsubfield: "c" > liblibrarian: "Type of Ensemble" > libopac: "Type of Ensemble" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 >@@ -5731,7 +6076,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5741,7 +6086,7 @@ tables: > tagsubfield: "d" > liblibrarian: "Group within Larger Ensemble" > libopac: "Group within Larger Ensemble" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 >@@ -5749,7 +6094,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5759,7 +6104,7 @@ tables: > tagsubfield: "e" > liblibrarian: "Number of Parts" > libopac: "Number of Parts" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 >@@ -5767,7 +6112,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5777,7 +6122,7 @@ tables: > tagsubfield: "f" > liblibrarian: "Number of Players" > libopac: "Number of Players" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 >@@ -5785,7 +6130,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5793,17 +6138,17 @@ tables: > > - tagfield: "146" > tagsubfield: "a" >- liblibrarian: "Type of Performance Medium" >- libopac: "Type of Performance Medium" >+ liblibrarian: "Type of performance medium" >+ libopac: "Type of performance medium" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: 146a > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5821,7 +6166,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5829,8 +6174,8 @@ tables: > > - tagfield: "146" > tagsubfield: "c" >- liblibrarian: "Instrument or Voice Non-Soloist, Conductor, Other Performer or Device" >- libopac: "Instrument or Voice Non-Soloist, Conductor, Other Performer or Device" >+ liblibrarian: "Instrument or Voice Non-soloist, Conductor, Other Performer or Device, Not Included in an Ensemble" >+ libopac: "Instrument or Voice Non-soloist, Conductor, Other Performer or Device, Not Included in an Ensemble" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -5839,7 +6184,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5857,7 +6202,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5865,8 +6210,8 @@ tables: > > - tagfield: "146" > tagsubfield: "e" >- liblibrarian: "Instrument or Voice Non-Soloist, Conductor, Other Performer or Device, Included in an Ensemble" >- libopac: "Instrument or Voice Non-Soloist, Conductor, Other Performer or Device, Included in an Ensemble" >+ liblibrarian: "Instrument or Voice Non-soloist, Conductor, Other Performer or Device, Included in an Ensemble" >+ libopac: "Instrument or Voice Non-soloist, Conductor, Other Performer or Device, Included in an Ensemble" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -5875,7 +6220,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5893,7 +6238,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5911,7 +6256,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5929,7 +6274,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5938,7 +6283,7 @@ tables: > - tagfield: "181" > tagsubfield: "2" > liblibrarian: "System code" >- libopac: "" >+ libopac: "System code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -5947,7 +6292,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5956,7 +6301,7 @@ tables: > - tagfield: "181" > tagsubfield: "6" > liblibrarian: "Interfield Linking Data" >- libopac: "" >+ libopac: "Interfield Linking Data" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -5965,7 +6310,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -5974,12 +6319,12 @@ tables: > - tagfield: "181" > tagsubfield: "a" > liblibrarian: "ISBD Content form Code" >- libopac: "" >- repeatable: 0 >+ libopac: "ISBD Content form Code" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: 181a > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -5992,7 +6337,7 @@ tables: > - tagfield: "181" > tagsubfield: "b" > liblibrarian: "ISBD Content Qualification Code" >- libopac: "" >+ libopac: "ISBD Content Qualification Code" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -6001,7 +6346,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6010,12 +6355,12 @@ tables: > - tagfield: "181" > tagsubfield: "c" > liblibrarian: "Other Coding for Content Form" >- libopac: "" >+ libopac: "Other Coding for Content Form" > repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: unimarc_181c >+ authorised_value: 181c > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -6028,7 +6373,7 @@ tables: > - tagfield: "182" > tagsubfield: "2" > liblibrarian: "System code" >- libopac: "" >+ libopac: "System code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6037,7 +6382,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6046,7 +6391,7 @@ tables: > - tagfield: "182" > tagsubfield: "6" > liblibrarian: "Interfield Linking Data" >- libopac: "" >+ libopac: "Interfield Linking Data" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -6055,7 +6400,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6064,12 +6409,12 @@ tables: > - tagfield: "182" > tagsubfield: "a" > liblibrarian: "ISBD Media Type Code" >- libopac: "" >+ libopac: "ISBD Media Type Code" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: unimarc_182a >+ authorised_value: 182a > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -6082,12 +6427,12 @@ tables: > - tagfield: "182" > tagsubfield: "c" > liblibrarian: "Other Coding for Media Type" >- libopac: "" >+ libopac: "Other Coding for Media Type" > repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: unimarc_182c >+ authorised_value: 182c > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -6109,7 +6454,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6127,7 +6472,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6159,7 +6504,7 @@ tables: > mandatory: 0 > kohafield: "" > tab: 1 >- authorised_value: "" >+ authorised_value: 183a > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -6170,9 +6515,9 @@ tables: > defaultvalue: > > - tagfield: "200" >- tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ tagsubfield: "2" >+ liblibrarian: "Source" >+ libopac: "Source" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6181,7 +6526,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6192,7 +6537,7 @@ tables: > liblibrarian: "Title Proper" > libopac: "Title Proper" > repeatable: 1 >- mandatory: 0 >+ mandatory: 1 > kohafield: biblio.title > tab: 2 > authorised_value: "" >@@ -6211,7 +6556,7 @@ tables: > libopac: "General Material Designation" > repeatable: 1 > mandatory: 0 >- kohafield: "" >+ kohafield: biblio.medium > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -6265,7 +6610,7 @@ tables: > libopac: "Other Title Information" > repeatable: 1 > mandatory: 0 >- kohafield: "" >+ kohafield: biblio.subtitle > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -6319,7 +6664,7 @@ tables: > libopac: "Number of a Part" > repeatable: 1 > mandatory: 0 >- kohafield: "" >+ kohafield: biblio.part_number > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -6337,7 +6682,7 @@ tables: > libopac: "Name of a Part" > repeatable: 1 > mandatory: 0 >- kohafield: "" >+ kohafield: biblio.part_name > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -6351,8 +6696,8 @@ tables: > > - tagfield: "200" > tagsubfield: "j" >- liblibrarian: "Inclusive Dates" >- libopac: "Inclusive Dates" >+ liblibrarian: "Inclusive dates" >+ libopac: "Inclusive dates" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6361,7 +6706,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6369,8 +6714,8 @@ tables: > > - tagfield: "200" > tagsubfield: "k" >- liblibrarian: "Bulk Dates" >- libopac: "Bulk Dates" >+ liblibrarian: "Bulk dates" >+ libopac: "Bulk dates" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6379,7 +6724,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6387,8 +6732,8 @@ tables: > > - tagfield: "200" > tagsubfield: "r" >- liblibrarian: "Title Page Information Following the Title Proper" >- libopac: "Title Page Information Following the Title Proper" >+ liblibrarian: "Title page information following the title proper (for older monographic publications)" >+ libopac: "Title page information following the title proper (for older monographic publications)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6397,7 +6742,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6415,7 +6760,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -8 > frameworkcode: "" > seealso: "" > link: "" >@@ -6433,7 +6778,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -8 > frameworkcode: "" > seealso: "" > link: "" >@@ -6469,7 +6814,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6479,25 +6824,7 @@ tables: > tagsubfield: "c" > liblibrarian: "Media type" > libopac: "Media type" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 2 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "204" >- tagsubfield: "a" >- liblibrarian: "GMD" >- libopac: "GMD" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 2 >@@ -6505,7 +6832,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6541,7 +6868,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6559,7 +6886,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6577,7 +6904,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6595,7 +6922,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6621,9 +6948,9 @@ tables: > > - tagfield: "206" > tagsubfield: "b" >- liblibrarian: "Statement of Scale" >- libopac: "Statement of Scale" >- repeatable: 0 >+ liblibrarian: "Statement of scale" >+ libopac: "Statement of scale" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 2 >@@ -6631,7 +6958,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -6639,8 +6966,8 @@ tables: > > - tagfield: "206" > tagsubfield: "c" >- liblibrarian: "Statement of Projection" >- libopac: "Statement of Projection" >+ liblibrarian: "Statement of projection" >+ libopac: "Statement of projection" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6649,7 +6976,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -6657,8 +6984,8 @@ tables: > > - tagfield: "206" > tagsubfield: "d" >- liblibrarian: "Statement of Coordinates" >- libopac: "Statement of Coordinates" >+ liblibrarian: "Statement of coordinates" >+ libopac: "Statement of coordinates" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6667,7 +6994,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -6675,8 +7002,8 @@ tables: > > - tagfield: "206" > tagsubfield: "e" >- liblibrarian: "Right Ascension and Declination" >- libopac: "Right Ascension and Declination" >+ liblibrarian: "Right ascension and declination" >+ libopac: "Right ascension and declination" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6685,7 +7012,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -6693,8 +7020,8 @@ tables: > > - tagfield: "206" > tagsubfield: "f" >- liblibrarian: "Statement of Equinox" >- libopac: "Statement of Equinox" >+ liblibrarian: "Statement of equinox" >+ libopac: "Statement of equinox" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6703,7 +7030,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -6775,7 +7102,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6787,7 +7114,7 @@ tables: > libopac: "Place of Publication, Distribution, etc." > repeatable: 1 > mandatory: 0 >- kohafield: "" >+ kohafield: biblioitems.place > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -6811,7 +7138,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6827,7 +7154,7 @@ tables: > tab: 2 > authorised_value: "" > authtypecode: "" >- value_builder: unimarc_field_210c.pl >+ value_builder: unimarc_field_210c_bis.pl > isurl: 0 > hidden: 0 > frameworkcode: "" >@@ -6865,7 +7192,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6883,7 +7210,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6901,7 +7228,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6919,7 +7246,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6927,8 +7254,8 @@ tables: > > - tagfield: "210" > tagsubfield: "r" >- liblibrarian: "Printing and/or Publishing Information Transcribed as Found in the Main Source of Information" >- libopac: "Printing and/or Publishing Information Transcribed as Found in the Main Source of Information" >+ liblibrarian: "Printing and/or publishing information transcribed as found in the main source of information" >+ libopac: "Printing and/or publishing information transcribed as found in the main source of information" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6937,7 +7264,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6945,8 +7272,8 @@ tables: > > - tagfield: "210" > tagsubfield: "s" >- liblibrarian: "Printing and/or Publishing Information Transcribed as Found in the Colophon" >- libopac: "Printing and/or Publishing Information Transcribed as Found in the Colophon" >+ liblibrarian: "Printing and/or publishing information transcribed as found in the colophon" >+ libopac: "Printing and/or publishing information transcribed as found in the colophon" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -6955,7 +7282,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -6981,11 +7308,11 @@ tables: > > - tagfield: "214" > tagsubfield: "a" >- liblibrarian: "Place of publication, Production, Distribution or Manufacture" >- libopac: "Place of publication, Production, Distribution or Manufacture" >+ liblibrarian: "Place of Publication, Production, Distribution or Manufacture" >+ libopac: "Place of Publication, Production, Distribution or Manufacture" > repeatable: 1 > mandatory: 0 >- kohafield: "" >+ kohafield: biblioitems.place > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -7021,7 +7348,7 @@ tables: > libopac: "Name of Publisher, Producer, Distributor or Manufacturer" > repeatable: 1 > mandatory: 0 >- kohafield: "" >+ kohafield: biblioitems.publishercode > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -7037,9 +7364,9 @@ tables: > tagsubfield: "d" > liblibrarian: "Date of Publication, Production, Distribution or Manufacture or Copyright Notice" > libopac: "Date of Publication, Production, Distribution or Manufacture or Copyright Notice" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 >- kohafield: "" >+ kohafield: biblioitems.publicationyear > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -7055,7 +7382,7 @@ tables: > tagsubfield: "r" > liblibrarian: "Printing and/or Publishing Information Transcribed as Found in the Main Source of Information" > libopac: "Printing and/or Publishing Information Transcribed as Found in the Main Source of Information" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 2 >@@ -7073,7 +7400,7 @@ tables: > tagsubfield: "s" > liblibrarian: "Printing and/or Publishing Information Transcribed as Found in the Colophon" > libopac: "Printing and/or Publishing Information Transcribed as Found in the Colophon" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 2 >@@ -7108,7 +7435,7 @@ tables: > - tagfield: "215" > tagsubfield: "b" > liblibrarian: "Materials and Technique display" >- libopac: "" >+ libopac: "Materials and Technique display" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -7129,7 +7456,7 @@ tables: > libopac: "Other Physical Details" > repeatable: 0 > mandatory: 0 >- kohafield: "" >+ kohafield: biblioitems.illus > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -7177,17 +7504,35 @@ tables: > link: "" > defaultvalue: > >+ - tagfield: "225" >+ tagsubfield: "2" >+ liblibrarian: "Source" >+ libopac: "Source" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 2 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ > - tagfield: "225" > tagsubfield: "a" > liblibrarian: "Series Title" > libopac: "Series Title" > repeatable: 0 > mandatory: 0 >- kohafield: biblio.seriestitle >+ kohafield: biblioitems.collectiontitle > tab: 2 > authorised_value: "" > authtypecode: "" >- value_builder: unimarc_field_225a.pl >+ value_builder: unimarc_field_225a_bis.pl > isurl: 0 > hidden: 0 > frameworkcode: "" >@@ -7207,7 +7552,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7225,7 +7570,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7237,13 +7582,13 @@ tables: > libopac: "Statement of Responsibility" > repeatable: 1 > mandatory: 0 >- kohafield: "" >+ kohafield: biblioitems.editionresponsibility > tab: 2 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7261,7 +7606,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7279,7 +7624,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7291,7 +7636,7 @@ tables: > libopac: "Volume Designation" > repeatable: 1 > mandatory: 0 >- kohafield: biblioitems.volume >+ kohafield: biblioitems.collectionvolume > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -7309,7 +7654,7 @@ tables: > libopac: "ISSN of Series" > repeatable: 1 > mandatory: 0 >- kohafield: "" >+ kohafield: biblioitems.collectionissn > tab: 2 > authorised_value: "" > authtypecode: "" >@@ -7333,7 +7678,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7341,8 +7686,8 @@ tables: > > - tagfield: "230" > tagsubfield: "a" >- liblibrarian: "Designation and Extent of File" >- libopac: "Designation and Extent of File" >+ liblibrarian: "Designation and extent of file" >+ libopac: "Designation and extent of file" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -7353,7 +7698,7 @@ tables: > isurl: 0 > hidden: 0 > frameworkcode: "" >- seealso: "" >+ seealso: > link: "" > defaultvalue: > >@@ -7361,7 +7706,7 @@ tables: > tagsubfield: "2" > liblibrarian: "Source" > libopac: "Source" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 2 >@@ -7369,7 +7714,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7379,7 +7724,7 @@ tables: > tagsubfield: "6" > liblibrarian: "Interfield linking data" > libopac: "Interfield linking data" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 2 >@@ -7387,7 +7732,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7405,7 +7750,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7423,7 +7768,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7441,7 +7786,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7459,7 +7804,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7477,7 +7822,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7495,7 +7840,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7513,7 +7858,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7531,7 +7876,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7549,7 +7894,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7567,7 +7912,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7585,7 +7930,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7595,7 +7940,7 @@ tables: > tagsubfield: "2" > liblibrarian: "System code" > libopac: "System code" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 2 >@@ -7603,7 +7948,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7621,7 +7966,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7639,7 +7984,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7657,7 +8002,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7677,7 +8022,7 @@ tables: > isurl: 0 > hidden: 0 > frameworkcode: "" >- seealso: "" >+ seealso: "'330a', '339a'" > link: "" > defaultvalue: > >@@ -7693,7 +8038,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7711,7 +8056,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7729,7 +8074,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7747,7 +8092,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7765,7 +8110,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7783,7 +8128,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7801,7 +8146,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7819,7 +8164,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7837,7 +8182,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7855,7 +8200,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7873,7 +8218,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7891,7 +8236,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7909,7 +8254,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7927,7 +8272,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7935,8 +8280,8 @@ tables: > > - tagfield: "316" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -7945,7 +8290,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7963,7 +8308,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -7973,7 +8318,7 @@ tables: > tagsubfield: "a" > liblibrarian: "Text of Note" > libopac: "Text of Note" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 3 >@@ -7981,7 +8326,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -7989,8 +8334,8 @@ tables: > > - tagfield: "316" > tagsubfield: "u" >- liblibrarian: "Uniform Resource Identifier" >- libopac: "Uniform Resource Identifier" >+ liblibrarian: "Uniform Resource Identifier." >+ libopac: "Uniform Resource Identifier." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -7999,7 +8344,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8007,17 +8352,17 @@ tables: > > - tagfield: "317" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution to which the Field Applies" >+ libopac: "Institution to which the Field Applies" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8035,7 +8380,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8043,8 +8388,8 @@ tables: > > - tagfield: "317" > tagsubfield: "8" >- liblibrarian: "Materials Specified" >- libopac: "Materials Specified" >+ liblibrarian: "Materials specified" >+ libopac: "Materials specified" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8053,7 +8398,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8071,7 +8416,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -8079,8 +8424,8 @@ tables: > > - tagfield: "317" > tagsubfield: "u" >- liblibrarian: "Uniform Resource Identifier" >- libopac: "Uniform Resource Identifier" >+ liblibrarian: "Uniform Resource Identifier." >+ libopac: "Uniform Resource Identifier." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8089,7 +8434,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8097,9 +8442,9 @@ tables: > > - tagfield: "318" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >- repeatable: 0 >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 3 >@@ -8107,7 +8452,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8117,7 +8462,7 @@ tables: > tagsubfield: "a" > liblibrarian: "Action" > libopac: "Action" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 3 >@@ -8125,7 +8470,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -8143,7 +8488,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8161,7 +8506,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8179,7 +8524,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8197,7 +8542,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8205,8 +8550,8 @@ tables: > > - tagfield: "318" > tagsubfield: "f" >- liblibrarian: "Authorization" >- libopac: "Authorization" >+ liblibrarian: "Authorisation" >+ libopac: "Authorisation" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8215,7 +8560,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8233,7 +8578,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8241,8 +8586,8 @@ tables: > > - tagfield: "318" > tagsubfield: "i" >- liblibrarian: "Method of Action" >- libopac: "Method of Action" >+ liblibrarian: "Method of Action." >+ libopac: "Method of Action." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8251,7 +8596,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8269,7 +8614,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8287,7 +8632,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8305,7 +8650,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8323,7 +8668,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8341,7 +8686,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8349,8 +8694,8 @@ tables: > > - tagfield: "318" > tagsubfield: "p" >- liblibrarian: "Non-Public Note" >- libopac: "Non-Public Note" >+ liblibrarian: "Non-public Note" >+ libopac: "Non-public Note" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8359,7 +8704,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8377,7 +8722,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8385,9 +8730,9 @@ tables: > > - tagfield: "318" > tagsubfield: "u" >- liblibrarian: "Uniform Resource Identifier" >- libopac: "Uniform Resource Identifier" >- repeatable: 1 >+ liblibrarian: "Uniform Resource Identifier." >+ libopac: "Uniform Resource Identifier." >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 3 >@@ -8395,7 +8740,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8413,9 +8758,9 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" >- seealso: "" >+ seealso: > link: "" > defaultvalue: > >@@ -8423,7 +8768,7 @@ tables: > tagsubfield: "u" > liblibrarian: "Uniform Resource Identifier" > libopac: "Uniform Resource Identifier" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 3 >@@ -8431,7 +8776,43 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "321" >+ tagsubfield: "5" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 3 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "321" >+ tagsubfield: "6" >+ liblibrarian: "Interfield Linking Data" >+ libopac: "Interfield Linking Data" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 3 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8439,8 +8820,8 @@ tables: > > - tagfield: "321" > tagsubfield: "a" >- liblibrarian: "Indexes, Abstracts, References Note" >- libopac: "Indexes, Abstracts, References Note" >+ liblibrarian: "Name of source" >+ libopac: "Name of source" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8449,7 +8830,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -8467,7 +8848,43 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "321" >+ tagsubfield: "c" >+ liblibrarian: "Location within source" >+ libopac: "Location within source" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 3 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "321" >+ tagsubfield: "u" >+ liblibrarian: "Uniform Resource Identifier (URI)" >+ libopac: "Uniform Resource Identifier (URI)" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 3 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8475,8 +8892,8 @@ tables: > > - tagfield: "321" > tagsubfield: "x" >- liblibrarian: "International Standard Serial Number (ISSN)" >- libopac: "International Standard Serial Number (ISSN)" >+ liblibrarian: "International Standard Number" >+ libopac: "International Standard Number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8485,7 +8902,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8503,7 +8920,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -8521,7 +8938,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -8539,7 +8956,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -8547,8 +8964,8 @@ tables: > > - tagfield: "325" > tagsubfield: "a" >- liblibrarian: "Text of Note" >- libopac: "Text of Note" >+ liblibrarian: "Text of Unstructured Note" >+ libopac: "Text of Unstructured Note" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8566,7 +8983,7 @@ tables: > - tagfield: "325" > tagsubfield: "b" > liblibrarian: "Type of reproduction" >- libopac: "" >+ libopac: "Type of reproduction" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8575,7 +8992,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8584,7 +9001,7 @@ tables: > - tagfield: "325" > tagsubfield: "c" > liblibrarian: "Place of reproduction" >- libopac: "" >+ libopac: "Place of reproduction" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8593,7 +9010,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8602,7 +9019,7 @@ tables: > - tagfield: "325" > tagsubfield: "d" > liblibrarian: "Agency Responsible for the Reproduction" >- libopac: "" >+ libopac: "Agency Responsible for the Reproduction" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8611,7 +9028,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8620,7 +9037,7 @@ tables: > - tagfield: "325" > tagsubfield: "e" > liblibrarian: "Date of publication for the reproduction" >- libopac: "" >+ libopac: "Date of publication for the reproduction" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8629,7 +9046,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8638,7 +9055,7 @@ tables: > - tagfield: "325" > tagsubfield: "f" > liblibrarian: "Physical description of the reproduction" >- libopac: "" >+ libopac: "Physical description of the reproduction" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8647,7 +9064,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8656,7 +9073,7 @@ tables: > - tagfield: "325" > tagsubfield: "g" > liblibrarian: "Series statement for the reproduction" >- libopac: "" >+ libopac: "Series statement for the reproduction" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8665,7 +9082,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8673,17 +9090,17 @@ tables: > > - tagfield: "325" > tagsubfield: "h" >- liblibrarian: "completeness of the reproduction code" >- libopac: "" >+ liblibrarian: "Completeness of the reproduction code" >+ libopac: "Completeness of the reproduction code" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 3 >- authorised_value: unimarc_325h >+ authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8692,7 +9109,7 @@ tables: > - tagfield: "325" > tagsubfield: "i" > liblibrarian: "Coverage of the reproduction" >- libopac: "" >+ libopac: "Coverage of the reproduction" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8701,7 +9118,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8710,7 +9127,7 @@ tables: > - tagfield: "325" > tagsubfield: "j" > liblibrarian: "Terms of access to the reproduction" >- libopac: "" >+ libopac: "Terms of access to the reproduction" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8719,7 +9136,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8728,7 +9145,7 @@ tables: > - tagfield: "325" > tagsubfield: "n" > liblibrarian: "Note About Reproduction" >- libopac: "" >+ libopac: "Note About Reproduction" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8737,7 +9154,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8746,7 +9163,7 @@ tables: > - tagfield: "325" > tagsubfield: "u" > liblibrarian: "URL of the reproduction" >- libopac: "" >+ libopac: "URL of the reproduction" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8754,8 +9171,8 @@ tables: > authorised_value: "" > authtypecode: "" > value_builder: "" >- isurl: 1 >- hidden: 0 >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8764,7 +9181,7 @@ tables: > - tagfield: "325" > tagsubfield: "v" > liblibrarian: "Date of consultation" >- libopac: "" >+ libopac: "Date of consultation" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8773,7 +9190,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8782,7 +9199,7 @@ tables: > - tagfield: "325" > tagsubfield: "x" > liblibrarian: "ISSN of the reproduction" >- libopac: "" >+ libopac: "ISSN of the reproduction" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8791,7 +9208,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8800,8 +9217,8 @@ tables: > - tagfield: "325" > tagsubfield: "y" > liblibrarian: "ISBN of the reproduction" >- libopac: "" >- repeatable: 1 >+ libopac: "ISBN of the reproduction" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 3 >@@ -8809,7 +9226,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8818,7 +9235,7 @@ tables: > - tagfield: "325" > tagsubfield: "z" > liblibrarian: "Date when the URL in $u was found to be invalid" >- libopac: "" >+ libopac: "Date when the URL in $u was found to be invalid" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -8827,7 +9244,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8845,9 +9262,9 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" >- seealso: "" >+ seealso: > link: "" > defaultvalue: > >@@ -8863,9 +9280,9 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" >- seealso: "" >+ seealso: > link: "" > defaultvalue: > >@@ -8881,7 +9298,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -8889,8 +9306,8 @@ tables: > > - tagfield: "327" > tagsubfield: "b" >- liblibrarian: "Title of Level 1 Subdivision" >- libopac: "Title of Level 1 Subdivision" >+ liblibrarian: "Title of level 1 subdivision" >+ libopac: "Title of level 1 subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8899,7 +9316,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8907,8 +9324,8 @@ tables: > > - tagfield: "327" > tagsubfield: "c" >- liblibrarian: "Title of Level 2 Subdivision" >- libopac: "Title of Level 2 Subdivision" >+ liblibrarian: "Title of level 2 subdivision" >+ libopac: "Title of level 2 subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8917,7 +9334,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8925,8 +9342,8 @@ tables: > > - tagfield: "327" > tagsubfield: "d" >- liblibrarian: "Title of Level 3 Subdivision" >- libopac: "Title of Level 3 Subdivision" >+ liblibrarian: "Title of level 3 subdivision" >+ libopac: "Title of level 3 subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8935,7 +9352,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8943,8 +9360,8 @@ tables: > > - tagfield: "327" > tagsubfield: "e" >- liblibrarian: "Title of Level 4 Subdivision" >- libopac: "Title of Level 4 Subdivision" >+ liblibrarian: "Title of level 4 subdivision" >+ libopac: "Title of level 4 subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8953,7 +9370,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8961,8 +9378,8 @@ tables: > > - tagfield: "327" > tagsubfield: "f" >- liblibrarian: "Title of Level 5 Subdivision" >- libopac: "Title of Level 5 Subdivision" >+ liblibrarian: "Title of level 5 subdivision" >+ libopac: "Title of level 5 subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8971,7 +9388,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8979,8 +9396,8 @@ tables: > > - tagfield: "327" > tagsubfield: "g" >- liblibrarian: "Title of Level 6 Subdivision" >- libopac: "Title of Level 6 Subdivision" >+ liblibrarian: "Title of level 6 subdivision" >+ libopac: "Title of level 6 subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -8989,7 +9406,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -8997,8 +9414,8 @@ tables: > > - tagfield: "327" > tagsubfield: "h" >- liblibrarian: "Title of Level 7 Subdivision" >- libopac: "Title of Level 7 Subdivision" >+ liblibrarian: "Title of level 7 subdivision" >+ libopac: "Title of level 7 subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9007,7 +9424,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9015,8 +9432,8 @@ tables: > > - tagfield: "327" > tagsubfield: "i" >- liblibrarian: "Title of Level 8 Subdivision" >- libopac: "Title of Level 8 Subdivision" >+ liblibrarian: "Title of level 8 subdivision" >+ libopac: "Title of level 8 subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9025,7 +9442,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9033,8 +9450,8 @@ tables: > > - tagfield: "327" > tagsubfield: "p" >- liblibrarian: "Sequence of Pages or First Page of a Subdivision" >- libopac: "Sequence of Pages or First Page of a Subdivision" >+ liblibrarian: "Sequence of pages or first page of a subdivision" >+ libopac: "Sequence of pages or first page of a subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9043,7 +9460,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9051,8 +9468,8 @@ tables: > > - tagfield: "327" > tagsubfield: "u" >- liblibrarian: "Uniform Resource Identifier (Uri)" >- libopac: "Uniform Resource Identifier (Uri)" >+ liblibrarian: "Uniform Resource Identifier (URI)" >+ libopac: "Uniform Resource Identifier (URI)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9061,7 +9478,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9069,8 +9486,8 @@ tables: > > - tagfield: "327" > tagsubfield: "z" >- liblibrarian: "Other Information Concerning a Subdivision" >- libopac: "Other Information Concerning a Subdivision" >+ liblibrarian: "Other information concerning a subdivision" >+ libopac: "Other information concerning a subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9079,7 +9496,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9097,7 +9514,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -9105,8 +9522,8 @@ tables: > > - tagfield: "328" > tagsubfield: "b" >- liblibrarian: "Dissertation or Thesis Details and Type of Degree" >- libopac: "Dissertation or Thesis Details and Type of Degree" >+ liblibrarian: "Dissertation or thesis details and type of degree" >+ libopac: "Dissertation or thesis details and type of degree" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9115,7 +9532,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9123,8 +9540,8 @@ tables: > > - tagfield: "328" > tagsubfield: "c" >- liblibrarian: "Discipline of Degree" >- libopac: "Discipline of Degree" >+ liblibrarian: "Discipline of degree" >+ libopac: "Discipline of degree" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9133,7 +9550,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9141,8 +9558,8 @@ tables: > > - tagfield: "328" > tagsubfield: "d" >- liblibrarian: "Date of Degree" >- libopac: "Date of Degree" >+ liblibrarian: "Date of degree" >+ libopac: "Date of degree" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9151,7 +9568,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9159,8 +9576,8 @@ tables: > > - tagfield: "328" > tagsubfield: "e" >- liblibrarian: "Body Granting the Degree" >- libopac: "Body Granting the Degree" >+ liblibrarian: "Body granting the degree" >+ libopac: "Body granting the degree" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9169,7 +9586,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9177,8 +9594,8 @@ tables: > > - tagfield: "328" > tagsubfield: "t" >- liblibrarian: "Title of Other Edition of Dissertation or Thesis" >- libopac: "Title of Other Edition of Dissertation or Thesis" >+ liblibrarian: "Title of other edition of dissertation or thesis" >+ libopac: "Title of other edition of dissertation or thesis" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9187,7 +9604,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9195,8 +9612,8 @@ tables: > > - tagfield: "328" > tagsubfield: "z" >- liblibrarian: "Text Preceding or Following the Note" >- libopac: "Text Preceding or Following the Note" >+ liblibrarian: "Text preceding or following the note" >+ libopac: "Text preceding or following the note" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9205,7 +9622,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9223,7 +9640,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -9241,7 +9658,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -9253,13 +9670,13 @@ tables: > libopac: "Text of Note" > repeatable: 0 > mandatory: 0 >- kohafield: "" >+ kohafield: biblioitems.agerestriction > tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -9267,8 +9684,8 @@ tables: > > - tagfield: "334" > tagsubfield: "a" >- liblibrarian: "Text of Awards Note" >- libopac: "Text of Awards Note" >+ liblibrarian: "Text of awards note" >+ libopac: "Text of awards note" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9277,7 +9694,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -9285,8 +9702,8 @@ tables: > > - tagfield: "334" > tagsubfield: "b" >- liblibrarian: "Name of Award" >- libopac: "Name of Award" >+ liblibrarian: "Name of award" >+ libopac: "Name of award" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9295,7 +9712,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9303,8 +9720,8 @@ tables: > > - tagfield: "334" > tagsubfield: "c" >- liblibrarian: "Year of Award" >- libopac: "Year of Award" >+ liblibrarian: "Year of award" >+ libopac: "Year of award" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9313,7 +9730,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9321,8 +9738,8 @@ tables: > > - tagfield: "334" > tagsubfield: "d" >- liblibrarian: "Country of Award" >- libopac: "Country of Award" >+ liblibrarian: "Country of award" >+ libopac: "Country of award" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9331,7 +9748,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9339,8 +9756,8 @@ tables: > > - tagfield: "334" > tagsubfield: "u" >- liblibrarian: "Uniform Resource Identifier (Uri)" >- libopac: "Uniform Resource Identifier (Uri)" >+ liblibrarian: "Uniform Resource Identifier (URI)" >+ libopac: "Uniform Resource Identifier (URI)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9349,7 +9766,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9357,8 +9774,8 @@ tables: > > - tagfield: "335" > tagsubfield: "8" >- liblibrarian: "Materials Specified" >- libopac: "Materials Specified" >+ liblibrarian: "Materials specified" >+ libopac: "Materials specified" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9367,7 +9784,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9385,7 +9802,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9395,7 +9812,7 @@ tables: > tagsubfield: "b" > liblibrarian: "Address" > libopac: "Address" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 3 >@@ -9403,7 +9820,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9421,7 +9838,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9429,9 +9846,9 @@ tables: > > - tagfield: "335" > tagsubfield: "g" >- liblibrarian: "Control Number" >- libopac: "Control Number" >- repeatable: 1 >+ liblibrarian: "Control number" >+ libopac: "Control number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 3 >@@ -9439,7 +9856,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9447,8 +9864,8 @@ tables: > > - tagfield: "335" > tagsubfield: "u" >- liblibrarian: "Uniform Resource Identifier (Uri)" >- libopac: "Uniform Resource Identifier (Uri)" >+ liblibrarian: "Uniform Resource Identifier (URI)" >+ libopac: "Uniform Resource Identifier (URI)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9457,7 +9874,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9475,7 +9892,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -9493,7 +9910,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -9501,8 +9918,8 @@ tables: > > - tagfield: "337" > tagsubfield: "u" >- liblibrarian: "Uniform Resource Identifier (Uri)" >- libopac: "Uniform Resource Identifier (Uri)" >+ liblibrarian: "Uniform Resource Identifier (URI)" >+ libopac: "Uniform Resource Identifier (URI)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9511,7 +9928,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9529,7 +9946,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9547,7 +9964,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9565,7 +9982,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9583,7 +10000,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9601,7 +10018,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9619,7 +10036,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9637,7 +10054,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9655,7 +10072,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -9673,7 +10090,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9691,7 +10108,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9709,7 +10126,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9717,8 +10134,8 @@ tables: > > - tagfield: "345" > tagsubfield: "u" >- liblibrarian: "Uniform Resource Identifier (Uri)" >- libopac: "Uniform Resource Identifier (Uri)" >+ liblibrarian: "Uniform Resource Identifier (URI)" >+ libopac: "Uniform Resource Identifier (URI)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -9727,16 +10144,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "371" >- tagsubfield: "a" >- liblibrarian: "Terms Governing Use and Reproduction" >- libopac: "Terms Governing Use and Reproduction" >+ tagsubfield: "8" >+ liblibrarian: "Materials specified" >+ libopac: "Materials specified" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9745,16 +10162,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "371" >- tagsubfield: "b" >- liblibrarian: "Jurisdiction" >- libopac: "Jurisdiction" >+ tagsubfield: "a" >+ liblibrarian: "Terms governing access, use and reproduction" >+ libopac: "Terms governing access, use and reproduction" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9763,16 +10180,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "371" >- tagsubfield: "c" >- liblibrarian: "Authorization" >- libopac: "Authorization" >+ tagsubfield: "b" >+ liblibrarian: "Jurisdiction" >+ libopac: "Jurisdiction" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9781,16 +10198,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "371" >- tagsubfield: "d" >- liblibrarian: "Authorized Users" >- libopac: "Authorized Users" >+ tagsubfield: "c" >+ liblibrarian: "Authorization" >+ libopac: "Authorization" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9799,16 +10216,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "371" >- tagsubfield: "z" >- liblibrarian: "Materials Specified" >- libopac: "Materials Specified" >+ tagsubfield: "d" >+ liblibrarian: "Authorized users" >+ libopac: "Authorized users" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -9817,7 +10234,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -9830,684 +10247,864 @@ tables: > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >+ - tagfield: "411" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "3" >- liblibrarian: "Authority Record Number" >- libopac: "Authority Record Number" >- repeatable: 1 >+ - tagfield: "412" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ - tagfield: "413" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "9" >- liblibrarian: "Koha number" >- libopac: "" >+ - tagfield: "421" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: "" >+ defaultvalue: > >- - tagfield: "410" >- tagsubfield: "a" >- liblibrarian: "Author" >- libopac: "Author" >+ - tagfield: "422" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "b" >- liblibrarian: "General Material Designation" >- libopac: "General Material Designation" >+ - tagfield: "423" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "c" >- liblibrarian: "Place of Publication" >- libopac: "Place of Publication" >- repeatable: 1 >+ - tagfield: "424" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "d" >- liblibrarian: "Date of Publication" >- libopac: "Date of Publication" >+ - tagfield: "425" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "e" >- liblibrarian: "Edition Statement" >- libopac: "Edition Statement" >+ - tagfield: "430" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "f" >- liblibrarian: "First Statement of Responsibility" >- libopac: "First Statement of Responsibility" >- repeatable: 1 >+ - tagfield: "431" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "g" >- liblibrarian: "Subsequent Statement of Responsibility" >- libopac: "Subsequent Statement of Responsibility" >- repeatable: 1 >+ - tagfield: "432" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "h" >- liblibrarian: "Number of Section or Part" >- libopac: "Number of Section or Part" >- repeatable: 1 >+ - tagfield: "433" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "i" >- liblibrarian: "Name of Section or Part" >- libopac: "Name of Section or Part" >- repeatable: 1 >+ - tagfield: "434" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >- repeatable: 1 >+ - tagfield: "435" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "m" >- liblibrarian: "International Standard Music Number" >- libopac: "International Standard Music Number" >- repeatable: 1 >+ - tagfield: "436" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "n" >- liblibrarian: "Name of Publisher, Distributor, etc." >- libopac: "Name of Publisher, Distributor, etc." >- repeatable: 1 >+ - tagfield: "437" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >- repeatable: 1 >+ - tagfield: "440" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ - tagfield: "441" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >- repeatable: 1 >+ - tagfield: "442" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >- repeatable: 1 >+ - tagfield: "443" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >- repeatable: 1 >+ - tagfield: "444" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "t" >- liblibrarian: "Title" >- libopac: "Title" >+ - tagfield: "445" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "u" >- liblibrarian: "Uniform Resource Locator" >- libopac: "Uniform Resource Locator" >+ - tagfield: "446" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "v" >- liblibrarian: "Volume Number" >- libopac: "Volume Number" >+ - tagfield: "447" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "x" >- liblibrarian: "International Standard Serial Number" >- libopac: "International Standard Serial Number" >- repeatable: 1 >+ - tagfield: "448" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "y" >- liblibrarian: "International Standard Book Number" >- libopac: "International Standard Book Number" >- repeatable: 1 >+ - tagfield: "451" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "410" >- tagsubfield: "z" >- liblibrarian: "CODEN" >- libopac: "CODEN" >+ - tagfield: "452" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "453" > tagsubfield: "0" > liblibrarian: "Bibliographic Record Identifier" > libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >+ - tagfield: "454" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >- tagsubfield: "3" >- liblibrarian: "Authority Record Number" >- libopac: "Authority Record Number" >- repeatable: 1 >+ - tagfield: "455" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >- tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ - tagfield: "456" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >- tagsubfield: "9" >- liblibrarian: "Koha number" >- libopac: "" >+ - tagfield: "461" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: "" >+ defaultvalue: > >- - tagfield: "411" >- tagsubfield: "a" >- liblibrarian: "Author" >- libopac: "Author" >+ - tagfield: "462" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >- tagsubfield: "b" >- liblibrarian: "General Material Designation" >- libopac: "General Material Designation" >+ - tagfield: "463" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >- tagsubfield: "c" >- liblibrarian: "Place of Publication" >- libopac: "Place of Publication" >- repeatable: 1 >+ - tagfield: "464" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >- tagsubfield: "d" >- liblibrarian: "Date of Publication" >- libopac: "Date of Publication" >+ - tagfield: "470" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >- tagsubfield: "e" >- liblibrarian: "Edition Statement" >- libopac: "Edition Statement" >+ - tagfield: "481" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 4 >+ tab: 3 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "482" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 3 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "488" >+ tagsubfield: "0" >+ liblibrarian: "Bibliographic Record Identifier" >+ libopac: "Bibliographic Record Identifier" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 3 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "410" >+ tagsubfield: "3" >+ liblibrarian: "Authority Record Number" >+ libopac: "Authority Record Number" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 4 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "410" >+ tagsubfield: "5" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 4 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "410" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 4 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: 1 >+ frameworkcode: "" >+ seealso: "" >+ link: Local-number >+ defaultvalue: "" >+ >+ - tagfield: "410" >+ tagsubfield: "a" >+ liblibrarian: "Author" >+ libopac: "Author" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 4 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "410" >+ tagsubfield: "b" >+ liblibrarian: "General Material Designation" >+ libopac: "General Material Designation" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 4 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "410" >+ tagsubfield: "c" >+ liblibrarian: "Place of Publication" >+ libopac: "Place of Publication" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 4 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "410" >+ tagsubfield: "d" >+ liblibrarian: "Date of Publication" >+ libopac: "Date of Publication" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 4 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "410" >+ tagsubfield: "e" >+ liblibrarian: "Edition Statement" >+ libopac: "Edition Statement" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 4 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "410" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -10519,13 +11116,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -10537,13 +11134,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -10555,13 +11152,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -10573,16 +11170,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -10591,13 +11188,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -10609,13 +11206,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -10627,16 +11224,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -10645,16 +11242,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -10663,16 +11260,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -10681,16 +11278,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -10699,16 +11296,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -10717,31 +11314,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -10753,13 +11350,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -10771,13 +11368,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -10789,13 +11386,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -10807,13 +11404,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "411" >+ - tagfield: "410" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -10825,49 +11422,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "412" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "412" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -10879,16 +11440,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -10897,16 +11458,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -10915,13 +11476,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >+ link: Local-number > defaultvalue: "" > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -10933,13 +11494,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -10951,13 +11512,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -10969,13 +11530,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -10987,13 +11548,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -11005,13 +11566,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -11023,13 +11584,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -11041,13 +11602,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -11059,13 +11620,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -11077,16 +11638,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -11095,13 +11656,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -11113,13 +11674,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -11131,16 +11692,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -11149,16 +11710,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -11167,16 +11728,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -11185,16 +11746,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -11203,16 +11764,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -11221,31 +11782,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -11257,13 +11818,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -11275,13 +11836,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -11293,13 +11854,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -11311,13 +11872,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "412" >+ - tagfield: "411" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -11329,49 +11890,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "413" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "413" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -11383,16 +11908,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -11401,16 +11926,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -11419,13 +11944,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >+ link: Local-number > defaultvalue: "" > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -11437,13 +11962,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -11455,13 +11980,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -11473,13 +11998,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -11491,13 +12016,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -11509,13 +12034,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -11527,13 +12052,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -11545,13 +12070,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -11563,13 +12088,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -11581,16 +12106,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -11599,13 +12124,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -11617,13 +12142,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -11635,16 +12160,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -11653,16 +12178,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -11671,16 +12196,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -11689,16 +12214,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -11707,16 +12232,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -11725,31 +12250,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -11761,13 +12286,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -11779,13 +12304,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -11797,13 +12322,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -11815,13 +12340,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "413" >+ - tagfield: "412" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -11833,49 +12358,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "421" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "421" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -11887,16 +12376,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -11905,16 +12394,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -11923,13 +12412,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >+ link: Local-number > defaultvalue: "" > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -11941,13 +12430,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -11959,13 +12448,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -11977,13 +12466,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -11995,13 +12484,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -12013,13 +12502,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -12031,13 +12520,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -12049,13 +12538,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -12067,13 +12556,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -12085,16 +12574,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -12103,13 +12592,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -12121,13 +12610,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -12139,16 +12628,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -12157,16 +12646,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -12175,16 +12664,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -12193,16 +12682,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -12211,16 +12700,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -12229,31 +12718,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -12265,13 +12754,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -12283,13 +12772,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -12301,13 +12790,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -12319,13 +12808,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "421" >+ - tagfield: "413" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -12337,49 +12826,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "422" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "422" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -12391,16 +12844,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -12409,16 +12862,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -12427,13 +12880,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >+ link: Local-number > defaultvalue: "" > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -12445,13 +12898,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -12463,13 +12916,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -12481,13 +12934,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -12499,13 +12952,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -12517,13 +12970,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -12535,13 +12988,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -12553,13 +13006,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -12571,13 +13024,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -12589,16 +13042,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -12607,13 +13060,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -12625,13 +13078,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -12643,16 +13096,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -12661,16 +13114,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -12679,16 +13132,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -12697,16 +13150,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -12715,16 +13168,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -12733,31 +13186,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -12769,13 +13222,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -12787,13 +13240,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -12805,13 +13258,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -12823,13 +13276,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "422" >+ - tagfield: "421" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -12841,49 +13294,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "423" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "423" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -12895,16 +13312,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -12913,16 +13330,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -12931,13 +13348,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >+ link: Local-number > defaultvalue: "" > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -12949,13 +13366,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -12967,13 +13384,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -12985,13 +13402,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -13003,13 +13420,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -13021,13 +13438,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -13039,13 +13456,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -13057,13 +13474,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -13075,13 +13492,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -13093,16 +13510,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -13111,13 +13528,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -13129,13 +13546,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -13147,16 +13564,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -13165,16 +13582,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -13183,16 +13600,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -13201,16 +13618,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -13219,16 +13636,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -13237,31 +13654,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -13273,13 +13690,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -13291,13 +13708,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -13309,13 +13726,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -13327,13 +13744,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "423" >+ - tagfield: "422" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -13345,17 +13762,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >+ - tagfield: "423" >+ tagsubfield: "3" >+ liblibrarian: "Authority Record Number" >+ libopac: "Authority Record Number" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 4 >@@ -13363,17 +13780,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >+ - tagfield: "423" >+ tagsubfield: "5" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 4 >@@ -13381,52 +13798,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >- tagsubfield: "3" >- liblibrarian: "Authority Record Number" >- libopac: "Authority Record Number" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "424" >- tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -13435,13 +13816,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >+ link: Local-number > defaultvalue: "" > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -13453,13 +13834,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -13471,13 +13852,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -13489,13 +13870,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -13507,13 +13888,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -13525,13 +13906,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -13543,13 +13924,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -13561,13 +13942,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -13579,13 +13960,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -13597,16 +13978,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -13615,13 +13996,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -13633,13 +14014,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -13651,16 +14032,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -13669,16 +14050,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -13687,16 +14068,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -13705,16 +14086,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -13723,16 +14104,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -13741,31 +14122,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -13777,13 +14158,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -13795,13 +14176,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -13813,13 +14194,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -13831,13 +14212,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "424" >+ - tagfield: "423" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -13849,49 +14230,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "425" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "425" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -13903,16 +14248,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -13921,16 +14266,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -13939,13 +14284,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -13957,13 +14302,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -13975,13 +14320,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -13993,13 +14338,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -14011,13 +14356,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -14029,13 +14374,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -14047,13 +14392,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -14065,13 +14410,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -14083,13 +14428,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -14101,16 +14446,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -14119,13 +14464,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -14137,13 +14482,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -14155,16 +14500,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -14173,16 +14518,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -14191,16 +14536,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -14209,16 +14554,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -14227,16 +14572,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -14245,31 +14590,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -14281,13 +14626,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -14299,13 +14644,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -14317,13 +14662,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -14335,13 +14680,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "425" >+ - tagfield: "424" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -14353,49 +14698,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "430" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "430" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -14407,16 +14716,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -14425,16 +14734,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -14443,13 +14752,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: 1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -14461,13 +14770,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -14479,13 +14788,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -14497,13 +14806,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -14515,13 +14824,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -14533,13 +14842,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -14551,13 +14860,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -14569,13 +14878,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -14587,13 +14896,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -14605,16 +14914,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -14623,13 +14932,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -14641,13 +14950,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -14659,16 +14968,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -14677,16 +14986,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -14695,16 +15004,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -14713,16 +15022,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -14731,16 +15040,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -14749,31 +15058,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: -2 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -14785,13 +15094,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -14803,13 +15112,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -14821,13 +15130,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -14839,13 +15148,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "430" >+ - tagfield: "425" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -14857,49 +15166,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "431" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "431" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -14911,16 +15184,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -14929,16 +15202,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -14947,13 +15220,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -14965,13 +15238,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -14983,13 +15256,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -15001,13 +15274,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -15019,13 +15292,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -15037,13 +15310,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -15055,13 +15328,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -15073,13 +15346,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -15091,13 +15364,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -15109,16 +15382,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -15127,13 +15400,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -15145,13 +15418,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -15163,16 +15436,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -15181,16 +15454,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -15199,16 +15472,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -15217,16 +15490,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -15235,16 +15508,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -15253,31 +15526,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -15289,13 +15562,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -15307,13 +15580,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -15325,13 +15598,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -15343,13 +15616,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "431" >+ - tagfield: "430" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -15361,49 +15634,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "432" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "432" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -15415,16 +15652,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -15433,16 +15670,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -15451,13 +15688,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: 1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -15469,13 +15706,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -15487,13 +15724,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -15505,13 +15742,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -15523,13 +15760,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -15541,13 +15778,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -15559,13 +15796,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -15577,13 +15814,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -15595,13 +15832,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -15613,16 +15850,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -15631,13 +15868,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -15649,13 +15886,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -15667,16 +15904,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -15685,16 +15922,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -15703,16 +15940,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -15721,16 +15958,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -15739,16 +15976,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -15757,31 +15994,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -15793,13 +16030,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -15811,13 +16048,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -15829,13 +16066,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -15847,13 +16084,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "432" >+ - tagfield: "431" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -15865,49 +16102,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "433" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "433" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -15919,16 +16120,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -15937,16 +16138,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -15955,13 +16156,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -15973,13 +16174,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -15991,13 +16192,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -16009,13 +16210,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -16027,13 +16228,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -16045,13 +16246,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -16063,13 +16264,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -16081,13 +16282,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -16099,13 +16300,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -16117,16 +16318,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -16135,13 +16336,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -16153,13 +16354,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -16171,16 +16372,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -16189,16 +16390,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -16207,16 +16408,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -16225,16 +16426,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -16243,16 +16444,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -16261,31 +16462,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -16297,13 +16498,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -16315,13 +16516,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -16333,13 +16534,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -16351,13 +16552,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "433" >+ - tagfield: "432" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -16369,49 +16570,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "434" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "434" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -16423,16 +16588,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -16441,16 +16606,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -16459,13 +16624,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -16477,13 +16642,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -16495,13 +16660,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -16513,13 +16678,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -16531,13 +16696,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -16549,13 +16714,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -16567,13 +16732,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -16585,13 +16750,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -16603,13 +16768,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -16621,16 +16786,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -16639,13 +16804,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -16657,13 +16822,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -16675,16 +16840,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -16693,16 +16858,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -16711,16 +16876,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -16729,16 +16894,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -16747,16 +16912,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -16765,31 +16930,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -16801,13 +16966,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -16819,13 +16984,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -16837,13 +17002,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -16855,13 +17020,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "434" >+ - tagfield: "433" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -16873,49 +17038,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "435" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "435" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -16927,16 +17056,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -16945,16 +17074,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -16963,13 +17092,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -16981,13 +17110,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -16999,13 +17128,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -17017,13 +17146,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -17035,13 +17164,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -17053,13 +17182,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -17071,13 +17200,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -17089,13 +17218,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -17107,13 +17236,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -17125,16 +17254,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -17143,13 +17272,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -17161,13 +17290,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -17179,16 +17308,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -17197,16 +17326,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -17215,16 +17344,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -17233,16 +17362,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -17251,16 +17380,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -17269,31 +17398,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -17305,13 +17434,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -17323,13 +17452,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -17341,13 +17470,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -17359,13 +17488,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "435" >+ - tagfield: "434" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -17377,49 +17506,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "436" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "436" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -17431,16 +17524,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -17449,16 +17542,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -17467,13 +17560,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -17485,13 +17578,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -17503,13 +17596,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -17521,13 +17614,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -17539,13 +17632,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -17557,13 +17650,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -17575,13 +17668,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -17593,13 +17686,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -17611,13 +17704,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -17629,16 +17722,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -17647,13 +17740,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -17665,13 +17758,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -17683,16 +17776,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -17701,16 +17794,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -17719,16 +17812,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -17737,16 +17830,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -17755,16 +17848,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -17773,31 +17866,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -17809,13 +17902,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -17827,13 +17920,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -17845,13 +17938,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -17863,13 +17956,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "436" >+ - tagfield: "435" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -17881,49 +17974,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "437" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "437" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -17935,16 +17992,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -17953,16 +18010,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -17971,13 +18028,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -17989,13 +18046,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -18007,13 +18064,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -18025,13 +18082,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -18043,13 +18100,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -18061,13 +18118,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -18079,13 +18136,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -18097,13 +18154,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -18115,13 +18172,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -18133,16 +18190,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -18151,13 +18208,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -18169,13 +18226,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -18187,16 +18244,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -18205,16 +18262,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -18223,16 +18280,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -18241,16 +18298,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -18259,16 +18316,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -18277,31 +18334,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -18313,13 +18370,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -18331,13 +18388,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -18349,13 +18406,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -18367,13 +18424,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "437" >+ - tagfield: "436" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -18385,17 +18442,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >+ - tagfield: "437" >+ tagsubfield: "3" >+ liblibrarian: "Authority Record Number" >+ libopac: "Authority Record Number" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 4 >@@ -18403,17 +18460,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >+ - tagfield: "437" >+ tagsubfield: "5" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 4 >@@ -18421,17 +18478,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >- tagsubfield: "3" >- liblibrarian: "Authority Record Number" >- libopac: "Authority Record Number" >- repeatable: 1 >+ - tagfield: "437" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 4 >@@ -18439,16 +18496,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: Local-number > defaultvalue: > >- - tagfield: "440" >- tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ - tagfield: "437" >+ tagsubfield: "a" >+ liblibrarian: "Author" >+ libopac: "Author" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -18457,16 +18514,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >- tagsubfield: "9" >- liblibrarian: "Koha number" >- libopac: "" >+ - tagfield: "437" >+ tagsubfield: "b" >+ liblibrarian: "General Material Designation" >+ libopac: "General Material Designation" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -18475,49 +18532,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: 001@ >- defaultvalue: "" >- >- - tagfield: "440" >- tagsubfield: "a" >- liblibrarian: "Author" >- libopac: "Author" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "440" >- tagsubfield: "b" >- liblibrarian: "General Material Designation" >- libopac: "General Material Designation" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -18529,13 +18550,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -18547,13 +18568,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -18565,13 +18586,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -18583,13 +18604,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -18601,13 +18622,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -18619,13 +18640,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -18637,16 +18658,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -18655,13 +18676,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -18673,13 +18694,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -18691,16 +18712,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -18709,16 +18730,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -18727,16 +18748,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -18745,16 +18766,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -18763,16 +18784,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -18781,31 +18802,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -18817,13 +18838,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -18835,13 +18856,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -18853,13 +18874,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -18871,13 +18892,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "440" >+ - tagfield: "437" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -18889,49 +18910,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "441" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "441" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -18943,16 +18928,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -18961,16 +18946,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -18979,13 +18964,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -18997,13 +18982,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -19015,13 +19000,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -19033,13 +19018,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -19051,13 +19036,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -19069,13 +19054,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -19087,13 +19072,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -19105,13 +19090,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -19123,13 +19108,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -19141,16 +19126,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -19159,13 +19144,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -19177,13 +19162,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -19195,16 +19180,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -19213,16 +19198,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -19231,16 +19216,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -19249,16 +19234,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -19267,16 +19252,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -19285,31 +19270,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -19321,13 +19306,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -19339,13 +19324,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -19357,13 +19342,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -19375,13 +19360,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "441" >+ - tagfield: "440" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -19393,49 +19378,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "442" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "442" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -19447,16 +19396,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -19465,16 +19414,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -19483,13 +19432,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -19501,13 +19450,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -19519,13 +19468,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -19537,13 +19486,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -19555,13 +19504,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -19573,13 +19522,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -19591,13 +19540,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -19609,13 +19558,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -19627,13 +19576,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -19645,16 +19594,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -19663,13 +19612,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -19681,13 +19630,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -19699,16 +19648,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -19717,16 +19666,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -19735,16 +19684,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -19753,16 +19702,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -19771,16 +19720,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -19789,31 +19738,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -19825,13 +19774,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -19843,13 +19792,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -19861,13 +19810,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -19879,13 +19828,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "442" >+ - tagfield: "441" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -19897,49 +19846,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "443" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "443" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -19951,16 +19864,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -19969,16 +19882,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -19987,13 +19900,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -20005,13 +19918,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -20023,13 +19936,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -20041,13 +19954,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -20059,13 +19972,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -20077,13 +19990,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -20095,13 +20008,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -20113,13 +20026,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -20131,13 +20044,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -20149,16 +20062,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -20167,13 +20080,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -20185,13 +20098,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -20203,16 +20116,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -20221,16 +20134,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -20239,16 +20152,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -20257,16 +20170,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -20275,16 +20188,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -20293,31 +20206,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -20329,13 +20242,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -20347,13 +20260,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -20365,13 +20278,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -20383,13 +20296,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "443" >+ - tagfield: "442" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -20401,49 +20314,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "444" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "444" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -20455,16 +20332,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -20473,16 +20350,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -20491,13 +20368,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -20509,13 +20386,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -20527,13 +20404,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -20545,13 +20422,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -20563,13 +20440,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -20581,13 +20458,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -20599,13 +20476,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -20617,13 +20494,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -20635,13 +20512,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -20653,16 +20530,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -20671,13 +20548,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -20689,13 +20566,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -20707,16 +20584,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -20725,16 +20602,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -20743,16 +20620,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -20761,16 +20638,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -20779,16 +20656,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -20797,31 +20674,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -20833,13 +20710,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -20851,13 +20728,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -20869,13 +20746,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -20887,13 +20764,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "444" >+ - tagfield: "443" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -20905,49 +20782,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "445" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "445" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -20959,16 +20800,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -20977,16 +20818,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -20995,13 +20836,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -21013,13 +20854,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -21031,13 +20872,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -21049,13 +20890,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -21067,13 +20908,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -21085,13 +20926,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -21103,13 +20944,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -21121,13 +20962,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -21139,13 +20980,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -21157,16 +20998,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -21175,13 +21016,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -21193,13 +21034,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -21211,16 +21052,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -21229,16 +21070,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -21247,16 +21088,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -21265,16 +21106,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -21283,16 +21124,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -21301,31 +21142,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -21337,13 +21178,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -21355,13 +21196,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -21373,13 +21214,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -21391,13 +21232,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "445" >+ - tagfield: "444" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -21409,49 +21250,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "446" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "446" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -21463,16 +21268,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -21481,16 +21286,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -21499,13 +21304,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -21517,13 +21322,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -21535,13 +21340,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -21553,13 +21358,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -21571,13 +21376,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -21589,13 +21394,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -21607,13 +21412,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -21625,13 +21430,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -21643,13 +21448,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -21661,16 +21466,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -21679,13 +21484,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -21697,13 +21502,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -21715,16 +21520,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -21733,16 +21538,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -21751,16 +21556,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -21769,16 +21574,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -21787,16 +21592,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -21805,31 +21610,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -21841,13 +21646,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -21859,13 +21664,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -21877,13 +21682,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -21895,13 +21700,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "446" >+ - tagfield: "445" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -21913,49 +21718,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "447" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "447" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -21967,16 +21736,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -21985,16 +21754,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -22003,13 +21772,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -22021,13 +21790,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -22039,13 +21808,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -22057,13 +21826,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -22075,13 +21844,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -22093,13 +21862,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -22111,13 +21880,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -22129,13 +21898,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -22147,13 +21916,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -22165,16 +21934,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -22183,13 +21952,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -22201,13 +21970,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -22219,16 +21988,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -22237,16 +22006,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -22255,16 +22024,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -22273,16 +22042,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -22291,16 +22060,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -22309,31 +22078,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -22345,13 +22114,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -22363,13 +22132,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -22381,13 +22150,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -22399,13 +22168,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "447" >+ - tagfield: "446" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -22417,49 +22186,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "448" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "448" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -22471,16 +22204,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -22489,16 +22222,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -22507,13 +22240,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -22525,13 +22258,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -22543,13 +22276,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -22561,13 +22294,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -22579,13 +22312,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -22597,13 +22330,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -22615,13 +22348,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -22633,13 +22366,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -22651,13 +22384,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -22669,16 +22402,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -22687,13 +22420,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -22705,13 +22438,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -22723,16 +22456,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -22741,16 +22474,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -22759,16 +22492,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -22777,16 +22510,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -22795,16 +22528,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -22813,31 +22546,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -22849,13 +22582,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -22867,13 +22600,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -22885,13 +22618,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -22903,13 +22636,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "448" >+ - tagfield: "447" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -22921,49 +22654,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "451" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "451" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -22975,16 +22672,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -22993,16 +22690,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -23011,13 +22708,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -23029,13 +22726,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -23047,13 +22744,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -23065,13 +22762,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -23083,13 +22780,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -23101,13 +22798,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -23119,13 +22816,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -23137,13 +22834,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -23155,13 +22852,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -23173,16 +22870,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -23191,13 +22888,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -23209,13 +22906,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -23227,16 +22924,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -23245,16 +22942,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -23263,16 +22960,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -23281,16 +22978,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -23299,16 +22996,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -23317,31 +23014,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -23353,13 +23050,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -23371,13 +23068,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -23389,13 +23086,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -23407,13 +23104,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "451" >+ - tagfield: "448" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -23425,49 +23122,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "452" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "452" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -23479,16 +23140,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -23497,16 +23158,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -23515,13 +23176,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -23533,13 +23194,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -23551,13 +23212,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -23569,13 +23230,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -23587,13 +23248,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -23605,13 +23266,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -23623,13 +23284,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -23641,13 +23302,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -23659,13 +23320,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -23677,16 +23338,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -23695,13 +23356,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -23713,13 +23374,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -23731,16 +23392,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -23749,16 +23410,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -23767,16 +23428,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -23785,16 +23446,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -23803,16 +23464,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -23821,31 +23482,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -23857,13 +23518,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -23875,13 +23536,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -23893,13 +23554,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -23911,13 +23572,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "452" >+ - tagfield: "451" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -23929,49 +23590,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "453" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "453" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -23983,16 +23608,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -24001,16 +23626,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -24019,13 +23644,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -24037,13 +23662,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -24055,13 +23680,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -24073,13 +23698,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -24091,13 +23716,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -24109,13 +23734,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -24127,13 +23752,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -24145,13 +23770,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -24163,13 +23788,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -24181,16 +23806,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -24199,13 +23824,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -24217,13 +23842,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -24235,16 +23860,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -24253,16 +23878,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -24271,16 +23896,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -24289,16 +23914,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -24307,16 +23932,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -24325,31 +23950,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -24361,13 +23986,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -24379,13 +24004,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -24397,13 +24022,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -24415,13 +24040,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "453" >+ - tagfield: "452" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -24433,49 +24058,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "454" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "454" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -24487,16 +24076,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -24505,16 +24094,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -24523,13 +24112,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -24541,13 +24130,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -24559,13 +24148,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -24577,13 +24166,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -24595,13 +24184,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -24613,13 +24202,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -24631,13 +24220,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -24649,13 +24238,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -24667,13 +24256,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -24685,16 +24274,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -24703,13 +24292,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -24721,13 +24310,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -24739,16 +24328,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -24757,16 +24346,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -24775,16 +24364,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -24793,16 +24382,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -24811,16 +24400,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -24829,31 +24418,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -24865,13 +24454,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -24883,13 +24472,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -24901,13 +24490,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -24919,13 +24508,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "454" >+ - tagfield: "453" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -24937,49 +24526,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "455" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "455" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -24991,16 +24544,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -25009,16 +24562,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -25027,13 +24580,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -25045,13 +24598,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -25063,13 +24616,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -25081,13 +24634,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -25099,13 +24652,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -25117,13 +24670,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -25135,13 +24688,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -25153,13 +24706,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -25171,13 +24724,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -25189,16 +24742,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -25207,13 +24760,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -25225,13 +24778,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -25243,16 +24796,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -25261,16 +24814,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -25279,16 +24832,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -25297,16 +24850,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -25315,16 +24868,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -25333,31 +24886,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -25369,13 +24922,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -25387,13 +24940,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -25405,13 +24958,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -25423,13 +24976,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "455" >+ - tagfield: "454" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -25441,49 +24994,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "456" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "456" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -25495,16 +25012,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -25513,16 +25030,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -25531,13 +25048,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -25549,13 +25066,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -25567,13 +25084,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -25585,13 +25102,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -25603,13 +25120,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -25621,13 +25138,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -25639,13 +25156,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -25657,13 +25174,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -25675,13 +25192,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -25693,16 +25210,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -25711,13 +25228,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -25729,13 +25246,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -25747,16 +25264,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -25765,16 +25282,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -25783,16 +25300,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -25801,16 +25318,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -25819,16 +25336,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -25837,31 +25354,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -25873,13 +25390,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -25891,13 +25408,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -25909,13 +25426,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -25927,13 +25444,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "456" >+ - tagfield: "455" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -25945,49 +25462,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "461" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "461" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -25999,16 +25480,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -26017,16 +25498,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -26035,13 +25516,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -26053,13 +25534,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -26071,13 +25552,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -26089,13 +25570,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -26107,13 +25588,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -26125,13 +25606,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -26143,13 +25624,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -26161,13 +25642,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -26179,13 +25660,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -26197,16 +25678,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -26215,13 +25696,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -26233,13 +25714,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -26251,16 +25732,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -26269,16 +25750,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -26287,16 +25768,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -26305,16 +25786,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -26323,16 +25804,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -26341,31 +25822,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -26377,13 +25858,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -26395,13 +25876,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -26413,13 +25894,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -26431,13 +25912,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "461" >+ - tagfield: "456" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -26449,49 +25930,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "462" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "462" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -26503,16 +25948,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -26521,16 +25966,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -26539,13 +25984,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -26557,13 +26002,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -26575,13 +26020,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -26593,13 +26038,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -26611,13 +26056,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -26629,13 +26074,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -26647,13 +26092,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -26665,13 +26110,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -26683,13 +26128,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -26701,16 +26146,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -26719,13 +26164,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -26737,13 +26182,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -26755,16 +26200,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -26773,16 +26218,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -26791,16 +26236,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -26809,16 +26254,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -26827,16 +26272,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -26845,31 +26290,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -26881,13 +26326,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -26899,13 +26344,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -26917,13 +26362,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -26935,13 +26380,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "462" >+ - tagfield: "461" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -26953,17 +26398,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >+ - tagfield: "462" >+ tagsubfield: "3" >+ liblibrarian: "Authority Record Number" >+ libopac: "Authority Record Number" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 4 >@@ -26971,17 +26416,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >+ - tagfield: "462" >+ tagsubfield: "5" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 4 >@@ -26989,17 +26434,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >- tagsubfield: "3" >- liblibrarian: "Authority Record Number" >- libopac: "Authority Record Number" >- repeatable: 1 >+ - tagfield: "462" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 4 >@@ -27007,49 +26452,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: Local-number > defaultvalue: > >- - tagfield: "463" >- tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "463" >- tagsubfield: "9" >- liblibrarian: "Koha number" >- libopac: "" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: 001@ >- defaultvalue: "" >- >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -27061,13 +26470,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -27079,13 +26488,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -27097,13 +26506,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -27115,13 +26524,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -27133,13 +26542,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -27151,13 +26560,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -27169,13 +26578,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -27187,13 +26596,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -27205,16 +26614,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -27223,13 +26632,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -27241,13 +26650,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -27259,16 +26668,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -27277,16 +26686,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -27295,16 +26704,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -27313,16 +26722,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -27331,16 +26740,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -27349,31 +26758,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -27385,13 +26794,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -27403,13 +26812,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -27421,13 +26830,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -27439,13 +26848,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "463" >+ - tagfield: "462" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -27457,49 +26866,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "464" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "464" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -27511,16 +26884,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -27529,16 +26902,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -27547,13 +26920,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -27565,13 +26938,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -27583,13 +26956,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -27601,13 +26974,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -27619,13 +26992,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -27637,13 +27010,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -27655,13 +27028,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -27673,13 +27046,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -27691,13 +27064,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -27709,16 +27082,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -27727,13 +27100,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -27745,13 +27118,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -27763,16 +27136,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -27781,16 +27154,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -27799,16 +27172,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -27817,16 +27190,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -27835,16 +27208,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -27853,31 +27226,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -27889,13 +27262,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -27907,13 +27280,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -27925,13 +27298,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -27943,13 +27316,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "464" >+ - tagfield: "463" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -27961,49 +27334,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "470" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "470" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -28015,16 +27352,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -28033,16 +27370,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -28051,13 +27388,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -28069,13 +27406,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -28087,13 +27424,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -28105,13 +27442,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -28123,13 +27460,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -28141,13 +27478,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -28159,13 +27496,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -28177,13 +27514,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -28195,13 +27532,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -28213,16 +27550,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -28231,13 +27568,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -28249,13 +27586,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -28267,16 +27604,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -28285,16 +27622,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -28303,16 +27640,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -28321,16 +27658,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -28339,16 +27676,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -28357,31 +27694,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -28393,13 +27730,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -28411,13 +27748,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -28429,13 +27766,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -28447,13 +27784,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "470" >+ - tagfield: "464" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -28465,49 +27802,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "481" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "481" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -28519,16 +27820,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -28537,16 +27838,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -28555,13 +27856,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -28573,13 +27874,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -28591,13 +27892,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -28609,13 +27910,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -28627,13 +27928,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -28645,13 +27946,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -28663,13 +27964,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -28681,13 +27982,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -28699,13 +28000,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -28717,16 +28018,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -28735,13 +28036,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -28753,13 +28054,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -28771,16 +28072,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -28789,16 +28090,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -28807,16 +28108,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -28825,16 +28126,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -28843,16 +28144,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -28861,31 +28162,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -28897,13 +28198,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -28915,13 +28216,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -28933,13 +28234,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -28951,13 +28252,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "481" >+ - tagfield: "470" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -28969,49 +28270,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "482" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "482" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -29023,16 +28288,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -29041,16 +28306,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -29059,13 +28324,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -29077,13 +28342,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -29095,13 +28360,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -29113,13 +28378,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -29131,13 +28396,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -29149,13 +28414,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -29167,13 +28432,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -29185,13 +28450,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -29203,13 +28468,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -29221,16 +28486,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -29239,13 +28504,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -29257,13 +28522,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -29275,16 +28540,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -29293,16 +28558,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -29311,16 +28576,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -29329,16 +28594,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -29347,16 +28612,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -29365,31 +28630,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -29401,13 +28666,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -29419,13 +28684,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -29437,13 +28702,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -29455,13 +28720,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "482" >+ - tagfield: "481" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -29473,49 +28738,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "488" >- tagsubfield: "0" >- liblibrarian: "Bibliographic Record Identifier" >- libopac: "Bibliographic Record Identifier" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "488" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 4 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >@@ -29527,16 +28756,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -29545,16 +28774,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -29563,13 +28792,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: 001@ >- defaultvalue: "" >+ link: Local-number >+ defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "a" > liblibrarian: "Author" > libopac: "Author" >@@ -29581,13 +28810,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "b" > liblibrarian: "General Material Designation" > libopac: "General Material Designation" >@@ -29599,13 +28828,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "c" > liblibrarian: "Place of Publication" > libopac: "Place of Publication" >@@ -29617,13 +28846,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "d" > liblibrarian: "Date of Publication" > libopac: "Date of Publication" >@@ -29635,13 +28864,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "e" > liblibrarian: "Edition Statement" > libopac: "Edition Statement" >@@ -29653,13 +28882,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "f" > liblibrarian: "First Statement of Responsibility" > libopac: "First Statement of Responsibility" >@@ -29671,13 +28900,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "g" > liblibrarian: "Subsequent Statement of Responsibility" > libopac: "Subsequent Statement of Responsibility" >@@ -29689,13 +28918,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "h" > liblibrarian: "Number of Section or Part" > libopac: "Number of Section or Part" >@@ -29707,13 +28936,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "i" > liblibrarian: "Name of Section or Part" > libopac: "Name of Section or Part" >@@ -29725,16 +28954,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "l" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -29743,13 +28972,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "m" > liblibrarian: "International Standard Music Number" > libopac: "International Standard Music Number" >@@ -29761,13 +28990,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "n" > liblibrarian: "Name of Publisher, Distributor, etc." > libopac: "Name of Publisher, Distributor, etc." >@@ -29779,16 +29008,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "o" >- liblibrarian: "Other Title Information." >- libopac: "Other Title Information." >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -29797,16 +29026,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "p" >- liblibrarian: "Physical Description" >- libopac: "Physical Description" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -29815,16 +29044,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "q" >- liblibrarian: "International Standard Identifier for a Work" >- libopac: "International Standard Identifier for a Work" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -29833,16 +29062,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "r" >- liblibrarian: "International Standard Identifier for an Expression" >- libopac: "International Standard Identifier for an Expression" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -29851,16 +29080,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "s" >- liblibrarian: "Series Statement" >- libopac: "Series Statement" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -29869,31 +29098,31 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "t" > liblibrarian: "Title" > libopac: "Title" >- repeatable: 0 >+ repeatable: 1 > mandatory: 1 > kohafield: "" > tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "u" > liblibrarian: "Uniform Resource Locator" > libopac: "Uniform Resource Locator" >@@ -29905,13 +29134,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "v" > liblibrarian: "Volume Number" > libopac: "Volume Number" >@@ -29923,13 +29152,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "x" > liblibrarian: "International Standard Serial Number" > libopac: "International Standard Serial Number" >@@ -29941,13 +29170,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "y" > liblibrarian: "International Standard Book Number" > libopac: "International Standard Book Number" >@@ -29959,13 +29188,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "488" >+ - tagfield: "482" > tagsubfield: "z" > liblibrarian: "CODEN" > libopac: "CODEN" >@@ -29977,664 +29206,484 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "2" >- liblibrarian: "System Code" >- libopac: "System Code" >- repeatable: 0 >+ - tagfield: "488" >+ tagsubfield: "3" >+ liblibrarian: "Authority Record Number" >+ libopac: "Authority Record Number" >+ repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "3" >- liblibrarian: "Authority Record Number" >- libopac: "Authority Record Number" >+ - tagfield: "488" >+ tagsubfield: "5" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "a" >- liblibrarian: "Preferred Access Point" >- libopac: "Preferred Access Point" >+ - tagfield: "488" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 >- kohafield: biblio.unititle >- tab: 5 >+ kohafield: "" >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: Local-number > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "b" >- liblibrarian: "General Material Designation" >- libopac: "General Material Designation" >- repeatable: 1 >+ - tagfield: "488" >+ tagsubfield: "a" >+ liblibrarian: "Author" >+ libopac: "Author" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "h" >- liblibrarian: "Number of Section or Part" >- libopac: "Number of Section or Part" >- repeatable: 1 >+ - tagfield: "488" >+ tagsubfield: "b" >+ liblibrarian: "General Material Designation" >+ libopac: "General Material Designation" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "i" >- liblibrarian: "Name of Section or Part" >- libopac: "Name of Section or Part" >+ - tagfield: "488" >+ tagsubfield: "c" >+ liblibrarian: "Place of Publication" >+ libopac: "Place of Publication" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "j" >- liblibrarian: "Form Subdivision" >- libopac: "Form Subdivision" >- repeatable: 1 >+ - tagfield: "488" >+ tagsubfield: "d" >+ liblibrarian: "Date of Publication" >+ libopac: "Date of Publication" >+ repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "k" >- liblibrarian: "Date of Publication" >- libopac: "Date of Publication" >+ - tagfield: "488" >+ tagsubfield: "e" >+ liblibrarian: "Edition Statement" >+ libopac: "Edition Statement" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "l" >- liblibrarian: "Form Subheading" >- libopac: "Form Subheading" >+ - tagfield: "488" >+ tagsubfield: "f" >+ liblibrarian: "First Statement of Responsibility" >+ libopac: "First Statement of Responsibility" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "m" >- liblibrarian: "Language (when Part of a Heading)" >- libopac: "Language (when Part of a Heading)" >- repeatable: 0 >+ - tagfield: "488" >+ tagsubfield: "g" >+ liblibrarian: "Subsequent Statement of Responsibility" >+ libopac: "Subsequent Statement of Responsibility" >+ repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >+ - tagfield: "488" >+ tagsubfield: "h" >+ liblibrarian: "Number of Section or Part" >+ libopac: "Number of Section or Part" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "q" >- liblibrarian: "Version (or Date of Version)" >- libopac: "Version (or Date of Version)" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "500" >- tagsubfield: "r" >- liblibrarian: "Medium of Performance (for Music)" >- libopac: "Medium of Performance (for Music)" >+ - tagfield: "488" >+ tagsubfield: "i" >+ liblibrarian: "Name of Section or Part" >+ libopac: "Name of Section or Part" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "s" >- liblibrarian: "Numeric Designation (for Music)" >- libopac: "Numeric Designation (for Music)" >+ - tagfield: "488" >+ tagsubfield: "l" >+ liblibrarian: "Parallel title" >+ libopac: "Parallel title" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "500" >- tagsubfield: "u" >- liblibrarian: "Key (for Music)" >- libopac: "Key (for Music)" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "500" >- tagsubfield: "v" >- liblibrarian: "Volume Designation" >- libopac: "Volume Designation" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "500" >- tagsubfield: "w" >- liblibrarian: "Additional Elements (for Music)" >- libopac: "Additional Elements (for Music)" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "x" >- liblibrarian: "Topical Subdivision" >- libopac: "Topical Subdivision" >+ - tagfield: "488" >+ tagsubfield: "m" >+ liblibrarian: "International Standard Music Number" >+ libopac: "International Standard Music Number" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "y" >- liblibrarian: "Geographical Subdivision" >- libopac: "Geographical Subdivision" >+ - tagfield: "488" >+ tagsubfield: "n" >+ liblibrarian: "Name of Publisher, Distributor, etc." >+ libopac: "Name of Publisher, Distributor, etc." > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "500" >- tagsubfield: "z" >- liblibrarian: "Chronological Subdivision" >- libopac: "Chronological Subdivision" >+ - tagfield: "488" >+ tagsubfield: "o" >+ liblibrarian: "Other title information." >+ libopac: "Other title information." > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "501" >- tagsubfield: "2" >- liblibrarian: "System Code" >- libopac: "System Code" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "501" >- tagsubfield: "3" >- liblibrarian: "Authority Record Number" >- libopac: "Authority Record Number" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "501" >- tagsubfield: "a" >- liblibrarian: "Collective Preferred Title" >- libopac: "Collective Preferred Title" >+ - tagfield: "488" >+ tagsubfield: "p" >+ liblibrarian: "Physical description" >+ libopac: "Physical description" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "501" >- tagsubfield: "b" >- liblibrarian: "General Material Designation" >- libopac: "General Material Designation" >+ - tagfield: "488" >+ tagsubfield: "q" >+ liblibrarian: "International standard identifier for a work" >+ libopac: "International standard identifier for a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "501" >- tagsubfield: "e" >- liblibrarian: "Collective Preferred Subtitle" >- libopac: "Collective Preferred Subtitle" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "501" >- tagsubfield: "j" >- liblibrarian: "Form Subdivision" >- libopac: "Form Subdivision" >+ - tagfield: "488" >+ tagsubfield: "r" >+ liblibrarian: "International standard identifier for an expression" >+ libopac: "International standard identifier for an expression" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "501" >- tagsubfield: "k" >- liblibrarian: "Date of Publication, etc." >- libopac: "Date of Publication, etc." >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "501" >- tagsubfield: "m" >- liblibrarian: "Language (when Part of Heading)" >- libopac: "Language (when Part of Heading)" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "501" >- tagsubfield: "r" >- liblibrarian: "Medium of Performance (for Music)" >- libopac: "Medium of Performance (for Music)" >+ - tagfield: "488" >+ tagsubfield: "s" >+ liblibrarian: "Series statement" >+ libopac: "Series statement" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "501" >- tagsubfield: "s" >- liblibrarian: "Numeric Designation (for Music)" >- libopac: "Numeric Designation (for Music)" >+ - tagfield: "488" >+ tagsubfield: "t" >+ liblibrarian: "Title" >+ libopac: "Title" > repeatable: 1 >- mandatory: 0 >+ mandatory: 1 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" >- value_builder: "" >+ value_builder: unimarc_field_4XX.pl > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "501" >+ - tagfield: "488" > tagsubfield: "u" >- liblibrarian: "Key (for Music)" >- libopac: "Key (for Music)" >+ liblibrarian: "Uniform Resource Locator" >+ libopac: "Uniform Resource Locator" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "501" >- tagsubfield: "w" >- liblibrarian: "Arranged Statement (for Music)" >- libopac: "Arranged Statement (for Music)" >+ - tagfield: "488" >+ tagsubfield: "v" >+ liblibrarian: "Volume Number" >+ libopac: "Volume Number" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "501" >+ - tagfield: "488" > tagsubfield: "x" >- liblibrarian: "Topical Subdivision" >- libopac: "Topical Subdivision" >+ liblibrarian: "International Standard Serial Number" >+ libopac: "International Standard Serial Number" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISSN > defaultvalue: > >- - tagfield: "501" >+ - tagfield: "488" > tagsubfield: "y" >- liblibrarian: "Geographical Subdivision" >- libopac: "Geographical Subdivision" >+ liblibrarian: "International Standard Book Number" >+ libopac: "International Standard Book Number" > repeatable: 1 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" >- link: "" >+ link: ISBN > defaultvalue: > >- - tagfield: "501" >+ - tagfield: "488" > tagsubfield: "z" >- liblibrarian: "Chronological Subdivision" >- libopac: "Chronological Subdivision" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "503" >- tagsubfield: "a" >- liblibrarian: "Form Heading Proper" >- libopac: "Form Heading Proper" >+ liblibrarian: "CODEN" >+ libopac: "CODEN" > repeatable: 0 > mandatory: 0 > kohafield: "" >- tab: 5 >+ tab: 4 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >- tagsubfield: "b" >- liblibrarian: "Form Subheading" >- libopac: "Form Subheading" >+ - tagfield: "500" >+ tagsubfield: "2" >+ liblibrarian: "System Code" >+ libopac: "System Code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -30643,17 +29692,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >- tagsubfield: "d" >- liblibrarian: "Month and Day" >- libopac: "Month and Day" >- repeatable: 1 >+ - tagfield: "500" >+ tagsubfield: "3" >+ liblibrarian: "Authority Record Number" >+ libopac: "Authority Record Number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -30661,16 +29710,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >- tagsubfield: "e" >- liblibrarian: "Personal Name - Entry Element of Person" >- libopac: "Personal Name - Entry Element of Person" >+ - tagfield: "500" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -30679,16 +29728,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >- tagsubfield: "f" >- liblibrarian: "Personal Name - Part of Name Other than Entry Element - Forename" >- libopac: "Personal Name - Part of Name Other than Entry Element - Forename" >+ - tagfield: "500" >+ tagsubfield: "a" >+ liblibrarian: "Preferred access point" >+ libopac: "Preferred access point" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -30697,17 +29746,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >- tagsubfield: "g" >- liblibrarian: "Personal Name - Dates" >- libopac: "Personal Name - Dates" >- repeatable: 0 >+ - tagfield: "500" >+ tagsubfield: "b" >+ liblibrarian: "General Material Designation" >+ libopac: "General Material Designation" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -30715,17 +29764,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >+ - tagfield: "500" > tagsubfield: "h" >- liblibrarian: "Personal Name Qualifier" >- libopac: "Personal Name Qualifier" >- repeatable: 0 >+ liblibrarian: "Number of Section or Part" >+ libopac: "Number of Section or Part" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -30733,17 +29782,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >+ - tagfield: "500" > tagsubfield: "i" >- liblibrarian: "Title of Part" >- libopac: "Title of Part" >- repeatable: 0 >+ liblibrarian: "Name of Section or Part" >+ libopac: "Name of Section or Part" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -30751,17 +29800,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >+ - tagfield: "500" > tagsubfield: "j" >- liblibrarian: "Year" >- libopac: "Year" >- repeatable: 1 >+ liblibrarian: "Form Subdivision" >+ libopac: "Form Subdivision" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -30769,16 +29818,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >+ - tagfield: "500" > tagsubfield: "k" >- liblibrarian: "Numeration (Arabic)" >- libopac: "Numeration (Arabic)" >+ liblibrarian: "Date of Publication" >+ libopac: "Date of Publication" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -30787,17 +29836,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >+ - tagfield: "500" > tagsubfield: "l" >- liblibrarian: "Numeration (Roman)" >- libopac: "Numeration (Roman)" >- repeatable: 0 >+ liblibrarian: "Form Subheading" >+ libopac: "Form Subheading" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -30805,16 +29854,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >+ - tagfield: "500" > tagsubfield: "m" >- liblibrarian: "Locality" >- libopac: "Locality" >+ liblibrarian: "Language (when part of a heading)" >+ libopac: "Language (when part of a heading)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -30823,35 +29872,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "503" >+ - tagfield: "500" > tagsubfield: "n" >- liblibrarian: "Institution in Locality" >- libopac: "Institution in Locality" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "503" >- tagsubfield: "o" >- liblibrarian: "Place in Locality" >- libopac: "Place in Locality" >- repeatable: 0 >+ liblibrarian: "Miscellaneous Information" >+ libopac: "Miscellaneous Information" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -30859,16 +29890,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "506" >- tagsubfield: "3" >- liblibrarian: "Authority Entry Record Number" >- libopac: "Authority Entry Record Number" >+ - tagfield: "500" >+ tagsubfield: "q" >+ liblibrarian: "Version (or Date of Version)" >+ libopac: "Version (or Date of Version)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -30877,17 +29908,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "506" >- tagsubfield: "9" >- liblibrarian: "Koha number" >- libopac: "" >- repeatable: 0 >+ - tagfield: "500" >+ tagsubfield: "r" >+ liblibrarian: "Medium of Performance (for Music)" >+ libopac: "Medium of Performance (for Music)" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -30895,35 +29926,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: "" >- >- - tagfield: "506" >- tagsubfield: "a" >- liblibrarian: "Title" >- libopac: "Title" >- repeatable: 0 >- mandatory: 1 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "506" >- tagsubfield: "c" >- liblibrarian: "Form of Work" >- libopac: "Form of Work" >- repeatable: 0 >+ - tagfield: "500" >+ tagsubfield: "s" >+ liblibrarian: "Numeric Designation (for Music)" >+ libopac: "Numeric Designation (for Music)" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -30931,16 +29944,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "506" >- tagsubfield: "d" >- liblibrarian: "Date of Work" >- libopac: "Date of Work" >+ - tagfield: "500" >+ tagsubfield: "u" >+ liblibrarian: "Key (for Music)" >+ libopac: "Key (for Music)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -30949,16 +29962,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "506" >- tagsubfield: "e" >- liblibrarian: "Place of Origin of Work" >- libopac: "Place of Origin of Work" >+ - tagfield: "500" >+ tagsubfield: "v" >+ liblibrarian: "Volume Designation" >+ libopac: "Volume Designation" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -30967,16 +29980,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "506" >- tagsubfield: "f" >- liblibrarian: "Original Language of the Work" >- libopac: "Original Language of the Work" >+ - tagfield: "500" >+ tagsubfield: "w" >+ liblibrarian: "Additional Elements (for Music)" >+ libopac: "Additional Elements (for Music)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -30985,70 +29998,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "506" >- tagsubfield: "h" >- liblibrarian: "Number of Section or Part" >- libopac: "Number of Section or Part" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "506" >- tagsubfield: "i" >- liblibrarian: "Name of Section or Part" >- libopac: "Name of Section or Part" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "506" >- tagsubfield: "k" >- liblibrarian: "Other Distinguishing Characteristics of a Work" >- libopac: "Other Distinguishing Characteristics of a Work" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: >- >- - tagfield: "506" >- tagsubfield: "r" >- liblibrarian: "Medium of Performance (for Music)" >- libopac: "Medium of Performance (for Music)" >+ defaultvalue: >+ >+ - tagfield: "500" >+ tagsubfield: "x" >+ liblibrarian: "Topical Subdivision" >+ libopac: "Topical Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -31057,16 +30016,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "506" >- tagsubfield: "s" >- liblibrarian: "Numeric Designation (for Music)" >- libopac: "Numeric Designation (for Music)" >+ - tagfield: "500" >+ tagsubfield: "y" >+ liblibrarian: "Geographical Subdivision" >+ libopac: "Geographical Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -31075,17 +30034,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "506" >- tagsubfield: "u" >- liblibrarian: "Key (for Music)" >- libopac: "Key (for Music)" >- repeatable: 0 >+ - tagfield: "500" >+ tagsubfield: "z" >+ liblibrarian: "Chronological Subdivision" >+ libopac: "Chronological Subdivision" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31093,16 +30052,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "3" >- liblibrarian: "Authority Entry Record Number" >- libopac: "Authority Entry Record Number" >+ - tagfield: "501" >+ tagsubfield: "2" >+ liblibrarian: "System Code" >+ libopac: "System Code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31111,16 +30070,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "9" >- liblibrarian: "Koha number" >- libopac: "" >+ - tagfield: "501" >+ tagsubfield: "3" >+ liblibrarian: "Authority Record Number" >+ libopac: "Authority Record Number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31129,35 +30088,35 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > >- - tagfield: "507" >+ - tagfield: "501" > tagsubfield: "a" >- liblibrarian: "Title" >- libopac: "Title" >+ liblibrarian: "Collective Uniform Title" >+ libopac: "Collective Uniform Title" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 5 > authorised_value: "" >- authtypecode: "" >+ authtypecode: CO_UNI_TI > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "c" >- liblibrarian: "Form of Work" >- libopac: "Form of Work" >- repeatable: 0 >+ - tagfield: "501" >+ tagsubfield: "b" >+ liblibrarian: "General Material Designation" >+ libopac: "General Material Designation" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31165,16 +30124,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "d" >- liblibrarian: "Date of Work" >- libopac: "Date of Work" >+ - tagfield: "501" >+ tagsubfield: "e" >+ liblibrarian: "Collective Uniform Subtitle" >+ libopac: "Collective Uniform Subtitle" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31183,16 +30142,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "e" >- liblibrarian: "Place of Origin of Work" >- libopac: "Place of Origin of Work" >+ - tagfield: "501" >+ tagsubfield: "j" >+ liblibrarian: "Form Subdivision" >+ libopac: "Form Subdivision" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31201,16 +30160,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "f" >- liblibrarian: "Original Language of the Work" >- libopac: "Original Language of the Work" >+ - tagfield: "501" >+ tagsubfield: "k" >+ liblibrarian: "Date of Publication, etc." >+ libopac: "Date of Publication, etc." > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31219,17 +30178,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "h" >- liblibrarian: "Number of Section or Part" >- libopac: "Number of Section or Part" >- repeatable: 1 >+ - tagfield: "501" >+ tagsubfield: "m" >+ liblibrarian: "Language (when part of heading)" >+ libopac: "Language (when part of heading)" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31237,16 +30196,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "i" >- liblibrarian: "Name of Section or Part" >- libopac: "Name of Section or Part" >+ - tagfield: "501" >+ tagsubfield: "r" >+ liblibrarian: "Medium of performance (for music)" >+ libopac: "Medium of performance (for music)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -31255,16 +30214,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "k" >- liblibrarian: "Other Distinguishing Characteristics of a Work" >- libopac: "Other Distinguishing Characteristics of a Work" >+ - tagfield: "501" >+ tagsubfield: "s" >+ liblibrarian: "Numeric designation (for music)" >+ libopac: "Numeric designation (for music)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -31273,16 +30232,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "l" >- liblibrarian: "Form of the Expression [Expression]" >- libopac: "Form of the Expression [Expression]" >+ - tagfield: "501" >+ tagsubfield: "u" >+ liblibrarian: "Key (for music)" >+ libopac: "Key (for music)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31291,16 +30250,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "m" >- liblibrarian: "Language of the Expression [Expression]" >- libopac: "Language of the Expression [Expression]" >+ - tagfield: "501" >+ tagsubfield: "w" >+ liblibrarian: "Arranged statement (for music)" >+ libopac: "Arranged statement (for music)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31309,17 +30268,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "n" >- liblibrarian: "Content Type [Expression]" >- libopac: "Content Type [Expression]" >- repeatable: 0 >+ - tagfield: "501" >+ tagsubfield: "x" >+ liblibrarian: "Topical Subdivision" >+ libopac: "Topical Subdivision" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31327,17 +30286,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "o" >- liblibrarian: "Date of Expression [Expression]" >- libopac: "Date of Expression [Expression]" >- repeatable: 0 >+ - tagfield: "501" >+ tagsubfield: "y" >+ liblibrarian: "Geographical Subdivision" >+ libopac: "Geographical Subdivision" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31345,16 +30304,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "r" >- liblibrarian: "Medium of Performance (for Music)" >- libopac: "Medium of Performance (for Music)" >+ - tagfield: "501" >+ tagsubfield: "z" >+ liblibrarian: "Chronological Subdivision" >+ libopac: "Chronological Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -31363,17 +30322,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "s" >- liblibrarian: "Numeric Designation (for Music)" >- libopac: "Numeric Designation (for Music)" >- repeatable: 1 >+ - tagfield: "503" >+ tagsubfield: "a" >+ liblibrarian: "Form Heading Proper" >+ libopac: "Form Heading Proper" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31381,16 +30340,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "u" >- liblibrarian: "Key (for Music)" >- libopac: "Key (for Music)" >+ - tagfield: "503" >+ tagsubfield: "b" >+ liblibrarian: "Form Subheading" >+ libopac: "Form Subheading" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31399,16 +30358,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "v" >- liblibrarian: "Medium of Performance (for Music) [Expression]" >- libopac: "Medium of Performance (for Music) [Expression]" >+ - tagfield: "503" >+ tagsubfield: "d" >+ liblibrarian: "Month and Day" >+ libopac: "Month and Day" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -31417,17 +30376,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "507" >- tagsubfield: "w" >- liblibrarian: "Other Characteristics of Expression [Expression]" >- libopac: "Other Characteristics of Expression [Expression]" >- repeatable: 1 >+ - tagfield: "503" >+ tagsubfield: "e" >+ liblibrarian: "Personal Name - Entry Element of Person" >+ libopac: "Personal Name - Entry Element of Person" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31435,16 +30394,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "510" >- tagsubfield: "a" >- liblibrarian: "Parallel Title" >- libopac: "Parallel Title" >+ - tagfield: "503" >+ tagsubfield: "f" >+ liblibrarian: "Personal Name - Part of Name Other than Entry Element Forename" >+ libopac: "Personal Name - Part of Name Other than Entry Element Forename" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31453,17 +30412,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "510" >- tagsubfield: "e" >- liblibrarian: "Other Title Information" >- libopac: "Other Title Information" >- repeatable: 1 >+ - tagfield: "503" >+ tagsubfield: "g" >+ liblibrarian: "Personal Name - Dates" >+ libopac: "Personal Name - Dates" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31471,17 +30430,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "510" >+ - tagfield: "503" > tagsubfield: "h" >- liblibrarian: "Number of Part" >- libopac: "Number of Part" >- repeatable: 1 >+ liblibrarian: "Personal Name Qualifier" >+ libopac: "Personal Name Qualifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31489,17 +30448,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "510" >+ - tagfield: "503" > tagsubfield: "i" >- liblibrarian: "Name of Part" >- libopac: "Name of Part" >- repeatable: 1 >+ liblibrarian: "Title of Part" >+ libopac: "Title of Part" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31507,17 +30466,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "510" >+ - tagfield: "503" > tagsubfield: "j" >- liblibrarian: "Volume or Dates Associated with Title" >- libopac: "Volume or Dates Associated with Title" >- repeatable: 0 >+ liblibrarian: "Year" >+ libopac: "Year" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31525,16 +30484,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "510" >- tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >+ - tagfield: "503" >+ tagsubfield: "k" >+ liblibrarian: "Numeration (Arabic)" >+ libopac: "Numeration (Arabic)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31543,16 +30502,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "510" >- tagsubfield: "z" >- liblibrarian: "Language of Title" >- libopac: "Language of Title" >+ - tagfield: "503" >+ tagsubfield: "l" >+ liblibrarian: "Numeration (Roman)" >+ libopac: "Numeration (Roman)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31561,16 +30520,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "511" >- tagsubfield: "a" >- liblibrarian: "Half Title" >- libopac: "Half Title" >+ - tagfield: "503" >+ tagsubfield: "m" >+ liblibrarian: "Locality" >+ libopac: "Locality" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31579,17 +30538,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "511" >- tagsubfield: "e" >- liblibrarian: "Other Title Information" >- libopac: "Other Title Information" >- repeatable: 1 >+ - tagfield: "503" >+ tagsubfield: "n" >+ liblibrarian: "Institution in Locality" >+ libopac: "Institution in Locality" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31597,17 +30556,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "511" >- tagsubfield: "h" >- liblibrarian: "Number of Part" >- libopac: "Number of Part" >- repeatable: 1 >+ - tagfield: "503" >+ tagsubfield: "o" >+ liblibrarian: "Place in Locality" >+ libopac: "Place in Locality" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31615,17 +30574,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "511" >- tagsubfield: "i" >- liblibrarian: "Name of Part" >- libopac: "Name of Part" >- repeatable: 1 >+ - tagfield: "506" >+ tagsubfield: "3" >+ liblibrarian: "Authority Entry Record Number" >+ libopac: "Authority Entry Record Number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31633,16 +30592,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "511" >- tagsubfield: "j" >- liblibrarian: "Volume or Dates Associated with Title" >- libopac: "Volume or Dates Associated with Title" >+ - tagfield: "506" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31651,34 +30610,34 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "511" >- tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >+ - tagfield: "506" >+ tagsubfield: "a" >+ liblibrarian: "Title" >+ libopac: "Title" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 > authorised_value: "" >- authtypecode: "" >+ authtypecode: WORK > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "511" >- tagsubfield: "z" >- liblibrarian: "Language of Title" >- libopac: "Language of Title" >+ - tagfield: "506" >+ tagsubfield: "c" >+ liblibrarian: "Form of work" >+ libopac: "Form of work" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31687,16 +30646,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "512" >- tagsubfield: "a" >- liblibrarian: "Cover Title" >- libopac: "Cover Title" >+ - tagfield: "506" >+ tagsubfield: "d" >+ liblibrarian: "Date of work" >+ libopac: "Date of work" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31705,17 +30664,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "512" >+ - tagfield: "506" > tagsubfield: "e" >- liblibrarian: "Other Title Information" >- libopac: "Other Title Information" >- repeatable: 1 >+ liblibrarian: "Place of origin of work" >+ libopac: "Place of origin of work" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31723,17 +30682,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "512" >- tagsubfield: "h" >- liblibrarian: "Number of Part" >- libopac: "Number of Part" >- repeatable: 1 >+ - tagfield: "506" >+ tagsubfield: "f" >+ liblibrarian: "Original language of the work" >+ libopac: "Original language of the work" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31741,17 +30700,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "512" >- tagsubfield: "i" >- liblibrarian: "Name of Part" >- libopac: "Name of Part" >- repeatable: 1 >+ - tagfield: "506" >+ tagsubfield: "h" >+ liblibrarian: "Number of section or part" >+ libopac: "Number of section or part" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31759,16 +30718,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "512" >- tagsubfield: "j" >- liblibrarian: "Volume or Dates Associated with Title" >- libopac: "Volume or Dates Associated with Title" >+ - tagfield: "506" >+ tagsubfield: "i" >+ liblibrarian: "Name of section or part" >+ libopac: "Name of section or part" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31777,16 +30736,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "512" >- tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >+ - tagfield: "506" >+ tagsubfield: "k" >+ liblibrarian: "Other distinguishing characteristics of a work" >+ libopac: "Other distinguishing characteristics of a work" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31795,17 +30754,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "512" >- tagsubfield: "z" >- liblibrarian: "Language of Title" >- libopac: "Language of Title" >- repeatable: 0 >+ - tagfield: "506" >+ tagsubfield: "r" >+ liblibrarian: "Medium of performance (for music)" >+ libopac: "Medium of performance (for music)" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31813,17 +30772,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "513" >- tagsubfield: "a" >- liblibrarian: "Added Title - Page Title" >- libopac: "Added Title - Page Title" >- repeatable: 0 >+ - tagfield: "506" >+ tagsubfield: "s" >+ liblibrarian: "Numeric designation (for music)" >+ libopac: "Numeric designation (for music)" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31831,17 +30790,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "513" >- tagsubfield: "e" >- liblibrarian: "Other Title Information" >- libopac: "Other Title Information" >- repeatable: 1 >+ - tagfield: "506" >+ tagsubfield: "u" >+ liblibrarian: "Key (for music)" >+ libopac: "Key (for music)" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31849,17 +30808,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "513" >- tagsubfield: "h" >- liblibrarian: "Number of Part" >- libopac: "Number of Part" >- repeatable: 1 >+ - tagfield: "507" >+ tagsubfield: "3" >+ liblibrarian: "Authority Entry Record Number" >+ libopac: "Authority Entry Record Number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31867,17 +30826,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "513" >- tagsubfield: "i" >- liblibrarian: "Name of Part" >- libopac: "Name of Part" >- repeatable: 1 >+ - tagfield: "507" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31885,34 +30844,34 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "513" >- tagsubfield: "j" >- liblibrarian: "Volume or Dates Associated with Title" >- libopac: "Volume or Dates Associated with Title" >+ - tagfield: "507" >+ tagsubfield: "a" >+ liblibrarian: "Title [Work]" >+ libopac: "Title [Work]" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 > authorised_value: "" >- authtypecode: "" >+ authtypecode: EXP > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "513" >- tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >+ - tagfield: "507" >+ tagsubfield: "c" >+ liblibrarian: "Form of work [Work]" >+ libopac: "Form of work [Work]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31921,17 +30880,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "513" >- tagsubfield: "z" >- liblibrarian: "Language of Title" >- libopac: "Language of Title" >- repeatable: 0 >+ - tagfield: "507" >+ tagsubfield: "d" >+ liblibrarian: "Date of work [Work]" >+ libopac: "Date of work [Work]" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -31939,16 +30898,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "514" >- tagsubfield: "a" >- liblibrarian: "Caption Title" >- libopac: "Caption Title" >+ - tagfield: "507" >+ tagsubfield: "e" >+ liblibrarian: "Place of origin of work [Work]" >+ libopac: "Place of origin of work [Work]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -31957,16 +30916,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "514" >- tagsubfield: "e" >- liblibrarian: "Other Title Information" >- libopac: "Other Title Information" >+ - tagfield: "507" >+ tagsubfield: "f" >+ liblibrarian: "Original language of the work [Work]" >+ libopac: "Original language of the work [Work]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -31975,16 +30934,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "514" >+ - tagfield: "507" > tagsubfield: "h" >- liblibrarian: "Number of Part" >- libopac: "Number of Part" >+ liblibrarian: "Number of section or part [Work]" >+ libopac: "Number of section or part [Work]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -31993,17 +30952,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "514" >+ - tagfield: "507" > tagsubfield: "i" >- liblibrarian: "Name of Part" >- libopac: "Name of Part" >- repeatable: 1 >+ liblibrarian: "Name of section or part [Work]" >+ libopac: "Name of section or part [Work]" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32011,17 +30970,35 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "514" >- tagsubfield: "j" >- liblibrarian: "Volume or Dates Associated with Title" >- libopac: "Volume or Dates Associated with Title" >- repeatable: 0 >+ - tagfield: "507" >+ tagsubfield: "k" >+ liblibrarian: "Other distinguishing characteristics of a work [Work]" >+ libopac: "Other distinguishing characteristics of a work [Work]" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 5 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "507" >+ tagsubfield: "l" >+ liblibrarian: "Form of the expression [Expression]" >+ libopac: "Form of the expression [Expression]" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32029,17 +31006,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "514" >- tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >- repeatable: 0 >+ - tagfield: "507" >+ tagsubfield: "m" >+ liblibrarian: "Language of the expression [Expression]" >+ libopac: "Language of the expression [Expression]" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32047,17 +31024,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "514" >- tagsubfield: "z" >- liblibrarian: "Language of Title" >- libopac: "Language of Title" >- repeatable: 0 >+ - tagfield: "507" >+ tagsubfield: "n" >+ liblibrarian: "Content type [Expression]" >+ libopac: "Content type [Expression]" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32065,16 +31042,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "515" >- tagsubfield: "a" >- liblibrarian: "Running Title" >- libopac: "Running Title" >+ - tagfield: "507" >+ tagsubfield: "o" >+ liblibrarian: "Date of expression [Expression]" >+ libopac: "Date of expression [Expression]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32083,16 +31060,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "515" >- tagsubfield: "e" >- liblibrarian: "Other Title Information" >- libopac: "Other Title Information" >+ - tagfield: "507" >+ tagsubfield: "r" >+ liblibrarian: "Medium of performance (for music) [Work]" >+ libopac: "Medium of performance (for music) [Work]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -32101,16 +31078,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "515" >- tagsubfield: "h" >- liblibrarian: "Number of Part" >- libopac: "Number of Part" >+ - tagfield: "507" >+ tagsubfield: "s" >+ liblibrarian: "Numeric designation (for music) [Work]" >+ libopac: "Numeric designation (for music) [Work]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -32119,17 +31096,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "515" >- tagsubfield: "i" >- liblibrarian: "Name of Part" >- libopac: "Name of Part" >- repeatable: 1 >+ - tagfield: "507" >+ tagsubfield: "u" >+ liblibrarian: "Key (for music) [Work]" >+ libopac: "Key (for music) [Work]" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32137,17 +31114,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "515" >- tagsubfield: "j" >- liblibrarian: "Volume or Dates Associated with Title" >- libopac: "Volume or Dates Associated with Title" >- repeatable: 0 >+ - tagfield: "507" >+ tagsubfield: "v" >+ liblibrarian: "Medium of performance (for music) [Expression]" >+ libopac: "Medium of performance (for music) [Expression]" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32155,17 +31132,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "515" >- tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >- repeatable: 0 >+ - tagfield: "507" >+ tagsubfield: "w" >+ liblibrarian: "Other characteristics of expression [Expression]" >+ libopac: "Other characteristics of expression [Expression]" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32173,16 +31150,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "515" >- tagsubfield: "z" >- liblibrarian: "Language of Title" >- libopac: "Language of Title" >+ - tagfield: "510" >+ tagsubfield: "2" >+ liblibrarian: "Source" >+ libopac: "Source" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32191,16 +31168,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "516" >+ - tagfield: "510" > tagsubfield: "a" >- liblibrarian: "Spine Title" >- libopac: "Spine Title" >+ liblibrarian: "Parallel Title" >+ libopac: "Parallel Title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32209,13 +31186,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "516" >+ - tagfield: "510" > tagsubfield: "e" > liblibrarian: "Other Title Information" > libopac: "Other Title Information" >@@ -32227,13 +31204,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "516" >+ - tagfield: "510" > tagsubfield: "h" > liblibrarian: "Number of Part" > libopac: "Number of Part" >@@ -32245,13 +31222,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "516" >+ - tagfield: "510" > tagsubfield: "i" > liblibrarian: "Name of Part" > libopac: "Name of Part" >@@ -32263,16 +31240,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "516" >+ - tagfield: "510" > tagsubfield: "j" >- liblibrarian: "Volume or Dates Associated with Title" >- libopac: "Volume or Dates Associated with Title" >+ liblibrarian: "Volume or Dates associated with Title" >+ libopac: "Volume or Dates associated with Title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32281,13 +31258,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "516" >+ - tagfield: "510" > tagsubfield: "n" > liblibrarian: "Miscellaneous Information" > libopac: "Miscellaneous Information" >@@ -32299,13 +31276,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "516" >+ - tagfield: "510" > tagsubfield: "z" > liblibrarian: "Language of Title" > libopac: "Language of Title" >@@ -32317,16 +31294,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "517" >+ - tagfield: "511" > tagsubfield: "a" >- liblibrarian: "Variant Title" >- libopac: "Variant Title" >+ liblibrarian: "Half title" >+ libopac: "Half title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32335,17 +31312,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "517" >- tagsubfield: "e" >- liblibrarian: "Other Title Information" >- libopac: "Other Title Information" >- repeatable: 1 >+ - tagfield: "512" >+ tagsubfield: "a" >+ liblibrarian: "Cover Title" >+ libopac: "Cover Title" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32353,16 +31330,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "517" >- tagsubfield: "h" >- liblibrarian: "Number of Part" >- libopac: "Number of Part" >+ - tagfield: "512" >+ tagsubfield: "e" >+ liblibrarian: "Other Title Information" >+ libopac: "Other Title Information" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -32371,17 +31348,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "517" >- tagsubfield: "i" >- liblibrarian: "Name of Part" >- libopac: "Name of Part" >- repeatable: 1 >+ - tagfield: "513" >+ tagsubfield: "a" >+ liblibrarian: "Added Title-page Title" >+ libopac: "Added Title-page Title" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32389,17 +31366,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "517" >- tagsubfield: "j" >- liblibrarian: "Volume or Dates Associated with Title" >- libopac: "Volume or Dates Associated with Title" >- repeatable: 0 >+ - tagfield: "513" >+ tagsubfield: "e" >+ liblibrarian: "Other Title Information" >+ libopac: "Other Title Information" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32407,17 +31384,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "517" >- tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >- repeatable: 0 >+ - tagfield: "513" >+ tagsubfield: "h" >+ liblibrarian: "Number of Part" >+ libopac: "Number of Part" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32425,17 +31402,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "517" >- tagsubfield: "z" >- liblibrarian: "Language of Title" >- libopac: "Language of Title" >- repeatable: 0 >+ - tagfield: "513" >+ tagsubfield: "i" >+ liblibrarian: "Name of Part" >+ libopac: "Name of Part" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32443,16 +31420,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "518" >+ - tagfield: "514" > tagsubfield: "a" >- liblibrarian: "Title Proper, Variant Title or Uniform Title in Standard Modern Spelling" >- libopac: "Title Proper, Variant Title or Uniform Title in Standard Modern Spelling" >+ liblibrarian: "Caption Title" >+ libopac: "Caption Title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32461,13 +31438,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "518" >+ - tagfield: "514" > tagsubfield: "e" > liblibrarian: "Other Title Information" > libopac: "Other Title Information" >@@ -32479,17 +31456,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "518" >- tagsubfield: "h" >- liblibrarian: "Number of Part" >- libopac: "Number of Part" >- repeatable: 1 >+ - tagfield: "515" >+ tagsubfield: "a" >+ liblibrarian: "Running Title" >+ libopac: "Running Title" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32497,16 +31474,34 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "518" >- tagsubfield: "i" >- liblibrarian: "Name of Part" >- libopac: "Name of Part" >+ - tagfield: "516" >+ tagsubfield: "a" >+ liblibrarian: "Spine Title" >+ libopac: "Spine Title" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 5 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "516" >+ tagsubfield: "e" >+ liblibrarian: "Other Title Information" >+ libopac: "Other Title Information" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -32515,16 +31510,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "518" >- tagsubfield: "j" >- liblibrarian: "Volume or Dates Associated with Title" >- libopac: "Volume or Dates Associated with Title" >+ - tagfield: "517" >+ tagsubfield: "a" >+ liblibrarian: "Variant Title" >+ libopac: "Variant Title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32533,17 +31528,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "518" >- tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >- repeatable: 0 >+ - tagfield: "517" >+ tagsubfield: "e" >+ liblibrarian: "Other Title Information" >+ libopac: "Other Title Information" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32551,16 +31546,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "518" >- tagsubfield: "z" >- liblibrarian: "Language of Title" >- libopac: "Language of Title" >+ tagsubfield: "a" >+ liblibrarian: "Title proper, variant title or uniform title in standard modern spelling" >+ libopac: "Title proper, variant title or uniform title in standard modern spelling" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32569,7 +31564,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32587,7 +31582,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32605,7 +31600,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32615,7 +31610,7 @@ tables: > tagsubfield: "h" > liblibrarian: "Number of Part" > libopac: "Number of Part" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32623,7 +31618,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32633,7 +31628,7 @@ tables: > tagsubfield: "i" > liblibrarian: "Name of Part" > libopac: "Name of Part" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32641,7 +31636,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32659,7 +31654,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32677,7 +31672,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32695,7 +31690,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32713,7 +31708,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32731,7 +31726,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32749,7 +31744,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32767,7 +31762,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32785,7 +31780,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32803,7 +31798,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -32821,16 +31816,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "532" >- tagsubfield: "a" >- liblibrarian: "Expanded Title" >- libopac: "Expanded Title" >+ tagsubfield: "2" >+ liblibrarian: "Source" >+ libopac: "Source" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32839,34 +31834,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "532" >- tagsubfield: "z" >- liblibrarian: "Language of Title" >- libopac: "Language of Title" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "540" > tagsubfield: "a" >- liblibrarian: "Additional Title" >- libopac: "Additional Title" >+ liblibrarian: "Expanded Title" >+ libopac: "Expanded Title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32875,34 +31852,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "540" >- tagsubfield: "e" >- liblibrarian: "Other Title Information" >- libopac: "Other Title Information" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "540" >- tagsubfield: "h" >- liblibrarian: "Number of Part" >- libopac: "Number of Part" >+ - tagfield: "532" >+ tagsubfield: "z" >+ liblibrarian: "Language of Title" >+ libopac: "Language of Title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32911,34 +31870,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "540" >- tagsubfield: "i" >- liblibrarian: "Name of Part" >- libopac: "Name of Part" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "541" > tagsubfield: "a" >- liblibrarian: "Translated Title" >- libopac: "Translated Title" >+ liblibrarian: "Additional Title" >+ libopac: "Additional Title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -32947,17 +31888,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "541" >+ - tagfield: "540" > tagsubfield: "e" >- liblibrarian: "Other Title Information" >- libopac: "Other Title Information" >- repeatable: 0 >+ liblibrarian: "Other title information" >+ libopac: "Other title information" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32965,17 +31906,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "541" >+ - tagfield: "540" > tagsubfield: "h" >- liblibrarian: "Number of a Part" >- libopac: "Number of a Part" >- repeatable: 0 >+ liblibrarian: "Number of part" >+ libopac: "Number of part" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -32983,17 +31924,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "541" >+ - tagfield: "540" > tagsubfield: "i" >- liblibrarian: "Name of Part" >- libopac: "Name of Part" >- repeatable: 0 >+ liblibrarian: "Name of part" >+ libopac: "Name of part" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 5 >@@ -33001,16 +31942,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "541" >- tagsubfield: "z" >- liblibrarian: "Language of Translated Title" >- libopac: "Language of Translated Title" >+ tagsubfield: "2" >+ liblibrarian: "Source" >+ libopac: "Source" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33019,16 +31960,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "545" >+ - tagfield: "541" > tagsubfield: "a" >- liblibrarian: "Section Title" >- libopac: "Section Title" >+ liblibrarian: "Translated Title" >+ libopac: "Translated Title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33037,13 +31978,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "545" >+ - tagfield: "541" > tagsubfield: "e" > liblibrarian: "Other Title Information" > libopac: "Other Title Information" >@@ -33055,16 +31996,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "545" >+ - tagfield: "541" > tagsubfield: "h" >- liblibrarian: "Number of Part" >- libopac: "Number of Part" >+ liblibrarian: "Number of a Part" >+ libopac: "Number of a Part" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33073,13 +32014,13 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "545" >+ - tagfield: "541" > tagsubfield: "i" > liblibrarian: "Name of Part" > libopac: "Name of Part" >@@ -33091,34 +32032,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "545" >- tagsubfield: "j" >- liblibrarian: "Volume or Dates Associated with Title" >- libopac: "Volume or Dates Associated with Title" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "545" >- tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >+ - tagfield: "541" >+ tagsubfield: "z" >+ liblibrarian: "Language of Translated Title" >+ libopac: "Language of Translated Title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33127,16 +32050,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "545" >- tagsubfield: "z" >- liblibrarian: "Language of Title" >- libopac: "Language of Title" >+ tagsubfield: "a" >+ liblibrarian: "Section Title" >+ libopac: "Section Title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33145,7 +32068,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33153,8 +32076,8 @@ tables: > > - tagfield: "560" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution to which the Field Applies" >+ libopac: "Institution to which the Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33163,7 +32086,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33171,8 +32094,8 @@ tables: > > - tagfield: "560" > tagsubfield: "a" >- liblibrarian: "Artificial Title" >- libopac: "Artificial Title" >+ liblibrarian: "Artificial title" >+ libopac: "Artificial title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33181,7 +32104,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33199,25 +32122,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "576" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33235,7 +32140,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33244,7 +32149,7 @@ tables: > - tagfield: "576" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33253,25 +32158,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "576" > tagsubfield: "a" > liblibrarian: "Name" > libopac: "Name" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 5 > authorised_value: "" >- authtypecode: "" >+ authtypecode: NTWORK > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33279,8 +32184,8 @@ tables: > > - tagfield: "576" > tagsubfield: "c" >- liblibrarian: "Form of Work" >- libopac: "Form of Work" >+ liblibrarian: "Form of work" >+ libopac: "Form of work" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33289,7 +32194,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33297,8 +32202,8 @@ tables: > > - tagfield: "576" > tagsubfield: "d" >- liblibrarian: "Date of Work" >- libopac: "Date of Work" >+ liblibrarian: "Date of work" >+ libopac: "Date of work" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33307,7 +32212,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33315,8 +32220,8 @@ tables: > > - tagfield: "576" > tagsubfield: "e" >- liblibrarian: "Place of Origin of Work" >- libopac: "Place of Origin of Work" >+ liblibrarian: "Place of origin of work" >+ libopac: "Place of origin of work" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33325,7 +32230,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33333,8 +32238,8 @@ tables: > > - tagfield: "576" > tagsubfield: "f" >- liblibrarian: "Original Language of the Work" >- libopac: "Original Language of the Work" >+ liblibrarian: "Original language of the work" >+ libopac: "Original language of the work" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33343,7 +32248,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33351,8 +32256,8 @@ tables: > > - tagfield: "576" > tagsubfield: "h" >- liblibrarian: "Number of Section or Part" >- libopac: "Number of Section or Part" >+ liblibrarian: "Number of section or part" >+ libopac: "Number of section or part" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33361,7 +32266,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33369,8 +32274,8 @@ tables: > > - tagfield: "576" > tagsubfield: "i" >- liblibrarian: "Name of Section or Part" >- libopac: "Name of Section or Part" >+ liblibrarian: "Name of section or part" >+ libopac: "Name of section or part" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33379,7 +32284,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33387,8 +32292,8 @@ tables: > > - tagfield: "576" > tagsubfield: "j" >- liblibrarian: "Form Subdivision" >- libopac: "Form Subdivision" >+ liblibrarian: "Form subdivision" >+ libopac: "Form subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33397,7 +32302,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33405,8 +32310,8 @@ tables: > > - tagfield: "576" > tagsubfield: "k" >- liblibrarian: "Other Distinguishing Characteristics of a Work" >- libopac: "Other Distinguishing Characteristics of a Work" >+ liblibrarian: "Other distinguishing characteristics of a work" >+ libopac: "Other distinguishing characteristics of a work" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33415,7 +32320,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33423,8 +32328,8 @@ tables: > > - tagfield: "576" > tagsubfield: "r" >- liblibrarian: "Medium of Performance (for Music)" >- libopac: "Medium of Performance (for Music)" >+ liblibrarian: "Medium of performance (for music)" >+ libopac: "Medium of performance (for music)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33433,7 +32338,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33441,8 +32346,8 @@ tables: > > - tagfield: "576" > tagsubfield: "s" >- liblibrarian: "Numeric Designation (for Music)" >- libopac: "Numeric Designation (for Music)" >+ liblibrarian: "Numeric designation (for music)" >+ libopac: "Numeric designation (for music)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33451,7 +32356,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33462,14 +32367,14 @@ tables: > liblibrarian: "Title" > libopac: "Title" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 5 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33477,8 +32382,8 @@ tables: > > - tagfield: "576" > tagsubfield: "u" >- liblibrarian: "Key (for Music)" >- libopac: "Key (for Music)" >+ liblibrarian: "Key (for music)" >+ libopac: "Key (for music)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33487,7 +32392,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33495,8 +32400,8 @@ tables: > > - tagfield: "576" > tagsubfield: "x" >- liblibrarian: "Topical Subdivision" >- libopac: "Topical Subdivision" >+ liblibrarian: "Topical subdivision" >+ libopac: "Topical subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33505,7 +32410,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33513,8 +32418,8 @@ tables: > > - tagfield: "576" > tagsubfield: "y" >- liblibrarian: "Geographical Subdivision" >- libopac: "Geographical Subdivision" >+ liblibrarian: "Geographical subdivision" >+ libopac: "Geographical subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33523,7 +32428,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33531,26 +32436,8 @@ tables: > > - tagfield: "576" > tagsubfield: "z" >- liblibrarian: "Chronological Subdivision" >- libopac: "Chronological Subdivision" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 5 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "577" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >+ liblibrarian: "Chronological subdivision" >+ libopac: "Chronological subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33559,7 +32446,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33577,7 +32464,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33586,7 +32473,7 @@ tables: > - tagfield: "577" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33595,25 +32482,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "577" > tagsubfield: "a" >- liblibrarian: "Name" >- libopac: "Name" >+ liblibrarian: "Name [Work]" >+ libopac: "Name [Work]" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 5 > authorised_value: "" >- authtypecode: "" >+ authtypecode: NTEXP > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33621,8 +32508,8 @@ tables: > > - tagfield: "577" > tagsubfield: "c" >- liblibrarian: "Form of Work" >- libopac: "Form of Work" >+ liblibrarian: "Form of work [Work]" >+ libopac: "Form of work [Work]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33631,7 +32518,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33639,8 +32526,8 @@ tables: > > - tagfield: "577" > tagsubfield: "d" >- liblibrarian: "Date of Work" >- libopac: "Date of Work" >+ liblibrarian: "Date of work [Work]" >+ libopac: "Date of work [Work]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33649,7 +32536,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33657,8 +32544,8 @@ tables: > > - tagfield: "577" > tagsubfield: "e" >- liblibrarian: "Place of Origin of Work" >- libopac: "Place of Origin of Work" >+ liblibrarian: "Place of origin of work [Work]" >+ libopac: "Place of origin of work [Work]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33667,7 +32554,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33675,8 +32562,8 @@ tables: > > - tagfield: "577" > tagsubfield: "f" >- liblibrarian: "Original Language of the Work" >- libopac: "Original Language of the Work" >+ liblibrarian: "Original language of the work [Work]" >+ libopac: "Original language of the work [Work]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33685,7 +32572,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33693,8 +32580,8 @@ tables: > > - tagfield: "577" > tagsubfield: "h" >- liblibrarian: "Number of Section or Part" >- libopac: "Number of Section or Part" >+ liblibrarian: "Number of section or part [Work]" >+ libopac: "Number of section or part [Work]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33703,7 +32590,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33711,8 +32598,8 @@ tables: > > - tagfield: "577" > tagsubfield: "i" >- liblibrarian: "Name of Section or Part" >- libopac: "Name of Section or Part" >+ liblibrarian: "Name of section or part [Work]" >+ libopac: "Name of section or part [Work]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33721,7 +32608,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33729,8 +32616,8 @@ tables: > > - tagfield: "577" > tagsubfield: "j" >- liblibrarian: "Form Subdivision" >- libopac: "Form Subdivision" >+ liblibrarian: "Form subdivision" >+ libopac: "Form subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33739,7 +32626,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33747,8 +32634,8 @@ tables: > > - tagfield: "577" > tagsubfield: "k" >- liblibrarian: "Other Distinguishing Characteristics of a Work" >- libopac: "Other Distinguishing Characteristics of a Work" >+ liblibrarian: "Other distinguishing characteristics of a work [Work]" >+ libopac: "Other distinguishing characteristics of a work [Work]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33757,7 +32644,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33765,8 +32652,8 @@ tables: > > - tagfield: "577" > tagsubfield: "l" >- liblibrarian: "Form of the Expression [Expression]" >- libopac: "Form of the Expression [Expression]" >+ liblibrarian: "Form of the expression [Expression]" >+ libopac: "Form of the expression [Expression]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33775,7 +32662,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33783,8 +32670,8 @@ tables: > > - tagfield: "577" > tagsubfield: "m" >- liblibrarian: "Language of the Expression [Expression]" >- libopac: "Language of the Expression [Expression]" >+ liblibrarian: "Language of the expression [Expression]" >+ libopac: "Language of the expression [Expression]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33793,7 +32680,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33801,8 +32688,8 @@ tables: > > - tagfield: "577" > tagsubfield: "n" >- liblibrarian: "Content Type [Expression]" >- libopac: "Content Type [Expression]" >+ liblibrarian: "Content type [Expression]" >+ libopac: "Content type [Expression]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33811,7 +32698,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33819,8 +32706,8 @@ tables: > > - tagfield: "577" > tagsubfield: "o" >- liblibrarian: "Date of Expression [Expression]" >- libopac: "Date of Expression [Expression]" >+ liblibrarian: "Date of expression [Expression]" >+ libopac: "Date of expression [Expression]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33829,7 +32716,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33837,8 +32724,8 @@ tables: > > - tagfield: "577" > tagsubfield: "r" >- liblibrarian: "Medium of Performance (for Music)" >- libopac: "Medium of Performance (for Music)" >+ liblibrarian: "Medium of performance (for music) [Work]" >+ libopac: "Medium of performance (for music) [Work]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33847,7 +32734,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33855,8 +32742,8 @@ tables: > > - tagfield: "577" > tagsubfield: "s" >- liblibrarian: "Numeric Designation (for Music)" >- libopac: "Numeric Designation (for Music)" >+ liblibrarian: "Numeric designation (for music) [Work]" >+ libopac: "Numeric designation (for music) [Work]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33865,7 +32752,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33873,17 +32760,17 @@ tables: > > - tagfield: "577" > tagsubfield: "t" >- liblibrarian: "Title" >- libopac: "Title" >+ liblibrarian: "Title [Work]" >+ libopac: "Title [Work]" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 5 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33891,8 +32778,8 @@ tables: > > - tagfield: "577" > tagsubfield: "u" >- liblibrarian: "Key (for Music)" >- libopac: "Key (for Music)" >+ liblibrarian: "Key (for music) [Work]" >+ libopac: "Key (for music) [Work]" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -33901,7 +32788,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33909,8 +32796,8 @@ tables: > > - tagfield: "577" > tagsubfield: "v" >- liblibrarian: "Medium of Performance (for Music) [Expression]" >- libopac: "Medium of Performance (for Music) [Expression]" >+ liblibrarian: "Medium of performance (for music) [Expression]" >+ libopac: "Medium of performance (for music) [Expression]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33919,7 +32806,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33927,8 +32814,8 @@ tables: > > - tagfield: "577" > tagsubfield: "w" >- liblibrarian: "Other Characteristics of Expression [Expression]" >- libopac: "Other Characteristics of Expression [Expression]" >+ liblibrarian: "Other characteristics of expression [Expression]" >+ libopac: "Other characteristics of expression [Expression]" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33937,7 +32824,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33945,8 +32832,8 @@ tables: > > - tagfield: "577" > tagsubfield: "x" >- liblibrarian: "Topical Subdivision" >- libopac: "Topical Subdivision" >+ liblibrarian: "Topical subdivision" >+ libopac: "Topical subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33955,7 +32842,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33963,8 +32850,8 @@ tables: > > - tagfield: "577" > tagsubfield: "y" >- liblibrarian: "Geographical Subdivision" >- libopac: "Geographical Subdivision" >+ liblibrarian: "Geographical subdivision" >+ libopac: "Geographical subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33973,7 +32860,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -33981,8 +32868,8 @@ tables: > > - tagfield: "577" > tagsubfield: "z" >- liblibrarian: "Chronological Subdivision" >- libopac: "Chronological Subdivision" >+ liblibrarian: "Chronological subdivision" >+ libopac: "Chronological subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -33991,7 +32878,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34009,7 +32896,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34027,7 +32914,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34035,8 +32922,8 @@ tables: > > - tagfield: "600" > tagsubfield: "5" >- liblibrarian: "Institution and Copy to Which the Field Applies" >- libopac: "Institution and Copy to Which the Field Applies" >+ liblibrarian: "Institution and Copy to which the Field Applies" >+ libopac: "Institution and Copy to which the Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -34045,7 +32932,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "600" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34056,11 +32961,11 @@ tables: > liblibrarian: "Entry Element" > libopac: "Entry Element" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 6 > authorised_value: "" >- authtypecode: "" >+ authtypecode: NP > value_builder: "" > isurl: 0 > hidden: 0 >@@ -34081,7 +32986,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34099,7 +33004,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34117,7 +33022,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34135,7 +33040,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34153,7 +33058,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34171,7 +33076,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34179,8 +33084,8 @@ tables: > > - tagfield: "600" > tagsubfield: "p" >- liblibrarian: "Affiliation/Address" >- libopac: "Affiliation/Address" >+ liblibrarian: "Affiliation/address" >+ libopac: "Affiliation/address" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -34189,7 +33094,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34207,7 +33112,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34225,7 +33130,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34243,7 +33148,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34253,7 +33158,7 @@ tables: > tagsubfield: "2" > liblibrarian: "System Code" > libopac: "System Code" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -34261,7 +33166,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34279,7 +33184,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34287,8 +33192,8 @@ tables: > > - tagfield: "601" > tagsubfield: "5" >- liblibrarian: "Institution and Copy to Which the Field Applies" >- libopac: "Institution and Copy to Which the Field Applies" >+ liblibrarian: "Institution and Copy to which the Field Applies" >+ libopac: "Institution and Copy to which the Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -34297,7 +33202,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "601" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34308,11 +33231,11 @@ tables: > liblibrarian: "Entry Element" > libopac: "Entry Element" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 6 > authorised_value: "" >- authtypecode: "" >+ authtypecode: CO > value_builder: "" > isurl: 0 > hidden: 0 >@@ -34323,8 +33246,8 @@ tables: > > - tagfield: "601" > tagsubfield: "b" >- liblibrarian: "Subdivision (or Name if Entered under Place)" >- libopac: "Subdivision (or Name if Entered under Place)" >+ liblibrarian: "Subdivision (or name if entered under place)" >+ libopac: "Subdivision (or name if entered under place)" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -34333,7 +33256,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34351,7 +33274,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34369,7 +33292,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34387,7 +33310,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34405,7 +33328,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34423,7 +33346,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34431,8 +33354,8 @@ tables: > > - tagfield: "601" > tagsubfield: "h" >- liblibrarian: "Part of Name Other than Entry Element and Inverted Element" >- libopac: "Part of Name Other than Entry Element and Inverted Element" >+ liblibrarian: "Part of Name other than Entry Element and Inverted Element" >+ libopac: "Part of Name other than Entry Element and Inverted Element" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -34441,7 +33364,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34451,7 +33374,7 @@ tables: > tagsubfield: "j" > liblibrarian: "Form Subdivision" > libopac: "Form Subdivision" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -34459,7 +33382,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34477,7 +33400,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34495,7 +33418,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34513,7 +33436,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34531,7 +33454,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34549,7 +33472,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34557,8 +33480,26 @@ tables: > > - tagfield: "602" > tagsubfield: "5" >- liblibrarian: "Institution and Copy to Which the Field Applies" >- libopac: "Institution and Copy to Which the Field Applies" >+ liblibrarian: "Institution and Copy to which the Field Applies" >+ libopac: "Institution and Copy to which the Field Applies" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "602" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -34567,7 +33508,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34582,7 +33523,7 @@ tables: > kohafield: "" > tab: 6 > authorised_value: "" >- authtypecode: "" >+ authtypecode: FAM > value_builder: "" > isurl: 0 > hidden: 0 >@@ -34603,7 +33544,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34621,7 +33562,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34639,7 +33580,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34657,7 +33598,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34675,17 +33616,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "604" >- tagsubfield: "1" >- liblibrarian: "Linking Data" >- libopac: "Linking Data" >- repeatable: 1 >+ tagsubfield: "2" >+ liblibrarian: "System Code" >+ libopac: "System Code" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -34693,7 +33634,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34701,8 +33642,8 @@ tables: > > - tagfield: "604" > tagsubfield: "3" >- liblibrarian: "Authority Record Number" >- libopac: "Authority Record Number" >+ liblibrarian: "Authority record number" >+ libopac: "Authority record number" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -34711,7 +33652,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "604" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34722,14 +33681,14 @@ tables: > liblibrarian: "Entry Element Name" > libopac: "Entry Element Name" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 6 > authorised_value: "" >- authtypecode: "" >+ authtypecode: SAUTTIT > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -34737,8 +33696,8 @@ tables: > > - tagfield: "604" > tagsubfield: "j" >- liblibrarian: "Form Subdivision" >- libopac: "Form Subdivision" >+ liblibrarian: "Form subdivision" >+ libopac: "Form subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -34747,7 +33706,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34758,14 +33717,14 @@ tables: > liblibrarian: "Title" > libopac: "Title" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 6 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34773,8 +33732,8 @@ tables: > > - tagfield: "604" > tagsubfield: "x" >- liblibrarian: "Topical Subdivision" >- libopac: "Topical Subdivision" >+ liblibrarian: "Topical subdivision" >+ libopac: "Topical subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -34783,7 +33742,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34791,8 +33750,8 @@ tables: > > - tagfield: "604" > tagsubfield: "y" >- liblibrarian: "Geographical Subdivision" >- libopac: "Geographical Subdivision" >+ liblibrarian: "Geographical subdivision" >+ libopac: "Geographical subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -34801,7 +33760,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34809,8 +33768,8 @@ tables: > > - tagfield: "604" > tagsubfield: "z" >- liblibrarian: "Chronological Subdivision" >- libopac: "Chronological Subdivision" >+ liblibrarian: "Chronological subdivision" >+ libopac: "Chronological subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -34819,7 +33778,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34837,7 +33796,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34855,7 +33814,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "605" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34870,7 +33847,7 @@ tables: > kohafield: "" > tab: 6 > authorised_value: "" >- authtypecode: "" >+ authtypecode: TU > value_builder: "" > isurl: 0 > hidden: 0 >@@ -34891,7 +33868,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34909,7 +33886,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34927,7 +33904,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34945,7 +33922,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34963,7 +33940,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34971,8 +33948,8 @@ tables: > > - tagfield: "605" > tagsubfield: "m" >- liblibrarian: "Language (when Part of Heading)" >- libopac: "Language (when Part of Heading)" >+ liblibrarian: "Language (when part of heading)" >+ libopac: "Language (when part of heading)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -34981,7 +33958,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -34999,7 +33976,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35017,7 +33994,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35035,7 +34012,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35053,7 +34030,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35071,7 +34048,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35089,7 +34066,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35107,7 +34084,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35125,7 +34102,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35143,7 +34120,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35161,7 +34138,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35179,16 +34156,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "606" >- tagsubfield: "9" >- liblibrarian: "Koha Internal code" >- libopac: "Koha Internal code" >+ tagsubfield: "5" >+ liblibrarian: "" >+ libopac: "" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -35197,7 +34174,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 1 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "606" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35209,10 +34204,10 @@ tables: > libopac: "Entry Element" > repeatable: 0 > mandatory: 0 >- kohafield: >+ kohafield: "" > tab: 6 > authorised_value: "" >- authtypecode: "" >+ authtypecode: SNC > value_builder: "" > isurl: 0 > hidden: 0 >@@ -35233,7 +34228,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35251,7 +34246,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35269,7 +34264,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35287,7 +34282,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35305,7 +34300,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35323,7 +34318,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "607" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35338,7 +34351,7 @@ tables: > kohafield: "" > tab: 6 > authorised_value: "" >- authtypecode: "" >+ authtypecode: SNG > value_builder: "" > isurl: 0 > hidden: 0 >@@ -35359,7 +34372,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35377,7 +34390,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35395,7 +34408,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35413,7 +34426,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35431,7 +34444,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35449,7 +34462,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35457,8 +34470,8 @@ tables: > > - tagfield: "608" > tagsubfield: "5" >- liblibrarian: "Institution and Copy to Which the Field Applies" >- libopac: "Institution and Copy to Which the Field Applies" >+ liblibrarian: "Institution and Copy to which the Field Applies" >+ libopac: "Institution and Copy to which the Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -35467,7 +34480,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "608" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35482,7 +34513,7 @@ tables: > kohafield: "" > tab: 6 > authorised_value: "" >- authtypecode: "" >+ authtypecode: GENRE/FORM > value_builder: "" > isurl: 0 > hidden: 0 >@@ -35503,7 +34534,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35521,7 +34552,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35539,7 +34570,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35557,7 +34588,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35565,8 +34596,8 @@ tables: > > - tagfield: "610" > tagsubfield: "5" >- liblibrarian: "Institution and Copy to Which the Field Applies" >- libopac: "Institution and Copy to Which the Field Applies" >+ liblibrarian: "Institution and Copy to which the Field Applies" >+ libopac: "Institution and Copy to which the Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -35575,7 +34606,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35611,7 +34642,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35629,7 +34660,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "615" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35665,7 +34714,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35683,7 +34732,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35701,7 +34750,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35709,8 +34758,8 @@ tables: > > - tagfield: "616" > tagsubfield: "2" >- liblibrarian: "System Code" >- libopac: "System Code" >+ liblibrarian: "System code" >+ libopac: "System code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -35719,7 +34768,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35737,16 +34786,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > > - tagfield: "616" >- tagsubfield: "a" >- liblibrarian: "Entry Element" >- libopac: "Entry Element" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -35755,7 +34804,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "616" >+ tagsubfield: "a" >+ liblibrarian: "Entry element" >+ libopac: "Entry element" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: TM >+ value_builder: "" >+ isurl: 0 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -35773,7 +34840,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35783,7 +34850,7 @@ tables: > tagsubfield: "f" > liblibrarian: "Dates" > libopac: "Dates" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -35791,7 +34858,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35799,8 +34866,8 @@ tables: > > - tagfield: "616" > tagsubfield: "j" >- liblibrarian: "Form Subdivision" >- libopac: "Form Subdivision" >+ liblibrarian: "Form subdivision" >+ libopac: "Form subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -35809,7 +34876,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35817,8 +34884,8 @@ tables: > > - tagfield: "616" > tagsubfield: "x" >- liblibrarian: "Topical Subdivision" >- libopac: "Topical Subdivision" >+ liblibrarian: "Topical subdivision" >+ libopac: "Topical subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -35827,7 +34894,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35835,8 +34902,8 @@ tables: > > - tagfield: "616" > tagsubfield: "y" >- liblibrarian: "Geographical Subdivision" >- libopac: "Geographical Subdivision" >+ liblibrarian: "Geographical subdivision" >+ libopac: "Geographical subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -35845,7 +34912,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35853,8 +34920,8 @@ tables: > > - tagfield: "616" > tagsubfield: "z" >- liblibrarian: "Chronological Subdivision" >- libopac: "Chronological Subdivision" >+ liblibrarian: "Chronological subdivision" >+ libopac: "Chronological subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -35863,7 +34930,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35881,7 +34948,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35899,30 +34966,12 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "617" >- tagsubfield: "9" >- liblibrarian: "Koha number" >- libopac: "" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 6 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: "" >- > - tagfield: "617" > tagsubfield: "a" > liblibrarian: "Country (Nation State)" >@@ -35935,7 +34984,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -35953,7 +35002,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35971,7 +35020,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -35989,7 +35038,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36007,7 +35056,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36025,7 +35074,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36043,7 +35092,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36061,7 +35110,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36069,8 +35118,8 @@ tables: > > - tagfield: "617" > tagsubfield: "i" >- liblibrarian: "Final Date" >- libopac: "Final Date" >+ liblibrarian: "Final date" >+ libopac: "Final date" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -36079,7 +35128,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36097,7 +35146,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36115,7 +35164,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36133,7 +35182,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36141,8 +35190,8 @@ tables: > > - tagfield: "617" > tagsubfield: "o" >- liblibrarian: "Geographical Areas Such as World, Hemisphere, Continent: Larger Area than Country" >- libopac: "Geographical Areas Such as World, Hemisphere, Continent: Larger Area than Country" >+ liblibrarian: "Geographical areas such as world, hemisphere, continent: larger area than country" >+ libopac: "Geographical areas such as world, hemisphere, continent: larger area than country" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -36151,7 +35200,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36169,7 +35218,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36179,7 +35228,7 @@ tables: > tagsubfield: "3" > liblibrarian: "Authority Record Number" > libopac: "Authority Record Number" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36187,7 +35236,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36197,7 +35246,7 @@ tables: > tagsubfield: "a" > liblibrarian: "Country (Nation State)" > libopac: "Country (Nation State)" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36223,7 +35272,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36233,7 +35282,7 @@ tables: > tagsubfield: "c" > liblibrarian: "Intermediate Political Jurisdiction" > libopac: "Intermediate Political Jurisdiction" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36241,7 +35290,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36259,7 +35308,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36269,7 +35318,7 @@ tables: > tagsubfield: "e" > liblibrarian: "Venue" > libopac: "Venue" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36277,7 +35326,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36287,7 +35336,7 @@ tables: > tagsubfield: "f" > liblibrarian: "Date" > libopac: "Date" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36295,7 +35344,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36313,7 +35362,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36331,7 +35380,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36339,8 +35388,8 @@ tables: > > - tagfield: "620" > tagsubfield: "i" >- liblibrarian: "Final Date" >- libopac: "Final Date" >+ liblibrarian: "Final date" >+ libopac: "Final date" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -36349,7 +35398,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36359,7 +35408,7 @@ tables: > tagsubfield: "k" > liblibrarian: "Subsection of City, etc." > libopac: "Subsection of City, etc." >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36367,7 +35416,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36377,7 +35426,7 @@ tables: > tagsubfield: "m" > liblibrarian: "Other Geographical Regions or Features" > libopac: "Other Geographical Regions or Features" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36385,7 +35434,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36395,7 +35444,7 @@ tables: > tagsubfield: "n" > liblibrarian: "Extraterrestrial Areas" > libopac: "Extraterrestrial Areas" >- repeatable: 1 >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36403,7 +35452,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36411,9 +35460,9 @@ tables: > > - tagfield: "620" > tagsubfield: "o" >- liblibrarian: "Geographical Areas Such as World, Hemisphere, Continent: Larger Area than Country" >- libopac: "Geographical Areas Such as World, Hemisphere, Continent: Larger Area than Country" >- repeatable: 1 >+ liblibrarian: "Geographical areas such as world, hemisphere, continent: larger area than country" >+ libopac: "Geographical areas such as world, hemisphere, continent: larger area than country" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36421,7 +35470,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36429,8 +35478,8 @@ tables: > > - tagfield: "621" > tagsubfield: "2" >- liblibrarian: "System Code" >- libopac: "System Code" >+ liblibrarian: "System code" >+ libopac: "System code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -36439,7 +35488,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36457,7 +35506,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36465,8 +35514,8 @@ tables: > > - tagfield: "621" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to which the field applies" >+ libopac: "Institution and Copy to which the field applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -36475,30 +35524,12 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" > defaultvalue: > >- - tagfield: "621" >- tagsubfield: "9" >- liblibrarian: "Koha number" >- libopac: "" >- repeatable: 0 >- mandatory: 0 >- kohafield: "" >- tab: 6 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: "" >- > - tagfield: "621" > tagsubfield: "a" > liblibrarian: "Country (Nation State) or Larger Entity Country" >@@ -36511,7 +35542,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -36529,7 +35560,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36547,7 +35578,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36565,7 +35596,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36573,8 +35604,8 @@ tables: > > - tagfield: "621" > tagsubfield: "e" >- liblibrarian: "Building, Vehicle, etc." >- libopac: "Building, Vehicle, etc." >+ liblibrarian: "Building, vehicle, etc." >+ libopac: "Building, vehicle, etc." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -36583,7 +35614,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36601,7 +35632,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36619,7 +35650,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36637,7 +35668,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36655,7 +35686,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36673,7 +35704,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36681,8 +35712,8 @@ tables: > > - tagfield: "621" > tagsubfield: "m" >- liblibrarian: "Other Geographic Regions or Features" >- libopac: "Other Geographic Regions or Features" >+ liblibrarian: "Other geographic regions or features" >+ libopac: "Other geographic regions or features" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -36691,7 +35722,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36699,8 +35730,8 @@ tables: > > - tagfield: "621" > tagsubfield: "n" >- liblibrarian: "Extraterrestrial Area" >- libopac: "Extraterrestrial Area" >+ liblibrarian: "Extraterrestrial area" >+ libopac: "Extraterrestrial area" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -36709,7 +35740,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36717,8 +35748,8 @@ tables: > > - tagfield: "621" > tagsubfield: "o" >- liblibrarian: "Geographical Areas Such as World, Hemisphere, Continent: Larger Area than Country" >- libopac: "Geographical Areas Such as World, Hemisphere, Continent: Larger Area than Country" >+ liblibrarian: "Geographical areas such as world, hemisphere, continent: larger area than country" >+ libopac: "Geographical areas such as world, hemisphere, continent: larger area than country" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -36727,7 +35758,97 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "623" >+ tagsubfield: "3" >+ liblibrarian: "Authority Record Number" >+ libopac: "Authority Record Number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "623" >+ tagsubfield: "6" >+ liblibrarian: "Interfield linking data" >+ libopac: "Interfield linking data" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "623" >+ tagsubfield: "a" >+ liblibrarian: "Entry element" >+ libopac: "Entry element" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "623" >+ tagsubfield: "b" >+ liblibrarian: "Part of name other than entry element" >+ libopac: "Part of name other than entry element" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "623" >+ tagsubfield: "c" >+ liblibrarian: "Part of name other than entry element" >+ libopac: "Part of name other than entry element" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36763,7 +35884,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36781,7 +35902,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -36790,7 +35911,7 @@ tables: > - tagfield: "631" > tagsubfield: "2" > liblibrarian: "System Code" >- libopac: "" >+ libopac: "System Code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -36799,17 +35920,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "631" > tagsubfield: "3" > liblibrarian: "Authority Record Number" >- libopac: "" >- repeatable: 1 >+ libopac: "Authority Record Number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36817,16 +35938,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "631" > tagsubfield: "8" > liblibrarian: "Materials specified" >- libopac: "" >+ libopac: "Materials specified" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -36835,16 +35956,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "631" >- tagsubfield: "a" >- liblibrarian: "occupation" >- libopac: "sujet" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -36853,16 +35974,34 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: >+ >+ - tagfield: "631" >+ tagsubfield: "a" >+ liblibrarian: "Occupation" >+ libopac: "Occupation" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: PERS >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: > > - tagfield: "631" > tagsubfield: "b" >- liblibrarian: "form" >- libopac: "" >+ liblibrarian: "Form" >+ libopac: "Form" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -36871,16 +36010,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "631" > tagsubfield: "j" > liblibrarian: "Form Subdivision" >- libopac: "" >+ libopac: "Form Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -36889,16 +36028,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "631" > tagsubfield: "x" > liblibrarian: "Topical Subdivision" >- libopac: "" >+ libopac: "Topical Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -36907,16 +36046,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "631" > tagsubfield: "y" > liblibrarian: "Geographical Subdivision" >- libopac: "" >+ libopac: "Geographical Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -36925,16 +36064,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "631" > tagsubfield: "z" > liblibrarian: "Chronological Subdivision" >- libopac: "" >+ libopac: "Chronological Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -36943,16 +36082,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "632" > tagsubfield: "2" > liblibrarian: "System Code" >- libopac: "" >+ libopac: "System Code" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -36961,17 +36100,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "632" > tagsubfield: "3" > liblibrarian: "Authority Record Number" >- libopac: "" >- repeatable: 1 >+ libopac: "Authority Record Number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -36979,16 +36118,34 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "632" > tagsubfield: "8" > liblibrarian: "Materials specified" >- libopac: "" >+ libopac: "Materials specified" >+ repeatable: 1 >+ mandatory: 0 >+ kohafield: "" >+ tab: 6 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "632" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -36997,34 +36154,34 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: 1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "632" > tagsubfield: "a" > liblibrarian: "Function" >- libopac: "" >+ libopac: "Function" > repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 6 > authorised_value: "" >- authtypecode: "" >+ authtypecode: PERS > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "632" > tagsubfield: "j" > liblibrarian: "Form Subdivision" >- libopac: "" >+ libopac: "Form Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -37033,16 +36190,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "632" > tagsubfield: "x" > liblibrarian: "Topical Subdivision" >- libopac: "" >+ libopac: "Topical Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -37051,16 +36208,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "632" > tagsubfield: "y" > liblibrarian: "Geographical Subdivision" >- libopac: "" >+ libopac: "Geographical Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -37069,16 +36226,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "632" > tagsubfield: "z" > liblibrarian: "Chronological Subdivision" >- libopac: "" >+ libopac: "Chronological Subdivision" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -37087,11 +36244,11 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "660" > tagsubfield: "a" >@@ -37141,7 +36298,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37159,7 +36316,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37177,7 +36334,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37195,7 +36352,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37213,7 +36370,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37249,7 +36406,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37257,8 +36414,8 @@ tables: > > - tagfield: "675" > tagsubfield: "z" >- liblibrarian: "Language of Edition" >- libopac: "Language of Edition" >+ liblibrarian: "Language of edition" >+ libopac: "Language of edition" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -37267,7 +36424,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37277,7 +36434,7 @@ tables: > tagsubfield: "3" > liblibrarian: "Classification Record Number" > libopac: "Classification Record Number" >- repeatable: 0 >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 6 >@@ -37285,7 +36442,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37297,7 +36454,7 @@ tables: > libopac: "Number" > repeatable: 0 > mandatory: 0 >- kohafield: biblioitems.dewey >+ kohafield: "" > tab: 6 > authorised_value: "" > authtypecode: "" >@@ -37321,7 +36478,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37329,8 +36486,8 @@ tables: > > - tagfield: "676" > tagsubfield: "z" >- liblibrarian: "Language of Edition" >- libopac: "Language of Edition" >+ liblibrarian: "Language of edition" >+ libopac: "Language of edition" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -37339,7 +36496,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37357,7 +36514,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37365,8 +36522,8 @@ tables: > > - tagfield: "680" > tagsubfield: "a" >- liblibrarian: "Class Number" >- libopac: "Class Number" >+ liblibrarian: "Class number" >+ libopac: "Class number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -37383,8 +36540,8 @@ tables: > > - tagfield: "680" > tagsubfield: "b" >- liblibrarian: "Book Number" >- libopac: "Book Number" >+ liblibrarian: "Book number" >+ libopac: "Book number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -37393,7 +36550,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37411,7 +36568,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37429,7 +36586,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37437,8 +36594,8 @@ tables: > > - tagfield: "686" > tagsubfield: "a" >- liblibrarian: "Class Number" >- libopac: "Class Number" >+ liblibrarian: "Class number" >+ libopac: "Class number" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -37465,7 +36622,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37483,7 +36640,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37501,7 +36658,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37519,7 +36676,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37533,7 +36690,7 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -37546,8 +36703,8 @@ tables: > - tagfield: "700" > tagsubfield: "8" > liblibrarian: "Materials specified" >- libopac: "" >- repeatable: 1 >+ libopac: "Materials specified" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -37559,12 +36716,12 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "700" > tagsubfield: "9" >- liblibrarian: "Koha Internal Code" >- libopac: "Koha Internal Code" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -37573,7 +36730,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 1 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37588,7 +36745,7 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: PER >+ authtypecode: NP > value_builder: "" > isurl: 0 > hidden: 0 >@@ -37690,8 +36847,8 @@ tables: > - tagfield: "700" > tagsubfield: "k" > liblibrarian: "Attribution qualifier" >- libopac: "" >- repeatable: 1 >+ libopac: "Attribution qualifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -37703,12 +36860,12 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "700" > tagsubfield: "o" >- liblibrarian: "International Standard Identifier for the Name" >- libopac: "International Standard Identifier for the Name" >+ liblibrarian: "International standard identifier for the name" >+ libopac: "International standard identifier for the name" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -37717,7 +36874,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -37725,8 +36882,8 @@ tables: > > - tagfield: "700" > tagsubfield: "p" >- liblibrarian: "Affiliation/Address" >- libopac: "Affiliation/Address" >+ liblibrarian: "Affiliation/address" >+ libopac: "Affiliation/address" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -37753,7 +36910,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37767,7 +36924,7 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -37777,29 +36934,11 @@ tables: > link: "" > defaultvalue: > >- - tagfield: "701" >- tagsubfield: "8" >- liblibrarian: "Materials specified" >- libopac: "" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: "" >- > - tagfield: "701" > tagsubfield: "9" >- liblibrarian: "Koha Internal Code" >- libopac: "Koha Internal Code" >- repeatable: 0 >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -37807,7 +36946,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -37822,7 +36961,7 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: NP > value_builder: "" > isurl: 0 > hidden: 0 >@@ -37924,26 +37063,8 @@ tables: > - tagfield: "701" > tagsubfield: "k" > liblibrarian: "Attribution qualifier" >- libopac: "" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: "" >- >- - tagfield: "701" >- tagsubfield: "o" >- liblibrarian: "ISNI" >- libopac: "" >- repeatable: 1 >+ libopac: "Attribution qualifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -37955,12 +37076,12 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "701" > tagsubfield: "p" >- liblibrarian: "Affiliation/Address" >- libopac: "Affiliation/Address" >+ liblibrarian: "Affiliation/address" >+ libopac: "Affiliation/address" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -37987,7 +37108,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -38001,7 +37122,7 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -38013,8 +37134,8 @@ tables: > > - tagfield: "702" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -38023,34 +37144,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "702" >- tagsubfield: "8" >- liblibrarian: "Materials specified" >- libopac: "" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 > hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "702" > tagsubfield: "9" >- liblibrarian: "Koha Internal Code" >- libopac: "Koha Internal Code" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -38059,7 +37162,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -38074,7 +37177,7 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: NP > value_builder: "" > isurl: 0 > hidden: 0 >@@ -38173,46 +37276,10 @@ tables: > link: "" > defaultvalue: > >- - tagfield: "702" >- tagsubfield: "k" >- liblibrarian: "Attribution qualifier" >- libopac: "" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: "" >- >- - tagfield: "702" >- tagsubfield: "o" >- liblibrarian: "International Standard Identifier for the Name" >- libopac: "International Standard Identifier for the Name" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- > - tagfield: "702" > tagsubfield: "p" >- liblibrarian: "Affiliation/Address" >- libopac: "Affiliation/Address" >+ liblibrarian: "Affiliation/address" >+ libopac: "Affiliation/address" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -38229,8 +37296,8 @@ tables: > > - tagfield: "702" > tagsubfield: "r" >- liblibrarian: "Part or Role Played" >- libopac: "Part or Role Played" >+ liblibrarian: "Part or Role played" >+ libopac: "Part or Role played" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -38239,7 +37306,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38257,7 +37324,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38271,11 +37338,11 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38283,8 +37350,8 @@ tables: > > - tagfield: "703" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution to which the Field Applies" >+ libopac: "Institution to which the Field Applies" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -38293,7 +37360,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38302,8 +37369,8 @@ tables: > - tagfield: "703" > tagsubfield: "8" > liblibrarian: "Materials specified" >- libopac: "" >- repeatable: 1 >+ libopac: "Materials specified" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -38315,12 +37382,12 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "703" > tagsubfield: "9" >- liblibrarian: "koha internal code" >- libopac: "" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -38329,11 +37396,11 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 1 >+ hidden: 0 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "703" > tagsubfield: "a" >@@ -38344,10 +37411,10 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: NP > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38365,7 +37432,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38383,7 +37450,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38401,7 +37468,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38419,7 +37486,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38437,7 +37504,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38446,8 +37513,8 @@ tables: > - tagfield: "703" > tagsubfield: "k" > liblibrarian: "Attribution qualifier" >- libopac: "" >- repeatable: 1 >+ libopac: "Attribution qualifier" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -38459,13 +37526,13 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "703" > tagsubfield: "o" >- liblibrarian: "International Standard Identifier for the Name" >- libopac: "International Standard Identifier for the Name" >- repeatable: 1 >+ liblibrarian: "International standard identifier for the name" >+ libopac: "International standard identifier for the name" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -38473,7 +37540,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38481,8 +37548,8 @@ tables: > > - tagfield: "703" > tagsubfield: "p" >- liblibrarian: "Affiliation/Address" >- libopac: "Affiliation/Address" >+ liblibrarian: "Affiliation/address" >+ libopac: "Affiliation/address" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -38491,7 +37558,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38509,7 +37576,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -38523,7 +37590,7 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -38536,8 +37603,8 @@ tables: > - tagfield: "710" > tagsubfield: "8" > liblibrarian: "Materials specified" >- libopac: "" >- repeatable: 1 >+ libopac: "Materials specified" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -38549,13 +37616,13 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "710" > tagsubfield: "9" >- liblibrarian: "koha internal code" >- libopac: "" >- repeatable: 1 >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -38563,11 +37630,11 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "710" > tagsubfield: "a" >@@ -38578,7 +37645,7 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: CO > value_builder: "" > isurl: 0 > hidden: 0 >@@ -38715,8 +37782,8 @@ tables: > > - tagfield: "710" > tagsubfield: "o" >- liblibrarian: "International Standard Identifier for the Name" >- libopac: "International Standard Identifier for the Name" >+ liblibrarian: "International standard identifier for the name" >+ libopac: "International standard identifier for the name" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -38725,7 +37792,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -38733,8 +37800,8 @@ tables: > > - tagfield: "710" > tagsubfield: "p" >- liblibrarian: "Affiliation/Address" >- libopac: "Affiliation/Address" >+ liblibrarian: "Affiliation/address" >+ libopac: "Affiliation/address" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -38761,7 +37828,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -38775,7 +37842,7 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -38785,29 +37852,11 @@ tables: > link: "" > defaultvalue: > >- - tagfield: "711" >- tagsubfield: "8" >- liblibrarian: "Materials specified" >- libopac: "" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: "" >- > - tagfield: "711" > tagsubfield: "9" >- liblibrarian: "koha internal code" >- libopac: "" >- repeatable: 1 >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -38815,11 +37864,11 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "711" > tagsubfield: "a" >@@ -38830,7 +37879,7 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: CO > value_builder: "" > isurl: 0 > hidden: 0 >@@ -38965,28 +38014,10 @@ tables: > link: "" > defaultvalue: > >- - tagfield: "711" >- tagsubfield: "o" >- liblibrarian: "ISNI" >- libopac: "" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: "" >- > - tagfield: "711" > tagsubfield: "p" >- liblibrarian: "Affiliation/Address" >- libopac: "Affiliation/Address" >+ liblibrarian: "Affiliation/address" >+ libopac: "Affiliation/address" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -39013,7 +38044,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -39027,7 +38058,7 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -39039,27 +38070,9 @@ tables: > > - tagfield: "712" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution and Copy to Which Field Applies" >+ libopac: "Institution and Copy to Which Field Applies" > repeatable: 0 >- mandatory: 1 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "712" >- tagsubfield: "8" >- liblibrarian: "Materials specified" >- libopac: "" >- repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -39071,13 +38084,13 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "712" > tagsubfield: "9" >- liblibrarian: "koha internal code" >- libopac: "" >- repeatable: 1 >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -39085,11 +38098,11 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "712" > tagsubfield: "a" >@@ -39100,7 +38113,7 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: CO > value_builder: "" > isurl: 0 > hidden: 0 >@@ -39235,28 +38248,10 @@ tables: > link: "" > defaultvalue: > >- - tagfield: "712" >- tagsubfield: "o" >- liblibrarian: "ISNI" >- libopac: "" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: "" >- > - tagfield: "712" > tagsubfield: "p" >- liblibrarian: "Affiliation/Address" >- libopac: "Affiliation/Address" >+ liblibrarian: "Affiliation/address" >+ libopac: "Affiliation/address" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -39273,9 +38268,9 @@ tables: > > - tagfield: "712" > tagsubfield: "r" >- liblibrarian: "Part or Role Played" >- libopac: "Part or Role Played" >- repeatable: 1 >+ liblibrarian: "Part or Role played" >+ libopac: "Part or Role played" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -39283,7 +38278,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39301,7 +38296,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39315,11 +38310,11 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39327,17 +38322,17 @@ tables: > > - tagfield: "713" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution to which the Field Applies" >+ libopac: "Institution to which the Field Applies" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 7 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39346,8 +38341,8 @@ tables: > - tagfield: "713" > tagsubfield: "8" > liblibrarian: "Materials specified" >- libopac: "" >- repeatable: 1 >+ libopac: "Materials specified" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -39359,12 +38354,12 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "713" > tagsubfield: "9" >- liblibrarian: "koha internal code" >- libopac: "" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -39375,9 +38370,9 @@ tables: > isurl: 0 > hidden: 0 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "713" > tagsubfield: "a" >@@ -39388,10 +38383,10 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: CO > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39409,7 +38404,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39427,7 +38422,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39445,7 +38440,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39463,7 +38458,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39481,7 +38476,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39499,7 +38494,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39517,7 +38512,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39525,9 +38520,9 @@ tables: > > - tagfield: "713" > tagsubfield: "o" >- liblibrarian: "ISNI" >- libopac: "" >- repeatable: 1 >+ liblibrarian: "International standard identifier for the name" >+ libopac: "International standard identifier for the name" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -39539,12 +38534,12 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "713" > tagsubfield: "p" >- liblibrarian: "Affiliation/Address" >- libopac: "Affiliation/Address" >+ liblibrarian: "Affiliation/address" >+ libopac: "Affiliation/address" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -39553,7 +38548,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39571,7 +38566,25 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 >+ frameworkcode: "" >+ seealso: "" >+ link: "" >+ defaultvalue: >+ >+ - tagfield: "716" >+ tagsubfield: "9" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" >+ repeatable: 0 >+ mandatory: 0 >+ kohafield: "" >+ tab: 7 >+ authorised_value: "" >+ authtypecode: "" >+ value_builder: "" >+ isurl: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -39586,10 +38599,10 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: TM > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39607,7 +38620,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39625,7 +38638,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39643,7 +38656,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -39657,7 +38670,7 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -39670,7 +38683,7 @@ tables: > - tagfield: "720" > tagsubfield: "8" > liblibrarian: "Materials specified" >- libopac: "" >+ libopac: "Materials specified" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -39679,17 +38692,17 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "720" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >- repeatable: 1 >+ libopac: "Koha number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -39697,11 +38710,11 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "720" > tagsubfield: "a" >@@ -39712,7 +38725,7 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: FAM > value_builder: "" > isurl: 0 > hidden: 0 >@@ -39723,8 +38736,8 @@ tables: > > - tagfield: "720" > tagsubfield: "c" >- liblibrarian: "Type of Family" >- libopac: "Type of Family" >+ liblibrarian: "Type of family" >+ libopac: "Type of family" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -39733,7 +38746,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39741,8 +38754,8 @@ tables: > > - tagfield: "720" > tagsubfield: "d" >- liblibrarian: "Places Associated with the Family" >- libopac: "Places Associated with the Family" >+ liblibrarian: "Places associated with the family" >+ libopac: "Places associated with the family" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -39751,7 +38764,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39777,9 +38790,9 @@ tables: > > - tagfield: "720" > tagsubfield: "o" >- liblibrarian: "International Standard Identifier for the Name" >- libopac: "International Standard Identifier for the Name" >- repeatable: 1 >+ liblibrarian: "International standard identifier for the name" >+ libopac: "International standard identifier for the name" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -39787,7 +38800,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -39805,7 +38818,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -39819,7 +38832,7 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -39829,28 +38842,10 @@ tables: > link: "" > defaultvalue: > >- - tagfield: "721" >- tagsubfield: "8" >- liblibrarian: "Materials specified" >- libopac: "" >- repeatable: 1 >- mandatory: 0 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: 0 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: "" >- > - tagfield: "721" > tagsubfield: "9" >- liblibrarian: "koha internal code" >- libopac: "" >+ liblibrarian: "Koha number" >+ libopac: "Koha number" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -39859,11 +38854,11 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "721" > tagsubfield: "a" >@@ -39874,7 +38869,7 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: FAM > value_builder: "" > isurl: 0 > hidden: 0 >@@ -39886,7 +38881,7 @@ tables: > - tagfield: "721" > tagsubfield: "c" > liblibrarian: "Type of family" >- libopac: "" >+ libopac: "Type of family" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -39895,16 +38890,16 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "721" > tagsubfield: "d" >- liblibrarian: "Places Associated with the Family" >- libopac: "" >+ liblibrarian: "Places associated with the family" >+ libopac: "Places associated with the family" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -39913,11 +38908,11 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "721" > tagsubfield: "f" >@@ -39939,9 +38934,9 @@ tables: > > - tagfield: "721" > tagsubfield: "o" >- liblibrarian: "ISNI" >- libopac: "" >- repeatable: 1 >+ liblibrarian: "International standard identifier for the name" >+ libopac: "International standard identifier for the name" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -39953,7 +38948,7 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "722" > tagsubfield: "3" >@@ -39967,7 +38962,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -39981,7 +38976,7 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >@@ -39993,26 +38988,8 @@ tables: > > - tagfield: "722" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >- repeatable: 0 >- mandatory: 1 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "722" >- tagsubfield: "8" >- liblibrarian: "Materials specified" >- libopac: "" >+ liblibrarian: "Institution to which the Field Applies" >+ libopac: "Institution to which the Field Applies" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40025,13 +39002,13 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "722" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >- repeatable: 1 >+ libopac: "Koha number" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -40039,11 +39016,11 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 0 >+ hidden: -1 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "722" > tagsubfield: "a" >@@ -40054,7 +39031,7 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: FAM > value_builder: "" > isurl: 0 > hidden: 0 >@@ -40065,8 +39042,8 @@ tables: > > - tagfield: "722" > tagsubfield: "c" >- liblibrarian: "Type of Family" >- libopac: "Type of Family" >+ liblibrarian: "Type of family" >+ libopac: "Type of family" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -40075,7 +39052,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40083,8 +39060,8 @@ tables: > > - tagfield: "722" > tagsubfield: "d" >- liblibrarian: "Places Associated with the Family" >- libopac: "Places Associated with the Family" >+ liblibrarian: "Places associated with the family" >+ libopac: "Places associated with the family" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40093,7 +39070,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40119,9 +39096,9 @@ tables: > > - tagfield: "722" > tagsubfield: "o" >- liblibrarian: "International Standard Identifier for the Name" >- libopac: "International Standard Identifier for the Name" >- repeatable: 1 >+ liblibrarian: "International standard identifier for the name" >+ libopac: "International standard identifier for the name" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -40129,7 +39106,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40137,8 +39114,8 @@ tables: > > - tagfield: "722" > tagsubfield: "r" >- liblibrarian: "Part or Role Played" >- libopac: "Part or Role Played" >+ liblibrarian: "Part or Role played" >+ libopac: "Part or Role played" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40147,7 +39124,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40165,7 +39142,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 4 > frameworkcode: "" > seealso: "" > link: "" >@@ -40179,11 +39156,11 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40191,27 +39168,9 @@ tables: > > - tagfield: "723" > tagsubfield: "5" >- liblibrarian: "Institution to Which the Field Applies" >- libopac: "Institution to Which the Field Applies" >+ liblibrarian: "Institution to which the Field Applies" >+ libopac: "Institution to which the Field Applies" > repeatable: 0 >- mandatory: 1 >- kohafield: "" >- tab: 7 >- authorised_value: "" >- authtypecode: "" >- value_builder: "" >- isurl: 0 >- hidden: -6 >- frameworkcode: "" >- seealso: "" >- link: "" >- defaultvalue: >- >- - tagfield: "723" >- tagsubfield: "8" >- liblibrarian: "Materials specified" >- libopac: "" >- repeatable: 1 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -40223,12 +39182,12 @@ tables: > frameworkcode: "" > seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "723" > tagsubfield: "9" > liblibrarian: "Koha number" >- libopac: "" >+ libopac: "Koha number" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -40237,11 +39196,11 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: 1 >+ hidden: 0 > frameworkcode: "" >- seealso: >+ seealso: "" > link: "" >- defaultvalue: "" >+ defaultvalue: > > - tagfield: "723" > tagsubfield: "a" >@@ -40252,10 +39211,10 @@ tables: > kohafield: "" > tab: 7 > authorised_value: "" >- authtypecode: "" >+ authtypecode: FAM > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40263,8 +39222,8 @@ tables: > > - tagfield: "723" > tagsubfield: "c" >- liblibrarian: "Type of Family" >- libopac: "Type of Family" >+ liblibrarian: "Type of family" >+ libopac: "Type of family" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -40273,7 +39232,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40281,8 +39240,8 @@ tables: > > - tagfield: "723" > tagsubfield: "d" >- liblibrarian: "Places Associated with the Family" >- libopac: "Places Associated with the Family" >+ liblibrarian: "Places associated with the family" >+ libopac: "Places associated with the family" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40291,7 +39250,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40309,7 +39268,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40317,9 +39276,9 @@ tables: > > - tagfield: "723" > tagsubfield: "o" >- liblibrarian: "International Standard Identifier for the Name" >- libopac: "International Standard Identifier for the Name" >- repeatable: 1 >+ liblibrarian: "International standard identifier for the name" >+ libopac: "International standard identifier for the name" >+ repeatable: 0 > mandatory: 0 > kohafield: "" > tab: 7 >@@ -40327,7 +39286,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40341,11 +39300,11 @@ tables: > mandatory: 0 > kohafield: "" > tab: 7 >- authorised_value: "" >+ authorised_value: qualif > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40363,7 +39322,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40381,7 +39340,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40399,7 +39358,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40417,7 +39376,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40435,7 +39394,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40443,8 +39402,8 @@ tables: > > - tagfield: "740" > tagsubfield: "e" >- liblibrarian: "Name of the Other Party" >- libopac: "Name of the Other Party" >+ liblibrarian: "Name of the other party" >+ libopac: "Name of the other party" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -40453,7 +39412,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40461,8 +39420,8 @@ tables: > > - tagfield: "740" > tagsubfield: "f" >- liblibrarian: "Date of Legal Issue or Version, or Date of Signing" >- libopac: "Date of Legal Issue or Version, or Date of Signing" >+ liblibrarian: "Date of legal issue or version, or date of signing" >+ libopac: "Date of legal issue or version, or date of signing" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40471,7 +39430,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40479,8 +39438,8 @@ tables: > > - tagfield: "740" > tagsubfield: "i" >- liblibrarian: "Name of Section or Part" >- libopac: "Name of Section or Part" >+ liblibrarian: "Name of section or part" >+ libopac: "Name of section or part" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40489,7 +39448,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40497,8 +39456,8 @@ tables: > > - tagfield: "740" > tagsubfield: "l" >- liblibrarian: "Form Subheading" >- libopac: "Form Subheading" >+ liblibrarian: "Form subheading" >+ libopac: "Form subheading" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40507,7 +39466,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40515,8 +39474,8 @@ tables: > > - tagfield: "740" > tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >+ liblibrarian: "Miscellaneous information" >+ libopac: "Miscellaneous information" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40525,7 +39484,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40533,8 +39492,8 @@ tables: > > - tagfield: "740" > tagsubfield: "t" >- liblibrarian: "Uniform Title" >- libopac: "Uniform Title" >+ liblibrarian: "Uniform title" >+ libopac: "Uniform title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -40543,7 +39502,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40561,7 +39520,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40579,7 +39538,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40597,7 +39556,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40615,7 +39574,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40623,8 +39582,8 @@ tables: > > - tagfield: "741" > tagsubfield: "e" >- liblibrarian: "Name of the Other Party" >- libopac: "Name of the Other Party" >+ liblibrarian: "Name of the other party" >+ libopac: "Name of the other party" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -40633,7 +39592,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40641,8 +39600,8 @@ tables: > > - tagfield: "741" > tagsubfield: "f" >- liblibrarian: "Date of Legal Issue or Version, or Date of Signing" >- libopac: "Date of Legal Issue or Version, or Date of Signing" >+ liblibrarian: "Date of legal issue or version, or date of signing" >+ libopac: "Date of legal issue or version, or date of signing" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40651,7 +39610,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40659,8 +39618,8 @@ tables: > > - tagfield: "741" > tagsubfield: "i" >- liblibrarian: "Name of Section or Part" >- libopac: "Name of Section or Part" >+ liblibrarian: "Name of section or part" >+ libopac: "Name of section or part" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40669,7 +39628,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40677,8 +39636,8 @@ tables: > > - tagfield: "741" > tagsubfield: "l" >- liblibrarian: "Form Subheading" >- libopac: "Form Subheading" >+ liblibrarian: "Form subheading" >+ libopac: "Form subheading" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40687,7 +39646,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40695,8 +39654,8 @@ tables: > > - tagfield: "741" > tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >+ liblibrarian: "Miscellaneous information" >+ libopac: "Miscellaneous information" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40705,7 +39664,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40713,8 +39672,8 @@ tables: > > - tagfield: "741" > tagsubfield: "t" >- liblibrarian: "Uniform Title" >- libopac: "Uniform Title" >+ liblibrarian: "Uniform title" >+ libopac: "Uniform title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -40723,7 +39682,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40741,7 +39700,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40759,7 +39718,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40777,7 +39736,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40795,7 +39754,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40803,8 +39762,8 @@ tables: > > - tagfield: "742" > tagsubfield: "e" >- liblibrarian: "Name of the Other Party" >- libopac: "Name of the Other Party" >+ liblibrarian: "Name of the other party" >+ libopac: "Name of the other party" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -40813,7 +39772,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40821,8 +39780,8 @@ tables: > > - tagfield: "742" > tagsubfield: "f" >- liblibrarian: "Date of Legal Issue or Version, or Date of Signing" >- libopac: "Date of Legal Issue or Version, or Date of Signing" >+ liblibrarian: "Date of legal issue or version, or date of signing" >+ libopac: "Date of legal issue or version, or date of signing" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40831,7 +39790,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40839,8 +39798,8 @@ tables: > > - tagfield: "742" > tagsubfield: "i" >- liblibrarian: "Name of Section or Part" >- libopac: "Name of Section or Part" >+ liblibrarian: "Name of section or part" >+ libopac: "Name of section or part" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40849,7 +39808,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40857,8 +39816,8 @@ tables: > > - tagfield: "742" > tagsubfield: "l" >- liblibrarian: "Form Subheading" >- libopac: "Form Subheading" >+ liblibrarian: "Form subheading" >+ libopac: "Form subheading" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40867,7 +39826,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40875,8 +39834,8 @@ tables: > > - tagfield: "742" > tagsubfield: "n" >- liblibrarian: "Miscellaneous Information" >- libopac: "Miscellaneous Information" >+ liblibrarian: "Miscellaneous information" >+ libopac: "Miscellaneous information" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -40885,7 +39844,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40893,8 +39852,8 @@ tables: > > - tagfield: "742" > tagsubfield: "t" >- liblibrarian: "Uniform Title" >- libopac: "Uniform Title" >+ liblibrarian: "Uniform title" >+ libopac: "Uniform title" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -40903,7 +39862,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -40921,7 +39880,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -8 > frameworkcode: "" > seealso: "" > link: "" >@@ -40939,7 +39898,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40957,7 +39916,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40975,7 +39934,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -40993,7 +39952,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41011,7 +39970,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41029,7 +39988,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41037,8 +39996,8 @@ tables: > > - tagfield: "830" > tagsubfield: "a" >- liblibrarian: "Text of Note" >- libopac: "Text of Note" >+ liblibrarian: "Text of note" >+ libopac: "Text of note" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -41047,7 +40006,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41065,7 +40024,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41083,7 +40042,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41094,14 +40053,14 @@ tables: > liblibrarian: "Institution Identifier" > libopac: "Institution Identifier" > repeatable: 0 >- mandatory: 1 >+ mandatory: 0 > kohafield: "" > tab: 8 > authorised_value: "" > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41119,7 +40078,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41137,7 +40096,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41145,8 +40104,8 @@ tables: > > - tagfield: "852" > tagsubfield: "d" >- liblibrarian: "Coded Location Qualifier (2 or 3 Characters)" >- libopac: "Coded Location Qualifier (2 or 3 Characters)" >+ liblibrarian: "Coded Location Qualifier (2 or 3 characters)" >+ libopac: "Coded Location Qualifier (2 or 3 characters)" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -41155,7 +40114,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41163,8 +40122,8 @@ tables: > > - tagfield: "852" > tagsubfield: "e" >- liblibrarian: "Non-Coded Location Qualifier" >- libopac: "Non-Coded Location Qualifier" >+ liblibrarian: "Non-coded Location Qualifier" >+ libopac: "Non-coded Location Qualifier" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -41173,7 +40132,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41191,7 +40150,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41209,7 +40168,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41227,7 +40186,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41245,7 +40204,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41263,7 +40222,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41281,7 +40240,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41299,7 +40258,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41317,7 +40276,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41325,8 +40284,8 @@ tables: > > - tagfield: "852" > tagsubfield: "x" >- liblibrarian: "Non-Public Note." >- libopac: "Non-Public Note." >+ liblibrarian: "Non-public Note." >+ libopac: "Non-public Note." > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41335,7 +40294,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41353,7 +40312,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41361,8 +40320,8 @@ tables: > > - tagfield: "856" > tagsubfield: "2" >- liblibrarian: "Link Text" >- libopac: "Link Text" >+ liblibrarian: "Link text" >+ libopac: "Link text" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41371,7 +40330,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41379,8 +40338,8 @@ tables: > > - tagfield: "856" > tagsubfield: "a" >- liblibrarian: "Host Name" >- libopac: "Host Name" >+ liblibrarian: "Host name" >+ libopac: "Host name" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41389,7 +40348,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41397,8 +40356,8 @@ tables: > > - tagfield: "856" > tagsubfield: "b" >- liblibrarian: "Access Number" >- libopac: "Access Number" >+ liblibrarian: "Access number" >+ libopac: "Access number" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41407,7 +40366,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41415,8 +40374,8 @@ tables: > > - tagfield: "856" > tagsubfield: "c" >- liblibrarian: "Compression Information" >- libopac: "Compression Information" >+ liblibrarian: "Compression information" >+ libopac: "Compression information" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41425,7 +40384,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41443,7 +40402,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41461,7 +40420,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41469,8 +40428,8 @@ tables: > > - tagfield: "856" > tagsubfield: "f" >- liblibrarian: "Electronic Name" >- libopac: "Electronic Name" >+ liblibrarian: "Electronic name" >+ libopac: "Electronic name" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41479,7 +40438,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41487,8 +40446,8 @@ tables: > > - tagfield: "856" > tagsubfield: "h" >- liblibrarian: "Processor of Request" >- libopac: "Processor of Request" >+ liblibrarian: "Processor of request" >+ libopac: "Processor of request" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -41497,7 +40456,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41515,7 +40474,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41523,8 +40482,8 @@ tables: > > - tagfield: "856" > tagsubfield: "j" >- liblibrarian: "Bits per Second" >- libopac: "Bits per Second" >+ liblibrarian: "Bits per second" >+ libopac: "Bits per second" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -41533,7 +40492,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41551,7 +40510,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41569,7 +40528,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41577,8 +40536,8 @@ tables: > > - tagfield: "856" > tagsubfield: "m" >- liblibrarian: "Contact for Access Assistance" >- libopac: "Contact for Access Assistance" >+ liblibrarian: "Contact for access assistance" >+ libopac: "Contact for access assistance" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41587,7 +40546,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41595,8 +40554,8 @@ tables: > > - tagfield: "856" > tagsubfield: "n" >- liblibrarian: "Name of Location of Host in Subfield $A" >- libopac: "Name of Location of Host in Subfield $A" >+ liblibrarian: "Name of location of host in subfield $a" >+ libopac: "Name of location of host in subfield $a" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -41605,7 +40564,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41613,8 +40572,8 @@ tables: > > - tagfield: "856" > tagsubfield: "o" >- liblibrarian: "Operating System" >- libopac: "Operating System" >+ liblibrarian: "Operating system" >+ libopac: "Operating system" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -41623,7 +40582,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41641,7 +40600,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41659,7 +40618,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41677,7 +40636,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41685,8 +40644,8 @@ tables: > > - tagfield: "856" > tagsubfield: "s" >- liblibrarian: "File Size" >- libopac: "File Size" >+ liblibrarian: "File size" >+ libopac: "File size" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41695,7 +40654,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41703,8 +40662,8 @@ tables: > > - tagfield: "856" > tagsubfield: "t" >- liblibrarian: "Terminal Emulation" >- libopac: "Terminal Emulation" >+ liblibrarian: "Terminal emulation" >+ libopac: "Terminal emulation" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41713,7 +40672,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41730,7 +40689,7 @@ tables: > authorised_value: "" > authtypecode: "" > value_builder: "" >- isurl: 1 >+ isurl: 0 > hidden: 0 > frameworkcode: "" > seealso: "" >@@ -41739,8 +40698,8 @@ tables: > > - tagfield: "856" > tagsubfield: "v" >- liblibrarian: "Hours Access Method Available" >- libopac: "Hours Access Method Available" >+ liblibrarian: "Hours access method available" >+ libopac: "Hours access method available" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41749,7 +40708,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41757,8 +40716,8 @@ tables: > > - tagfield: "856" > tagsubfield: "w" >- liblibrarian: "Record Control Number" >- libopac: "Record Control Number" >+ liblibrarian: "Record control number" >+ libopac: "Record control number" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41767,7 +40726,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41775,8 +40734,8 @@ tables: > > - tagfield: "856" > tagsubfield: "x" >- liblibrarian: "Nonpublic Note" >- libopac: "Nonpublic Note" >+ liblibrarian: "Nonpublic note" >+ libopac: "Nonpublic note" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41785,7 +40744,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41793,8 +40752,8 @@ tables: > > - tagfield: "856" > tagsubfield: "y" >- liblibrarian: "Access Method" >- libopac: "Access Method" >+ liblibrarian: "Access method" >+ libopac: "Access method" > repeatable: 0 > mandatory: 0 > kohafield: "" >@@ -41803,7 +40762,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: -1 > frameworkcode: "" > seealso: "" > link: "" >@@ -41811,8 +40770,8 @@ tables: > > - tagfield: "856" > tagsubfield: "z" >- liblibrarian: "Public Note" >- libopac: "Public Note" >+ liblibrarian: "Public note" >+ libopac: "Public note" > repeatable: 1 > mandatory: 0 > kohafield: "" >@@ -41821,7 +40780,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -5 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41839,7 +40798,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41857,7 +40816,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >@@ -41875,7 +40834,7 @@ tables: > authtypecode: "" > value_builder: "" > isurl: 0 >- hidden: -6 >+ hidden: 0 > frameworkcode: "" > seealso: "" > link: "" >-- >2.25.1
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 30373
:
132279
|
132280
|
132281
|
132282
|
132874
|
133059
|
133060
|
133126
| 133127 |
133630
|
133658
|
133704
|
133705
|
133706
|
133707
|
133723
|
133724