zcc 0.1.0 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +16 -0
- data/Manifest.txt +4 -4
- data/Rakefile +1 -1
- data/bin/zcc +352 -228
- data/examples/zcc.yaml +62 -34
- data/examples/zebra/accessfile +1 -0
- data/examples/zebra/records/0.xml +1 -0
- data/examples/zebra/shadow/remove_me +1 -0
- data/examples/zebra/tab/bib1.att +9 -56
- data/examples/zebra/tab/record.abs +215 -44
- data/examples/zebra/zcc_passw +1 -0
- data/examples/zebra/zebra.cfg +20 -15
- data/lib/zcc/cli_display.rb +64 -42
- data/lib/zcc/query.rb +30 -27
- data/lib/zcc/record.rb +38 -3
- data/lib/zcc/resultset.rb +1 -0
- data/lib/zcc/version.rb +1 -1
- data/website/index.html +7 -5
- data/website/index.txt +2 -2
- data/website/koha.html +32 -19
- data/website/koha.txt +3 -3
- data/website/stylesheets/screen.css +2 -2
- data/website/zcc.html +86 -34
- data/website/zcc.txt +49 -28
- data/website/zebra.html +15 -46
- data/website/zebra.txt +11 -47
- metadata +8 -8
- data/examples/zebra/records/0.mrc +0 -1
- data/examples/zebra/tab/marc21.abs +0 -67
- data/lib/zcc/subfieldeditor.rb +0 -70
- data/lib/zcc/zoomer.rb +0 -86
data/examples/zcc.yaml
CHANGED
@@ -8,6 +8,11 @@
|
|
8
8
|
|
9
9
|
#BASIC config
|
10
10
|
|
11
|
+
#What is the full path to the root directory of your zcc config files?
|
12
|
+
#(Previously this would have been something like /home/jason/.zcc)
|
13
|
+
# Leave off the trailing slash /
|
14
|
+
root: /home/[put your username here]/.zcc
|
15
|
+
|
11
16
|
#What is the maximum number of records you want to show from each target?
|
12
17
|
to_show: 40
|
13
18
|
|
@@ -17,7 +22,9 @@ show_per_page: 5
|
|
17
22
|
#Which field numbers would you like to show in the menu page?
|
18
23
|
fields_to_show: [245, 260, 300]
|
19
24
|
|
20
|
-
# Do you want to save your MARC files by 'search_term' or by 'timestamp'? Choosing timestamp
|
25
|
+
# Do you want to save your MARC files by 'search_term' or by 'timestamp'? Choosing timestamp
|
26
|
+
# will save all records from a single session to the same file, while search_term will save to
|
27
|
+
# separate files for each different search term used.
|
21
28
|
save_filename: timestamp
|
22
29
|
|
23
30
|
#Do you want scripting turned on?
|
@@ -26,6 +33,12 @@ scripting_on: yes
|
|
26
33
|
#Do you want subfield editing turned on?
|
27
34
|
subfield_editing: yes
|
28
35
|
|
36
|
+
#Do you want full record editing turned on?
|
37
|
+
full_editing: yes
|
38
|
+
|
39
|
+
#What editor do you want to use? Vim is suggested. Make sure to use UTF-8 character encoding!!
|
40
|
+
text_editor: vim
|
41
|
+
|
29
42
|
#Do you want CSV file creation turned on?
|
30
43
|
csv_on: yes
|
31
44
|
|
@@ -41,8 +54,12 @@ linter_on: yes
|
|
41
54
|
#See for more information on setting up zebra: http://zcc.rubyforge.org/zebra.html
|
42
55
|
save_record_syntax: [marc, zebra]
|
43
56
|
|
57
|
+
#start the zcc local zebra server on startup of zcc?
|
58
|
+
#If a zebra server is already running on port 9998 this will fail
|
59
|
+
start_zebra: yes
|
44
60
|
|
45
|
-
|
61
|
+
#try to shutdown the zcc local zebra server on exit of zcc?
|
62
|
+
kill_zebra: yes
|
46
63
|
|
47
64
|
|
48
65
|
###########################
|
@@ -56,8 +73,8 @@ save_record_syntax: [marc, zebra]
|
|
56
73
|
##########################
|
57
74
|
zservers:
|
58
75
|
# server port service
|
59
|
-
#- [Include zservers.yaml] #Optionally you can Include another file within your
|
60
|
-
- [localhost,
|
76
|
+
#- [Include zservers.yaml] #Optionally you can Include another file within your root directory (see "root" configuration above) that contains a list of zservers. Only include the entries in the same for as the ones below. This option must be the first line for this feature to work correctly.
|
77
|
+
- [localhost, 9998, zcc, 0] #if you use the zcc zebra server setup
|
61
78
|
- [z3950.loc.gov, 7090, Voyager, 1 ] # Library of Congress
|
62
79
|
- [es33.uits.indiana.edu, 2200, Unicorn, 2] #IU
|
63
80
|
- [bobcat.nyu.edu, 210, ADVANCE, 2] #New York University Libraries | 98%
|
@@ -72,7 +89,7 @@ zservers:
|
|
72
89
|
#######################################################
|
73
90
|
# CSV files
|
74
91
|
# Follows is the template for creating csv files.
|
75
|
-
# Saving information to a csv file might be useful for
|
92
|
+
# Saving information to a csv file might be useful for printing labels in
|
76
93
|
# a program like glabels or for statistics.
|
77
94
|
#######################################################
|
78
95
|
labels:
|
@@ -91,33 +108,44 @@ labels:
|
|
91
108
|
# Scripting
|
92
109
|
# Scripting allows you to change the record before saving it.
|
93
110
|
# Below is where you make changes to the scripting
|
94
|
-
# that will be run on each record.
|
95
|
-
#
|
96
|
-
#
|
111
|
+
# that will be run on each record. Scripts under 'start' will
|
112
|
+
# be run before every script. Scripts under 'end' will
|
113
|
+
# be run after chosen script is run. So for instance if you process
|
114
|
+
# the record with the 'non_fiction' script the following scripts
|
115
|
+
# will be run in order: start, non_fiction, end.
|
116
|
+
# Start and end of optional.
|
97
117
|
#################################################
|
98
|
-
scripting:
|
99
|
-
|
100
|
-
- [
|
101
|
-
- [create-field,
|
102
|
-
- [
|
103
|
-
- [append-subfield, 952,
|
104
|
-
|
105
|
-
- [append-subfield, 942, c, BOOK]
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
- [
|
110
|
-
|
111
|
-
- [
|
112
|
-
- [
|
113
|
-
- [prompt,
|
114
|
-
- [
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
- [proc
|
119
|
-
#
|
120
|
-
|
118
|
+
scripting:
|
119
|
+
start:
|
120
|
+
- [remove, 9XX]
|
121
|
+
- [create-field, 942, " ", " "] #create new field with empty indicators
|
122
|
+
- [create-field, 952, " ", " "]
|
123
|
+
- [append-subfield, 952, 2, DLC]
|
124
|
+
- [append-subfield, 952, b, MRML]
|
125
|
+
- [append-subfield, 942, c, BOOK]
|
126
|
+
|
127
|
+
end:
|
128
|
+
- [append-subfield, 952, k, proc get_combined_callnum]
|
129
|
+
- [prompt, 942, x, IS THERE A CIP]
|
130
|
+
- [append-subfield, 942, y, proc get_cip_callnum]
|
131
|
+
- [prompt, 942, z, OLD CALL NUMBER]
|
132
|
+
- [prompt, 952, z, PUBLIC NOTE FOR ITEM]
|
133
|
+
- [prompt, 952, x, INTERNAL NOTE]
|
134
|
+
- [proc barcode_and_itemnum]
|
135
|
+
# [sort-tags] #This currently doesn't work.
|
136
|
+
|
137
|
+
non_fiction:
|
138
|
+
- [append-subfield, 942, k, proc get_dewey] # "proc name" is the way to get
|
139
|
+
# the script to evaluate a block
|
140
|
+
# of code. See below. comment out for BIO
|
141
|
+
- [append-subfield, 942, j, proc get_decimal] #comment out for BIO
|
142
|
+
- [append-subfield, 942, l, proc get_cutter] #comment out for BIO
|
143
|
+
|
144
|
+
|
145
|
+
biography:
|
146
|
+
- [append-subfield, 952, c, BIO] # BIO, Fic
|
147
|
+
- [append-subfield, 942, l, proc prompt_cutter] #BIO
|
148
|
+
|
121
149
|
|
122
150
|
#!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
123
151
|
# This is where the procs go for added scripting power.
|
@@ -262,16 +290,16 @@ procs:
|
|
262
290
|
#Dir.chdir("..") if Dir.pwd.include?('zoomer/saved')
|
263
291
|
#puts Dir.pwd
|
264
292
|
if $testing == 't'
|
265
|
-
iterator = File.new("
|
293
|
+
iterator = File.new("#{ROOT}/test-zoomer-iterator.txt", "r").gets
|
266
294
|
else
|
267
|
-
iterator = File.new("#{
|
295
|
+
iterator = File.new("#{ROOT}/zoomer-iterator.txt", "r").gets
|
268
296
|
end
|
269
297
|
#iterator = File.new("test-zoomer-iterator.txt").gets if $testing == 't'
|
270
298
|
puts "iterator: #{iterator}"
|
271
299
|
iterator = iterator.chomp
|
272
300
|
barcode = "MRML-%05d" % iterator
|
273
301
|
new_iterator = iterator.to_i + 1
|
274
|
-
File.open("#{
|
302
|
+
File.open("#{ROOT}/zoomer-iterator.txt", "w+") do |myfile|
|
275
303
|
myfile.write(new_iterator) unless $testing == 't'
|
276
304
|
end
|
277
305
|
record['952'].append(MARC::Subfield.new('p', barcode))
|
@@ -0,0 +1 @@
|
|
1
|
+
zcc: zcc
|
@@ -0,0 +1 @@
|
|
1
|
+
<record xmlns='http://www.loc.gov/MARC21/slim'><leader>01388cam a22003377a 4500</leader><controlfield tag='001'>14765245</controlfield><controlfield tag='005'>20070702145752.0</controlfield><controlfield tag='008'>070312s2006 ncua g b 001 0 eng</controlfield><datafield tag='010' ind1=' ' ind2=' '><subfield code='a'>2007272494</subfield></datafield><datafield tag='020' ind1=' ' ind2=' '><subfield code='a'>9780977616633 (pbk. : alk. paper)</subfield></datafield><datafield tag='020' ind1=' ' ind2=' '><subfield code='a'>0977616630 (pbk. : alk. paper)</subfield></datafield><datafield tag='040' ind1=' ' ind2=' '><subfield code='a'>DLC</subfield><subfield code='c'>DLC</subfield><subfield code='d'>DLC</subfield></datafield><datafield tag='050' ind1='0' ind2='0'><subfield code='a'>TK5105.888</subfield><subfield code='b'>.T477 2006</subfield></datafield><datafield tag='082' ind1='0' ind2='0'><subfield code='a'>005.13/3</subfield><subfield code='2'>22</subfield></datafield><datafield tag='100' ind1='1' ind2=' '><subfield code='a'>Thomas, David,</subfield><subfield code='d'>1956-</subfield></datafield><datafield tag='245' ind1='1' ind2='0'><subfield code='a'>Agile web development with rails /</subfield><subfield code='c'>Dave Thomas, David Heinemeier Hansson ; with Leon Breedt ... [et al.]</subfield></datafield><datafield tag='250' ind1=' ' ind2=' '><subfield code='a'>2nd ed.</subfield></datafield><datafield tag='260' ind1=' ' ind2=' '><subfield code='a'>Raleigh, N.C. :</subfield><subfield code='b'>Pragmatic Bookshelf,</subfield><subfield code='c'>c2006.</subfield></datafield><datafield tag='300' ind1=' ' ind2=' '><subfield code='a'>xvi, 719 p. :</subfield><subfield code='b'>ill. ;</subfield><subfield code='c'>23 cm.</subfield></datafield><datafield tag='490' ind1='0' ind2=' '><subfield code='a'>The facets of Ruby series</subfield></datafield><datafield tag='500' ind1=' ' ind2=' '><subfield code='a'>"Version: 2005-7-4"--T.p verso.</subfield></datafield><datafield tag='500' ind1=' ' ind2=' '><subfield code='a'>"Pragmatic Programmers"--Cover.</subfield></datafield><datafield tag='650' ind1=' ' ind2='0'><subfield code='a'>Web site development</subfield><subfield code='v'>Handbooks, manuals, etc.</subfield></datafield><datafield tag='650' ind1=' ' ind2='0'><subfield code='a'>Ruby (Computer program language)</subfield><subfield code='v'>Handbooks, manuals, etc.</subfield></datafield><datafield tag='700' ind1='1' ind2=' '><subfield code='a'>Hansson, David Heinemeier.</subfield></datafield><datafield tag='700' ind1='1' ind2=' '><subfield code='a'>Breedt, Leon.</subfield></datafield><datafield tag='710' ind1='2' ind2=' '><subfield code='a'>Pragmatic Programmers (Firm)</subfield></datafield><datafield tag='856' ind1='4' ind2='2'><subfield code='3'>Publisher description</subfield><subfield code='u'>http://www.loc.gov/catdir/enhancements/fy0715/2007272494-d.html</subfield></datafield><datafield tag='942' ind1=' ' ind2=' '><subfield code='c'>BOOK</subfield><subfield code='l'>THO</subfield><subfield code='x'>n</subfield><subfield code='z'>123</subfield></datafield><datafield tag='952' ind1=' ' ind2=' '><subfield code='2'>DLC</subfield><subfield code='b'>MRML</subfield><subfield code='c'>BIO</subfield><subfield code='k'>THO</subfield><subfield code='p'>MRML-55560</subfield><subfield code='u'>55560</subfield></datafield></record>
|
@@ -0,0 +1 @@
|
|
1
|
+
|
data/examples/zebra/tab/bib1.att
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# $Id: bib1.att,v 1.
|
1
|
+
# $Id: bib1.att,v 1.2 2006/05/19 23:45:29 adam Exp $
|
2
2
|
# Bib-1 Attribute Set
|
3
3
|
name bib1
|
4
4
|
reference Bib-1
|
@@ -23,7 +23,7 @@ att 17 NLM-call-number
|
|
23
23
|
att 18 NAL-call-number
|
24
24
|
att 19 MOS-call-number
|
25
25
|
att 20 Local-classification
|
26
|
-
att 21 Subject
|
26
|
+
att 21 Subject-heading
|
27
27
|
att 22 Subject-Rameau
|
28
28
|
att 23 BDI-index-subject
|
29
29
|
att 24 INSPEC-subject
|
@@ -33,7 +33,7 @@ att 27 LC-subject-heading
|
|
33
33
|
att 28 RVM-subject-heading
|
34
34
|
att 29 Local-subject-index
|
35
35
|
att 30 Date
|
36
|
-
att 31
|
36
|
+
att 31 Date-of-publication
|
37
37
|
att 32 Date-of-acquisition
|
38
38
|
att 33 Title-key
|
39
39
|
att 34 Title-collective
|
@@ -56,19 +56,18 @@ att 50 Number-govt-pub
|
|
56
56
|
att 51 Number-music-publisher
|
57
57
|
att 52 Number-db
|
58
58
|
att 53 Number-local-call
|
59
|
-
att 54
|
59
|
+
att 54 Code-language
|
60
60
|
att 55 Code-geographic
|
61
61
|
att 56 Code-institution
|
62
62
|
att 57 Name-and-title
|
63
63
|
att 58 Name-geographic
|
64
|
-
att 59
|
64
|
+
att 59 Place-publication
|
65
65
|
att 60 CODEN
|
66
66
|
att 61 Microform-generation
|
67
67
|
att 62 Abstract
|
68
68
|
att 63 Note
|
69
69
|
att 1000 Author-title
|
70
|
-
|
71
|
-
att 1001 rtype
|
70
|
+
att 1001 Record-type
|
72
71
|
att 1002 Name
|
73
72
|
att 1003 Author
|
74
73
|
att 1004 Author-name-personal
|
@@ -78,12 +77,12 @@ att 1007 Identifier-standard
|
|
78
77
|
att 1008 Subject-LC-childrens
|
79
78
|
att 1009 Subject-name-personal
|
80
79
|
att 1010 Body-of-text
|
81
|
-
att 1011
|
80
|
+
att 1011 Date/time-added-to-db
|
82
81
|
att 1012 Date/time-last-modified
|
83
82
|
att 1013 Authority/format-id
|
84
83
|
att 1014 Concept-text
|
85
84
|
att 1015 Concept-reference
|
86
|
-
att 1016 Any
|
85
|
+
att 1016 Any
|
87
86
|
att 1017 Server-choice
|
88
87
|
att 1018 Publisher
|
89
88
|
att 1019 Record-source
|
@@ -100,52 +99,6 @@ att 1030 Thematic-number
|
|
100
99
|
att 1031 Material-type
|
101
100
|
att 1032 Doc-id
|
102
101
|
att 1033 Host-item
|
103
|
-
att 1034
|
102
|
+
att 1034 Content-type
|
104
103
|
att 1035 Anywhere
|
105
104
|
att 1036 Author-Title-Subject
|
106
|
-
|
107
|
-
# Koha Specific Stuff
|
108
|
-
att 8001 Extent
|
109
|
-
att 8910 Koha-Auth-Number
|
110
|
-
|
111
|
-
# record length according to the leader
|
112
|
-
att 8005 llength
|
113
|
-
#att 8002 Summary
|
114
|
-
#att 8900 Call-Number
|
115
|
-
|
116
|
-
# Usually Target Audience 008/22
|
117
|
-
att 8822 ta
|
118
|
-
|
119
|
-
# Usually Form of item 008/23
|
120
|
-
att 8823 ff8-23
|
121
|
-
|
122
|
-
# Usually Nature of contents 008/24-27
|
123
|
-
att 8824 ff8-24-27
|
124
|
-
|
125
|
-
# Usually Content-type, also Form of item for maps 008/29
|
126
|
-
att 8829 ff8-29
|
127
|
-
|
128
|
-
# Usually Literary Form 008/33
|
129
|
-
att 8833 lf
|
130
|
-
#att 8833 ff8-33
|
131
|
-
|
132
|
-
# Usually Biography, also Special format characteristics for maps 008/34
|
133
|
-
att 8834 bio
|
134
|
-
#att 8834 ff8-34
|
135
|
-
|
136
|
-
att 8700 ff7-00
|
137
|
-
att 8701 ff7-01
|
138
|
-
att 8702 ff7-02
|
139
|
-
att 8703 ff7-01-02
|
140
|
-
|
141
|
-
att 9529 shelf-location
|
142
|
-
att 9100 dynixbib-id
|
143
|
-
att 9520 withdrawn
|
144
|
-
att 9521 lost
|
145
|
-
att 9522 onloan
|
146
|
-
att 9523 popularity
|
147
|
-
att 9526 barcode
|
148
|
-
# Author-personal-bibliography - lastname,firstname in 100$a
|
149
|
-
att 8900 Author-personal-bibliography
|
150
|
-
# Author-in-order - firstname lastname in 245$c statement of responsibility
|
151
|
-
att 8901 Author-in-order
|
@@ -1,67 +1,238 @@
|
|
1
|
-
# $Id: record.abs,v 1.
|
1
|
+
# $Id: record.abs,v 1.1.2.1 2006/05/08 14:42:49 tgarip1957 Exp $
|
2
2
|
|
3
|
+
# This is a fairly simple example of a set of MARC21 indexing rules. It
|
4
|
+
# results in a server which provides a passable Bath level 0 and 1 service
|
5
|
+
# (author, title, subject, keyword and exact services). Feel free to
|
6
|
+
# elaborate on it, and if you do, please consider sharing your additions.
|
7
|
+
# NOTE: This is designed to be used with the grs.marcxml input filter
|
8
|
+
# for ISO2709 (ANSI Z39.2) or grs.xml for MARCXML-formatted records. It
|
9
|
+
# won't work for the old grs.marc input filter, which yields a different
|
10
|
+
# internal structure.
|
11
|
+
encoding utf-8
|
3
12
|
name marcxml
|
4
13
|
attset bib1.att
|
5
|
-
|
14
|
+
attset gils.att
|
6
15
|
esetname F @
|
7
16
|
esetname B @
|
8
17
|
|
9
18
|
marc usmarc.mar
|
10
|
-
|
19
|
+
systag sysno rank
|
11
20
|
xpath disable
|
12
21
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
22
|
+
# pl = Published Place
|
23
|
+
# ta = Target Audience 002/22
|
24
|
+
# ff8-23
|
25
|
+
# lf = Literary Form 008/33
|
26
|
+
# bio = Biography 008/34
|
27
|
+
# fmt = Format
|
28
|
+
# ln = Language
|
29
|
+
# ctype = Content type: review, catalog, encyclopedia, dictionary
|
30
|
+
# pubdate Publication Date
|
31
|
+
# rtype = Record type (leader 06)
|
32
|
+
|
33
|
+
all any
|
34
|
+
# melm 000 rtype:n:range(data,06,1),Bib-level:w:range(data,07,01)
|
35
|
+
# xelm /record/leader llength:w:range(data,0,5),rtype:w:range(data,6,1),Bib-level:w:range(data,7,1)
|
36
|
+
|
37
|
+
# example: xelm /record/leader l1:w:range(data,0,5),l2:w:range(data,10,2)
|
38
|
+
#melm 001 Local-number
|
39
|
+
melm 005 Date,Date/time-last-modified
|
40
|
+
#melm 007 Microform-generation:n:range(data,11,1),Material-type,ff7-00:w:range(data,0,1),ff7-01:w:range(data,1,1),ff7-02:w:range(data,2,1),ff7-01-02:w:range(data,0,2)
|
41
|
+
|
42
|
+
#melm 008 ln:n:range(data,35,3),ctype:w:range(data,24,4),Date:n:range(data,0,5),Date:s:range(data,0,5),Date:n:range(data,7,4),Date:s:range(data,7,4),Date:n:range(data,11,4),Date:s:range(data,11,4),pubdate:n:range(data,7,4),pubdate:s:range(data,7,4),dateaddeddb:n:range(data,0,5),dateaddeddb:s:range(data,0,5),pl:w:range(data,15,3),ta:w:range(data,22,1),ff8-23:w:range(data,23,1),ff8-29:w:range(data,29,1),lf:w:range(data,33,1),bio:w:range(data,34,1),Record-source:w:range(data,39,0)
|
43
|
+
|
44
|
+
melm 010 LC-card-number,Identifier-standard
|
45
|
+
melm 011 LC-card-number,Identifier-standard
|
46
|
+
melm 015 BNB-card-number,BGF-number,Number-db,Number-natl-biblio,Identifier-standard
|
47
|
+
melm 017 Number-legal-deposit,Identifier-standard
|
48
|
+
melm 018 Identifier-standard
|
19
49
|
melm 020$a ISBN:w,Identifier-standard:w
|
20
|
-
melm 020
|
50
|
+
melm 020 ISBN,Identifier-standard
|
21
51
|
melm 022$a ISSN:w,ISBN:w
|
22
|
-
melm 022
|
23
|
-
melm 023
|
24
|
-
melm 024
|
25
|
-
melm 025
|
26
|
-
melm 027
|
27
|
-
melm 028
|
28
|
-
melm 030
|
29
|
-
melm 033
|
52
|
+
melm 022 ISSN,Identifier-standard
|
53
|
+
melm 023 Identifier-standard
|
54
|
+
melm 024 Identifier-standard
|
55
|
+
melm 025 Identifier-standard
|
56
|
+
melm 027 Report-number,Identifier-standard
|
57
|
+
melm 028 Number-music-publisher,Identifier-standard
|
58
|
+
melm 030 CODEN,Identifier-standard
|
59
|
+
melm 033 Date
|
30
60
|
melm 034 Map-scale
|
31
|
-
melm 035
|
32
|
-
melm 037
|
61
|
+
#melm 035 Local-number,Identifier-standard
|
62
|
+
melm 037 Identifier-standard,Stock-number
|
33
63
|
melm 040 Code-institution,Record-source
|
34
|
-
melm 041 ln
|
64
|
+
#melm 041 ln
|
35
65
|
melm 043 Code-geographic
|
36
|
-
melm 046
|
37
|
-
melm 050$b
|
38
|
-
melm 050
|
39
|
-
melm 052
|
40
|
-
melm 060
|
41
|
-
melm 070
|
42
|
-
melm 080
|
66
|
+
#melm 046 pubdate
|
67
|
+
melm 050$b LC-call-number:w, LC-call-number:p, LC-call-number:s
|
68
|
+
melm 050 LC-call-number:w, LC-call-number:p, LC-call-number:s
|
69
|
+
melm 052 Geographic-class
|
70
|
+
melm 060 NLM-call-number
|
71
|
+
melm 070 NAL-call-number
|
72
|
+
melm 080 UDC-classification
|
43
73
|
melm 082 Dewey-classification:w,Dewey-classification:s
|
44
74
|
melm 086 Number-govt-pub
|
45
|
-
melm
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
75
|
+
#melm 942$k LC-card-number:s
|
76
|
+
|
77
|
+
## KOHA SPECIFIC
|
78
|
+
melm 090$c Local-number:w
|
79
|
+
#Identifier-standard:w
|
80
|
+
|
81
|
+
#melm 100$9 Cross-Reference:w,Koha-Auth-Number
|
82
|
+
melm 100$a Author,Author:p,Author:s,Editor,Personal-name
|
83
|
+
#,Author-personal-bibliography,Author-personal-bibliography:p,Author-personal-bibliography:s
|
84
|
+
melm 100 Author,Author-title,Author-name-personal,Name,Name-and-title,Personal-name
|
85
|
+
melm 110 Author,Author-title,Author-name-corporate,Name,Name-and-title,Corporate-name
|
86
|
+
melm 111 Author,Author-title,Author-name-corporate,Name,Name-and-title,Conference-name
|
87
|
+
melm 130$n Thematic-number
|
88
|
+
melm 130$r Music-key
|
89
|
+
melm 130 Title,Title-uniform
|
90
|
+
|
91
|
+
melm 210 Title,Title-abbreviated
|
92
|
+
melm 211 Title,Title-abbreviated
|
93
|
+
melm 212 Title,Title-other-variant
|
94
|
+
melm 214 Title,Title-expanded
|
95
|
+
melm 222 Title,Title-key
|
96
|
+
melm 240$r Music-key
|
97
|
+
melm 240$n Thematic-number
|
98
|
+
melm 240 Title:w,Title:p,Title-uniform
|
99
|
+
melm 243$n Thematic-number
|
100
|
+
melm 243$r Music-key
|
101
|
+
melm 243 Title:w,Title:p,Title-collective
|
102
|
+
melm 245$a Title-cover:w,Title-cover:p,Title-cover:s,Title:w,Title:p,Title:s
|
103
|
+
melm 245$c Author
|
104
|
+
melm 245 Title:w,Title:p
|
105
|
+
#melm 245$9 Cross-Reference:w,Koha-Auth-Number
|
106
|
+
melm 246 Title,Title:p,Title-abbreviated,Title-expanded,Title-former
|
107
|
+
melm 247 Title,Title:p,Title-former,Title-other-variant,Related-periodical
|
108
|
+
#melm 260$a pl:w,pl:p
|
109
|
+
melm 260$b Publisher:w,Publisher:p
|
110
|
+
melm 260$c Date,Date:s,Date:y
|
111
|
+
#,pubdate,pubdate:s
|
112
|
+
#melm 260 pl
|
113
|
+
#melm 300 Extent:w,Extent:p
|
114
|
+
melm 400$a Name-and-title
|
115
|
+
melm 400$t Author-title,Name-and-title,Title,Title-series
|
116
|
+
melm 400 Author,Author-name-personal,Name,Personal-name
|
117
|
+
#melm 400$9 Koha-Auth-Number
|
118
|
+
melm 410 Author,Corporate-name
|
119
|
+
melm 410$a Name-and-title
|
120
|
+
melm 410$t Author-title,Title,Title-series
|
121
|
+
#melm 410$9 Koha-Auth-Number
|
122
|
+
melm 410 Author-name-corporate,Name
|
123
|
+
melm 411 Author,Conference-name
|
124
|
+
melm 411$a Name-and-title
|
125
|
+
#melm 411$t title,author,Author-title,Title-series
|
126
|
+
melm 411$t Author-title,Title-series
|
127
|
+
#melm 411 author,Author-name-corporate,Name
|
128
|
+
melm 411 Author-name-corporate,Name
|
129
|
+
melm 440$a Title-series:w,Title-series:p
|
130
|
+
#melm 440$9 Koha-Auth-Number
|
131
|
+
melm 440 Title-series:w,Title-series:p,Title,Title-series
|
132
|
+
melm 490$a Title-series:w,Title-series:p
|
133
|
+
melm 490 Title,Title-series
|
134
|
+
#melm 490$9 Koha-Auth-Number
|
135
|
+
|
136
|
+
melm 502 Material-type
|
137
|
+
melm 505 Note:w,Note:p
|
138
|
+
melm 510 Indexed-by
|
139
|
+
melm 520 Abstract:w,Abstract:p
|
140
|
+
#melm 533$d pubdate,pubdate:s
|
141
|
+
#melm 541$d Date-of-acquisition,Date-of-acquisition:s
|
142
|
+
|
143
|
+
melm 600$a Name-and-title,Name,Personal-name,Subject-name-personal
|
144
|
+
melm 600$t Name-and-title,Title
|
145
|
+
#melm 600 Name,Personal-name,Subject-heading,Subject-name-personal
|
146
|
+
melm 600 Name,Personal-name,Subject-name-personal
|
147
|
+
melm 610 Corporate-name
|
148
|
+
melm 610$a Name-and-title
|
149
|
+
melm 610$t Name-and-title,Title
|
150
|
+
melm 610 Name
|
151
|
+
melm 611 Conference-name
|
152
|
+
melm 611$a Name-and-title
|
153
|
+
melm 611$t Name-and-title,Title
|
154
|
+
melm 611 Name
|
155
|
+
melm 630$n Thematic-number
|
156
|
+
melm 630$r Music-key
|
157
|
+
#melm 630 Subject
|
158
|
+
#melm 650$9 Koha-Auth-Number
|
159
|
+
#melm 650 Subject,Subject:p
|
160
|
+
#melm 651$9 Koha-Auth-Number
|
161
|
+
#melm 651 Name-geographic,Subject,Subject:p
|
162
|
+
#melm 652$9 Koha-Auth-Number
|
163
|
+
#melm 652 subject-heading,subject-heading:p
|
164
|
+
#melm 653$9 Koha-Auth-Number
|
165
|
+
#melm 653 Subject,Subject:p
|
166
|
+
#melm 654$9 Koha-Auth-Number
|
167
|
+
#melm 654 Subject
|
168
|
+
#melm 655$9 Koha-Auth-Number
|
169
|
+
#melm 655 Subject
|
170
|
+
#melm 656$9 Koha-Auth-Number
|
171
|
+
#melm 656 Subject
|
172
|
+
#melm 657$9 Koha-Auth-Number
|
173
|
+
#melm 657 Subject
|
174
|
+
#melm 690$9 Koha-Auth-Number
|
175
|
+
#melm 690 Subject,Subject:p
|
176
|
+
|
177
|
+
#melm 700$9 Cross-Reference,Koha-Auth-Number
|
50
178
|
melm 700$a Author,Author:p
|
51
|
-
melm 700$n
|
52
|
-
melm 700$r
|
53
|
-
melm 700$t
|
179
|
+
melm 700$n Thematic-number
|
180
|
+
melm 700$r Music-key
|
181
|
+
#melm 700$t author,Author-title,Name-and-title,Title,Title-uniform
|
54
182
|
melm 700$t Author-title,Name-and-title,Title,Title-uniform
|
55
183
|
melm 700 Author,Author-name-corporate,Author-name-personal,Name,Editor,Personal-name
|
56
|
-
melm 710
|
57
|
-
melm 710$t
|
184
|
+
melm 710 Author,Corporate-name
|
185
|
+
#melm 710$t author,Author-title,Name-and-title,Title,Title-uniform
|
58
186
|
melm 710$t Author-title,Name-and-title,Title,Title-uniform
|
59
|
-
melm 710
|
187
|
+
#melm 710$a author,author:p,Name-and-title
|
188
|
+
melm 710$a Name-and-title
|
189
|
+
#melm 710 author,Name
|
60
190
|
melm 710 Author,Name
|
61
|
-
melm 711$a
|
191
|
+
melm 711$a Name-and-title
|
192
|
+
#melm 711$t author,Author-title,Title,Title-uniform
|
62
193
|
melm 711$t Author-title,Title,Title-uniform
|
63
|
-
melm 711
|
194
|
+
#melm 711 author,Author-name-corporate,Name,Conference-name
|
64
195
|
melm 711 Author-name-corporate,Name,Conference-name
|
65
|
-
melm 730$n
|
66
|
-
melm 730$r
|
67
|
-
melm 730
|
196
|
+
melm 730$n Thematic-number
|
197
|
+
melm 730$r Music-key
|
198
|
+
melm 730 Title,Title-uniform
|
199
|
+
melm 740 Title,Title-other-variant
|
200
|
+
melm 773$t Host-item
|
201
|
+
melm 780 Title-former,Related-periodical
|
202
|
+
melm 785 Related-periodical
|
203
|
+
|
204
|
+
melm 800$a Name-and-title
|
205
|
+
#melm 800$t author,Author-title,Name-and-title,Title,Title-series
|
206
|
+
melm 800$t Author-title,Name-and-title,Title,Title-series
|
207
|
+
melm 800 Author,Author-name-personal,Name,Personal-name
|
208
|
+
melm 810$a Name-and-title
|
209
|
+
melm 810$t Author-title,Name-and-title,Title,Title-series
|
210
|
+
melm 810 Author,Corporate-name,Author-name-corporate,Name
|
211
|
+
melm 811$a Name-and-title
|
212
|
+
#melm 811$t author,Author-title,Name-and-title,Title,Title-series
|
213
|
+
melm 811$t Author-title,Name-and-title,Title,Title-series
|
214
|
+
melm 811 Author,Author-name-corporate,Name,Conference-name
|
215
|
+
melm 830 Title,Title-series
|
216
|
+
melm 840 Title,Title-series
|
217
|
+
melm 852$a Code-institution
|
218
|
+
melm 901$a Local-number,ISBN:w,Identifier-standard:w
|
219
|
+
#melm 959$0 withdrawn:n
|
220
|
+
#melm 959$1 lost:n
|
221
|
+
#melm 959$2 onloan
|
222
|
+
|
223
|
+
# c is collection code, d is the new item type
|
224
|
+
# Record-source is homebranch.
|
225
|
+
melm 959$n Record-source
|
226
|
+
melm 942$c Material-type
|
227
|
+
melm 942$d Material-type
|
228
|
+
#melm 910$a dynixbib-id:n
|
229
|
+
#melm 942$k Call-Number
|
230
|
+
#melm 942$k Local-Number !:w,!:p,!:s
|
231
|
+
#melm 942$k Local-classification:w,Local-classification:p,Local-classification:s
|
232
|
+
melm 959$d Local-classification,Local-classification:w,Local-classification:p,Local-classification:s
|
233
|
+
melm 959$p Stock-number
|
234
|
+
#melm 959$c shelf-location
|
235
|
+
#melm 959$s popularity:n,popularity:s
|
236
|
+
melm 959$v Date-of-acquisition,Date-of-acquisition:d,Date-of-acquisition:s
|
237
|
+
melm 959$t Material-type
|
238
|
+
#melm 959$b barcode,barcode:n
|