1 INSERT INTO config.bib_source (id, quality, source, transcendant, can_have_copies) VALUES
2 (1, 90, oils_i18n_gettext(1, 'oclc', 'cbs', 'source'), FALSE, TRUE);
3 INSERT INTO config.bib_source (id, quality, source, transcendant, can_have_copies) VALUES
4 (2, 10, oils_i18n_gettext(2, 'System Local', 'cbs', 'source'), FALSE, TRUE);
5 INSERT INTO config.bib_source (id, quality, source, transcendant, can_have_copies) VALUES
6 (3, 1, oils_i18n_gettext(3, 'Project Gutenberg', 'cbs', 'source'), TRUE, TRUE);
7 INSERT INTO config.bib_source (id, quality, source, transcendant, can_have_copies) VALUES
8 (4, 1, oils_i18n_gettext(4, 'Course materials module', 'cbs', 'source'), TRUE, FALSE);
9 SELECT SETVAL('config.bib_source_id_seq'::TEXT, 100);
11 INSERT INTO biblio.peer_type (id,name) VALUES
12 (1,oils_i18n_gettext(1,'Bound Volume','bpt','name')),
13 (2,oils_i18n_gettext(2,'Bilingual','bpt','name')),
14 (3,oils_i18n_gettext(3,'Back-to-back','bpt','name')),
15 (4,oils_i18n_gettext(4,'Set','bpt','name')),
16 (5,oils_i18n_gettext(5,'e-Reader Preload','bpt','name'));
17 SELECT SETVAL('biblio.peer_type_id_seq'::TEXT, 100);
19 INSERT INTO config.standing (id, value) VALUES (1, oils_i18n_gettext(1, 'Good', 'cst', 'value'));
20 INSERT INTO config.standing (id, value) VALUES (2, oils_i18n_gettext(2, 'Barred', 'cst', 'value'));
21 SELECT SETVAL('config.standing_id_seq'::TEXT, 100);
23 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert)
24 VALUES (1,'PATRON_EXCEEDS_FINES',oils_i18n_gettext(1, 'Patron exceeds fine threshold', 'csp', 'label'),'CIRC|FULFILL|HOLD|CAPTURE|RENEW', TRUE);
25 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert)
26 VALUES (2,'PATRON_EXCEEDS_OVERDUE_COUNT',oils_i18n_gettext(2, 'Patron exceeds max overdue item threshold', 'csp', 'label'),'CIRC|FULFILL|HOLD|CAPTURE|RENEW', TRUE);
27 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert)
28 VALUES (3,'PATRON_EXCEEDS_CHECKOUT_COUNT',oils_i18n_gettext(3, 'Patron exceeds max checked out item threshold', 'csp', 'label'),'CIRC|FULFILL', TRUE);
29 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert)
30 VALUES (4,'PATRON_EXCEEDS_COLLECTIONS_WARNING',oils_i18n_gettext(4, 'Patron exceeds pre-collections warning fine threshold', 'csp', 'label'),'CIRC|FULFILL|HOLD|CAPTURE|RENEW', TRUE);
31 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert)
32 VALUES (5,'PATRON_EXCEEDS_LOST_COUNT',oils_i18n_gettext(5, 'Patron exceeds max lost item threshold', 'csp', 'label'),'CIRC|FULFILL|HOLD|CAPTURE|RENEW', TRUE);
34 INSERT INTO config.standing_penalty (id,name,label,staff_alert) VALUES (20,'ALERT_NOTE',oils_i18n_gettext(20, 'Alerting Note, no blocks', 'csp', 'label'),TRUE);
35 INSERT INTO config.standing_penalty (id,name,label) VALUES (21,'SILENT_NOTE',oils_i18n_gettext(21, 'Note, no blocks', 'csp', 'label'));
36 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (22,'STAFF_C',oils_i18n_gettext(22, 'Alerting block on Circ', 'csp', 'label'),'CIRC', TRUE);
37 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (23,'STAFF_CH',oils_i18n_gettext(23, 'Alerting block on Circ and Hold', 'csp', 'label'),'CIRC|HOLD', TRUE);
38 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (24,'STAFF_CR',oils_i18n_gettext(24, 'Alerting block on Circ and Renew', 'csp', 'label'),'CIRC|RENEW', TRUE);
39 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (25,'STAFF_CHR',oils_i18n_gettext(25, 'Alerting block on Circ, Hold and Renew', 'csp', 'label'),'CIRC|HOLD|RENEW', TRUE);
40 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (26,'STAFF_HR',oils_i18n_gettext(26, 'Alerting block on Hold and Renew', 'csp', 'label'),'HOLD|RENEW', TRUE);
41 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (27,'STAFF_H',oils_i18n_gettext(27, 'Alerting block on Hold', 'csp', 'label'),'HOLD', TRUE);
42 INSERT INTO config.standing_penalty (id,name,label,block_list,staff_alert) VALUES (28,'STAFF_R',oils_i18n_gettext(28, 'Alerting block on Renew', 'csp', 'label'),'RENEW', TRUE);
43 INSERT INTO config.standing_penalty (id,name,label) VALUES (29,'INVALID_PATRON_ADDRESS',oils_i18n_gettext(29, 'Patron has an invalid address', 'csp', 'label'));
44 INSERT INTO config.standing_penalty (id,name,label) VALUES (30,'PATRON_IN_COLLECTIONS',oils_i18n_gettext(30, 'Patron has been referred to a collections agency', 'csp', 'label'));
45 INSERT INTO config.standing_penalty (id, name, label, staff_alert, org_depth) VALUES
48 'INVALID_PATRON_EMAIL_ADDRESS',
51 'Patron had an invalid email address',
60 'INVALID_PATRON_DAY_PHONE',
63 'Patron had an invalid daytime phone number',
72 'INVALID_PATRON_EVENING_PHONE',
75 'Patron had an invalid evening phone number',
84 'INVALID_PATRON_OTHER_PHONE',
87 'Patron had an invalid other phone number',
96 SELECT SETVAL('config.standing_penalty_id_seq', 100);
98 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'identifier', oils_i18n_gettext('identifier', 'Identifier', 'cmc', 'label') );
99 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'keyword', oils_i18n_gettext('keyword', 'Keyword', 'cmc', 'label') );
100 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'title', oils_i18n_gettext('title', 'Title', 'cmc', 'label'));
101 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'author', oils_i18n_gettext('author', 'Author', 'cmc', 'label'));
102 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'subject', oils_i18n_gettext('subject', 'Subject', 'cmc', 'label') );
103 INSERT INTO config.metabib_class ( name, label ) VALUES ( 'series', oils_i18n_gettext('series', 'Series', 'cmc', 'label') );
105 -- enable combined search for only the subject class by default
106 UPDATE config.metabib_class SET combined = TRUE WHERE name = 'subject';
108 -- some more from 002.schema.config.sql:
109 INSERT INTO config.xml_transform VALUES ( 'marcxml', 'http://www.loc.gov/MARC21/slim', 'marc', '---' );
110 INSERT INTO config.xml_transform VALUES ( 'mods', 'http://www.loc.gov/mods/', 'mods', '');
111 INSERT INTO config.xml_transform VALUES ( 'mods3', 'http://www.loc.gov/mods/v3', 'mods3', '');
112 INSERT INTO config.xml_transform VALUES ( 'mods32', 'http://www.loc.gov/mods/v3', 'mods32', '');
113 INSERT INTO config.xml_transform VALUES ( 'mods33', 'http://www.loc.gov/mods/v3', 'mods33', '');
114 INSERT INTO config.xml_transform VALUES ( 'marc21expand880', 'http://www.loc.gov/MARC21/slim', 'marc', '' );
115 INSERT INTO config.xml_transform VALUES ( 'mads21', 'http://www.loc.gov/mads/v2', 'mads21', '' );
118 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, authority_xpath, browse_field ) VALUES
119 (1, 'series', 'seriestitle', oils_i18n_gettext(1, 'Series Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:relatedItem[@type="series"]/mods32:titleInfo[not(@type="nfi")]$$, TRUE, '//@xlink:href', FALSE );
121 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, authority_xpath ) VALUES
122 (2, 'title', 'abbreviated', oils_i18n_gettext(2, 'Abbreviated Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and (@type='abbreviated')]$$, '//@xlink:href' );
123 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, authority_xpath, browse_sort_xpath ) VALUES
124 (3, 'title', 'translated', oils_i18n_gettext(3, 'Translated Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and (@type='translated-nfi')]$$, '//@xlink:href', $$*[local-name() != "nonSort"]$$ );
125 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, authority_xpath, browse_sort_xpath ) VALUES
126 (4, 'title', 'alternative', oils_i18n_gettext(4, 'Alternate Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and starts-with(@type,'alternative')]$$, '//@xlink:href', $$*[local-name() != "nonSort"]$$ );
127 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, authority_xpath, browse_sort_xpath ) VALUES
128 (5, 'title', 'uniform', oils_i18n_gettext(5, 'Uniform Title', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleInfo[mods32:title and (@type='uniform-nfi')]$$, '//@xlink:href', $$*[local-name() != "nonSort"]$$ );
129 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, authority_xpath, browse_field, display_field ) VALUES
130 (6, 'title', 'proper', oils_i18n_gettext(6, 'Title Proper', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleNonfiling[mods32:title and not (@type)]$$, '//@xlink:href', FALSE,TRUE );
132 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field , authority_xpath, browse_xpath) VALUES
133 (7, 'author', 'corporate', oils_i18n_gettext(7, 'Corporate Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='corporate' and (mods32:role/mods32:roleTerm[text()='creator'] or mods32:role/mods32:roleTerm[text()='aut'] or mods32:role/mods32:roleTerm[text()='cre'])]$$, $$//*[local-name()='namePart']$$, TRUE, '//@xlink:href',$$//*[local-name()='namePart']$$ ); -- /* to fool vim */;
134 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field, authority_xpath, browse_xpath, display_field, display_xpath ) VALUES
135 (8, 'author', 'personal', oils_i18n_gettext(8, 'Personal Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='personal' and mods32:role/mods32:roleTerm[text()='creator']]$$, $$//*[local-name()='namePart']$$, TRUE, '//@xlink:href',$$//*[local-name()='namePart']$$,TRUE,$$//*[local-name()='namePart']$$ ); -- /* to fool vim */;
136 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field, authority_xpath, browse_xpath ) VALUES
137 (9, 'author', 'conference', oils_i18n_gettext(9, 'Conference Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='conference' and mods32:role/mods32:roleTerm[text()='creator']]$$, $$//*[local-name()='namePart']$$, TRUE, '//@xlink:href',$$//*[local-name()='namePart']$$ ); -- /* to fool vim */;
138 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field, authority_xpath, browse_xpath ) VALUES
139 (10, 'author', 'other', oils_i18n_gettext(10, 'Other Author', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:name[@type='personal' and not(mods32:role/mods32:roleTerm[text()='creator'])]$$, $$//*[local-name()='namePart']$$, TRUE, '//@xlink:href',$$//*[local-name()='namePart']$$ ); -- /* to fool vim */;
141 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, authority_xpath, browse_field ) VALUES
142 (11, 'subject', 'geographic', oils_i18n_gettext(11, 'Geographic Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:geographic$$, TRUE, '//@xlink:href', FALSE );
143 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_xpath, facet_field, authority_xpath ) VALUES
144 (12, 'subject', 'name', oils_i18n_gettext(12, 'Name Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:name$$, $$//*[local-name()='namePart']$$, TRUE, '//@xlink:href' ); -- /* to fool vim */;
145 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, authority_xpath, browse_field ) VALUES
146 (13, 'subject', 'temporal', oils_i18n_gettext(13, 'Temporal Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:temporal$$, TRUE, '//@xlink:href', FALSE );
147 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, facet_field, authority_xpath, browse_field ) VALUES
148 (14, 'subject', 'topic', oils_i18n_gettext(14, 'Topic Subject', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject/mods32:topic$$, TRUE, '//@xlink:href', FALSE );
149 --INSERT INTO config.metabib_field ( id, field_class, name, format, xpath ) VALUES
150 -- ( id, field_class, name, xpath ) VALUES ( 'subject', 'genre', 'mods32', $$//mods32:mods/mods32:genre$$ );
151 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field, display_field ) VALUES
152 (15, 'keyword', 'keyword', oils_i18n_gettext(15, 'General Keywords', 'cmf', 'label'), 'mods32', $$//mods32:mods/*[not(local-name()='originInfo')]$$, FALSE, FALSE ); -- /* to fool vim */;
153 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field, display_field ) VALUES
154 (16, 'subject', 'complete', oils_i18n_gettext(16, 'All Subjects', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:subject[not(descendant::mods32:geographicCode)]$$, FALSE, TRUE );
156 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
157 (17, 'identifier', 'accession', oils_i18n_gettext(17, 'Accession Number', 'cmf', 'label'), 'marcxml', $$//marc:controlfield[@tag='001']$$, FALSE );
158 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
159 (18, 'identifier', 'isbn', oils_i18n_gettext(18, 'ISBN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='020']/marc:subfield[@code='a' or @code='z']$$, FALSE );
160 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
161 (19, 'identifier', 'issn', oils_i18n_gettext(19, 'ISSN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='022']/marc:subfield[@code='a' or @code='z']$$, FALSE );
162 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
163 (20, 'identifier', 'upc', oils_i18n_gettext(20, 'UPC', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='1']/marc:subfield[@code='a' or @code='z']$$, FALSE );
164 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
165 (21, 'identifier', 'ismn', oils_i18n_gettext(21, 'ISMN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='2']/marc:subfield[@code='a' or @code='z']$$, FALSE );
166 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
167 (22, 'identifier', 'ean', oils_i18n_gettext(22, 'EAN', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='3']/marc:subfield[@code='a' or @code='z']$$, FALSE );
168 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
169 (23, 'identifier', 'isrc', oils_i18n_gettext(23, 'ISRC', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='0']/marc:subfield[@code='a' or @code='z']$$, FALSE );
170 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
171 (24, 'identifier', 'sici', oils_i18n_gettext(24, 'SICI', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='024' and @ind1='4']/marc:subfield[@code='a' or @code='z']$$, FALSE );
172 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
173 (25, 'identifier', 'bibcn', oils_i18n_gettext(25, 'Local Free-Text Call Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='099']$$, FALSE );
174 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
175 (26, 'identifier', 'tcn', oils_i18n_gettext(26, 'Title Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='a']$$, FALSE );
176 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field ) VALUES
177 (27, 'identifier', 'bibid', oils_i18n_gettext(27, 'Internal ID', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='901']/marc:subfield[@code='c']$$, FALSE );
178 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, search_field, facet_field, browse_field) VALUES
179 (28, 'identifier', 'authority_id', oils_i18n_gettext(28, 'Authority Record ID', 'cmf', 'label'), 'marcxml', '//marc:datafield/marc:subfield[@code="0"]', FALSE, TRUE, FALSE);
180 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field) VALUES
181 (29, 'identifier', 'scn', oils_i18n_gettext(29, 'System Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='035']/marc:subfield[@code="a"]$$, FALSE);
182 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field) VALUES
183 (30, 'identifier', 'lccn', oils_i18n_gettext(30, 'LC Control Number', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='010']/marc:subfield[@code="a" or @code='z']$$, FALSE);
184 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, search_field, authority_xpath, browse_field, browse_sort_xpath ) VALUES
185 (31, 'title', 'browse', oils_i18n_gettext(31, 'Title Proper (Browse)', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:titleBrowse$$, FALSE, '//@xlink:href', TRUE, $$*[local-name() != "nonSort"]$$ );
186 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, search_field, authority_xpath, browse_field, browse_sort_xpath ) VALUES
187 (32, 'series', 'browse', oils_i18n_gettext(32, 'Series Title (Browse)', 'cmf', 'label'), 'mods32', $$//mods32:mods/mods32:relatedItem[@type="series"]/mods32:titleInfo[@type="nfi"]$$, FALSE, '//@xlink:href', TRUE, $$*[local-name() != "nonSort"]$$ );
189 INSERT INTO config.metabib_field ( id, field_class, name, label, format, xpath, browse_field, facet_field, facet_xpath, joiner ) VALUES
190 (33, 'identifier', 'genre', oils_i18n_gettext(33, 'Genre', 'cmf', 'label'), 'marcxml', $$//marc:datafield[@tag='655']$$, FALSE, TRUE, $$//*[local-name()='subfield' and contains('abvxyz',@code)]$$, ' -- ' ); -- /* to fool vim */;
191 UPDATE config.metabib_field SET display_xpath = facet_xpath, display_field = TRUE WHERE id = 33;
193 UPDATE config.metabib_field SET joiner = ' -- ' WHERE field_class = 'subject' AND name NOT IN ('name');
195 INSERT INTO config.metabib_field ( id, field_class, name, label,
196 format, xpath, search_field, browse_field, authority_xpath, joiner ) VALUES
197 (34, 'subject', 'topic_browse', oils_i18n_gettext(34, 'Topic Browse', 'cmf', 'label'),
198 'mods32', $$//mods32:mods/mods32:subject[local-name(./*[1]) = "topic"]$$, FALSE, TRUE, '//@xlink:href', ' -- ' ); -- /* to fool vim */;
200 INSERT INTO config.metabib_field ( id, field_class, name, label,
201 format, xpath, search_field, browse_field, authority_xpath, joiner ) VALUES
202 (35, 'subject', 'geographic_browse', oils_i18n_gettext(35, 'Geographic Name Browse', 'cmf', 'label'),
203 'mods32', $$//mods32:mods/mods32:subject[local-name(./*[1]) = "geographic"]$$, FALSE, TRUE, '//@xlink:href', ' -- ' ); -- /* to fool vim */;
205 INSERT INTO config.metabib_field ( id, field_class, name, label,
206 format, xpath, search_field, browse_field, authority_xpath, joiner ) VALUES
207 (36, 'subject', 'temporal_browse', oils_i18n_gettext(36, 'Temporal Term Browse', 'cmf', 'label'),
208 'mods32', $$//mods32:mods/mods32:subject[local-name(./*[1]) = "temporal"]$$, FALSE, TRUE, '//@xlink:href', ' -- ' ); -- /* to fool vim */;
210 INSERT INTO config.metabib_field ( id, field_class, name, label,
211 format, xpath, display_field, display_xpath ) VALUES
212 (37, 'author', 'creator', oils_i18n_gettext(37, 'All Creators', 'cmf', 'label'),
213 'mods32', $$//mods32:mods/mods32:name[mods32:role/mods32:roleTerm[text()='creator']]$$, TRUE, $$//*[local-name()='namePart']$$ ); -- /* to fool vim */;
215 INSERT INTO config.metabib_field (id, field_class, name,
216 label, xpath, display_field, search_field, browse_field)
218 38, 'identifier', 'edition',
219 oils_i18n_gettext(38, 'Edition', 'cmf', 'label'),
220 $$//mods33:mods/mods33:originInfo//mods33:edition[1]$$,
224 INSERT INTO config.metabib_field (id, field_class, name,
225 label, xpath, display_field, search_field, browse_field)
227 39, 'keyword', 'physical_description',
228 oils_i18n_gettext(39, 'Physical Description', 'cmf', 'label'),
229 $$(//mods33:mods/mods33:physicalDescription/mods33:form|//mods33:mods/mods33:physicalDescription/mods33:extent|//mods33:mods/mods33:physicalDescription/mods33:reformattingQuality|//mods33:mods/mods33:physicalDescription/mods33:internetMediaType|//mods33:mods/mods33:physicalDescription/mods33:digitalOrigin)$$,
233 INSERT INTO config.metabib_field (id, field_class, name,
234 label, xpath, display_field, search_field, browse_field)
236 40, 'identifier', 'publisher',
237 oils_i18n_gettext(40, 'Publisher', 'cmf', 'label'),
238 $$//mods33:mods/mods33:originInfo//mods33:publisher[1]$$,
242 INSERT INTO config.metabib_field (id, field_class, name,
243 label, xpath, display_field, search_field, browse_field)
245 41, 'keyword', 'abstract',
246 oils_i18n_gettext(41, 'Abstract', 'cmf', 'label'),
247 $$//mods33:mods/mods33:abstract$$,
251 INSERT INTO config.metabib_field (id, field_class, name,
252 label, xpath, display_field, search_field, browse_field)
254 42, 'keyword', 'toc',
255 oils_i18n_gettext(42, 'Table of Contents', 'cmf', 'label'),
256 $$//mods33:tableOfContents$$,
260 INSERT INTO config.metabib_field (id, field_class, name,
261 label, xpath, display_field, search_field, browse_field)
263 43, 'identifier', 'type_of_resource',
264 oils_i18n_gettext(43, 'Type of Resource', 'cmf', 'label'),
265 $$//mods33:mods/mods33:typeOfResource$$,
269 INSERT INTO config.metabib_field (id, field_class, name,
270 label, xpath, display_field, search_field, browse_field)
272 44, 'identifier', 'pubdate',
273 oils_i18n_gettext(44, 'Publication Date', 'cmf', 'label'),
274 $$//mods33:mods/mods33:originInfo//mods33:dateIssued[@encoding="marc"]|//mods33:mods/mods33:originInfo//mods33:dateIssued[1]$$,
278 INSERT INTO config.metabib_field (id, field_class, name, label, browse_field)
279 VALUES (45, 'keyword', 'blob', oils_i18n_gettext(45, 'All searchable fields', 'cmf', 'label'), FALSE);
281 INSERT INTO config.metabib_field (id, field_class, name,
282 label, xpath, display_field, search_field, browse_field)
284 46, 'keyword', 'bibliography',
285 oils_i18n_gettext(46, 'Bibliography', 'cmf', 'label'),
286 $$//mods33:note[@type='bibliography']$$,
289 47, 'keyword', 'thesis',
290 oils_i18n_gettext(47, 'Thesis', 'cmf', 'label'),
291 $$//mods33:note[@type='thesis']$$,
294 48, 'keyword', 'production_credits',
295 oils_i18n_gettext(48, 'Creation/Production Credits', 'cmf', 'label'),
296 $$//mods33:note[@type='creation/production credits']$$,
299 49, 'keyword', 'performers',
300 oils_i18n_gettext(49, 'Performers', 'cmf', 'label'),
301 $$//mods33:note[@type='performers']$$,
304 50, 'keyword', 'general_note',
305 oils_i18n_gettext(50, 'General Note', 'cmf', 'label'),
306 $$//mods33:note[not(@type)]$$,
311 INSERT INTO config.metabib_field (id, field_class, name, format,
312 label, xpath, display_xpath, display_field, search_field, browse_field)
314 51, 'author', 'first_author', 'mods32',
315 oils_i18n_gettext(51, 'Author', 'cmf', 'label'),
316 $$//mods32:mods/mods32:name[mods32:role/mods32:roleTerm[text()='creator']][1]$$,
317 $$//*[local-name()='namePart']$$,
321 INSERT INTO config.metabib_field (id, field_class, name, format,
322 label, xpath, display_xpath, display_field, search_field, browse_field)
324 52, 'identifier', 'origin_info', 'marcxml',
325 oils_i18n_gettext(52, 'Origin Info', 'cmf', 'label'),
326 $$//*[@tag='260' or @tag='264'][1]$$,
327 $$//*[local-name()='subfield' and contains('abc',@code)]$$,
331 INSERT INTO config.metabib_field (id, field_class, name, format, weight,
332 label, xpath, display_field, search_field, browse_field, facet_field)
334 53, 'title', 'maintitle', 'marcxml', 10,
335 oils_i18n_gettext(53, 'Main Title', 'cmf', 'label'),
336 $$//*[@tag='245']/*[@code='a']$$,
337 FALSE, TRUE, FALSE, FALSE
340 INSERT INTO config.metabib_field_virtual_map (real, virtual)
343 FROM config.metabib_field
345 AND id NOT IN (15, 45, 38, 40)
346 AND id NOT IN (SELECT real FROM config.metabib_field_virtual_map);
348 UPDATE config.metabib_field_virtual_map SET weight = -1 WHERE real = 39;
349 UPDATE config.metabib_field_virtual_map SET weight = 0 WHERE real = 41;
350 UPDATE config.metabib_field_virtual_map SET weight = 0 WHERE real = 42;
351 UPDATE config.metabib_field_virtual_map SET weight = 0 WHERE real = 46;
352 UPDATE config.metabib_field_virtual_map SET weight = 0 WHERE real = 47;
353 UPDATE config.metabib_field_virtual_map SET weight = 0 WHERE real = 48;
354 UPDATE config.metabib_field_virtual_map SET weight = 0 WHERE real = 50;
355 UPDATE config.metabib_field_virtual_map SET weight = 8 WHERE real = 6;
356 UPDATE config.metabib_field_virtual_map SET weight = 8 WHERE real = 8;
357 UPDATE config.metabib_field_virtual_map SET weight = 8 WHERE real = 16;
358 UPDATE config.metabib_field_virtual_map SET weight = 12 WHERE real = 53;
360 -- Modify existing config.metabib_field entries
362 UPDATE config.metabib_field SET display_field = TRUE WHERE id IN (
364 11, -- subject_geographic
366 13, -- subject_temporal
373 INSERT INTO config.metabib_field_index_norm_map (field,norm)
376 FROM config.metabib_field m,
377 config.index_normalizer i
378 WHERE i.func IN ('naco_normalize')
379 AND m.id IN (34, 35, 36);
381 SELECT SETVAL('config.metabib_field_id_seq', GREATEST(1000, (SELECT MAX(id) FROM config.metabib_field)));
383 INSERT INTO config.display_field_map (name, field, multi) VALUES
385 ('author', 51, FALSE),
386 ('creators', 37, TRUE),
387 ('subject', 16, TRUE),
389 ('series_title', 1, TRUE),
390 ('subject_geographic', 11, TRUE),
391 ('subject_name', 12, TRUE),
392 ('subject_temporal', 13, TRUE),
393 ('subject_topic', 14, TRUE),
397 ('edition', 38, FALSE),
398 ('physical_description',39, TRUE),
400 ('bibliography', 46, TRUE),
401 ('thesis', 47, TRUE),
402 ('performers', 49, TRUE),
403 ('production_credits', 48, TRUE),
404 ('general_note', 50, TRUE),
405 ('publisher', 52, FALSE),
406 ('abstract', 41, FALSE),
408 ('type_of_resource', 43, FALSE),
409 ('pubdate', 44, FALSE)
412 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('kw','keyword');
413 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.keyword','keyword');
414 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.publisher','keyword');
415 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.subjecttitle','keyword');
416 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.genre','keyword');
417 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.edition','keyword');
418 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('srw.serverchoice','keyword');
420 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('id','identifier');
421 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.identifier','identifier');
422 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.isbn','identifier', 18);
423 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.issn','identifier', 19);
424 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.upc','identifier', 20);
425 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.callnumber','identifier', 25);
426 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.tcn','identifier', 26);
427 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('eg.bibid','identifier', 27);
429 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('au','author');
430 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('name','author');
431 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('creator','author');
432 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.author','author');
433 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.name','author');
434 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.creator','author');
435 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.contributor','author');
436 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('bib.name','author');
437 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonal','author',8);
438 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalfamily','author',8);
439 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namepersonalgiven','author',8);
440 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.namecorporate','author',7);
441 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.nameconference','author',9);
443 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('ti','title');
444 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.title','title');
445 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.title','title');
446 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleabbreviated','title',2);
447 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleuniform','title',5);
448 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titletranslated','title',3);
449 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titlealternative','title',4);
450 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.title','title',2);
452 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('su','subject');
453 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.subject','subject');
454 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('dc.subject','subject');
455 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectplace','subject',11);
456 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectname','subject',12);
457 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.subjectoccupation','subject',16);
459 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('se','series');
460 INSERT INTO config.metabib_search_alias (alias,field_class) VALUES ('eg.series','series');
461 INSERT INTO config.metabib_search_alias (alias,field_class,field) VALUES ('bib.titleseries','series',1);
464 INSERT INTO config.non_cataloged_type ( id, owning_lib, name ) VALUES ( 1, 1, oils_i18n_gettext(1, 'Paperback Book', 'cnct', 'name') );
465 SELECT SETVAL('config.non_cataloged_type_id_seq'::TEXT, 100);
467 INSERT INTO config.identification_type ( id, name ) VALUES
468 ( 1, oils_i18n_gettext(1, 'Drivers License', 'cit', 'name') );
469 INSERT INTO config.identification_type ( id, name ) VALUES
470 ( 3, oils_i18n_gettext(3, 'Other', 'cit', 'name') );
471 SELECT SETVAL('config.identification_type_id_seq'::TEXT, 100);
473 INSERT INTO config.rule_circ_duration VALUES
474 (1, oils_i18n_gettext(1, '7_days_0_renew', 'crcd', 'name'), '7 days', '7 days', '7 days', 0);
475 INSERT INTO config.rule_circ_duration VALUES
476 (2, oils_i18n_gettext(2, '28_days_2_renew', 'crcd', 'name'), '28 days', '28 days', '28 days', 2);
477 INSERT INTO config.rule_circ_duration VALUES
478 (3, oils_i18n_gettext(3, '3_months_0_renew', 'crcd', 'name'), '3 months', '3 months', '3 months', 0);
479 INSERT INTO config.rule_circ_duration VALUES
480 (4, oils_i18n_gettext(4, '3_days_1_renew', 'crcd', 'name'), '3 days', '3 days', '3 days', 1);
481 INSERT INTO config.rule_circ_duration VALUES
482 (5, oils_i18n_gettext(5, '2_months_2_renew', 'crcd', 'name'), '2 months', '2 months', '2 months', 2);
483 INSERT INTO config.rule_circ_duration VALUES
484 (6, oils_i18n_gettext(6, '35_days_1_renew', 'crcd', 'name'), '35 days', '35 days', '35 days', 1);
485 INSERT INTO config.rule_circ_duration VALUES
486 (7, oils_i18n_gettext(7, '7_days_2_renew', 'crcd', 'name'), '7 days', '7 days', '7 days', 2);
487 INSERT INTO config.rule_circ_duration VALUES
488 (8, oils_i18n_gettext(8, '1_hour_2_renew', 'crcd', 'name'), '1 hour', '1 hour', '1 hour', 2);
489 INSERT INTO config.rule_circ_duration VALUES
490 (9, oils_i18n_gettext(9, '28_days_0_renew', 'crcd', 'name'), '28 days', '28 days', '28 days', 0);
491 INSERT INTO config.rule_circ_duration VALUES
492 (10, oils_i18n_gettext(10, '14_days_2_renew', 'crcd', 'name'), '14 days', '14 days', '14 days', 2);
493 INSERT INTO config.rule_circ_duration VALUES
494 (11, oils_i18n_gettext(11, 'default', 'crcd', 'name'), '21 days', '14 days', '7 days', 2);
495 SELECT SETVAL('config.rule_circ_duration_id_seq'::TEXT, 100);
497 INSERT INTO config.rule_max_fine VALUES
498 (1, oils_i18n_gettext(1, 'default', 'crmf', 'name'), 5.00);
499 INSERT INTO config.rule_max_fine VALUES
500 (2, oils_i18n_gettext(2, 'overdue_min', 'crmf', 'name'), 5.00);
501 INSERT INTO config.rule_max_fine VALUES
502 (3, oils_i18n_gettext(3, 'overdue_mid', 'crmf', 'name'), 10.00);
503 INSERT INTO config.rule_max_fine VALUES
504 (4, oils_i18n_gettext(4, 'overdue_max', 'crmf', 'name'), 100.00);
505 INSERT INTO config.rule_max_fine VALUES
506 (5, oils_i18n_gettext(5, 'overdue_equip_min', 'crmf', 'name'), 25.00);
507 INSERT INTO config.rule_max_fine VALUES
508 (6, oils_i18n_gettext(6, 'overdue_equip_mid', 'crmf', 'name'), 25.00);
509 INSERT INTO config.rule_max_fine VALUES
510 (7, oils_i18n_gettext(7, 'overdue_equip_max', 'crmf', 'name'), 100.00);
511 SELECT SETVAL('config.rule_max_fine_id_seq'::TEXT, 100);
513 INSERT INTO config.rule_recurring_fine VALUES
514 (1, oils_i18n_gettext(1, 'default', 'crrf', 'name'), 0.50, 0.10, 0.05, '1 day', '1 day');
515 INSERT INTO config.rule_recurring_fine VALUES
516 (2, oils_i18n_gettext(2, '10_cent_per_day', 'crrf', 'name'), 0.50, 0.10, 0.10, '1 day', '1 day');
517 INSERT INTO config.rule_recurring_fine VALUES
518 (3, oils_i18n_gettext(3, '50_cent_per_day', 'crrf', 'name'), 0.50, 0.50, 0.50, '1 day', '1 day');
519 SELECT SETVAL('config.rule_recurring_fine_id_seq'::TEXT, 100);
521 INSERT INTO config.rule_age_hold_protect VALUES
522 (1, oils_i18n_gettext(1, '3month', 'crahp', 'name'), '3 months', 0);
523 INSERT INTO config.rule_age_hold_protect VALUES
524 (2, oils_i18n_gettext(2, '6month', 'crahp', 'name'), '6 months', 2);
525 SELECT SETVAL('config.rule_age_hold_protect_id_seq'::TEXT, 100);
527 INSERT INTO config.copy_status (id,name,holdable,opac_visible,copy_active,is_available) VALUES (0,oils_i18n_gettext(0, 'Available', 'ccs', 'name'),'t','t','t','t');
528 INSERT INTO config.copy_status (id,name,holdable,opac_visible,copy_active,restrict_copy_delete) VALUES (1,oils_i18n_gettext(1, 'Checked out', 'ccs', 'name'),'t','t','t','t');
529 INSERT INTO config.copy_status (id,name) VALUES (2,oils_i18n_gettext(2, 'Bindery', 'ccs', 'name'));
530 INSERT INTO config.copy_status (id,name,restrict_copy_delete) VALUES (3,oils_i18n_gettext(3, 'Lost', 'ccs', 'name'),'t');
531 INSERT INTO config.copy_status (id,name) VALUES (4,oils_i18n_gettext(4, 'Missing', 'ccs', 'name'));
532 INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (5,oils_i18n_gettext(5, 'In process', 'ccs', 'name'),'t','t');
533 INSERT INTO config.copy_status (id,name,holdable,opac_visible,restrict_copy_delete) VALUES (6,oils_i18n_gettext(6, 'In transit', 'ccs', 'name'),'t','t','t');
534 INSERT INTO config.copy_status (id,name,holdable,opac_visible,copy_active,is_available) VALUES (7,oils_i18n_gettext(7, 'Reshelving', 'ccs', 'name'),'t','t','t','t');
535 INSERT INTO config.copy_status (id,name,holdable,opac_visible,copy_active,restrict_copy_delete) VALUES (8,oils_i18n_gettext(8, 'On holds shelf', 'ccs', 'name'),'t','t','t','t');
536 INSERT INTO config.copy_status (id,name,holdable,opac_visible) VALUES (9,oils_i18n_gettext(9, 'On order', 'ccs', 'name'),'t','t');
537 INSERT INTO config.copy_status (id,name,copy_active) VALUES (10,oils_i18n_gettext(10, 'ILL', 'ccs', 'name'),'t');
538 INSERT INTO config.copy_status (id,name) VALUES (11,oils_i18n_gettext(11, 'Cataloging', 'ccs', 'name'));
539 INSERT INTO config.copy_status (id,name,opac_visible,copy_active) VALUES (12,oils_i18n_gettext(12, 'Reserves', 'ccs', 'name'),'t','t');
540 INSERT INTO config.copy_status (id,name) VALUES (13,oils_i18n_gettext(13, 'Discard/Weed', 'ccs', 'name'));
541 INSERT INTO config.copy_status (id,name) VALUES (14,oils_i18n_gettext(14, 'Damaged', 'ccs', 'name'));
542 INSERT INTO config.copy_status (id,name,copy_active) VALUES (15,oils_i18n_gettext(15, 'On reservation shelf', 'ccs', 'name'),'t');
543 INSERT INTO config.copy_status
544 (id, name, holdable, opac_visible, copy_active, restrict_copy_delete)
545 VALUES (16, oils_i18n_gettext(16, 'Long Overdue', 'ccs', 'name'), 'f', 'f', 'f', 't');
546 INSERT INTO config.copy_status
547 (id, name, holdable, opac_visible, copy_active, restrict_copy_delete)
548 VALUES (17, oils_i18n_gettext(17, 'Lost and Paid', 'ccs', 'name'), 'f', 'f', 'f', 't');
549 INSERT INTO config.copy_status(id,name,holdable,opac_visible) VALUES (18,oils_i18n_gettext(18, 'Canceled Transit', 'ccs', 'name'),'t','t');
552 SELECT SETVAL('config.copy_status_id_seq'::TEXT, 100);
554 INSERT INTO config.net_access_level (id, name) VALUES
555 (1, oils_i18n_gettext(1, 'Filtered', 'cnal', 'name'));
556 INSERT INTO config.net_access_level (id, name) VALUES
557 (2, oils_i18n_gettext(2, 'Unfiltered', 'cnal', 'name'));
558 INSERT INTO config.net_access_level (id, name) VALUES
559 (3, oils_i18n_gettext(3, 'No Access', 'cnal', 'name'));
560 SELECT SETVAL('config.net_access_level_id_seq'::TEXT, 100);
563 INSERT INTO config.i18n_locale (code,marc_code,name,description)
564 VALUES ('en-US', 'eng', oils_i18n_gettext('en-US', 'English (US)', 'i18n_l', 'name'),
565 oils_i18n_gettext('en-US', 'American English', 'i18n_l', 'description'));
566 INSERT INTO config.i18n_locale (code,marc_code,name,description)
567 VALUES ('cs-CZ', 'cze', oils_i18n_gettext('cs-CZ', 'Czech', 'i18n_l', 'name'),
568 oils_i18n_gettext('cs-CZ', 'Czech', 'i18n_l', 'description'));
569 INSERT INTO config.i18n_locale (code,marc_code,name,description)
570 VALUES ('en-CA', 'eng', oils_i18n_gettext('en-CA', 'English (Canada)', 'i18n_l', 'name'),
571 oils_i18n_gettext('en-CA', 'Canadian English', 'i18n_l', 'description'));
572 INSERT INTO config.i18n_locale (code,marc_code,name,description)
573 VALUES ('fi-FI', 'fin', oils_i18n_gettext('fi-FI', 'Finnish', 'i18n_l', 'name'),
574 oils_i18n_gettext('fi-FI', 'Finnish', 'i18n_l', 'description'));
575 INSERT INTO config.i18n_locale (code,marc_code,name,description)
576 VALUES ('fr-CA', 'fre', oils_i18n_gettext('fr-CA', 'French (Canada)', 'i18n_l', 'name'),
577 oils_i18n_gettext('fr-CA', 'Canadian French', 'i18n_l', 'description'));
578 INSERT INTO config.i18n_locale (code,marc_code,name,description)
579 VALUES ('hy-AM', 'arm', oils_i18n_gettext('hy-AM', 'Armenian', 'i18n_l', 'name'),
580 oils_i18n_gettext('hy-AM', 'Armenian', 'i18n_l', 'description'));
581 INSERT INTO config.i18n_locale (code,marc_code,name,description)
582 VALUES ('es-ES', 'spa', oils_i18n_gettext('es-ES', 'Spanish', 'i18n_l', 'name'),
583 oils_i18n_gettext('es-ES', 'Spanish', 'i18n_l', 'description'));
584 --INSERT INTO config.i18n_locale (code,marc_code,name,description)
585 -- VALUES ('es-US', 'spa', oils_i18n_gettext('es-US', 'Spanish (US)', 'i18n_l', 'name'),
586 -- oils_i18n_gettext('es-US', 'American Spanish', 'i18n_l', 'description'));
587 --INSERT INTO config.i18n_locale (code,marc_code,name,description)
588 -- VALUES ('es-MX', 'spa', oils_i18n_gettext('es-MX', 'Spanish (Mexico)', 'i18n_l', 'name'),
589 -- oils_i18n_gettext('es-MX', 'Mexican Spanish', 'i18n_l', 'description'));
590 INSERT INTO config.i18n_locale (code,marc_code,name,description)
591 VALUES ('ru-RU', 'rus', oils_i18n_gettext('ru-RU', 'Russian', 'i18n_l', 'name'),
592 oils_i18n_gettext('ru-RU', 'Russian', 'i18n_l', 'description'));
593 INSERT INTO config.i18n_locale (code,marc_code,name,description,rtl)
594 VALUES ('ar-JO', 'ara', oils_i18n_gettext('ar-JO', 'Arabic (Jordan)', 'i18n_l', 'name'),
595 oils_i18n_gettext('ar-JO', 'Arabic (Jordan)', 'i18n_l', 'description'), 'true');
597 -- Z39.50 server attributes
599 INSERT INTO config.z3950_source (name, label, host, port, db, auth)
600 VALUES ('loc', oils_i18n_gettext('loc', 'Library of Congress', 'czs', 'label'), 'lx2.loc.gov', 210, 'LCDB', FALSE);
601 INSERT INTO config.z3950_source (name, label, host, port, db, auth)
602 VALUES ('oclc', oils_i18n_gettext('oclc', 'OCLC', 'czs', 'label'), 'zcat.oclc.org', 210, 'OLUCWorldCat', TRUE);
604 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
605 VALUES (1, 'loc','tcn', oils_i18n_gettext(1, 'Title Control Number', 'cza', 'label'), 12, 1);
606 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
607 VALUES (2, 'loc', 'isbn', oils_i18n_gettext(2, 'ISBN', 'cza', 'label'), 7, 6);
608 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
609 VALUES (3, 'loc', 'lccn', oils_i18n_gettext(3, 'LCCN', 'cza', 'label'), 9, 6);
610 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
611 VALUES (4, 'loc', 'author', oils_i18n_gettext(4, 'Author', 'cza', 'label'), 1003, 6);
612 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
613 VALUES (5, 'loc', 'title', oils_i18n_gettext(5, 'Title', 'cza', 'label'), 4, 6);
614 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
615 VALUES (6, 'loc', 'issn', oils_i18n_gettext(6, 'ISSN', 'cza', 'label'), 8, 1);
616 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
617 VALUES (7, 'loc', 'publisher', oils_i18n_gettext(7, 'Publisher', 'cza', 'label'), 1018, 6);
618 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
619 VALUES (8, 'loc', 'pubdate', oils_i18n_gettext(8, 'Publication Date', 'cza', 'label'), 31, 1);
620 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
621 VALUES (9, 'loc', 'item_type', oils_i18n_gettext(9, 'Item Type', 'cza', 'label'), 1001, 1);
622 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
623 VALUES (19, 'loc', 'upc', oils_i18n_gettext(19, 'UPC', 'cza', 'label'), 1007, 1);
625 UPDATE config.z3950_attr SET truncation = 1 WHERE source = 'loc';
627 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
628 VALUES (10, 'oclc', 'tcn', oils_i18n_gettext(10, 'Title Control Number', 'cza', 'label'), 12, 1);
629 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
630 VALUES (11, 'oclc', 'isbn', oils_i18n_gettext(11, 'ISBN', 'cza', 'label'), 7, 6);
631 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
632 VALUES (12, 'oclc', 'lccn', oils_i18n_gettext(12, 'LCCN', 'cza', 'label'), 9, 1);
633 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
634 VALUES (13, 'oclc', 'author', oils_i18n_gettext(13, 'Author', 'cza', 'label'), 1003, 6);
635 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
636 VALUES (14, 'oclc', 'title', oils_i18n_gettext(14, 'Title', 'cza', 'label'), 4, 6);
637 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
638 VALUES (15, 'oclc', 'issn', oils_i18n_gettext(15, 'ISSN', 'cza', 'label'), 8, 1);
639 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
640 VALUES (16, 'oclc', 'publisher', oils_i18n_gettext(16, 'Publisher', 'cza', 'label'), 1018, 6);
641 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
642 VALUES (17, 'oclc', 'pubdate', oils_i18n_gettext(17, 'Publication Date', 'cza', 'label'), 31, 1);
643 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
644 VALUES (18, 'oclc', 'item_type', oils_i18n_gettext(18, 'Item Type', 'cza', 'label'), 1001, 1);
645 INSERT INTO config.z3950_attr (id, source, name, label, code, format)
646 VALUES (20, 'oclc', 'upc', oils_i18n_gettext(20, 'UPC', 'cza', 'label'), 1007, 6);
648 SELECT SETVAL('config.z3950_attr_id_seq'::TEXT, 100);
650 --005.schema.actors.sql:
653 INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent, can_have_users, can_have_vols) VALUES
654 ( 1, oils_i18n_gettext(1, 'Consortium', 'aout', 'name'),
655 oils_i18n_gettext(1, 'Everywhere', 'aout', 'opac_label'), 0, NULL, FALSE, FALSE );
656 INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent, can_have_users, can_have_vols) VALUES
657 ( 2, oils_i18n_gettext(2, 'System', 'aout', 'name'),
658 oils_i18n_gettext(2, 'Local Library System', 'aout', 'opac_label'), 1, 1, FALSE, FALSE );
659 INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent) VALUES
660 ( 3, oils_i18n_gettext(3, 'Branch', 'aout', 'name'),
661 oils_i18n_gettext(3, 'This Branch', 'aout', 'opac_label'), 2, 2 );
662 INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent) VALUES
663 ( 4, oils_i18n_gettext(4, 'Sub-library', 'aout', 'name'),
664 oils_i18n_gettext(4, 'This Specialized Library', 'aout', 'opac_label'), 3, 3 );
665 INSERT INTO actor.org_unit_type (id, name, opac_label, depth, parent) VALUES
666 ( 5, oils_i18n_gettext(5, 'Bookmobile', 'aout', 'name'),
667 oils_i18n_gettext(5, 'Your Bookmobile', 'aout', 'opac_label'), 3, 3 );
668 SELECT SETVAL('actor.org_unit_type_id_seq'::TEXT, 100);
670 -- We need one actor.org_unit to own many things
671 INSERT INTO actor.org_unit (id, parent_ou, ou_type, shortname, name) VALUES
672 (1, NULL, 1, 'CONS', oils_i18n_gettext(1, 'Example Consortium', 'aou', 'name'));
673 SELECT SETVAL('actor.org_unit_id_seq'::TEXT, 100);
675 INSERT INTO config.billing_type (id, name, owner) VALUES
676 ( 1, oils_i18n_gettext(1, 'Overdue Materials', 'cbt', 'name'), 1);
677 INSERT INTO config.billing_type (id, name, owner) VALUES
678 ( 2, oils_i18n_gettext(2, 'Long Overdue Collection Fee', 'cbt', 'name'), 1);
679 INSERT INTO config.billing_type (id, name, owner) VALUES
680 ( 3, oils_i18n_gettext(3, 'Lost Materials', 'cbt', 'name'), 1);
681 INSERT INTO config.billing_type (id, name, owner) VALUES
682 ( 4, oils_i18n_gettext(4, 'Lost Materials Processing Fee', 'cbt', 'name'), 1);
683 INSERT INTO config.billing_type (id, name, owner) VALUES
684 ( 5, oils_i18n_gettext(5, 'System: Deposit', 'cbt', 'name'), 1);
685 INSERT INTO config.billing_type (id, name, owner) VALUES
686 ( 6, oils_i18n_gettext(6, 'System: Rental', 'cbt', 'name'), 1);
687 INSERT INTO config.billing_type (id, name, owner) VALUES
688 ( 7, oils_i18n_gettext(7, 'Damaged Item', 'cbt', 'name'), 1);
689 INSERT INTO config.billing_type (id, name, owner) VALUES
690 ( 8, oils_i18n_gettext(8, 'Damaged Item Processing Fee', 'cbt', 'name'), 1);
691 INSERT INTO config.billing_type (id, name, owner) VALUES
692 ( 9, oils_i18n_gettext(9, 'Notification Fee', 'cbt', 'name'), 1);
693 INSERT INTO config.billing_type (id, owner, name) VALUES
694 (10, 1, oils_i18n_gettext(10, 'Long-Overdue Materials', 'cbt', 'name'));
695 INSERT INTO config.billing_type (id, owner, name) VALUES
696 (11, 1, oils_i18n_gettext(11, 'Long-Overdue Materials Processing Fee', 'cbt', 'name'));
699 INSERT INTO config.billing_type (id, name, owner) VALUES ( 101, oils_i18n_gettext(101, 'Misc', 'cbt', 'name'), 1);
701 SELECT SETVAL('config.billing_type_id_seq'::TEXT, 101);
703 --006.data.permissions.sql:
704 INSERT INTO permission.perm_list ( id, code, description ) VALUES
705 ( -1, 'EVERYTHING', oils_i18n_gettext( -1,
706 'EVERYTHING', 'ppl', 'description' )),
707 ( 1, 'OPAC_LOGIN', oils_i18n_gettext( 1,
708 'Allow a user to log in to the OPAC', 'ppl', 'description' )),
709 ( 2, 'STAFF_LOGIN', oils_i18n_gettext( 2,
710 'Allow a user to log in to the staff client', 'ppl', 'description' )),
711 ( 3, 'MR_HOLDS', oils_i18n_gettext( 3,
712 'Allow a user to create a metarecord holds', 'ppl', 'description' )),
713 ( 4, 'TITLE_HOLDS', oils_i18n_gettext( 4,
714 'Allow a user to place a hold at the title level', 'ppl', 'description' )),
715 ( 5, 'VOLUME_HOLDS', oils_i18n_gettext( 5,
716 'Allow a user to place a volume level hold', 'ppl', 'description' )),
717 ( 6, 'COPY_HOLDS', oils_i18n_gettext( 6,
718 'Allow a user to place a hold on a specific copy', 'ppl', 'description' )),
719 ( 7, 'REQUEST_HOLDS', oils_i18n_gettext( 7,
720 'Allow a user to create holds for another user (if true, we still check to make sure they have permission to make the type of hold they are requesting, for example, COPY_HOLDS)', 'ppl', 'description' )),
721 ( 8, 'REQUEST_HOLDS_OVERRIDE', oils_i18n_gettext( 8,
722 '* no longer applicable', 'ppl', 'description' )),
723 ( 9, 'VIEW_HOLD', oils_i18n_gettext( 9,
724 'Allow a user to view another user''s holds', 'ppl', 'description' )),
725 ( 10, 'DELETE_HOLDS', oils_i18n_gettext( 10,
726 '* no longer applicable', 'ppl', 'description' )),
727 ( 11, 'UPDATE_HOLD', oils_i18n_gettext( 11,
728 'Allow a user to update another user''s hold', 'ppl', 'description' )),
729 ( 12, 'RENEW_CIRC', oils_i18n_gettext( 12,
730 'Allow a user to renew items', 'ppl', 'description' )),
731 ( 13, 'VIEW_USER_FINES_SUMMARY', oils_i18n_gettext( 13,
732 'Allow a user to view bill details', 'ppl', 'description' )),
733 ( 14, 'VIEW_USER_TRANSACTIONS', oils_i18n_gettext( 14,
734 'Allow a user to see another user''s grocery or circulation transactions in the Bills Interface; duplicate of VIEW_TRANSACTION', 'ppl', 'description' )),
735 ( 15, 'UPDATE_MARC', oils_i18n_gettext( 15,
736 'Allow a user to edit a MARC record', 'ppl', 'description' )),
737 ( 16, 'CREATE_MARC', oils_i18n_gettext( 16,
738 'Allow a user to create new MARC records', 'ppl', 'description' )),
739 ( 17, 'IMPORT_MARC', oils_i18n_gettext( 17,
740 'Allow a user to import a MARC record via the Z39.50 interface', 'ppl', 'description' )),
741 ( 18, 'CREATE_VOLUME', oils_i18n_gettext( 18,
742 'Allow a user to create a volume', 'ppl', 'description' )),
743 ( 19, 'UPDATE_VOLUME', oils_i18n_gettext( 19,
744 'Allow a user to edit volumes - needed for merging records. This is a duplicate of VOLUME_UPDATE; user must have both permissions at appropriate level to merge records.', 'ppl', 'description' )),
745 ( 20, 'DELETE_VOLUME', oils_i18n_gettext( 20,
746 'Allow a user to delete a volume', 'ppl', 'description' )),
747 ( 21, 'CREATE_COPY', oils_i18n_gettext( 21,
748 'Allow a user to create a new copy object', 'ppl', 'description' )),
749 ( 22, 'UPDATE_COPY', oils_i18n_gettext( 22,
750 'Allow a user to edit a copy', 'ppl', 'description' )),
751 ( 23, 'DELETE_COPY', oils_i18n_gettext( 23,
752 'Allow a user to delete a copy', 'ppl', 'description' )),
753 ( 24, 'RENEW_HOLD_OVERRIDE', oils_i18n_gettext( 24,
754 'Allow a user to continue to renew an item even if it is required for a hold', 'ppl', 'description' )),
755 ( 25, 'CREATE_USER', oils_i18n_gettext( 25,
756 'Allow a user to create another user', 'ppl', 'description' )),
757 ( 26, 'UPDATE_USER', oils_i18n_gettext( 26,
758 'Allow a user to edit a user''s record', 'ppl', 'description' )),
759 ( 27, 'DELETE_USER', oils_i18n_gettext( 27,
760 'Allow a user to mark a user as deleted', 'ppl', 'description' )),
761 ( 28, 'VIEW_USER', oils_i18n_gettext( 28,
762 'Allow a user to view another user''s Patron Record', 'ppl', 'description' )),
763 ( 29, 'COPY_CHECKIN', oils_i18n_gettext( 29,
764 'Allow a user to check in a copy', 'ppl', 'description' )),
765 ( 30, 'CREATE_TRANSIT', oils_i18n_gettext( 30,
766 'Allow a user to place an item in transit', 'ppl', 'description' )),
767 ( 31, 'VIEW_PERMISSION', oils_i18n_gettext( 31,
768 'Allow a user to view user permissions within the user permissions editor', 'ppl', 'description' )),
769 ( 32, 'CHECKIN_BYPASS_HOLD_FULFILL', oils_i18n_gettext( 32,
770 '* no longer applicable', 'ppl', 'description' )),
771 ( 33, 'CREATE_PAYMENT', oils_i18n_gettext( 33,
772 'Allow a user to record payments in the Billing Interface', 'ppl', 'description' )),
773 ( 34, 'SET_CIRC_LOST', oils_i18n_gettext( 34,
774 'Allow a user to mark an item as ''lost''', 'ppl', 'description' )),
775 ( 36, 'SET_CIRC_CLAIMS_RETURNED', oils_i18n_gettext( 36,
776 'Allow a user to mark an item as ''claims returned''', 'ppl', 'description' )),
777 ( 37, 'CREATE_TRANSACTION', oils_i18n_gettext( 37,
778 'Allow a user to create a new billable transaction', 'ppl', 'description' )),
779 ( 38, 'VIEW_TRANSACTION', oils_i18n_gettext( 38,
780 'Allow a user may view another user''s transactions', 'ppl', 'description' )),
781 ( 39, 'CREATE_BILL', oils_i18n_gettext( 39,
782 'Allow a user to create a new bill on a transaction', 'ppl', 'description' )),
783 ( 40, 'VIEW_CONTAINER', oils_i18n_gettext( 40,
784 'Allow a user to view another user''s containers (buckets)', 'ppl', 'description' )),
785 ( 41, 'CREATE_CONTAINER', oils_i18n_gettext( 41,
786 'Allow a user to create a new container for another user', 'ppl', 'description' )),
787 ( 42, 'UPDATE_ORG_UNIT', oils_i18n_gettext( 42,
788 'Allow a user to change the settings for an organization unit', 'ppl', 'description' )),
789 ( 43, 'VIEW_CIRCULATIONS', oils_i18n_gettext( 43,
790 'Allow a user to see what another user has checked out', 'ppl', 'description' )),
791 ( 44, 'DELETE_CONTAINER', oils_i18n_gettext( 44,
792 'Allow a user to delete another user''s container', 'ppl', 'description' )),
793 ( 45, 'CREATE_CONTAINER_ITEM', oils_i18n_gettext( 45,
794 'Allow a user to create a container item for another user', 'ppl', 'description' )),
795 ( 46, 'CREATE_USER_GROUP_LINK', oils_i18n_gettext( 46,
796 'Allow a user to add other users to permission groups', 'ppl', 'description' )),
797 ( 47, 'REMOVE_USER_GROUP_LINK', oils_i18n_gettext( 47,
798 'Allow a user to remove other users from permission groups', 'ppl', 'description' )),
799 ( 48, 'VIEW_PERM_GROUPS', oils_i18n_gettext( 48,
800 'Allow a user to view other users'' permission groups', 'ppl', 'description' )),
801 ( 49, 'VIEW_PERMIT_CHECKOUT', oils_i18n_gettext( 49,
802 'Allow a user to determine whether another user can check out an item', 'ppl', 'description' )),
803 ( 50, 'UPDATE_BATCH_COPY', oils_i18n_gettext( 50,
804 'Allow a user to edit copies in batch', 'ppl', 'description' )),
805 ( 51, 'CREATE_PATRON_STAT_CAT', oils_i18n_gettext( 51,
806 'User may create a new patron statistical category', 'ppl', 'description' )),
807 ( 52, 'CREATE_COPY_STAT_CAT', oils_i18n_gettext( 52,
808 'User may create a copy statistical category', 'ppl', 'description' )),
809 ( 53, 'CREATE_PATRON_STAT_CAT_ENTRY', oils_i18n_gettext( 53,
810 'User may create an entry in a patron statistical category', 'ppl', 'description' )),
811 ( 54, 'CREATE_COPY_STAT_CAT_ENTRY', oils_i18n_gettext( 54,
812 'User may create an entry in a copy statistical category', 'ppl', 'description' )),
813 ( 55, 'UPDATE_PATRON_STAT_CAT', oils_i18n_gettext( 55,
814 'User may update a patron statistical category', 'ppl', 'description' )),
815 ( 56, 'UPDATE_COPY_STAT_CAT', oils_i18n_gettext( 56,
816 'User may update a copy statistical category', 'ppl', 'description' )),
817 ( 57, 'UPDATE_PATRON_STAT_CAT_ENTRY', oils_i18n_gettext( 57,
818 'User may update an entry in a patron statistical category', 'ppl', 'description' )),
819 ( 58, 'UPDATE_COPY_STAT_CAT_ENTRY', oils_i18n_gettext( 58,
820 'User may update an entry in a copy statistical category', 'ppl', 'description' )),
821 ( 59, 'CREATE_PATRON_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 59,
822 'User may link another user to an entry in a statistical category', 'ppl', 'description' )),
823 ( 60, 'CREATE_COPY_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 60,
824 'User may link a copy to an entry in a statistical category', 'ppl', 'description' )),
825 ( 61, 'DELETE_PATRON_STAT_CAT', oils_i18n_gettext( 61,
826 'User may delete a patron statistical category', 'ppl', 'description' )),
827 ( 62, 'DELETE_COPY_STAT_CAT', oils_i18n_gettext( 62,
828 'User may delete a copy statistical category', 'ppl', 'description' )),
829 ( 63, 'DELETE_PATRON_STAT_CAT_ENTRY', oils_i18n_gettext( 63,
830 'User may delete an entry from a patron statistical category', 'ppl', 'description' )),
831 ( 64, 'DELETE_COPY_STAT_CAT_ENTRY', oils_i18n_gettext( 64,
832 'User may delete an entry from a copy statistical category', 'ppl', 'description' )),
833 ( 65, 'DELETE_PATRON_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 65,
834 'User may delete a patron statistical category entry map', 'ppl', 'description' )),
835 ( 66, 'DELETE_COPY_STAT_CAT_ENTRY_MAP', oils_i18n_gettext( 66,
836 'User may delete a copy statistical category entry map', 'ppl', 'description' )),
837 ( 67, 'CREATE_NON_CAT_TYPE', oils_i18n_gettext( 67,
838 'Allow a user to create a new non-cataloged item type', 'ppl', 'description' )),
839 ( 68, 'UPDATE_NON_CAT_TYPE', oils_i18n_gettext( 68,
840 'Allow a user to update a non-cataloged item type', 'ppl', 'description' )),
841 ( 69, 'CREATE_IN_HOUSE_USE', oils_i18n_gettext( 69,
842 'Allow a user to create a new in-house-use ', 'ppl', 'description' )),
843 ( 70, 'COPY_CHECKOUT', oils_i18n_gettext( 70,
844 'Allow a user to check out a copy', 'ppl', 'description' )),
845 ( 71, 'CREATE_COPY_LOCATION', oils_i18n_gettext( 71,
846 'Allow a user to create a new copy location', 'ppl', 'description' )),
847 ( 72, 'UPDATE_COPY_LOCATION', oils_i18n_gettext( 72,
848 'Allow a user to update a copy location', 'ppl', 'description' )),
849 ( 73, 'DELETE_COPY_LOCATION', oils_i18n_gettext( 73,
850 'Allow a user to delete a copy location', 'ppl', 'description' )),
851 ( 74, 'CREATE_COPY_TRANSIT', oils_i18n_gettext( 74,
852 'Allow a user to create a transit_copy object for transiting a copy', 'ppl', 'description' )),
853 ( 75, 'COPY_TRANSIT_RECEIVE', oils_i18n_gettext( 75,
854 'Allow a user to close out a transit on a copy', 'ppl', 'description' )),
855 ( 76, 'VIEW_HOLD_PERMIT', oils_i18n_gettext( 76,
856 'Allow a user to see if another user has permission to place a hold on a given copy', 'ppl', 'description' )),
857 ( 77, 'VIEW_COPY_CHECKOUT_HISTORY', oils_i18n_gettext( 77,
858 'Allow a user to view which users have checked out a given copy', 'ppl', 'description' )),
859 ( 78, 'REMOTE_Z3950_QUERY', oils_i18n_gettext( 78,
860 'Allow a user to perform Z39.50 queries against remote servers', 'ppl', 'description' )),
861 ( 79, 'REGISTER_WORKSTATION', oils_i18n_gettext( 79,
862 'Allow a user to register a new workstation', 'ppl', 'description' )),
863 ( 80, 'VIEW_COPY_NOTES', oils_i18n_gettext( 80,
864 'Allow a user to view all notes attached to a copy', 'ppl', 'description' )),
865 ( 81, 'VIEW_VOLUME_NOTES', oils_i18n_gettext( 81,
866 'Allow a user to view all notes attached to a volume', 'ppl', 'description' )),
867 ( 82, 'VIEW_TITLE_NOTES', oils_i18n_gettext( 82,
868 'Allow a user to view all notes attached to a title', 'ppl', 'description' )),
869 ( 83, 'CREATE_COPY_NOTE', oils_i18n_gettext( 83,
870 'Allow a user to create a new copy note', 'ppl', 'description' )),
871 ( 84, 'CREATE_VOLUME_NOTE', oils_i18n_gettext( 84,
872 'Allow a user to create a new volume note', 'ppl', 'description' )),
873 ( 85, 'CREATE_TITLE_NOTE', oils_i18n_gettext( 85,
874 'Allow a user to create a new title note', 'ppl', 'description' )),
875 ( 86, 'DELETE_COPY_NOTE', oils_i18n_gettext( 86,
876 'Allow a user to delete another user''s copy notes', 'ppl', 'description' )),
877 ( 87, 'DELETE_VOLUME_NOTE', oils_i18n_gettext( 87,
878 'Allow a user to delete another user''s volume note', 'ppl', 'description' )),
879 ( 88, 'DELETE_TITLE_NOTE', oils_i18n_gettext( 88,
880 'Allow a user to delete another user''s title note', 'ppl', 'description' )),
881 ( 89, 'UPDATE_CONTAINER', oils_i18n_gettext( 89,
882 'Allow a user to update another user''s container', 'ppl', 'description' )),
883 ( 90, 'CREATE_MY_CONTAINER', oils_i18n_gettext( 90,
884 'Allow a user to create a container for themselves', 'ppl', 'description' )),
885 ( 91, 'VIEW_HOLD_NOTIFICATION', oils_i18n_gettext( 91,
886 'Allow a user to view notifications attached to a hold', 'ppl', 'description' )),
887 ( 92, 'CREATE_HOLD_NOTIFICATION', oils_i18n_gettext( 92,
888 'Allow a user to create new hold notifications', 'ppl', 'description' )),
889 ( 93, 'UPDATE_ORG_SETTING', oils_i18n_gettext( 93,
890 'Allow a user to update an organization unit setting', 'ppl', 'description' )),
891 ( 94, 'OFFLINE_UPLOAD', oils_i18n_gettext( 94,
892 'Allow a user to upload an offline script', 'ppl', 'description' )),
893 ( 95, 'OFFLINE_VIEW', oils_i18n_gettext( 95,
894 'Allow a user to view uploaded offline script information', 'ppl', 'description' )),
895 ( 96, 'OFFLINE_EXECUTE', oils_i18n_gettext( 96,
896 'Allow a user to execute an offline script batch', 'ppl', 'description' )),
897 ( 97, 'CIRC_OVERRIDE_DUE_DATE', oils_i18n_gettext( 97,
898 'Allow a user to change the due date on an item to any date', 'ppl', 'description' )),
899 ( 98, 'CIRC_PERMIT_OVERRIDE', oils_i18n_gettext( 98,
900 'Allow a user to bypass the circulation permit call for check out', 'ppl', 'description' )),
901 ( 99, 'COPY_IS_REFERENCE.override', oils_i18n_gettext( 99,
902 'Allow a user to override the copy_is_reference event', 'ppl', 'description' )),
903 ( 100, 'VOID_BILLING', oils_i18n_gettext( 100,
904 'Allow a user to void a bill', 'ppl', 'description' )),
905 ( 101, 'CIRC_CLAIMS_RETURNED.override', oils_i18n_gettext( 101,
906 'Allow a user to check in or check out an item that has a status of ''claims returned''', 'ppl', 'description' )),
907 ( 102, 'COPY_BAD_STATUS.override', oils_i18n_gettext( 102,
908 'Allow a user to check out an item in a non-circulatable status', 'ppl', 'description' )),
909 ( 103, 'COPY_ALERT_MESSAGE.override', oils_i18n_gettext( 103,
910 'Allow a user to check in/out an item that has an alert message', 'ppl', 'description' )),
911 ( 104, 'COPY_STATUS_LOST.override', oils_i18n_gettext( 104,
912 'Allow a user to remove the lost status from a copy', 'ppl', 'description' )),
913 ( 105, 'COPY_STATUS_MISSING.override', oils_i18n_gettext( 105,
914 'Allow a user to change the missing status on a copy', 'ppl', 'description' )),
915 ( 106, 'ABORT_TRANSIT', oils_i18n_gettext( 106,
916 'Allow a user to cancel a copy transit if the user is at the transit destination or source', 'ppl', 'description' )),
917 ( 107, 'ABORT_REMOTE_TRANSIT', oils_i18n_gettext( 107,
918 'Allow a user to cancel a copy transit if the user is not at the transit source or dest', 'ppl', 'description' )),
919 ( 108, 'VIEW_ZIP_DATA', oils_i18n_gettext( 108,
920 'Allow a user to query the ZIP code data method', 'ppl', 'description' )),
921 ( 109, 'CANCEL_HOLDS', oils_i18n_gettext( 109,
922 'Allow a user to cancel holds', 'ppl', 'description' )),
923 ( 110, 'CREATE_DUPLICATE_HOLDS', oils_i18n_gettext( 110,
924 'Allow a user to create duplicate holds (two or more holds on the same title)', 'ppl', 'description' )),
925 ( 111, 'actor.org_unit.closed_date.delete', oils_i18n_gettext( 111,
926 'Allow a user to remove a closed date interval for a given location', 'ppl', 'description' )),
927 ( 112, 'actor.org_unit.closed_date.update', oils_i18n_gettext( 112,
928 'Allow a user to update a closed date interval for a given location', 'ppl', 'description' )),
929 ( 113, 'actor.org_unit.closed_date.create', oils_i18n_gettext( 113,
930 'Allow a user to create a new closed date for a location', 'ppl', 'description' )),
931 ( 114, 'DELETE_NON_CAT_TYPE', oils_i18n_gettext( 114,
932 'Allow a user to delete a non cataloged type', 'ppl', 'description' )),
933 ( 115, 'money.collections_tracker.create', oils_i18n_gettext( 115,
934 'Allow a user to put someone into collections', 'ppl', 'description' )),
935 ( 116, 'money.collections_tracker.delete', oils_i18n_gettext( 116,
936 'Allow a user to remove someone from collections', 'ppl', 'description' )),
937 ( 117, 'BAR_PATRON', oils_i18n_gettext( 117,
938 'Allow a user to bar a patron', 'ppl', 'description' )),
939 ( 118, 'UNBAR_PATRON', oils_i18n_gettext( 118,
940 'Allow a user to un-bar a patron', 'ppl', 'description' )),
941 ( 119, 'DELETE_WORKSTATION', oils_i18n_gettext( 119,
942 'Allow a user to remove an existing workstation so a new one can replace it', 'ppl', 'description' )),
943 ( 120, 'group_application.user', oils_i18n_gettext( 120,
944 'Allow a user to add/remove users to/from the "User" group', 'ppl', 'description' )),
945 ( 121, 'group_application.user.patron', oils_i18n_gettext( 121,
946 'Allow a user to add/remove users to/from the "Patron" group', 'ppl', 'description' )),
947 ( 122, 'group_application.user.staff', oils_i18n_gettext( 122,
948 'Allow a user to add/remove users to/from the "Staff" group', 'ppl', 'description' )),
949 ( 123, 'group_application.user.staff.circ', oils_i18n_gettext( 123,
950 'Allow a user to add/remove users to/from the "Circulator" group', 'ppl', 'description' )),
951 ( 124, 'group_application.user.staff.cat', oils_i18n_gettext( 124,
952 'Allow a user to add/remove users to/from the "Cataloger" group', 'ppl', 'description' )),
953 ( 125, 'group_application.user.staff.admin.global_admin', oils_i18n_gettext( 125,
954 'Allow a user to add/remove users to/from the "GlobalAdmin" group', 'ppl', 'description' )),
955 ( 126, 'group_application.user.staff.admin.local_admin', oils_i18n_gettext( 126,
956 'Allow a user to add/remove users to/from the "LocalAdmin" group', 'ppl', 'description' )),
957 ( 127, 'group_application.user.staff.admin.lib_manager', oils_i18n_gettext( 127,
958 'Allow a user to add/remove users to/from the "LibraryManager" group', 'ppl', 'description' )),
959 ( 128, 'group_application.user.staff.cat.cat1', oils_i18n_gettext( 128,
960 'Allow a user to add/remove users to/from the "Cat1" group', 'ppl', 'description' )),
961 ( 129, 'group_application.user.staff.supercat', oils_i18n_gettext( 129,
962 'Allow a user to add/remove users to/from the "Supercat" group', 'ppl', 'description' )),
963 ( 130, 'group_application.user.sip_client', oils_i18n_gettext( 130,
964 'Allow a user to add/remove users to/from the "SIP-Client" group', 'ppl', 'description' )),
965 ( 131, 'group_application.user.vendor', oils_i18n_gettext( 131,
966 'Allow a user to add/remove users to/from the "Vendor" group', 'ppl', 'description' )),
967 ( 132, 'ITEM_AGE_PROTECTED.override', oils_i18n_gettext( 132,
968 'Allow a user to place a hold on an age-protected item', 'ppl', 'description' )),
969 ( 133, 'MAX_RENEWALS_REACHED.override', oils_i18n_gettext( 133,
970 'Allow a user to renew an item past the maximum renewal count', 'ppl', 'description' )),
971 ( 134, 'PATRON_EXCEEDS_CHECKOUT_COUNT.override', oils_i18n_gettext( 134,
972 'Allow staff to override checkout count failure', 'ppl', 'description' )),
973 ( 135, 'PATRON_EXCEEDS_OVERDUE_COUNT.override', oils_i18n_gettext( 135,
974 'Allow staff to override overdue count failure', 'ppl', 'description' )),
975 ( 136, 'PATRON_EXCEEDS_FINES.override', oils_i18n_gettext( 136,
976 'Allow staff to override fine amount checkout failure', 'ppl', 'description' )),
977 ( 137, 'CIRC_EXCEEDS_COPY_RANGE.override', oils_i18n_gettext( 137,
978 'Allow staff to override circulation copy range failure', 'ppl', 'description' )),
979 ( 138, 'ITEM_ON_HOLDS_SHELF.override', oils_i18n_gettext( 138,
980 'Allow staff to override item on holds shelf failure', 'ppl', 'description' )),
981 ( 139, 'COPY_NOT_AVAILABLE.override', oils_i18n_gettext( 139,
982 'Allow staff to force checkout of Missing/Lost type items', 'ppl', 'description' )),
983 ( 140, 'HOLD_EXISTS.override', oils_i18n_gettext( 140,
984 'Allow a user to place multiple holds on a single title', 'ppl', 'description' )),
985 ( 141, 'RUN_REPORTS', oils_i18n_gettext( 141,
986 'Allow a user to run reports', 'ppl', 'description' )),
987 ( 142, 'SHARE_REPORT_FOLDER', oils_i18n_gettext( 142,
988 'Allow a user to share report his own folders', 'ppl', 'description' )),
989 ( 143, 'VIEW_REPORT_OUTPUT', oils_i18n_gettext( 143,
990 'Allow a user to view report output', 'ppl', 'description' )),
991 ( 144, 'COPY_CIRC_NOT_ALLOWED.override', oils_i18n_gettext( 144,
992 'Allow a user to checkout an item that is marked as non-circ', 'ppl', 'description' )),
993 ( 145, 'DELETE_CONTAINER_ITEM', oils_i18n_gettext( 145,
994 'Allow a user to delete an item out of another user''s container', 'ppl', 'description' )),
995 ( 146, 'ASSIGN_WORK_ORG_UNIT', oils_i18n_gettext( 146,
996 'Allow a staff member to define where another staff member has their permissions', 'ppl', 'description' )),
997 ( 147, 'CREATE_FUNDING_SOURCE', oils_i18n_gettext( 147,
998 'Allow a user to create a new funding source', 'ppl', 'description' )),
999 ( 148, 'DELETE_FUNDING_SOURCE', oils_i18n_gettext( 148,
1000 'Allow a user to delete a funding source', 'ppl', 'description' )),
1001 ( 149, 'VIEW_FUNDING_SOURCE', oils_i18n_gettext( 149,
1002 'Allow a user to view a funding source', 'ppl', 'description' )),
1003 ( 150, 'UPDATE_FUNDING_SOURCE', oils_i18n_gettext( 150,
1004 'Allow a user to update a funding source', 'ppl', 'description' )),
1005 ( 151, 'CREATE_FUND', oils_i18n_gettext( 151,
1006 'Allow a user to create a new fund', 'ppl', 'description' )),
1007 ( 152, 'DELETE_FUND', oils_i18n_gettext( 152,
1008 'Allow a user to delete a fund', 'ppl', 'description' )),
1009 ( 153, 'VIEW_FUND', oils_i18n_gettext( 153,
1010 'Allow a user to view a fund', 'ppl', 'description' )),
1011 ( 154, 'UPDATE_FUND', oils_i18n_gettext( 154,
1012 'Allow a user to update a fund', 'ppl', 'description' )),
1013 ( 155, 'CREATE_FUND_ALLOCATION', oils_i18n_gettext( 155,
1014 'Allow a user to create a new fund allocation', 'ppl', 'description' )),
1015 ( 156, 'DELETE_FUND_ALLOCATION', oils_i18n_gettext( 156,
1016 'Allow a user to delete a fund allocation', 'ppl', 'description' )),
1017 ( 157, 'VIEW_FUND_ALLOCATION', oils_i18n_gettext( 157,
1018 'Allow a user to view a fund allocation', 'ppl', 'description' )),
1019 ( 158, 'UPDATE_FUND_ALLOCATION', oils_i18n_gettext( 158,
1020 'Allow a user to update a fund allocation', 'ppl', 'description' )),
1021 ( 159, 'GENERAL_ACQ', oils_i18n_gettext( 159,
1022 'Lowest level permission required to access the ACQ interface', 'ppl', 'description' )),
1023 ( 160, 'CREATE_PROVIDER', oils_i18n_gettext( 160,
1024 'Allow a user to create a new provider', 'ppl', 'description' )),
1025 ( 161, 'DELETE_PROVIDER', oils_i18n_gettext( 161,
1026 'Allow a user to delete a provider', 'ppl', 'description' )),
1027 ( 162, 'VIEW_PROVIDER', oils_i18n_gettext( 162,
1028 'Allow a user to view a provider', 'ppl', 'description' )),
1029 ( 163, 'UPDATE_PROVIDER', oils_i18n_gettext( 163,
1030 'Allow a user to update a provider', 'ppl', 'description' )),
1031 ( 164, 'ADMIN_FUNDING_SOURCE', oils_i18n_gettext( 164,
1032 'Allow a user to create/view/update/delete a funding source', 'ppl', 'description' )),
1033 ( 165, 'ADMIN_FUND', oils_i18n_gettext( 165,
1034 '(Deprecated) Allow a user to create/view/update/delete a fund', 'ppl', 'description' )),
1035 ( 166, 'MANAGE_FUNDING_SOURCE', oils_i18n_gettext( 166,
1036 'Allow a user to view/credit/debit a funding source', 'ppl', 'description' )),
1037 ( 167, 'MANAGE_FUND', oils_i18n_gettext( 167,
1038 'Allow a user to view/credit/debit a fund', 'ppl', 'description' )),
1039 ( 168, 'CREATE_PICKLIST', oils_i18n_gettext( 168,
1040 'Allows a user to create a picklist', 'ppl', 'description' )),
1041 ( 169, 'ADMIN_PROVIDER', oils_i18n_gettext( 169,
1042 'Allow a user to create/view/update/delete a provider', 'ppl', 'description' )),
1043 ( 170, 'MANAGE_PROVIDER', oils_i18n_gettext( 170,
1044 'Allow a user to view and purchase from a provider', 'ppl', 'description' )),
1045 ( 171, 'VIEW_PICKLIST', oils_i18n_gettext( 171,
1046 'Allow a user to view another users picklist', 'ppl', 'description' )),
1047 ( 172, 'DELETE_RECORD', oils_i18n_gettext( 172,
1048 'Allow a staff member to directly remove a bibliographic record', 'ppl', 'description' )),
1049 ( 173, 'ADMIN_CURRENCY_TYPE', oils_i18n_gettext( 173,
1050 'Allow a user to create/view/update/delete a currency_type', 'ppl', 'description' )),
1051 ( 174, 'MARK_BAD_DEBT', oils_i18n_gettext( 174,
1052 'Allow a user to mark a transaction as bad (unrecoverable) debt', 'ppl', 'description' )),
1053 ( 175, 'VIEW_BILLING_TYPE', oils_i18n_gettext( 175,
1054 'Allow a user to view billing types', 'ppl', 'description' )),
1055 ( 176, 'MARK_ITEM_AVAILABLE', oils_i18n_gettext( 176,
1056 'Allow a user to mark an item status as ''available''', 'ppl', 'description' )),
1057 ( 177, 'MARK_ITEM_CHECKED_OUT', oils_i18n_gettext( 177,
1058 'Allow a user to mark an item status as ''checked out''', 'ppl', 'description' )),
1059 ( 178, 'MARK_ITEM_BINDERY', oils_i18n_gettext( 178,
1060 'Allow a user to mark an item status as ''bindery''', 'ppl', 'description' )),
1061 ( 179, 'MARK_ITEM_LOST', oils_i18n_gettext( 179,
1062 'Allow a user to mark an item status as ''lost''', 'ppl', 'description' )),
1063 ( 180, 'MARK_ITEM_MISSING', oils_i18n_gettext( 180,
1064 'Allow a user to mark an item status as ''missing''', 'ppl', 'description' )),
1065 ( 181, 'MARK_ITEM_IN_PROCESS', oils_i18n_gettext( 181,
1066 'Allow a user to mark an item status as ''in process''', 'ppl', 'description' )),
1067 ( 182, 'MARK_ITEM_IN_TRANSIT', oils_i18n_gettext( 182,
1068 'Allow a user to mark an item status as ''in transit''', 'ppl', 'description' )),
1069 ( 183, 'MARK_ITEM_RESHELVING', oils_i18n_gettext( 183,
1070 'Allow a user to mark an item status as ''reshelving''', 'ppl', 'description' )),
1071 ( 184, 'MARK_ITEM_ON_HOLDS_SHELF', oils_i18n_gettext( 184,
1072 'Allow a user to mark an item status as ''on holds shelf''', 'ppl', 'description' )),
1073 ( 185, 'MARK_ITEM_ON_ORDER', oils_i18n_gettext( 185,
1074 'Allow a user to mark an item status as ''on order''', 'ppl', 'description' )),
1075 ( 186, 'MARK_ITEM_ILL', oils_i18n_gettext( 186,
1076 'Allow a user to mark an item status as ''inter-library loan''', 'ppl', 'description' )),
1077 ( 187, 'group_application.user.staff.acq', oils_i18n_gettext( 187,
1078 'Allows a user to add/remove/edit users in the "ACQ" group', 'ppl', 'description' )),
1079 ( 188, 'CREATE_PURCHASE_ORDER', oils_i18n_gettext( 188,
1080 'Allows a user to create a purchase order', 'ppl', 'description' )),
1081 ( 189, 'VIEW_PURCHASE_ORDER', oils_i18n_gettext( 189,
1082 'Allows a user to view a purchase order', 'ppl', 'description' )),
1083 ( 190, 'IMPORT_ACQ_LINEITEM_BIB_RECORD', oils_i18n_gettext( 190,
1084 'Allows a user to import a bib record from the acq staging area (on-order record) into the ILS bib data set', 'ppl', 'description' )),
1085 ( 191, 'RECEIVE_PURCHASE_ORDER', oils_i18n_gettext( 191,
1086 'Allows a user to mark a purchase order, lineitem, or individual copy as received', 'ppl', 'description' )),
1087 ( 192, 'VIEW_ORG_SETTINGS', oils_i18n_gettext( 192,
1088 'Allows a user to view all org settings at the specified level', 'ppl', 'description' )),
1089 ( 193, 'CREATE_MFHD_RECORD', oils_i18n_gettext( 193,
1090 'Allows a user to create a new MFHD record', 'ppl', 'description' )),
1091 ( 194, 'UPDATE_MFHD_RECORD', oils_i18n_gettext( 194,
1092 'Allows a user to update an MFHD record', 'ppl', 'description' )),
1093 ( 195, 'DELETE_MFHD_RECORD', oils_i18n_gettext( 195,
1094 'Allows a user to delete an MFHD record', 'ppl', 'description' )),
1095 ( 196, 'ADMIN_ACQ_FUND', oils_i18n_gettext( 196,
1096 'Allow a user to create/view/update/delete a fund', 'ppl', 'description' )),
1097 ( 197, 'group_application.user.staff.acq_admin', oils_i18n_gettext( 197,
1098 'Allows a user to add/remove/edit users in the "Acquisitions Administrators" group', 'ppl', 'description' )),
1099 ( 198, 'SET_CIRC_CLAIMS_RETURNED.override', oils_i18n_gettext( 198,
1100 'Allows staff to override the max claims returned value for a patron', 'ppl', 'description' )),
1101 ( 199, 'UPDATE_PATRON_CLAIM_RETURN_COUNT', oils_i18n_gettext( 199,
1102 'Allows staff to manually change a patron''s claims returned count', 'ppl', 'description' )),
1103 ( 200, 'UPDATE_BILL_NOTE', oils_i18n_gettext( 200,
1104 'Allows staff to edit the note for a bill on a transaction', 'ppl', 'description' )),
1105 ( 201, 'UPDATE_PAYMENT_NOTE', oils_i18n_gettext( 201,
1106 'Allows staff to edit the note for a payment on a transaction', 'ppl', 'description' )),
1107 ( 202, 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT', oils_i18n_gettext( 202,
1108 'Allows staff to manually change a patron''s claims never checkout out count', 'ppl', 'description' )),
1109 ( 203, 'ADMIN_COPY_LOCATION_ORDER', oils_i18n_gettext( 203,
1110 'Allow a user to create/view/update/delete a copy location order', 'ppl', 'description' )),
1111 ( 204, 'ASSIGN_GROUP_PERM', oils_i18n_gettext( 204,
1112 'ASSIGN_GROUP_PERM', 'ppl', 'description' )),
1113 ( 205, 'CREATE_AUDIENCE', oils_i18n_gettext( 205,
1114 'CREATE_AUDIENCE', 'ppl', 'description' )),
1115 ( 206, 'CREATE_BIB_LEVEL', oils_i18n_gettext( 206,
1116 'CREATE_BIB_LEVEL', 'ppl', 'description' )),
1117 ( 207, 'CREATE_CIRC_DURATION', oils_i18n_gettext( 207,
1118 'CREATE_CIRC_DURATION', 'ppl', 'description' )),
1119 ( 208, 'CREATE_CIRC_MOD', oils_i18n_gettext( 208,
1120 'CREATE_CIRC_MOD', 'ppl', 'description' )),
1121 ( 209, 'CREATE_COPY_STATUS', oils_i18n_gettext( 209,
1122 'CREATE_COPY_STATUS', 'ppl', 'description' )),
1123 ( 210, 'CREATE_HOURS_OF_OPERATION', oils_i18n_gettext( 210,
1124 'CREATE_HOURS_OF_OPERATION', 'ppl', 'description' )),
1125 ( 211, 'CREATE_ITEM_FORM', oils_i18n_gettext( 211,
1126 'CREATE_ITEM_FORM', 'ppl', 'description' )),
1127 ( 212, 'CREATE_ITEM_TYPE', oils_i18n_gettext( 212,
1128 'CREATE_ITEM_TYPE', 'ppl', 'description' )),
1129 ( 213, 'CREATE_LANGUAGE', oils_i18n_gettext( 213,
1130 'CREATE_LANGUAGE', 'ppl', 'description' )),
1131 ( 214, 'CREATE_LASSO', oils_i18n_gettext( 214,
1132 'CREATE_LASSO', 'ppl', 'description' )),
1133 ( 215, 'CREATE_LASSO_MAP', oils_i18n_gettext( 215,
1134 'CREATE_LASSO_MAP', 'ppl', 'description' )),
1135 ( 216, 'CREATE_LIT_FORM', oils_i18n_gettext( 216,
1136 'CREATE_LIT_FORM', 'ppl', 'description' )),
1137 ( 217, 'CREATE_METABIB_FIELD', oils_i18n_gettext( 217,
1138 'CREATE_METABIB_FIELD', 'ppl', 'description' )),
1139 ( 218, 'CREATE_NET_ACCESS_LEVEL', oils_i18n_gettext( 218,
1140 'CREATE_NET_ACCESS_LEVEL', 'ppl', 'description' )),
1141 ( 219, 'CREATE_ORG_ADDRESS', oils_i18n_gettext( 219,
1142 'CREATE_ORG_ADDRESS', 'ppl', 'description' )),
1143 ( 220, 'CREATE_ORG_TYPE', oils_i18n_gettext( 220,
1144 'CREATE_ORG_TYPE', 'ppl', 'description' )),
1145 ( 221, 'CREATE_ORG_UNIT', oils_i18n_gettext( 221,
1146 'CREATE_ORG_UNIT', 'ppl', 'description' )),
1147 ( 222, 'CREATE_ORG_UNIT_CLOSING', oils_i18n_gettext( 222,
1148 'CREATE_ORG_UNIT_CLOSING', 'ppl', 'description' )),
1149 ( 223, 'CREATE_PERM', oils_i18n_gettext( 223,
1150 'CREATE_PERM', 'ppl', 'description' )),
1151 ( 224, 'CREATE_RELEVANCE_ADJUSTMENT', oils_i18n_gettext( 224,
1152 'CREATE_RELEVANCE_ADJUSTMENT', 'ppl', 'description' )),
1153 ( 225, 'CREATE_SURVEY', oils_i18n_gettext( 225,
1154 'CREATE_SURVEY', 'ppl', 'description' )),
1155 ( 226, 'CREATE_VR_FORMAT', oils_i18n_gettext( 226,
1156 'CREATE_VR_FORMAT', 'ppl', 'description' )),
1157 ( 227, 'CREATE_XML_TRANSFORM', oils_i18n_gettext( 227,
1158 'CREATE_XML_TRANSFORM', 'ppl', 'description' )),
1159 ( 228, 'DELETE_AUDIENCE', oils_i18n_gettext( 228,
1160 'DELETE_AUDIENCE', 'ppl', 'description' )),
1161 ( 229, 'DELETE_BIB_LEVEL', oils_i18n_gettext( 229,
1162 'DELETE_BIB_LEVEL', 'ppl', 'description' )),
1163 ( 230, 'DELETE_CIRC_DURATION', oils_i18n_gettext( 230,
1164 'DELETE_CIRC_DURATION', 'ppl', 'description' )),
1165 ( 231, 'DELETE_CIRC_MOD', oils_i18n_gettext( 231,
1166 'DELETE_CIRC_MOD', 'ppl', 'description' )),
1167 ( 232, 'DELETE_COPY_STATUS', oils_i18n_gettext( 232,
1168 'DELETE_COPY_STATUS', 'ppl', 'description' )),
1169 ( 233, 'DELETE_HOURS_OF_OPERATION', oils_i18n_gettext( 233,
1170 'DELETE_HOURS_OF_OPERATION', 'ppl', 'description' )),
1171 ( 234, 'DELETE_ITEM_FORM', oils_i18n_gettext( 234,
1172 'DELETE_ITEM_FORM', 'ppl', 'description' )),
1173 ( 235, 'DELETE_ITEM_TYPE', oils_i18n_gettext( 235,
1174 'DELETE_ITEM_TYPE', 'ppl', 'description' )),
1175 ( 236, 'DELETE_LANGUAGE', oils_i18n_gettext( 236,
1176 'DELETE_LANGUAGE', 'ppl', 'description' )),
1177 ( 237, 'DELETE_LASSO', oils_i18n_gettext( 237,
1178 'DELETE_LASSO', 'ppl', 'description' )),
1179 ( 238, 'DELETE_LASSO_MAP', oils_i18n_gettext( 238,
1180 'DELETE_LASSO_MAP', 'ppl', 'description' )),
1181 ( 239, 'DELETE_LIT_FORM', oils_i18n_gettext( 239,
1182 'DELETE_LIT_FORM', 'ppl', 'description' )),
1183 ( 240, 'DELETE_METABIB_FIELD', oils_i18n_gettext( 240,
1184 'DELETE_METABIB_FIELD', 'ppl', 'description' )),
1185 ( 241, 'DELETE_NET_ACCESS_LEVEL', oils_i18n_gettext( 241,
1186 'DELETE_NET_ACCESS_LEVEL', 'ppl', 'description' )),
1187 ( 242, 'DELETE_ORG_ADDRESS', oils_i18n_gettext( 242,
1188 'DELETE_ORG_ADDRESS', 'ppl', 'description' )),
1189 ( 243, 'DELETE_ORG_TYPE', oils_i18n_gettext( 243,
1190 'DELETE_ORG_TYPE', 'ppl', 'description' )),
1191 ( 244, 'DELETE_ORG_UNIT', oils_i18n_gettext( 244,
1192 'DELETE_ORG_UNIT', 'ppl', 'description' )),
1193 ( 245, 'DELETE_ORG_UNIT_CLOSING', oils_i18n_gettext( 245,
1194 'DELETE_ORG_UNIT_CLOSING', 'ppl', 'description' )),
1195 ( 246, 'DELETE_PERM', oils_i18n_gettext( 246,
1196 'DELETE_PERM', 'ppl', 'description' )),
1197 ( 247, 'DELETE_RELEVANCE_ADJUSTMENT', oils_i18n_gettext( 247,
1198 'DELETE_RELEVANCE_ADJUSTMENT', 'ppl', 'description' )),
1199 ( 248, 'DELETE_SURVEY', oils_i18n_gettext( 248,
1200 'DELETE_SURVEY', 'ppl', 'description' )),
1201 ( 249, 'DELETE_TRANSIT', oils_i18n_gettext( 249,
1202 'DELETE_TRANSIT', 'ppl', 'description' )),
1203 ( 250, 'DELETE_VR_FORMAT', oils_i18n_gettext( 250,
1204 'DELETE_VR_FORMAT', 'ppl', 'description' )),
1205 ( 251, 'DELETE_XML_TRANSFORM', oils_i18n_gettext( 251,
1206 'DELETE_XML_TRANSFORM', 'ppl', 'description' )),
1207 ( 252, 'REMOVE_GROUP_PERM', oils_i18n_gettext( 252,
1208 'REMOVE_GROUP_PERM', 'ppl', 'description' )),
1209 ( 253, 'TRANSIT_COPY', oils_i18n_gettext( 253,
1210 'TRANSIT_COPY', 'ppl', 'description' )),
1211 ( 254, 'UPDATE_AUDIENCE', oils_i18n_gettext( 254,
1212 'UPDATE_AUDIENCE', 'ppl', 'description' )),
1213 ( 255, 'UPDATE_BIB_LEVEL', oils_i18n_gettext( 255,
1214 'UPDATE_BIB_LEVEL', 'ppl', 'description' )),
1215 ( 256, 'UPDATE_CIRC_DURATION', oils_i18n_gettext( 256,
1216 'UPDATE_CIRC_DURATION', 'ppl', 'description' )),
1217 ( 257, 'UPDATE_CIRC_MOD', oils_i18n_gettext( 257,
1218 'UPDATE_CIRC_MOD', 'ppl', 'description' )),
1219 ( 258, 'UPDATE_COPY_NOTE', oils_i18n_gettext( 258,
1220 'UPDATE_COPY_NOTE', 'ppl', 'description' )),
1221 ( 259, 'UPDATE_COPY_STATUS', oils_i18n_gettext( 259,
1222 'UPDATE_COPY_STATUS', 'ppl', 'description' )),
1223 ( 260, 'UPDATE_GROUP_PERM', oils_i18n_gettext( 260,
1224 'UPDATE_GROUP_PERM', 'ppl', 'description' )),
1225 ( 261, 'UPDATE_HOURS_OF_OPERATION', oils_i18n_gettext( 261,
1226 'UPDATE_HOURS_OF_OPERATION', 'ppl', 'description' )),
1227 ( 262, 'UPDATE_ITEM_FORM', oils_i18n_gettext( 262,
1228 'UPDATE_ITEM_FORM', 'ppl', 'description' )),
1229 ( 263, 'UPDATE_ITEM_TYPE', oils_i18n_gettext( 263,
1230 'UPDATE_ITEM_TYPE', 'ppl', 'description' )),
1231 ( 264, 'UPDATE_LANGUAGE', oils_i18n_gettext( 264,
1232 'UPDATE_LANGUAGE', 'ppl', 'description' )),
1233 ( 265, 'UPDATE_LASSO', oils_i18n_gettext( 265,
1234 'UPDATE_LASSO', 'ppl', 'description' )),
1235 ( 266, 'UPDATE_LASSO_MAP', oils_i18n_gettext( 266,
1236 'UPDATE_LASSO_MAP', 'ppl', 'description' )),
1237 ( 267, 'UPDATE_LIT_FORM', oils_i18n_gettext( 267,
1238 'UPDATE_LIT_FORM', 'ppl', 'description' )),
1239 ( 268, 'UPDATE_METABIB_FIELD', oils_i18n_gettext( 268,
1240 'UPDATE_METABIB_FIELD', 'ppl', 'description' )),
1241 ( 269, 'UPDATE_NET_ACCESS_LEVEL', oils_i18n_gettext( 269,
1242 'UPDATE_NET_ACCESS_LEVEL', 'ppl', 'description' )),
1243 ( 270, 'UPDATE_ORG_ADDRESS', oils_i18n_gettext( 270,
1244 'UPDATE_ORG_ADDRESS', 'ppl', 'description' )),
1245 ( 271, 'UPDATE_ORG_TYPE', oils_i18n_gettext( 271,
1246 'UPDATE_ORG_TYPE', 'ppl', 'description' )),
1247 ( 272, 'UPDATE_ORG_UNIT_CLOSING', oils_i18n_gettext( 272,
1248 'UPDATE_ORG_UNIT_CLOSING', 'ppl', 'description' )),
1249 ( 273, 'UPDATE_PERM', oils_i18n_gettext( 273,
1250 'UPDATE_PERM', 'ppl', 'description' )),
1251 ( 274, 'UPDATE_RELEVANCE_ADJUSTMENT', oils_i18n_gettext( 274,
1252 'UPDATE_RELEVANCE_ADJUSTMENT', 'ppl', 'description' )),
1253 ( 275, 'UPDATE_SURVEY', oils_i18n_gettext( 275,
1254 'UPDATE_SURVEY', 'ppl', 'description' )),
1255 ( 276, 'UPDATE_TRANSIT', oils_i18n_gettext( 276,
1256 'UPDATE_TRANSIT', 'ppl', 'description' )),
1257 ( 277, 'UPDATE_VOLUME_NOTE', oils_i18n_gettext( 277,
1258 'UPDATE_VOLUME_NOTE', 'ppl', 'description' )),
1259 ( 278, 'UPDATE_VR_FORMAT', oils_i18n_gettext( 278,
1260 'UPDATE_VR_FORMAT', 'ppl', 'description' )),
1261 ( 279, 'UPDATE_XML_TRANSFORM', oils_i18n_gettext( 279,
1262 'UPDATE_XML_TRANSFORM', 'ppl', 'description' )),
1263 ( 280, 'MERGE_BIB_RECORDS', oils_i18n_gettext( 280,
1264 'MERGE_BIB_RECORDS', 'ppl', 'description' )),
1265 ( 281, 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', oils_i18n_gettext( 281,
1266 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', 'ppl', 'description' )),
1267 ( 282, 'CREATE_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 282,
1268 'CREATE_ACQ_FUNDING_SOURCE', 'ppl', 'description' )),
1269 ( 283, 'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 283,
1270 'CREATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )),
1271 ( 284, 'CREATE_AUTHORITY_IMPORT_QUEUE', oils_i18n_gettext( 284,
1272 'CREATE_AUTHORITY_IMPORT_QUEUE', 'ppl', 'description' )),
1273 ( 285, 'CREATE_AUTHORITY_RECORD_NOTE', oils_i18n_gettext( 285,
1274 'CREATE_AUTHORITY_RECORD_NOTE', 'ppl', 'description' )),
1275 ( 286, 'CREATE_BIB_IMPORT_FIELD_DEF', oils_i18n_gettext( 286,
1276 'CREATE_BIB_IMPORT_FIELD_DEF', 'ppl', 'description' )),
1277 ( 287, 'CREATE_BIB_IMPORT_QUEUE', oils_i18n_gettext( 287,
1278 'CREATE_BIB_IMPORT_QUEUE', 'ppl', 'description' )),
1279 ( 288, 'CREATE_LOCALE', oils_i18n_gettext( 288,
1280 'CREATE_LOCALE', 'ppl', 'description' )),
1281 ( 289, 'CREATE_MARC_CODE', oils_i18n_gettext( 289,
1282 'CREATE_MARC_CODE', 'ppl', 'description' )),
1283 ( 290, 'CREATE_TRANSLATION', oils_i18n_gettext( 290,
1284 'CREATE_TRANSLATION', 'ppl', 'description' )),
1285 ( 291, 'DELETE_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 291,
1286 'DELETE_ACQ_FUNDING_SOURCE', 'ppl', 'description' )),
1287 ( 292, 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 292,
1288 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )),
1289 ( 293, 'DELETE_AUTHORITY_IMPORT_QUEUE', oils_i18n_gettext( 293,
1290 'DELETE_AUTHORITY_IMPORT_QUEUE', 'ppl', 'description' )),
1291 ( 294, 'DELETE_AUTHORITY_RECORD_NOTE', oils_i18n_gettext( 294,
1292 'DELETE_AUTHORITY_RECORD_NOTE', 'ppl', 'description' )),
1293 ( 295, 'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 295,
1294 'DELETE_BIB_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )),
1295 ( 296, 'DELETE_BIB_IMPORT_QUEUE', oils_i18n_gettext( 296,
1296 'DELETE_BIB_IMPORT_QUEUE', 'ppl', 'description' )),
1297 ( 297, 'DELETE_LOCALE', oils_i18n_gettext( 297,
1298 'DELETE_LOCALE', 'ppl', 'description' )),
1299 ( 298, 'DELETE_MARC_CODE', oils_i18n_gettext( 298,
1300 'DELETE_MARC_CODE', 'ppl', 'description' )),
1301 ( 299, 'DELETE_TRANSLATION', oils_i18n_gettext( 299,
1302 'DELETE_TRANSLATION', 'ppl', 'description' )),
1303 ( 300, 'UPDATE_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 300,
1304 'UPDATE_ACQ_FUNDING_SOURCE', 'ppl', 'description' )),
1305 ( 301, 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 301,
1306 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )),
1307 ( 302, 'UPDATE_AUTHORITY_IMPORT_QUEUE', oils_i18n_gettext( 302,
1308 'UPDATE_AUTHORITY_IMPORT_QUEUE', 'ppl', 'description' )),
1309 ( 303, 'UPDATE_AUTHORITY_RECORD_NOTE', oils_i18n_gettext( 303,
1310 'UPDATE_AUTHORITY_RECORD_NOTE', 'ppl', 'description' )),
1311 ( 304, 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF', oils_i18n_gettext( 304,
1312 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF', 'ppl', 'description' )),
1313 ( 305, 'UPDATE_BIB_IMPORT_QUEUE', oils_i18n_gettext( 305,
1314 'UPDATE_BIB_IMPORT_QUEUE', 'ppl', 'description' )),
1315 ( 306, 'UPDATE_LOCALE', oils_i18n_gettext( 306,
1316 'UPDATE_LOCALE', 'ppl', 'description' )),
1317 ( 307, 'UPDATE_MARC_CODE', oils_i18n_gettext( 307,
1318 'UPDATE_MARC_CODE', 'ppl', 'description' )),
1319 ( 308, 'UPDATE_TRANSLATION', oils_i18n_gettext( 308,
1320 'UPDATE_TRANSLATION', 'ppl', 'description' )),
1321 ( 309, 'VIEW_ACQ_FUNDING_SOURCE', oils_i18n_gettext( 309,
1322 'VIEW_ACQ_FUNDING_SOURCE', 'ppl', 'description' )),
1323 ( 310, 'VIEW_AUTHORITY_RECORD_NOTES', oils_i18n_gettext( 310,
1324 'VIEW_AUTHORITY_RECORD_NOTES', 'ppl', 'description' )),
1325 ( 311, 'CREATE_IMPORT_ITEM', oils_i18n_gettext( 311,
1326 'CREATE_IMPORT_ITEM', 'ppl', 'description' )),
1327 ( 312, 'CREATE_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 312,
1328 'CREATE_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )),
1329 ( 313, 'CREATE_IMPORT_TRASH_FIELD', oils_i18n_gettext( 313,
1330 'CREATE_IMPORT_TRASH_FIELD', 'ppl', 'description' )),
1331 ( 314, 'DELETE_IMPORT_ITEM', oils_i18n_gettext( 314,
1332 'DELETE_IMPORT_ITEM', 'ppl', 'description' )),
1333 ( 315, 'DELETE_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 315,
1334 'DELETE_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )),
1335 ( 316, 'DELETE_IMPORT_TRASH_FIELD', oils_i18n_gettext( 316,
1336 'DELETE_IMPORT_TRASH_FIELD', 'ppl', 'description' )),
1337 ( 317, 'UPDATE_IMPORT_ITEM', oils_i18n_gettext( 317,
1338 'UPDATE_IMPORT_ITEM', 'ppl', 'description' )),
1339 ( 318, 'UPDATE_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 318,
1340 'UPDATE_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )),
1341 ( 319, 'UPDATE_IMPORT_TRASH_FIELD', oils_i18n_gettext( 319,
1342 'UPDATE_IMPORT_TRASH_FIELD', 'ppl', 'description' )),
1343 ( 320, 'UPDATE_ORG_UNIT_SETTING_ALL', oils_i18n_gettext( 320,
1344 'UPDATE_ORG_UNIT_SETTING_ALL', 'ppl', 'description' )),
1345 ( 321, 'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee', oils_i18n_gettext( 321,
1346 'UPDATE_ORG_UNIT_SETTING.circ.lost_materials_processing_fee', 'ppl', 'description' )),
1347 ( 322, 'UPDATE_ORG_UNIT_SETTING.cat.default_item_price', oils_i18n_gettext( 322,
1348 'UPDATE_ORG_UNIT_SETTING.cat.default_item_price', 'ppl', 'description' )),
1349 ( 323, 'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout', oils_i18n_gettext( 323,
1350 'UPDATE_ORG_UNIT_SETTING.auth.opac_timeout', 'ppl', 'description' )),
1351 ( 324, 'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout', oils_i18n_gettext( 324,
1352 'UPDATE_ORG_UNIT_SETTING.auth.staff_timeout', 'ppl', 'description' )),
1353 ( 325, 'UPDATE_ORG_UNIT_SETTING.org.bounced_emails', oils_i18n_gettext( 325,
1354 'UPDATE_ORG_UNIT_SETTING.org.bounced_emails', 'ppl', 'description' )),
1355 ( 326, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval', oils_i18n_gettext( 326,
1356 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_alert_interval', 'ppl', 'description' )),
1357 ( 327, 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval', oils_i18n_gettext( 327,
1358 'UPDATE_ORG_UNIT_SETTING.circ.hold_expire_interval', 'ppl', 'description' )),
1359 ( 328, 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow', oils_i18n_gettext( 328,
1360 'UPDATE_ORG_UNIT_SETTING.credit.payments.allow', 'ppl', 'description' )),
1361 ( 329, 'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost', oils_i18n_gettext( 329,
1362 'UPDATE_ORG_UNIT_SETTING.circ.void_overdue_on_lost', 'ppl', 'description' )),
1363 ( 330, 'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft', oils_i18n_gettext( 330,
1364 'UPDATE_ORG_UNIT_SETTING.circ.hold_stalling.soft', 'ppl', 'description' )),
1365 ( 331, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard', oils_i18n_gettext( 331,
1366 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.hard', 'ppl', 'description' )),
1367 ( 332, 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft', oils_i18n_gettext( 332,
1368 'UPDATE_ORG_UNIT_SETTING.circ.hold_boundary.soft', 'ppl', 'description' )),
1369 ( 333, 'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex', oils_i18n_gettext( 333,
1370 'UPDATE_ORG_UNIT_SETTING.opac.barcode_regex', 'ppl', 'description' )),
1371 ( 334, 'UPDATE_ORG_UNIT_SETTING.global.password_regex', oils_i18n_gettext( 334,
1372 'UPDATE_ORG_UNIT_SETTING.global.password_regex', 'ppl', 'description' )),
1373 ( 335, 'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max', oils_i18n_gettext( 335,
1374 'UPDATE_ORG_UNIT_SETTING.circ.item_checkout_history.max', 'ppl', 'description' )),
1375 ( 336, 'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval', oils_i18n_gettext( 336,
1376 'UPDATE_ORG_UNIT_SETTING.circ.reshelving_complete.interval', 'ppl', 'description' )),
1377 ( 337, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout', oils_i18n_gettext( 337,
1378 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.patron_login_timeout', 'ppl', 'description' )),
1379 ( 338, 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event', oils_i18n_gettext( 338,
1380 'UPDATE_ORG_UNIT_SETTING.circ.selfcheck.alert_on_checkout_event', 'ppl', 'description' )),
1381 ( 340, 'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold', oils_i18n_gettext( 340,
1382 'UPDATE_ORG_UNIT_SETTING.global.juvenile_age_threshold', 'ppl', 'description' )),
1383 ( 341, 'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty', oils_i18n_gettext( 341,
1384 'UPDATE_ORG_UNIT_SETTING.cat.bib.keep_on_empty', 'ppl', 'description' )),
1385 ( 342, 'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty', oils_i18n_gettext( 342,
1386 'UPDATE_ORG_UNIT_SETTING.cat.bib.alert_on_empty', 'ppl', 'description' )),
1387 ( 343, 'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone', oils_i18n_gettext( 343,
1388 'UPDATE_ORG_UNIT_SETTING.patron.password.use_phone', 'ppl', 'description' )),
1389 ( 344, 'HOLD_ITEM_CHECKED_OUT.override', oils_i18n_gettext( 344,
1390 'Allows a user to place a hold on an item that they already have checked out', 'ppl', 'description' )),
1391 ( 345, 'ADMIN_ACQ_CANCEL_CAUSE', oils_i18n_gettext( 345,
1392 'Allow a user to create/update/delete reasons for order cancellations', 'ppl', 'description' )),
1393 ( 346, 'ACQ_XFER_MANUAL_DFUND_AMOUNT', oils_i18n_gettext( 346,
1394 'Allow a user to transfer different amounts of money out of one fund and into another', 'ppl', 'description' )),
1395 ( 347, 'OVERRIDE_HOLD_HAS_LOCAL_COPY', oils_i18n_gettext( 347,
1396 'Allow a user to override the circ.holds.hold_has_copy_at.block setting', 'ppl', 'description' )),
1397 ( 348, 'UPDATE_PICKUP_LIB_FROM_TRANSIT', oils_i18n_gettext( 348,
1398 'Allow a user to change the pickup and transit destination for a captured hold item already in transit', 'ppl', 'description' )),
1399 ( 349, 'COPY_NEEDED_FOR_HOLD.override', oils_i18n_gettext( 349,
1400 'Allow a user to force renewal of an item that could fulfill a hold request', 'ppl', 'description' )),
1401 ( 350, 'MERGE_AUTH_RECORDS', oils_i18n_gettext( 350,
1402 'Allow a user to merge authority records together', 'ppl', 'description' )),
1403 ( 351, 'ALLOW_ALT_TCN', oils_i18n_gettext( 351,
1404 'Allows staff to import a record using an alternate TCN to avoid conflicts', 'ppl', 'description' )),
1405 ( 352, 'ADMIN_TRIGGER_EVENT_DEF', oils_i18n_gettext( 352,
1406 'Allow a user to administer trigger event definitions', 'ppl', 'description' )),
1407 ( 353, 'ADMIN_TRIGGER_CLEANUP', oils_i18n_gettext( 353,
1408 'Allow a user to create, delete, and update trigger cleanup entries', 'ppl', 'description' )),
1409 ( 354, 'CREATE_TRIGGER_CLEANUP', oils_i18n_gettext( 354,
1410 'Allow a user to create trigger cleanup entries', 'ppl', 'description' )),
1411 ( 355, 'DELETE_TRIGGER_CLEANUP', oils_i18n_gettext( 355,
1412 'Allow a user to delete trigger cleanup entries', 'ppl', 'description' )),
1413 ( 356, 'UPDATE_TRIGGER_CLEANUP', oils_i18n_gettext( 356,
1414 'Allow a user to update trigger cleanup entries', 'ppl', 'description' )),
1415 ( 357, 'CREATE_TRIGGER_EVENT_DEF', oils_i18n_gettext( 357,
1416 'Allow a user to create trigger event definitions', 'ppl', 'description' )),
1417 ( 358, 'DELETE_TRIGGER_EVENT_DEF', oils_i18n_gettext( 358,
1418 'Allow a user to delete trigger event definitions', 'ppl', 'description' )),
1419 ( 359, 'UPDATE_TRIGGER_EVENT_DEF', oils_i18n_gettext( 359,
1420 'Allow a user to update trigger event definitions', 'ppl', 'description' )),
1421 ( 360, 'VIEW_TRIGGER_EVENT_DEF', oils_i18n_gettext( 360,
1422 'Allow a user to view trigger event definitions', 'ppl', 'description' )),
1423 ( 361, 'ADMIN_TRIGGER_HOOK', oils_i18n_gettext( 361,
1424 'Allow a user to create, update, and delete trigger hooks', 'ppl', 'description' )),
1425 ( 362, 'CREATE_TRIGGER_HOOK', oils_i18n_gettext( 362,
1426 'Allow a user to create trigger hooks', 'ppl', 'description' )),
1427 ( 363, 'DELETE_TRIGGER_HOOK', oils_i18n_gettext( 363,
1428 'Allow a user to delete trigger hooks', 'ppl', 'description' )),
1429 ( 364, 'UPDATE_TRIGGER_HOOK', oils_i18n_gettext( 364,
1430 'Allow a user to update trigger hooks', 'ppl', 'description' )),
1431 ( 365, 'ADMIN_TRIGGER_REACTOR', oils_i18n_gettext( 365,
1432 'Allow a user to create, update, and delete trigger reactors', 'ppl', 'description' )),
1433 ( 366, 'CREATE_TRIGGER_REACTOR', oils_i18n_gettext( 366,
1434 'Allow a user to create trigger reactors', 'ppl', 'description' )),
1435 ( 367, 'DELETE_TRIGGER_REACTOR', oils_i18n_gettext( 367,
1436 'Allow a user to delete trigger reactors', 'ppl', 'description' )),
1437 ( 368, 'UPDATE_TRIGGER_REACTOR', oils_i18n_gettext( 368,
1438 'Allow a user to update trigger reactors', 'ppl', 'description' )),
1439 ( 369, 'ADMIN_TRIGGER_TEMPLATE_OUTPUT', oils_i18n_gettext( 369,
1440 'Allow a user to delete trigger template output', 'ppl', 'description' )),
1441 ( 370, 'DELETE_TRIGGER_TEMPLATE_OUTPUT', oils_i18n_gettext( 370,
1442 'Allow a user to delete trigger template output', 'ppl', 'description' )),
1443 ( 371, 'ADMIN_TRIGGER_VALIDATOR', oils_i18n_gettext( 371,
1444 'Allow a user to create, update, and delete trigger validators', 'ppl', 'description' )),
1445 ( 372, 'CREATE_TRIGGER_VALIDATOR', oils_i18n_gettext( 372,
1446 'Allow a user to create trigger validators', 'ppl', 'description' )),
1447 ( 373, 'DELETE_TRIGGER_VALIDATOR', oils_i18n_gettext( 373,
1448 'Allow a user to delete trigger validators', 'ppl', 'description' )),
1449 ( 374, 'UPDATE_TRIGGER_VALIDATOR', oils_i18n_gettext( 374,
1450 'Allow a user to update trigger validators', 'ppl', 'description' )),
1451 ( 376, 'ADMIN_BOOKING_RESOURCE', oils_i18n_gettext( 376,
1452 'Enables the user to create/update/delete booking resources', 'ppl', 'description' )),
1453 ( 377, 'ADMIN_BOOKING_RESOURCE_TYPE', oils_i18n_gettext( 377,
1454 'Enables the user to create/update/delete booking resource types', 'ppl', 'description' )),
1455 ( 378, 'ADMIN_BOOKING_RESOURCE_ATTR', oils_i18n_gettext( 378,
1456 'Enables the user to create/update/delete booking resource attributes', 'ppl', 'description' )),
1457 ( 379, 'ADMIN_BOOKING_RESOURCE_ATTR_MAP', oils_i18n_gettext( 379,
1458 'Enables the user to create/update/delete booking resource attribute maps', 'ppl', 'description' )),
1459 ( 380, 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE', oils_i18n_gettext( 380,
1460 'Enables the user to create/update/delete booking resource attribute values', 'ppl', 'description' )),
1461 ( 381, 'ADMIN_BOOKING_RESERVATION', oils_i18n_gettext( 381,
1462 'Enables the user to create/update/delete booking reservations', 'ppl', 'description' )),
1463 ( 382, 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP', oils_i18n_gettext( 382,
1464 'Enables the user to create/update/delete booking reservation attribute value maps', 'ppl', 'description' )),
1465 ( 383, 'RETRIEVE_RESERVATION_PULL_LIST', oils_i18n_gettext( 383,
1466 'Allows a user to retrieve a booking reservation pull list', 'ppl', 'description' )),
1467 ( 384, 'CAPTURE_RESERVATION', oils_i18n_gettext( 384,
1468 'Allows a user to capture booking reservations', 'ppl', 'description' )),
1469 ( 385, 'UPDATE_RECORD', oils_i18n_gettext( 385,
1470 'UPDATE_RECORD', 'ppl', 'description' )),
1471 ( 386, 'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds', oils_i18n_gettext( 386,
1472 'UPDATE_ORG_UNIT_SETTING.circ.block_renews_for_holds', 'ppl', 'description' )),
1473 ( 387, 'MERGE_USERS', oils_i18n_gettext( 387,
1474 'Allows user records to be merged', 'ppl', 'description' )),
1475 ( 388, 'ISSUANCE_HOLDS', oils_i18n_gettext( 388,
1476 'Allow a user to place holds on serials issuances', 'ppl', 'description' )),
1477 ( 389, 'VIEW_CREDIT_CARD_PROCESSING', oils_i18n_gettext( 389,
1478 'View org unit settings related to credit card processing', 'ppl', 'description' )),
1479 ( 390, 'ADMIN_CREDIT_CARD_PROCESSING', oils_i18n_gettext( 390,
1480 'Update org unit settings related to credit card processing', 'ppl', 'description' )),
1481 ( 391, 'ADMIN_ACQ_CLAIM', oils_i18n_gettext( 391,
1482 'ADMIN_ACQ_CLAIM', 'ppl', 'description' )),
1483 ( 392, 'ADMIN_ACQ_CLAIM_EVENT_TYPE', oils_i18n_gettext( 392,
1484 'ADMIN_ACQ_CLAIM_EVENT_TYPE', 'ppl', 'description' )),
1485 ( 393, 'ADMIN_ACQ_CLAIM_TYPE', oils_i18n_gettext( 393,
1486 'ADMIN_ACQ_CLAIM_TYPE', 'ppl', 'description' )),
1487 ( 394, 'ADMIN_ACQ_DISTRIB_FORMULA', oils_i18n_gettext( 394,
1488 'ADMIN_ACQ_DISTRIB_FORMULA', 'ppl', 'description' )),
1489 ( 395, 'ADMIN_ACQ_FISCAL_YEAR', oils_i18n_gettext( 395,
1490 'ADMIN_ACQ_FISCAL_YEAR', 'ppl', 'description' )),
1491 ( 396, 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT', oils_i18n_gettext( 396,
1492 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT', 'ppl', 'description' )),
1493 ( 397, 'ADMIN_ACQ_FUND_TAG', oils_i18n_gettext( 397,
1494 'ADMIN_ACQ_FUND_TAG', 'ppl', 'description' )),
1495 ( 398, 'ADMIN_ACQ_LINEITEM_ALERT_TEXT', oils_i18n_gettext( 398,
1496 'ADMIN_ACQ_LINEITEM_ALERT_TEXT', 'ppl', 'description' )),
1497 ( 399, 'ADMIN_AGE_PROTECT_RULE', oils_i18n_gettext( 399,
1498 'ADMIN_AGE_PROTECT_RULE', 'ppl', 'description' )),
1499 ( 400, 'ADMIN_ASSET_COPY_TEMPLATE', oils_i18n_gettext( 400,
1500 'ADMIN_ASSET_COPY_TEMPLATE', 'ppl', 'description' )),
1501 ( 401, 'ADMIN_BOOKING_RESERVATION_ATTR_MAP', oils_i18n_gettext( 401,
1502 'ADMIN_BOOKING_RESERVATION_ATTR_MAP', 'ppl', 'description' )),
1503 ( 402, 'ADMIN_CIRC_MATRIX_MATCHPOINT', oils_i18n_gettext( 402,
1504 'ADMIN_CIRC_MATRIX_MATCHPOINT', 'ppl', 'description' )),
1505 ( 403, 'ADMIN_CIRC_MOD', oils_i18n_gettext( 403,
1506 'ADMIN_CIRC_MOD', 'ppl', 'description' )),
1507 ( 404, 'ADMIN_CLAIM_POLICY', oils_i18n_gettext( 404,
1508 'ADMIN_CLAIM_POLICY', 'ppl', 'description' )),
1509 ( 405, 'ADMIN_CONFIG_REMOTE_ACCOUNT', oils_i18n_gettext( 405,
1510 'ADMIN_CONFIG_REMOTE_ACCOUNT', 'ppl', 'description' )),
1511 ( 406, 'ADMIN_FIELD_DOC', oils_i18n_gettext( 406,
1512 'ADMIN_FIELD_DOC', 'ppl', 'description' )),
1513 ( 407, 'ADMIN_GLOBAL_FLAG', oils_i18n_gettext( 407,
1514 'ADMIN_GLOBAL_FLAG', 'ppl', 'description' )),
1515 ( 408, 'ADMIN_GROUP_PENALTY_THRESHOLD', oils_i18n_gettext( 408,
1516 'ADMIN_GROUP_PENALTY_THRESHOLD', 'ppl', 'description' )),
1517 ( 409, 'ADMIN_HOLD_CANCEL_CAUSE', oils_i18n_gettext( 409,
1518 'ADMIN_HOLD_CANCEL_CAUSE', 'ppl', 'description' )),
1519 ( 410, 'ADMIN_HOLD_MATRIX_MATCHPOINT', oils_i18n_gettext( 410,
1520 'ADMIN_HOLD_MATRIX_MATCHPOINT', 'ppl', 'description' )),
1521 ( 411, 'ADMIN_IDENT_TYPE', oils_i18n_gettext( 411,
1522 'ADMIN_IDENT_TYPE', 'ppl', 'description' )),
1523 ( 412, 'ADMIN_IMPORT_ITEM_ATTR_DEF', oils_i18n_gettext( 412,
1524 'ADMIN_IMPORT_ITEM_ATTR_DEF', 'ppl', 'description' )),
1525 ( 413, 'ADMIN_INDEX_NORMALIZER', oils_i18n_gettext( 413,
1526 'ADMIN_INDEX_NORMALIZER', 'ppl', 'description' )),
1527 ( 414, 'ADMIN_INVOICE', oils_i18n_gettext( 414,
1528 'ADMIN_INVOICE', 'ppl', 'description' )),
1529 ( 415, 'ADMIN_INVOICE_METHOD', oils_i18n_gettext( 415,
1530 'ADMIN_INVOICE_METHOD', 'ppl', 'description' )),
1531 ( 416, 'ADMIN_INVOICE_PAYMENT_METHOD', oils_i18n_gettext( 416,
1532 'ADMIN_INVOICE_PAYMENT_METHOD', 'ppl', 'description' )),
1533 ( 417, 'ADMIN_LINEITEM_MARC_ATTR_DEF', oils_i18n_gettext( 417,
1534 'ADMIN_LINEITEM_MARC_ATTR_DEF', 'ppl', 'description' )),
1535 ( 418, 'ADMIN_MARC_CODE', oils_i18n_gettext( 418,
1536 'ADMIN_MARC_CODE', 'ppl', 'description' )),
1537 ( 419, 'ADMIN_MAX_FINE_RULE', oils_i18n_gettext( 419,
1538 'ADMIN_MAX_FINE_RULE', 'ppl', 'description' )),
1539 ( 420, 'ADMIN_MERGE_PROFILE', oils_i18n_gettext( 420,
1540 'ADMIN_MERGE_PROFILE', 'ppl', 'description' )),
1541 ( 421, 'ADMIN_ORG_UNIT_SETTING_TYPE', oils_i18n_gettext( 421,
1542 'ADMIN_ORG_UNIT_SETTING_TYPE', 'ppl', 'description' )),
1543 ( 422, 'ADMIN_RECURRING_FINE_RULE', oils_i18n_gettext( 422,
1544 'ADMIN_RECURRING_FINE_RULE', 'ppl', 'description' )),
1545 ( 423, 'ADMIN_SERIAL_SUBSCRIPTION', oils_i18n_gettext( 423,
1546 'ADMIN_SERIAL_SUBSCRIPTION', 'ppl', 'description' )),
1547 ( 424, 'ADMIN_STANDING_PENALTY', oils_i18n_gettext( 424,
1548 'ADMIN_STANDING_PENALTY', 'ppl', 'description' )),
1549 ( 425, 'ADMIN_SURVEY', oils_i18n_gettext( 425,
1550 'ADMIN_SURVEY', 'ppl', 'description' )),
1551 ( 426, 'ADMIN_USER_REQUEST_TYPE', oils_i18n_gettext( 426,
1552 'ADMIN_USER_REQUEST_TYPE', 'ppl', 'description' )),
1553 ( 427, 'ADMIN_USER_SETTING_GROUP', oils_i18n_gettext( 427,
1554 'ADMIN_USER_SETTING_GROUP', 'ppl', 'description' )),
1555 ( 428, 'ADMIN_USER_SETTING_TYPE', oils_i18n_gettext( 428,
1556 'ADMIN_USER_SETTING_TYPE', 'ppl', 'description' )),
1557 ( 429, 'ADMIN_Z3950_SOURCE', oils_i18n_gettext( 429,
1558 'ADMIN_Z3950_SOURCE', 'ppl', 'description' )),
1559 ( 430, 'CREATE_BIB_BTYPE', oils_i18n_gettext( 430,
1560 'CREATE_BIB_BTYPE', 'ppl', 'description' )),
1561 ( 431, 'CREATE_BIBLIO_FINGERPRINT', oils_i18n_gettext( 431,
1562 'CREATE_BIBLIO_FINGERPRINT', 'ppl', 'description' )),
1563 ( 432, 'CREATE_BIB_SOURCE', oils_i18n_gettext( 432,
1564 'CREATE_BIB_SOURCE', 'ppl', 'description' )),
1565 ( 433, 'CREATE_BILLING_TYPE', oils_i18n_gettext( 433,
1566 'CREATE_BILLING_TYPE', 'ppl', 'description' )),
1567 ( 434, 'CREATE_CN_BTYPE', oils_i18n_gettext( 434,
1568 'CREATE_CN_BTYPE', 'ppl', 'description' )),
1569 ( 435, 'CREATE_COPY_BTYPE', oils_i18n_gettext( 435,
1570 'CREATE_COPY_BTYPE', 'ppl', 'description' )),
1571 ( 436, 'CREATE_INVOICE', oils_i18n_gettext( 436,
1572 'CREATE_INVOICE', 'ppl', 'description' )),
1573 ( 437, 'CREATE_INVOICE_ITEM_TYPE', oils_i18n_gettext( 437,
1574 'CREATE_INVOICE_ITEM_TYPE', 'ppl', 'description' )),
1575 ( 438, 'CREATE_INVOICE_METHOD', oils_i18n_gettext( 438,
1576 'CREATE_INVOICE_METHOD', 'ppl', 'description' )),
1577 ( 439, 'CREATE_MERGE_PROFILE', oils_i18n_gettext( 439,
1578 'CREATE_MERGE_PROFILE', 'ppl', 'description' )),
1579 ( 440, 'CREATE_METABIB_CLASS', oils_i18n_gettext( 440,
1580 'CREATE_METABIB_CLASS', 'ppl', 'description' )),
1581 ( 441, 'CREATE_METABIB_SEARCH_ALIAS', oils_i18n_gettext( 441,
1582 'CREATE_METABIB_SEARCH_ALIAS', 'ppl', 'description' )),
1583 ( 442, 'CREATE_USER_BTYPE', oils_i18n_gettext( 442,
1584 'CREATE_USER_BTYPE', 'ppl', 'description' )),
1585 ( 443, 'DELETE_BIB_BTYPE', oils_i18n_gettext( 443,
1586 'DELETE_BIB_BTYPE', 'ppl', 'description' )),
1587 ( 444, 'DELETE_BIBLIO_FINGERPRINT', oils_i18n_gettext( 444,
1588 'DELETE_BIBLIO_FINGERPRINT', 'ppl', 'description' )),
1589 ( 445, 'DELETE_BIB_SOURCE', oils_i18n_gettext( 445,
1590 'DELETE_BIB_SOURCE', 'ppl', 'description' )),
1591 ( 446, 'DELETE_BILLING_TYPE', oils_i18n_gettext( 446,
1592 'DELETE_BILLING_TYPE', 'ppl', 'description' )),
1593 ( 447, 'DELETE_CN_BTYPE', oils_i18n_gettext( 447,
1594 'DELETE_CN_BTYPE', 'ppl', 'description' )),
1595 ( 448, 'DELETE_COPY_BTYPE', oils_i18n_gettext( 448,
1596 'DELETE_COPY_BTYPE', 'ppl', 'description' )),
1597 ( 449, 'DELETE_INVOICE_ITEM_TYPE', oils_i18n_gettext( 449,
1598 'DELETE_INVOICE_ITEM_TYPE', 'ppl', 'description' )),
1599 ( 450, 'DELETE_INVOICE_METHOD', oils_i18n_gettext( 450,
1600 'DELETE_INVOICE_METHOD', 'ppl', 'description' )),
1601 ( 451, 'DELETE_MERGE_PROFILE', oils_i18n_gettext( 451,
1602 'DELETE_MERGE_PROFILE', 'ppl', 'description' )),
1603 ( 452, 'DELETE_METABIB_CLASS', oils_i18n_gettext( 452,
1604 'DELETE_METABIB_CLASS', 'ppl', 'description' )),
1605 ( 453, 'DELETE_METABIB_SEARCH_ALIAS', oils_i18n_gettext( 453,
1606 'DELETE_METABIB_SEARCH_ALIAS', 'ppl', 'description' )),
1607 ( 454, 'DELETE_USER_BTYPE', oils_i18n_gettext( 454,
1608 'DELETE_USER_BTYPE', 'ppl', 'description' )),
1609 ( 455, 'MANAGE_CLAIM', oils_i18n_gettext( 455,
1610 'MANAGE_CLAIM', 'ppl', 'description' )),
1611 ( 456, 'UPDATE_BIB_BTYPE', oils_i18n_gettext( 456,
1612 'UPDATE_BIB_BTYPE', 'ppl', 'description' )),
1613 ( 457, 'UPDATE_BIBLIO_FINGERPRINT', oils_i18n_gettext( 457,
1614 'UPDATE_BIBLIO_FINGERPRINT', 'ppl', 'description' )),
1615 ( 458, 'UPDATE_BIB_SOURCE', oils_i18n_gettext( 458,
1616 'UPDATE_BIB_SOURCE', 'ppl', 'description' )),
1617 ( 459, 'UPDATE_BILLING_TYPE', oils_i18n_gettext( 459,
1618 'UPDATE_BILLING_TYPE', 'ppl', 'description' )),
1619 ( 460, 'UPDATE_CN_BTYPE', oils_i18n_gettext( 460,
1620 'UPDATE_CN_BTYPE', 'ppl', 'description' )),
1621 ( 461, 'UPDATE_COPY_BTYPE', oils_i18n_gettext( 461,
1622 'UPDATE_COPY_BTYPE', 'ppl', 'description' )),
1623 ( 462, 'UPDATE_INVOICE_ITEM_TYPE', oils_i18n_gettext( 462,
1624 'UPDATE_INVOICE_ITEM_TYPE', 'ppl', 'description' )),
1625 ( 463, 'UPDATE_INVOICE_METHOD', oils_i18n_gettext( 463,
1626 'UPDATE_INVOICE_METHOD', 'ppl', 'description' )),
1627 ( 464, 'UPDATE_MERGE_PROFILE', oils_i18n_gettext( 464,
1628 'UPDATE_MERGE_PROFILE', 'ppl', 'description' )),
1629 ( 465, 'UPDATE_METABIB_CLASS', oils_i18n_gettext( 465,
1630 'UPDATE_METABIB_CLASS', 'ppl', 'description' )),
1631 ( 466, 'UPDATE_METABIB_SEARCH_ALIAS', oils_i18n_gettext( 466,
1632 'UPDATE_METABIB_SEARCH_ALIAS', 'ppl', 'description' )),
1633 ( 467, 'UPDATE_USER_BTYPE', oils_i18n_gettext( 467,
1634 'UPDATE_USER_BTYPE', 'ppl', 'description' )),
1635 ( 468, 'user_request.create', oils_i18n_gettext( 468,
1636 'user_request.create', 'ppl', 'description' )),
1637 ( 469, 'user_request.delete', oils_i18n_gettext( 469,
1638 'user_request.delete', 'ppl', 'description' )),
1639 ( 470, 'user_request.update', oils_i18n_gettext( 470,
1640 'user_request.update', 'ppl', 'description' )),
1641 ( 471, 'user_request.view', oils_i18n_gettext( 471,
1642 'user_request.view', 'ppl', 'description' )),
1643 ( 472, 'VIEW_ACQ_FUND_ALLOCATION_PERCENT', oils_i18n_gettext( 472,
1644 'VIEW_ACQ_FUND_ALLOCATION_PERCENT', 'ppl', 'description' )),
1645 ( 473, 'VIEW_CIRC_MATRIX_MATCHPOINT', oils_i18n_gettext( 473,
1646 'VIEW_CIRC_MATRIX_MATCHPOINT', 'ppl', 'description' )),
1647 ( 474, 'VIEW_CLAIM', oils_i18n_gettext( 474,
1648 'VIEW_CLAIM', 'ppl', 'description' )),
1649 ( 475, 'VIEW_GROUP_PENALTY_THRESHOLD', oils_i18n_gettext( 475,
1650 'VIEW_GROUP_PENALTY_THRESHOLD', 'ppl', 'description' )),
1651 ( 476, 'VIEW_HOLD_MATRIX_MATCHPOINT', oils_i18n_gettext( 476,
1652 'VIEW_HOLD_MATRIX_MATCHPOINT', 'ppl', 'description' )),
1653 ( 477, 'VIEW_INVOICE', oils_i18n_gettext( 477,
1654 'VIEW_INVOICE', 'ppl', 'description' )),
1655 ( 478, 'VIEW_MERGE_PROFILE', oils_i18n_gettext( 478,
1656 'VIEW_MERGE_PROFILE', 'ppl', 'description' )),
1657 ( 479, 'VIEW_SERIAL_SUBSCRIPTION', oils_i18n_gettext( 479,
1658 'VIEW_SERIAL_SUBSCRIPTION', 'ppl', 'description' )),
1659 ( 481, 'ADMIN_SERIAL_CAPTION_PATTERN', oils_i18n_gettext( 481,
1660 'ADMIN_SERIAL_CAPTION_PATTERN', 'ppl', 'description' )),
1661 ( 482, 'ADMIN_SERIAL_DISTRIBUTION', oils_i18n_gettext( 482,
1662 'ADMIN_SERIAL_DISTRIBUTION', 'ppl', 'description' )),
1663 ( 483, 'ADMIN_SERIAL_STREAM', oils_i18n_gettext( 483,
1664 'ADMIN_SERIAL_STREAM', 'ppl', 'description' )),
1665 ( 484, 'RECEIVE_SERIAL', oils_i18n_gettext(484,
1666 'Receive serial items', 'ppl', 'description')),
1667 ( 485, 'CREATE_VOLUME_SUFFIX', oils_i18n_gettext(485,
1668 'Create suffix label definition.', 'ppl', 'description')),
1669 ( 486, 'UPDATE_VOLUME_SUFFIX', oils_i18n_gettext(486,
1670 'Update suffix label definition.', 'ppl', 'description')),
1671 ( 487, 'DELETE_VOLUME_SUFFIX', oils_i18n_gettext(487,
1672 'Delete suffix label definition.', 'ppl', 'description')),
1673 ( 488, 'CREATE_VOLUME_PREFIX', oils_i18n_gettext(488,
1674 'Create prefix label definition.', 'ppl', 'description')),
1675 ( 489, 'UPDATE_VOLUME_PREFIX', oils_i18n_gettext(489,
1676 'Update prefix label definition.', 'ppl', 'description')),
1677 ( 490, 'DELETE_VOLUME_PREFIX', oils_i18n_gettext(490,
1678 'Delete prefix label definition.', 'ppl', 'description')),
1679 ( 491, 'CREATE_MONOGRAPH_PART', oils_i18n_gettext(491,
1680 'Create monograph part definition.', 'ppl', 'description')),
1681 ( 492, 'UPDATE_MONOGRAPH_PART', oils_i18n_gettext(492,
1682 'Update monograph part definition.', 'ppl', 'description')),
1683 ( 493, 'DELETE_MONOGRAPH_PART', oils_i18n_gettext(493,
1684 'Delete monograph part definition.', 'ppl', 'description')),
1685 ( 494, 'ADMIN_CODED_VALUE', oils_i18n_gettext(494,
1686 'Create/Update/Delete SVF Record Attribute Coded Value Map', 'ppl', 'description')),
1687 ( 495, 'ADMIN_SERIAL_ITEM', oils_i18n_gettext(495,
1688 'Create/Retrieve/Update/Delete Serial Item', 'ppl', 'description')),
1689 ( 496, 'ADMIN_SVF', oils_i18n_gettext(496,
1690 'Create/Update/Delete SVF Record Attribute Defintion', 'ppl', 'description')),
1691 ( 497, 'CREATE_BIB_PTYPE', oils_i18n_gettext(497,
1692 'Create Bibliographic Record Peer Type', 'ppl', 'description')),
1693 ( 498, 'CREATE_PURCHASE_REQUEST', oils_i18n_gettext(498,
1694 'Create User Purchase Request', 'ppl', 'description')),
1695 ( 499, 'DELETE_BIB_PTYPE', oils_i18n_gettext(499,
1696 'Delete Bibliographic Record Peer Type', 'ppl', 'description')),
1697 ( 500, 'MAP_MONOGRAPH_PART', oils_i18n_gettext(500,
1698 'Create/Update/Delete Copy Monograph Part Map', 'ppl', 'description')),
1699 ( 501, 'MARK_ITEM_MISSING_PIECES', oils_i18n_gettext(501,
1700 'Allows the Mark Item Missing Pieces action.', 'ppl', 'description')),
1701 ( 502, 'UPDATE_BIB_PTYPE', oils_i18n_gettext(502,
1702 'Update Bibliographic Record Peer Type', 'ppl', 'description')),
1703 ( 503, 'UPDATE_HOLD_REQUEST_TIME', oils_i18n_gettext(503,
1704 'Allows editing of a hold''s request time, and/or its Cut-in-line/Top-of-queue flag.', 'ppl', 'description')),
1705 ( 504, 'UPDATE_PICKLIST', oils_i18n_gettext(504,
1706 'Allows update/re-use of an acquisitions pick/selection list.', 'ppl', 'description')),
1707 ( 505, 'UPDATE_WORKSTATION', oils_i18n_gettext(505,
1708 'Allows update of a workstation during workstation registration override.', 'ppl', 'description')),
1709 ( 506, 'VIEW_USER_SETTING_TYPE', oils_i18n_gettext(506,
1710 'Allows viewing of configurable user setting types.', 'ppl', 'description')),
1711 ( 507, 'ABORT_TRANSIT_ON_LOST', oils_i18n_gettext(507,
1712 'Allows a user to cancel a transit on a copy with status of LOST', 'ppl', 'description')),
1713 ( 508, 'ABORT_TRANSIT_ON_MISSING', oils_i18n_gettext(508,
1714 'Allows a user to cancel a transit on a copy with status of MISSING', 'ppl', 'description')),
1715 ( 509, 'TRANSIT_CHECKIN_INTERVAL_BLOCK.override', oils_i18n_gettext(509,
1716 'Allows a user to override the TRANSIT_CHECKIN_INTERVAL_BLOCK event', 'ppl', 'description')),
1717 ( 510, 'UPDATE_PATRON_COLLECTIONS_EXEMPT', oils_i18n_gettext(510,
1718 'Allows a user to indicate that a patron is exempt from collections processing', 'ppl', 'description')),
1719 ( 511, 'PERSISTENT_LOGIN', oils_i18n_gettext( 511,
1720 'Allows a user to authenticate and get a long-lived session (length configured in opensrf.xml)', 'ppl', 'description' )),
1721 ( 512, 'ACQ_INVOICE_REOPEN', oils_i18n_gettext( 512,
1722 'Allows a user to reopen an Acquisitions invoice', 'ppl', 'description' )),
1723 ( 513, 'DEBUG_CLIENT', oils_i18n_gettext( 513,
1724 'Allows a user to use debug functions in the staff client', 'ppl', 'description' )),
1725 ( 514, 'UPDATE_PATRON_ACTIVE_CARD', oils_i18n_gettext( 514,
1726 'Allows a user to manually adjust a patron''s active cards', 'ppl', 'description')),
1727 ( 515, 'UPDATE_PATRON_PRIMARY_CARD', oils_i18n_gettext( 515,
1728 'Allows a user to manually adjust a patron''s primary card', 'ppl', 'description')),
1729 ( 516, 'CREATE_REPORT_TEMPLATE', oils_i18n_gettext( 516,
1730 'Allows a user to create report templates', 'ppl', 'description' )),
1731 ( 517, 'COPY_HOLDS_FORCE', oils_i18n_gettext( 517,
1732 'Allow a user to place a force hold on a specific copy', 'ppl', 'description' )),
1733 ( 518, 'COPY_HOLDS_RECALL', oils_i18n_gettext( 518,
1734 'Allow a user to place a cataloging recall on a specific copy', 'ppl', 'description' )),
1735 ( 519, 'ADMIN_SMS_CARRIER', oils_i18n_gettext( 519,
1736 'Allows a user to add/create/delete SMS Carrier entries.', 'ppl', 'description' )),
1737 ( 520, 'COPY_DELETE_WARNING.override', oils_i18n_gettext( 520,
1738 'Allow a user to override warnings about deleting copies in problematic situations.', 'ppl', 'description' )),
1739 ( 521, 'IMPORT_ACQ_LINEITEM_BIB_RECORD_UPLOAD', oils_i18n_gettext( 521,
1740 'Allows a user to create new bibs directly from an ACQ MARC file upload', 'ppl', 'description' )),
1741 ( 522, 'IMPORT_AUTHORITY_MARC', oils_i18n_gettext( 522,
1742 'Allows a user to create new authority records', 'ppl', 'description' )),
1743 ( 523, 'ADMIN_TOOLBAR', oils_i18n_gettext( 523,
1744 'Allows a user to create, edit, and delete custom toolbars', 'ppl', 'description' )),
1745 ( 524, 'PLACE_UNFILLABLE_HOLD', oils_i18n_gettext( 524,
1746 'Allows a user to place a hold that cannot currently be filled.', 'ppl', 'description' )),
1747 ( 525, 'CREATE_PATRON_STAT_CAT_ENTRY_DEFAULT', oils_i18n_gettext( 525,
1748 'User may set a default entry in a patron statistical category', 'ppl', 'description' )),
1749 ( 526, 'UPDATE_PATRON_STAT_CAT_ENTRY_DEFAULT', oils_i18n_gettext( 526,
1750 'User may reset a default entry in a patron statistical category', 'ppl', 'description' )),
1751 ( 527, 'DELETE_PATRON_STAT_CAT_ENTRY_DEFAULT', oils_i18n_gettext( 527,
1752 'User may unset a default entry in a patron statistical category', 'ppl', 'description' )),
1753 ( 528, 'ADMIN_ORG_UNIT_CUSTOM_TREE', oils_i18n_gettext( 528,
1754 'User may update custom org unit trees', 'ppl', 'description' )),
1755 ( 529, 'ADMIN_IMPORT_MATCH_SET', oils_i18n_gettext( 529,
1756 'Allows a user to create/retrieve/update/delete vandelay match sets', 'ppl', 'description' )),
1757 ( 530, 'VIEW_IMPORT_MATCH_SET', oils_i18n_gettext( 530,
1758 'Allows a user to view vandelay match sets', 'ppl', 'description' )),
1759 ( 531, 'ADMIN_ADDRESS_ALERT', oils_i18n_gettext( 531,
1760 'Allows a user to create/retrieve/update/delete address alerts', 'ppl', 'description' )),
1761 ( 532, 'VIEW_ADDRESS_ALERT', oils_i18n_gettext( 532,
1762 'Allows a user to view address alerts', 'ppl', 'description' )),
1763 ( 533, 'ADMIN_COPY_LOCATION_GROUP', oils_i18n_gettext( 533,
1764 'Allows a user to create/retrieve/update/delete copy location groups', 'ppl', 'description' )),
1765 ( 534, 'ADMIN_USER_ACTIVITY_TYPE', oils_i18n_gettext( 534,
1766 'Allows a user to create/retrieve/update/delete user activity types', 'ppl', 'description' )),
1767 ( 535, 'VIEW_TRIGGER_EVENT', oils_i18n_gettext( 535,
1768 'Allows a user to view circ- and hold-related action/trigger events', 'ppl', 'description')),
1769 ( 536, 'IMPORT_OVERLAY_COPY', oils_i18n_gettext( 536,
1770 'Allows a user to overlay copy data in MARC import', 'ppl', 'description')),
1771 ( 537, 'ADMIN_SEARCH_FILTER_GROUP', oils_i18n_gettext( 537,
1772 'Allows staff to manage search filter groups and entries', 'ppl', 'description' )),
1773 ( 538, 'VIEW_SEARCH_FILTER_GROUP', oils_i18n_gettext( 538,
1774 'Allows staff to view search filter groups and entries', 'ppl', 'description' )),
1775 ( 539, 'UPDATE_ORG_UNIT_SETTING.ui.hide_copy_editor_fields', oils_i18n_gettext( 539,
1776 'Allows staff to edit displayed copy editor fields', 'ppl', 'description' )),
1777 ( 540, 'ADMIN_TOOLBAR_FOR_ORG', oils_i18n_gettext( 540,
1778 'Allows a user to create, edit, and delete custom toolbars for org units', 'ppl', 'description')),
1779 ( 541, 'ADMIN_TOOLBAR_FOR_WORKSTATION', oils_i18n_gettext( 541,
1780 'Allows a user to create, edit, and delete custom toolbars for workstations', 'ppl', 'description')),
1781 ( 542, 'ADMIN_TOOLBAR_FOR_USER', oils_i18n_gettext( 542,
1782 'Allows a user to create, edit, and delete custom toolbars for users', 'ppl', 'description')),
1783 ( 543, 'URL_VERIFY', oils_i18n_gettext( 543,
1784 'Allows a user to process and verify URLs', 'ppl', 'description')),
1785 ( 544, 'URL_VERIFY_UPDATE_SETTINGS', oils_i18n_gettext( 544,
1786 'Allows a user to configure URL verification org unit settings', 'ppl', 'description')),
1787 ( 545, 'SAVED_FILTER_DIALOG_FILTERS', oils_i18n_gettext( 545,
1788 'Allows users to save and load sets of filters for filter dialogs, available in certain staff interfaces', 'ppl', 'description')),
1789 ( 546, 'ADMIN_HOLD_CAPTURE_SORT', oils_i18n_gettext( 546,
1790 'Allows a user to make changes to best-hold selection sort order', 'ppl', 'description')),
1791 ( 547, 'ACQ_ADD_LINEITEM_IDENTIFIER', oils_i18n_gettext(547,
1792 'When granted, newly added lineitem identifiers will propagate to linked bib records', 'ppl', 'description')),
1793 ( 548, 'ACQ_SET_LINEITEM_IDENTIFIER', oils_i18n_gettext(548,
1794 'Allows staff to change the lineitem identifier', 'ppl', 'description')),
1795 ( 549, 'COPY_STATUS_LONG_OVERDUE.override', oils_i18n_gettext(549,
1796 'Allows the user to check-in long-overdue items, prompting ' ||
1797 'long-overdue check-in processing', 'ppl', 'code')),
1798 ( 550, 'SET_CIRC_LONG_OVERDUE', oils_i18n_gettext(550,
1799 'Allows the user to mark a circulation as long-overdue', 'ppl', 'code')),
1800 ( 551, 'ADMIN_SERVER_ADDON_FOR_WORKSTATION', oils_i18n_gettext( 551,
1801 'Allows a user to specify which Server Add-ons get invoked at the current workstation', 'ppl', 'description')),
1802 ( 552, 'ADMIN_FLOAT_GROUPS', oils_i18n_gettext( 552,
1803 'Allows administration of floating groups', 'ppl', 'description' )),
1804 ( 553, 'UPDATE_ORG_UNIT_SETTING.circ.min_item_price', oils_i18n_gettext( 553,
1805 'UPDATE_ORG_UNIT_SETTING.circ.min_item_price', 'ppl', 'description' )),
1806 ( 554, 'UPDATE_ORG_UNIT_SETTING.circ.max_item_price', oils_i18n_gettext( 554,
1807 'UPDATE_ORG_UNIT_SETTING.circ.max_item_price', 'ppl', 'description' )),
1808 ( 555, 'group_application.user.staff.admin.system_admin', oils_i18n_gettext( 555,
1809 'Allow a user to add/remove users to/from the "System Administrator" group', 'ppl', 'description' )),
1810 ( 556, 'group_application.user.staff.cat_admin', oils_i18n_gettext( 556,
1811 'Allow a user to add/remove users to/from the "Cataloging Administrator" group', 'ppl', 'description' )),
1812 ( 557, 'group_application.user.staff.circ_admin', oils_i18n_gettext( 557,
1813 'Allow a user to add/remove users to/from the "Circulation Administrator" group', 'ppl', 'description' )),
1814 ( 558, 'group_application.user.staff.data_review', oils_i18n_gettext( 558,
1815 'Allow a user to add/remove users to/from the "Data Review" group', 'ppl', 'description' )),
1816 ( 559, 'group_application.user.staff.volunteers', oils_i18n_gettext( 559,
1817 'Allow a user to add/remove users to/from the "Volunteers" group', 'ppl', 'description' )),
1818 ( 560, 'TOTAL_HOLD_COPY_RATIO_EXCEEDED.override', oils_i18n_gettext( 560,
1819 'Override the TOTAL_HOLD_COPY_RATIO_EXCEEDED event', 'ppl', 'description')),
1820 ( 561, 'AVAIL_HOLD_COPY_RATIO_EXCEEDED.override', oils_i18n_gettext( 561,
1821 'Override the AVAIL_HOLD_COPY_RATIO_EXCEEDED event', 'ppl', 'description')),
1822 ( 562, 'ADMIN_TAG_TABLE', oils_i18n_gettext( 562,
1823 'Allow administration of MARC tag tables', 'ppl', 'description' )),
1824 ( 563, 'ADJUST_BILLS', oils_i18n_gettext( 563,
1825 'Allow a user to adjust a bill (generally to zero)', 'ppl', 'description' )),
1826 ( 564, 'MARK_ITEM_CATALOGING', oils_i18n_gettext( 564,
1827 'Allow a user to mark an item status as ''cataloging''', 'ppl', 'description' )),
1828 ( 565, 'MARK_ITEM_DAMAGED', oils_i18n_gettext( 565,
1829 'Allow a user to mark an item status as ''damaged''', 'ppl', 'description' )),
1830 ( 566, 'MARK_ITEM_DISCARD', oils_i18n_gettext( 566,
1831 'Allow a user to mark an item status as ''discard''', 'ppl', 'description' )),
1832 ( 567, 'MARK_ITEM_RESERVES', oils_i18n_gettext( 567,
1833 'Allow a user to mark an item status as ''reserves''', 'ppl', 'description' )),
1834 ( 568, 'ADMIN_ORG_UNIT_SETTING_TYPE_LOG', oils_i18n_gettext( 568,
1835 'Allow a user to modify the org unit settings log', 'ppl', 'description' )),
1836 ( 570, 'CREATE_POP_BADGE', oils_i18n_gettext( 570,
1837 'Allow a user to create a new popularity badge', 'ppl', 'description' )),
1838 ( 571, 'DELETE_POP_BADGE', oils_i18n_gettext( 571,
1839 'Allow a user to delete a popularity badge', 'ppl', 'description' )),
1840 ( 572, 'UPDATE_POP_BADGE', oils_i18n_gettext( 572,
1841 'Allow a user to modify a popularity badge', 'ppl', 'description' )),
1842 ( 573, 'CREATE_POP_PARAMETER', oils_i18n_gettext( 573,
1843 'Allow a user to create a popularity badge parameter', 'ppl', 'description' )),
1844 ( 574, 'DELETE_POP_PARAMETER', oils_i18n_gettext( 574,
1845 'Allow a user to delete a popularity badge parameter', 'ppl', 'description' )),
1846 ( 575, 'UPDATE_POP_PARAMETER', oils_i18n_gettext( 575,
1847 'Allow a user to modify a popularity badge parameter', 'ppl', 'description' )),
1848 ( 576, 'CREATE_AUTHORITY_RECORD', oils_i18n_gettext( 576,
1849 'Allow a user to create an authority record', 'ppl', 'description' )),
1850 ( 577, 'DELETE_AUTHORITY_RECORD', oils_i18n_gettext( 577,
1851 'Allow a user to delete an authority record', 'ppl', 'description' )),
1852 ( 578, 'UPDATE_AUTHORITY_RECORD', oils_i18n_gettext( 578,
1853 'Allow a user to modify an authority record', 'ppl', 'description' )),
1854 ( 579, 'CREATE_AUTHORITY_CONTROL_SET', oils_i18n_gettext( 579,
1855 'Allow a user to create an authority control set', 'ppl', 'description' )),
1856 ( 580, 'DELETE_AUTHORITY_CONTROL_SET', oils_i18n_gettext( 580,
1857 'Allow a user to delete an authority control set', 'ppl', 'description' )),
1858 ( 581, 'UPDATE_AUTHORITY_CONTROL_SET', oils_i18n_gettext( 581,
1859 'Allow a user to modify an authority control set', 'ppl', 'description' )),
1860 ( 582, 'ACTOR_USER_DELETE_OPEN_XACTS.override', oils_i18n_gettext( 582,
1861 'Override the ACTOR_USER_DELETE_OPEN_XACTS event', 'ppl', 'description' )),
1862 ( 583, 'PATRON_EXCEEDS_LOST_COUNT.override', oils_i18n_gettext( 583,
1863 'Override the PATRON_EXCEEDS_LOST_COUNT event', 'ppl', 'description' )),
1864 ( 584, 'MAX_HOLDS.override', oils_i18n_gettext( 584,
1865 'Override the MAX_HOLDS event', 'ppl', 'description' )),
1866 ( 585, 'ITEM_DEPOSIT_REQUIRED.override', oils_i18n_gettext( 585,
1867 'Override the ITEM_DEPOSIT_REQUIRED event', 'ppl', 'description' )),
1868 ( 586, 'ITEM_DEPOSIT_PAID.override', oils_i18n_gettext( 586,
1869 'Override the ITEM_DEPOSIT_PAID event', 'ppl', 'description' )),
1870 ( 587, 'COPY_STATUS_LOST_AND_PAID.override', oils_i18n_gettext( 587,
1871 'Override the COPY_STATUS_LOST_AND_PAID event', 'ppl', 'description' )),
1872 ( 588, 'ITEM_NOT_HOLDABLE.override', oils_i18n_gettext( 588,
1873 'Override the ITEM_NOT_HOLDABLE event', 'ppl', 'description' )),
1874 ( 589, 'ITEM_RENTAL_FEE_REQUIRED.override', oils_i18n_gettext( 589,
1875 'Override the ITEM_RENTAL_FEE_REQUIRED event', 'ppl', 'description' )),
1876 ( 590, 'ADMIN_COPY_TAG_TYPES', oils_i18n_gettext( 590,
1877 'Administer copy tag types', 'ppl', 'description' )),
1878 ( 591, 'ADMIN_COPY_TAG', oils_i18n_gettext( 591,
1879 'Administer copy tag', 'ppl', 'description' )),
1880 ( 592,'CONTAINER_BATCH_UPDATE', oils_i18n_gettext( 592,
1881 'Allow batch update via buckets', 'ppl', 'description' )),
1882 ( 593, 'ADMIN_SERIAL_PATTERN_TEMPLATE', oils_i18n_gettext( 593,
1883 'Administer serial prediction pattern templates', 'ppl', 'description' )),
1884 ( 594, 'ADMIN_COPY_ALERT_TYPE', oils_i18n_gettext( 594,
1885 'Administer copy alert types', 'ppl', 'description' )),
1886 ( 595, 'CREATE_COPY_ALERT_TYPE', oils_i18n_gettext( 595,
1887 'Create copy alert types', 'ppl', 'description' )),
1888 ( 596, 'UPDATE_COPY_ALERT_TYPE', oils_i18n_gettext( 596,
1889 'Update copy alert types', 'ppl', 'description' )),
1890 ( 597, 'DELETE_COPY_ALERT_TYPE', oils_i18n_gettext( 597,
1891 'Delete copy alert types', 'ppl', 'description' )),
1892 ( 598, 'ADMIN_COPY_ALERT_SUPPRESS', oils_i18n_gettext( 598,
1893 'Administer copy alert suppression', 'ppl', 'description' )),
1894 ( 599, 'CREATE_COPY_ALERT_SUPPRESS', oils_i18n_gettext( 599,
1895 'Create copy alert suppression', 'ppl', 'description' )),
1896 ( 600, 'UPDATE_COPY_ALERT_SUPPRESS', oils_i18n_gettext( 600,
1897 'Update copy alert suppression', 'ppl', 'description' )),
1898 ( 601, 'DELETE_COPY_ALERT_SUPPRESS', oils_i18n_gettext( 601,
1899 'Delete copy alert suppression', 'ppl', 'description' )),
1900 ( 602, 'ADMIN_COPY_ALERT', oils_i18n_gettext( 602,
1901 'Administer copy alerts', 'ppl', 'description' )),
1902 ( 603, 'CREATE_COPY_ALERT', oils_i18n_gettext( 603,
1903 'Create copy alerts', 'ppl', 'description' )),
1904 ( 604, 'VIEW_COPY_ALERT', oils_i18n_gettext( 604,
1905 'View copy alerts', 'ppl', 'description' )),
1906 ( 605, 'UPDATE_COPY_ALERT', oils_i18n_gettext( 605,
1907 'Update copy alerts', 'ppl', 'description' )),
1908 ( 606, 'DELETE_COPY_ALERT', oils_i18n_gettext( 606,
1909 'Delete copy alerts', 'ppl', 'description' )),
1910 ( 607, 'EMERGENCY_CLOSING', oils_i18n_gettext( 607,
1911 'Create and manage Emergency Closings', 'ppl', 'description' )),
1912 (608, 'APPLY_WORKSTATION_SETTING',
1913 oils_i18n_gettext(608, 'Allows a user to apply values to workstation settings', 'ppl', 'description')),
1914 ( 609, 'MANAGE_CUSTOM_PERM_GRP_TREE', oils_i18n_gettext( 609,
1915 'Allows a user to manage custom permission group lists.', 'ppl', 'description' )),
1916 ( 610, 'CLEAR_PURCHASE_REQUEST', oils_i18n_gettext(610,
1917 'Clear Completed User Purchase Requests', 'ppl', 'description')),
1918 ( 611, 'ADMIN_PRINT_TEMPLATE', oils_i18n_gettext(611,
1919 'Modify print templates', 'ppl', 'description')),
1920 ( 612, 'ADMIN_CAROUSEL_TYPE', oils_i18n_gettext(612,
1921 'Allow a user to manage carousel types', 'ppl', 'description')),
1922 ( 613, 'ADMIN_CAROUSEL', oils_i18n_gettext(613,
1923 'Allow a user to manage carousels', 'ppl', 'description')),
1924 ( 614, 'REFRESH_CAROUSEL', oils_i18n_gettext(614,
1925 'Allow a user to refresh carousels', 'ppl', 'description')),
1926 ( 615, 'ADMIN_REMOTEAUTH', oils_i18n_gettext( 615,
1927 'Administer remote patron authentication', 'ppl', 'description' )),
1928 ( 616, 'IMPORT_USE_ORG_UNIT_COPIES', oils_i18n_gettext( 616,
1929 'Allows users to import records based on the number of org unit copies attached to a record', 'ppl', 'description' )),
1930 ( 617, 'IMPORT_ON_ORDER_CAT_COPY', oils_i18n_gettext( 617,
1931 'Allows users to import copies based on the on-order items attached to a record', 'ppl', 'description' )),
1932 ( 618, 'CREATE_PRECAT', oils_i18n_gettext(618,
1933 'Allows a user to create a pre-catalogued copy', 'ppl', 'description')),
1934 ( 619, 'EDIT_SELF_IN_CLIENT', oils_i18n_gettext(619,
1935 'Allow a user to edit their own account in the staff client', 'ppl', 'description')),
1936 ( 620, 'UPDATE_ORG_UNIT_SETTING.opac.patron.custom_css', oils_i18n_gettext(620,
1937 'Update CSS setting for the OPAC', 'ppl', 'description')),
1938 ( 621, 'VIEW_BOOKING_RESOURCE_TYPE', oils_i18n_gettext(621,
1939 'View booking resource types', 'ppl', 'description')),
1940 ( 622, 'VIEW_BOOKING_RESOURCE', oils_i18n_gettext(622,
1941 'View booking resources', 'ppl', 'description')),
1942 ( 623, 'UPDATE_ORG_UNIT_SETTING.opac.matomo', oils_i18n_gettext(623,
1943 'Allows a user to configure Matomo Analytics org unit settings', 'ppl', 'description')),
1944 ( 624, 'MANAGE_RESERVES', oils_i18n_gettext(624,
1945 'Allows user to manage Courses, Course Materials, and associate Users with Courses.', 'ppl', 'description')),
1946 ( 625, 'VIEW_BOOKING_RESERVATION', oils_i18n_gettext(625,
1947 'View booking reservations', 'ppl', 'description')),
1948 ( 626, 'VIEW_BOOKING_RESERVATION_ATTR_MAP', oils_i18n_gettext(626,
1949 'View booking reservation attribute maps', 'ppl', 'description')),
1950 ( 627, 'SSO_ADMIN', oils_i18n_gettext(627,
1951 'Modify patron SSO settings', 'ppl', 'description')),
1952 ( 628, 'MANAGE_HOLD_GROUPS', oils_i18n_gettext(628,
1953 'Manage batch (subscription) hold events', 'ppl', 'description')),
1954 ( 629, 'ADMIN_LIBRARY_GROUPS', oils_i18n_gettext(629,
1955 'Administer library groups', 'ppl', 'description')),
1956 ( 630, 'VIEW_GEOLOCATION_SERVICES', oils_i18n_gettext(630,
1957 'View geographic location services', 'ppl', 'description')),
1958 ( 631, 'ADMIN_GEOLOCATION_SERVICES', oils_i18n_gettext(631,
1959 'Administer geographic location services', 'ppl', 'description')),
1960 ( 632, 'UPDATE_USER_PHOTO_URL', oils_i18n_gettext(632,
1961 'Update the user photo url field in patron registration and editor', 'ppl', 'description')),
1962 ( 633, 'CREATE_RECORD_NOTE', oils_i18n_gettext(633,
1963 'Allow the user to create a record note', 'ppl', 'description')),
1964 ( 634, 'UPDATE_RECORD_NOTE', oils_i18n_gettext(634,
1965 'Allow the user to update a record note', 'ppl', 'description')),
1966 ( 635, 'DELETE_RECORD_NOTE', oils_i18n_gettext(635,
1967 'Allow the user to delete a record note', 'ppl', 'description'))
1971 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, 1000);
1973 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1974 (1, oils_i18n_gettext(1, 'Users', 'pgt', 'name'), NULL, NULL, '3 years', FALSE, 'group_application.user');
1975 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1976 (2, oils_i18n_gettext(2, 'Patrons', 'pgt', 'name'), 1, NULL, '3 years', TRUE, 'group_application.user.patron');
1977 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1978 (3, oils_i18n_gettext(3, 'Staff', 'pgt', 'name'), 1, NULL, '3 years', FALSE, 'group_application.user.staff');
1979 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1980 (4, oils_i18n_gettext(4, 'Catalogers', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.cat');
1981 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1982 (5, oils_i18n_gettext(5, 'Circulators', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.circ');
1983 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1984 (6, oils_i18n_gettext(6, 'Acquisitions', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.acq');
1985 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1986 (7, oils_i18n_gettext(7, 'Acquisitions Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.acq_admin');
1987 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1988 (8, oils_i18n_gettext(8, 'Cataloging Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.cat_admin');
1989 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1990 (9, oils_i18n_gettext(9, 'Circulation Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.circ_admin');
1991 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1992 (10, oils_i18n_gettext(10, 'Local Administrator', 'pgt', 'name'), 3,
1993 oils_i18n_gettext(10, 'Can do anything at the Branch level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.local_admin');
1994 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1995 (11, oils_i18n_gettext(11, 'Serials', 'pgt', 'name'), 3,
1996 oils_i18n_gettext(11, 'Serials (includes admin features)', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.serials');
1997 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1998 (12, oils_i18n_gettext(12, 'System Administrator', 'pgt', 'name'), 3,
1999 oils_i18n_gettext(12, 'Can do anything at the System level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.system_admin');
2000 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
2001 (13, oils_i18n_gettext(13, 'Global Administrator', 'pgt', 'name'), 3,
2002 oils_i18n_gettext(13, 'Can do anything at the Consortium level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.global_admin');
2003 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
2004 (14, oils_i18n_gettext(14, 'Data Review', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.data_review');
2005 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
2006 (15, oils_i18n_gettext(15, 'Volunteers', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.volunteers');
2008 SELECT SETVAL('permission.grp_tree_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_tree));
2010 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
2011 VALUES (1,1,1,10.0);
2012 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
2013 VALUES (1,1,2,10.0);
2014 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
2015 VALUES (1,1,3,10.0);
2016 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
2017 VALUES (1,1,5,10.0);
2019 SELECT SETVAL('permission.grp_penalty_threshold_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_penalty_threshold));
2022 -- Add basic user permissions to the Users group
2024 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2026 pgt.id, perm.id, aout.depth, FALSE
2028 permission.grp_tree pgt,
2029 permission.perm_list perm,
2030 actor.org_unit_type aout
2032 pgt.name = 'Users' AND
2033 aout.name = 'Consortium' AND
2036 'CREATE_MY_CONTAINER',
2037 'CREATE_PURCHASE_REQUEST',
2043 'user_request.create'
2047 -- Add basic user permissions to the Data Review group
2049 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2051 pgt.id, perm.id, aout.depth, FALSE
2053 permission.grp_tree pgt,
2054 permission.perm_list perm,
2055 actor.org_unit_type aout
2057 pgt.name = 'Data Review' AND
2058 aout.name = 'Consortium' AND
2060 'CREATE_COPY_TRANSIT',
2062 'VIEW_BILLING_TYPE',
2063 'VIEW_CIRCULATIONS',
2066 'VIEW_ORG_SETTINGS',
2070 'VIEW_USER_FINES_SUMMARY',
2071 'VIEW_USER_TRANSACTIONS',
2072 'VIEW_VOLUME_NOTES',
2075 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2077 pgt.id, perm.id, aout.depth, FALSE
2079 permission.grp_tree pgt,
2080 permission.perm_list perm,
2081 actor.org_unit_type aout
2083 pgt.name = 'Data Review' AND
2084 aout.name = 'System' AND
2088 'CREATE_IN_HOUSE_USE',
2089 'CREATE_TRANSACTION',
2096 -- Add basic staff permissions to the Staff group
2098 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2100 pgt.id, perm.id, aout.depth, FALSE
2102 permission.grp_tree pgt,
2103 permission.perm_list perm,
2104 actor.org_unit_type aout
2106 pgt.name = 'Staff' AND
2107 aout.name = 'Consortium' AND
2110 'CREATE_CONTAINER_ITEM',
2111 'CREATE_COPY_TRANSIT',
2112 'CREATE_HOLD_NOTIFICATION',
2113 'CREATE_TRANSACTION',
2116 'DELETE_CONTAINER_ITEM',
2117 'group_application.user',
2118 'group_application.user.patron',
2119 'REGISTER_WORKSTATION',
2120 'REMOTE_Z3950_QUERY',
2127 'VIEW_COPY_CHECKOUT_HISTORY',
2130 'VIEW_HOLD_NOTIFICATION',
2136 'VIEW_USER_SETTING_TYPE',
2140 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2142 pgt.id, perm.id, aout.depth, FALSE
2144 permission.grp_tree pgt,
2145 permission.perm_list perm,
2146 actor.org_unit_type aout
2148 pgt.name = 'Staff' AND
2149 aout.name = 'System' AND
2153 'VIEW_BILLING_TYPE',
2154 'VIEW_CIRCULATIONS',
2155 'VIEW_ORG_SETTINGS',
2156 'VIEW_PERMIT_CHECKOUT',
2158 'VIEW_USER_FINES_SUMMARY',
2159 'VIEW_USER_TRANSACTIONS',
2160 'APPLY_WORKSTATION_SETTING'
2163 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2165 pgt.id, perm.id, aout.depth, FALSE
2167 permission.grp_tree pgt,
2168 permission.perm_list perm,
2169 actor.org_unit_type aout
2171 pgt.name = 'Staff' AND
2172 aout.name = 'Branch' AND
2177 'COPY_TRANSIT_RECEIVE',
2179 'CREATE_IN_HOUSE_USE',
2181 'RENEW_HOLD_OVERRIDE',
2188 -- Add basic cataloguing permissions to the Catalogers group
2190 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2192 pgt.id, perm.id, aout.depth, FALSE
2194 permission.grp_tree pgt,
2195 permission.perm_list perm,
2196 actor.org_unit_type aout
2198 pgt.name = 'Catalogers' AND
2199 aout.name = 'Consortium' AND
2202 'CREATE_BIB_IMPORT_QUEUE',
2203 'CREATE_IMPORT_ITEM',
2206 'CREATE_TITLE_NOTE',
2207 'DELETE_BIB_IMPORT_QUEUE',
2208 'DELETE_IMPORT_ITEM',
2210 'DELETE_TITLE_NOTE',
2211 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
2213 'IMPORT_AUTHORITY_MARC',
2214 'MERGE_AUTH_RECORDS',
2215 'MERGE_BIB_RECORDS',
2216 'UPDATE_AUTHORITY_IMPORT_QUEUE',
2217 'UPDATE_AUTHORITY_RECORD_NOTE',
2218 'UPDATE_BIB_IMPORT_QUEUE',
2221 'user_request.view',
2222 'VIEW_AUTHORITY_RECORD_NOTES',
2223 'CREATE_AUTHORITY_RECORD',
2224 'DELETE_AUTHORITY_RECORD',
2225 'UPDATE_AUTHORITY_RECORD',
2226 'CREATE_RECORD_NOTE',
2227 'UPDATE_RECORD_NOTE',
2228 'DELETE_RECORD_NOTE');
2230 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2232 pgt.id, perm.id, aout.depth, FALSE
2234 permission.grp_tree pgt,
2235 permission.perm_list perm,
2236 actor.org_unit_type aout
2238 pgt.name = 'Catalogers' AND
2239 aout.name = 'System' AND
2243 'CREATE_MFHD_RECORD',
2245 'CREATE_VOLUME_NOTE',
2248 'DELETE_MFHD_RECORD',
2250 'DELETE_VOLUME_NOTE',
2251 'MAP_MONOGRAPH_PART',
2252 'MARK_ITEM_AVAILABLE',
2253 'MARK_ITEM_BINDERY',
2254 'MARK_ITEM_CHECKED_OUT',
2256 'MARK_ITEM_IN_PROCESS',
2257 'MARK_ITEM_IN_TRANSIT',
2259 'MARK_ITEM_MISSING',
2260 'MARK_ITEM_ON_HOLDS_SHELF',
2261 'MARK_ITEM_ON_ORDER',
2262 'MARK_ITEM_RESHELVING',
2265 'UPDATE_IMPORT_ITEM',
2266 'UPDATE_MFHD_RECORD',
2268 'UPDATE_VOLUME_NOTE',
2269 'VIEW_SERIAL_SUBSCRIPTION',
2270 'MARK_ITEM_CATALOGING',
2271 'MARK_ITEM_DAMAGED',
2272 'MARK_ITEM_DISCARD',
2273 'MARK_ITEM_RESERVES',
2279 -- Add advanced cataloguing permissions to the Cataloging Admin group
2281 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2283 pgt.id, perm.id, aout.depth, TRUE
2285 permission.grp_tree pgt,
2286 permission.perm_list perm,
2287 actor.org_unit_type aout
2289 pgt.name = 'Cataloging Administrator' AND
2290 aout.name = 'Consortium' AND
2292 'ADMIN_IMPORT_ITEM_ATTR_DEF',
2293 'ADMIN_MERGE_PROFILE',
2294 'CREATE_AUTHORITY_IMPORT_IMPORT_DEF',
2295 'CREATE_BIB_IMPORT_FIELD_DEF',
2297 'CREATE_BIB_SOURCE',
2298 'CREATE_IMPORT_ITEM_ATTR_DEF',
2299 'CREATE_IMPORT_TRASH_FIELD',
2300 'CREATE_MERGE_PROFILE',
2301 'CREATE_MONOGRAPH_PART',
2303 'CREATE_VOLUME_PREFIX',
2304 'CREATE_VOLUME_SUFFIX',
2305 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
2307 'DELETE_BIB_SOURCE',
2308 'DELETE_IMPORT_ITEM_ATTR_DEF',
2309 'DELETE_IMPORT_TRASH_FIELD',
2310 'DELETE_MERGE_PROFILE',
2311 'DELETE_MONOGRAPH_PART',
2312 'DELETE_VOLUME_PREFIX',
2313 'DELETE_VOLUME_SUFFIX',
2314 'MAP_MONOGRAPH_PART',
2315 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
2316 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF',
2318 'UPDATE_IMPORT_ITEM_ATTR_DEF',
2319 'UPDATE_IMPORT_TRASH_FIELD',
2320 'UPDATE_MERGE_PROFILE',
2321 'UPDATE_MONOGRAPH_PART',
2322 'UPDATE_VOLUME_PREFIX',
2323 'UPDATE_VOLUME_SUFFIX',
2324 'CREATE_AUTHORITY_CONTROL_SET',
2325 'DELETE_AUTHORITY_CONTROL_SET',
2326 'UPDATE_AUTHORITY_CONTROL_SET');
2328 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2330 pgt.id, perm.id, aout.depth, TRUE
2332 permission.grp_tree pgt,
2333 permission.perm_list perm,
2334 actor.org_unit_type aout
2336 pgt.name = 'Cataloging Administrator' AND
2337 aout.name = 'System' AND
2340 'CREATE_COPY_STAT_CAT',
2341 'CREATE_COPY_STAT_CAT_ENTRY',
2342 'CREATE_COPY_STAT_CAT_ENTRY_MAP',
2344 'CREATE_REPORT_TEMPLATE',
2345 'SHARE_REPORT_FOLDER',
2346 'UPDATE_COPY_LOCATION',
2347 'UPDATE_COPY_STAT_CAT',
2348 'UPDATE_COPY_STAT_CAT_ENTRY',
2349 'VIEW_REPORT_OUTPUT'
2353 'CREATE_POP_PARAMETER',
2354 'DELETE_POP_PARAMETER',
2355 'UPDATE_POP_PARAMETER');
2358 -- Add basic circulation permissions to the Circulators group
2360 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2362 pgt.id, perm.id, aout.depth, FALSE
2364 permission.grp_tree pgt,
2365 permission.perm_list perm,
2366 actor.org_unit_type aout
2368 pgt.name = 'Circulators' AND
2369 aout.name = 'Branch' AND
2372 'ADMIN_BOOKING_RESERVATION',
2373 'ADMIN_BOOKING_RESOURCE',
2374 'ADMIN_BOOKING_RESOURCE_ATTR',
2375 'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
2376 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
2377 'ADMIN_BOOKING_RESOURCE_TYPE',
2378 'ASSIGN_GROUP_PERM',
2380 'MARK_ITEM_AVAILABLE',
2381 'MARK_ITEM_BINDERY',
2382 'MARK_ITEM_CHECKED_OUT',
2384 'MARK_ITEM_IN_PROCESS',
2385 'MARK_ITEM_IN_TRANSIT',
2387 'MARK_ITEM_MISSING',
2388 'MARK_ITEM_MISSING_PIECES',
2389 'MARK_ITEM_ON_HOLDS_SHELF',
2390 'MARK_ITEM_ON_ORDER',
2391 'MARK_ITEM_RESHELVING',
2394 'REMOVE_USER_GROUP_LINK',
2395 'SET_CIRC_CLAIMS_RETURNED',
2396 'SET_CIRC_CLAIMS_RETURNED.override',
2399 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
2400 'UPDATE_PATRON_CLAIM_RETURN_COUNT',
2401 'UPDATE_PAYMENT_NOTE',
2402 'UPDATE_PICKUP_LIB FROM_TRANSIT',
2403 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
2404 'VIEW_BOOKING_RESOURCE',
2405 'VIEW_BOOKING_RESOURCE_TYPE',
2406 'VIEW_BOOKING_RESERVATION',
2407 'VIEW_BOOKING_RESERVATION_ATTR_MAP',
2408 'VIEW_GROUP_PENALTY_THRESHOLD',
2412 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2414 pgt.id, perm.id, aout.depth, FALSE
2416 permission.grp_tree pgt,
2417 permission.perm_list perm,
2418 actor.org_unit_type aout
2420 pgt.name = 'Circulators' AND
2421 aout.name = 'System' AND
2423 'ABORT_REMOTE_TRANSIT',
2425 'CAPTURE_RESERVATION',
2426 'CIRC_CLAIMS_RETURNED.override',
2427 'CIRC_EXCEEDS_COPY_RANGE.override',
2428 'CIRC_OVERRIDE_DUE_DATE',
2429 'CIRC_PERMIT_OVERRIDE',
2430 'COPY_ALERT_MESSAGE.override',
2431 'COPY_BAD_STATUS.override',
2432 'COPY_CIRC_NOT_ALLOWED.override',
2433 'COPY_IS_REFERENCE.override',
2434 'COPY_NEEDED_FOR_HOLD.override',
2435 'COPY_NOT_AVAILABLE.override',
2436 'COPY_STATUS_LOST.override',
2437 'COPY_STATUS_MISSING.override',
2438 'CREATE_DUPLICATE_HOLDS',
2439 'CREATE_USER_GROUP_LINK',
2441 'HOLD_EXISTS.override',
2442 'HOLD_ITEM_CHECKED_OUT.override',
2444 'ITEM_AGE_PROTECTED.override',
2445 'ITEM_ON_HOLDS_SHELF.override',
2446 'MAX_RENEWALS_REACHED.override',
2447 'OVERRIDE_HOLD_HAS_LOCAL_COPY',
2448 'PATRON_EXCEEDS_CHECKOUT_COUNT.override',
2449 'PATRON_EXCEEDS_FINES.override',
2450 'PATRON_EXCEEDS_OVERDUE_COUNT.override',
2451 'RETRIEVE_RESERVATION_PULL_LIST',
2453 'UPDATE_USER_PHOTO_URL');
2456 -- Add advanced circulation permissions to the Circulation Admin group
2458 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2460 pgt.id, perm.id, aout.depth, TRUE
2462 permission.grp_tree pgt,
2463 permission.perm_list perm,
2464 actor.org_unit_type aout
2466 pgt.name = 'Circulation Administrator' AND
2467 aout.name = 'Branch' AND
2471 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2473 pgt.id, perm.id, aout.depth, TRUE
2475 permission.grp_tree pgt,
2476 permission.perm_list perm,
2477 actor.org_unit_type aout
2479 pgt.name = 'Circulation Administrator' AND
2480 aout.name = 'Consortium' AND
2482 'ADMIN_MAX_FINE_RULE',
2483 'CREATE_CIRC_DURATION',
2485 'DELETE_CIRC_DURATION',
2487 'MARK_ITEM_MISSING_PIECES',
2488 'UPDATE_CIRC_DURATION',
2489 'UPDATE_HOLD_REQUEST_TIME',
2490 'UPDATE_NET_ACCESS_LEVEL',
2491 'VIEW_CIRC_MATRIX_MATCHPOINT',
2492 'ABORT_TRANSIT_ON_LOST',
2493 'ABORT_TRANSIT_ON_MISSING',
2494 'UPDATE_PATRON_COLLECTIONS_EXEMPT',
2495 'VIEW_HOLD_MATRIX_MATCHPOINT');
2497 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2499 pgt.id, perm.id, aout.depth, TRUE
2501 permission.grp_tree pgt,
2502 permission.perm_list perm,
2503 actor.org_unit_type aout
2505 pgt.name = 'Circulation Administrator' AND
2506 aout.name = 'System' AND
2509 'ADMIN_BOOKING_RESERVATION',
2510 'ADMIN_BOOKING_RESERVATION_ATTR_MAP',
2511 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP',
2512 'ADMIN_BOOKING_RESOURCE',
2513 'ADMIN_BOOKING_RESOURCE_ATTR',
2514 'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
2515 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
2516 'ADMIN_BOOKING_RESOURCE_TYPE',
2517 'ADMIN_COPY_LOCATION_ORDER',
2518 'ADMIN_HOLD_CANCEL_CAUSE',
2519 'ASSIGN_GROUP_PERM',
2522 'COPY_TRANSIT_RECEIVE',
2524 'CREATE_BILLING_TYPE',
2525 'CREATE_NON_CAT_TYPE',
2526 'CREATE_PATRON_STAT_CAT',
2527 'CREATE_PATRON_STAT_CAT_ENTRY',
2528 'CREATE_PATRON_STAT_CAT_ENTRY_DEFAULT',
2529 'CREATE_PATRON_STAT_CAT_ENTRY_MAP',
2530 'CREATE_USER_GROUP_LINK',
2531 'DELETE_BILLING_TYPE',
2532 'DELETE_NON_CAT_TYPE',
2533 'DELETE_PATRON_STAT_CAT',
2534 'DELETE_PATRON_STAT_CAT_ENTRY',
2535 'DELETE_PATRON_STAT_CAT_ENTRY_DEFAULT',
2536 'DELETE_PATRON_STAT_CAT_ENTRY_MAP',
2538 'group_application.user.staff',
2540 'MARK_ITEM_AVAILABLE',
2541 'MARK_ITEM_BINDERY',
2542 'MARK_ITEM_CHECKED_OUT',
2544 'MARK_ITEM_IN_PROCESS',
2545 'MARK_ITEM_IN_TRANSIT',
2547 'MARK_ITEM_MISSING',
2548 'MARK_ITEM_ON_HOLDS_SHELF',
2549 'MARK_ITEM_ON_ORDER',
2550 'MARK_ITEM_RESHELVING',
2552 'money.collections_tracker.create',
2553 'money.collections_tracker.delete',
2557 'REMOVE_USER_GROUP_LINK',
2558 'SET_CIRC_CLAIMS_RETURNED',
2559 'SET_CIRC_CLAIMS_RETURNED.override',
2563 'UPDATE_NON_CAT_TYPE',
2564 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
2565 'UPDATE_PATRON_CLAIM_RETURN_COUNT',
2566 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
2567 'UPDATE_PICKUP_LIB_FROM_TRANSIT',
2569 'VIEW_BOOKING_RESOURCE',
2570 'VIEW_BOOKING_RESOURCE_TYPE',
2571 'VIEW_BOOKING_RESERVATION',
2572 'VIEW_BOOKING_RESERVATION_ATTR_MAP',
2573 'VIEW_REPORT_OUTPUT',
2575 'TRANSIT_CHECKIN_INTERVAL_BLOCK.override',
2577 'ACTOR_USER_DELETE_OPEN_XACTS.override',
2578 'PATRON_EXCEEDS_LOST_COUNT.override',
2579 'MAX_HOLDS.override',
2580 'ITEM_DEPOSIT_REQUIRED.override',
2581 'ITEM_RENTAL_FEE_REQUIRED.override',
2582 'ITEM_DEPOSIT_PAID.override',
2583 'COPY_STATUS_LOST_AND_PAID.override',
2584 'ADMIN_PRINT_TEMPLATE',
2585 'ITEM_NOT_HOLDABLE.override');
2588 -- Add basic sys admin permissions to the Local Administrator group
2590 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2592 pgt.id, perm.id, aout.depth, TRUE
2594 permission.grp_tree pgt,
2595 permission.perm_list perm,
2596 actor.org_unit_type aout
2598 pgt.name = 'Local Administrator' AND
2599 aout.name = 'Branch' AND
2604 -- Add administration permissions to the System Administrator group
2606 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2608 pgt.id, perm.id, aout.depth, TRUE
2610 permission.grp_tree pgt,
2611 permission.perm_list perm,
2612 actor.org_unit_type aout
2614 pgt.name = 'System Administrator' AND
2615 aout.name = 'System' AND
2619 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2621 pgt.id, perm.id, aout.depth, FALSE
2623 permission.grp_tree pgt,
2624 permission.perm_list perm,
2625 actor.org_unit_type aout
2627 pgt.name = 'System Administrator' AND
2628 aout.name = 'Consortium' AND
2629 perm.code ~ '^VIEW_TRIGGER';
2632 -- Add administration permissions to the Global Administrator group
2634 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2636 pgt.id, perm.id, aout.depth, TRUE
2638 permission.grp_tree pgt,
2639 permission.perm_list perm,
2640 actor.org_unit_type aout
2642 pgt.name = 'Global Administrator' AND
2643 aout.name = 'Consortium' AND
2648 -- Add basic acquisitions permissions to the Acquisitions group
2650 SELECT SETVAL('permission.grp_perm_map_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_perm_map));
2652 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2654 pgt.id, perm.id, aout.depth, FALSE
2656 permission.grp_tree pgt,
2657 permission.perm_list perm,
2658 actor.org_unit_type aout
2660 pgt.name = 'Acquisitions' AND
2661 aout.name = 'Consortium' AND
2663 'ACQ_ADD_LINEITEM_IDENTIFIER',
2664 'ACQ_INVOICE-REOPEN',
2665 'ACQ_SET_LINEITEM_IDENTIFIER',
2667 'ADMIN_ACQ_DISTRIB_FORMULA',
2671 'CLEAR_PURCHASE_REQUEST',
2672 'CREATE_BIB_IMPORT_QUEUE',
2673 'CREATE_IMPORT_ITEM',
2678 'CREATE_PURCHASE_ORDER',
2679 'DELETE_BIB_IMPORT_QUEUE',
2680 'DELETE_IMPORT_ITEM',
2683 'DELETE_VOLUME_NOTE',
2685 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
2686 'IMPORT_ACQ_LINEITEM_BIB_RECORD_UPLOAD',
2690 'MANAGE_FUNDING_SOURCE',
2692 'MARK_ITEM_AVAILABLE',
2693 'MARK_ITEM_BINDERY',
2694 'MARK_ITEM_CHECKED_OUT',
2696 'MARK_ITEM_IN_PROCESS',
2697 'MARK_ITEM_IN_TRANSIT',
2699 'MARK_ITEM_MISSING',
2700 'MARK_ITEM_ON_HOLDS_SHELF',
2701 'MARK_ITEM_ON_ORDER',
2702 'MARK_ITEM_RESHELVING',
2703 'RECEIVE_PURCHASE_ORDER',
2704 'UPDATE_BATCH_COPY',
2705 'UPDATE_BIB_IMPORT_QUEUE',
2708 'UPDATE_FUND_ALLOCATION',
2709 'UPDATE_FUNDING_SOURCE',
2710 'UPDATE_IMPORT_ITEM',
2715 'user_request.delete',
2716 'user_request.update',
2717 'user_request.view',
2718 'VIEW_ACQ_FUND_ALLOCATION_PERCENT',
2719 'VIEW_ACQ_FUNDING_SOURCE',
2721 'VIEW_FUND_ALLOCATION',
2722 'VIEW_FUNDING_SOURCE',
2725 'VIEW_ORG_SETTINGS',
2728 'VIEW_PURCHASE_ORDER',
2729 'VIEW_IMPORT_MATCH_SET',
2730 'VIEW_MERGE_PROFILE',
2731 'VIEW_REPORT_OUTPUT');
2734 -- Add acquisitions administration permissions to the Acquisitions Admin group
2736 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2738 pgt.id, perm.id, aout.depth, TRUE
2740 permission.grp_tree pgt,
2741 permission.perm_list perm,
2742 actor.org_unit_type aout
2744 pgt.name = 'Acquisitions Administrator' AND
2745 aout.name = 'Consortium' AND
2747 'ACQ_INVOICE_REOPEN',
2748 'ACQ_XFER_MANUAL_DFUND_AMOUNT',
2749 'ADMIN_ACQ_CANCEL_CAUSE',
2751 'ADMIN_ACQ_CLAIM_EVENT_TYPE',
2752 'ADMIN_ACQ_CLAIM_TYPE',
2753 'ADMIN_ACQ_DISTRIB_FORMULA',
2754 'ADMIN_ACQ_FISCAL_YEAR',
2756 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT',
2757 'ADMIN_ACQ_FUND_TAG',
2758 'ADMIN_ACQ_LINE_ITEM_ALERT_TEXT',
2759 'ADMIN_CLAIM_POLICY',
2760 'ADMIN_CURRENCY_TYPE',
2762 'ADMIN_FUNDING_SOURCE',
2764 'ADMIN_INVOICE_METHOD',
2765 'ADMIN_INVOICE_PAYMENT_METHOD',
2766 'ADMIN_LINEITEM_MARC_ATTR_DEF',
2768 'ADMIN_USER_REQUEST_TYPE',
2769 'CREATE_ACQ_FUNDING_SOURCE',
2771 'CREATE_FUND_ALLOCATION',
2772 'CREATE_FUNDING_SOURCE',
2773 'CREATE_INVOICE_ITEM_TYPE',
2774 'CREATE_INVOICE_METHOD',
2776 'DELETE_ACQ_FUNDING_SOURCE',
2778 'DELETE_FUND_ALLOCATION',
2779 'DELETE_FUNDING_SOURCE',
2780 'DELETE_INVOICE_ITEM_TYPE',
2781 'DELETE_INVOICE_METHOD',
2784 'CREATE_REPORT_TEMPLATE',
2785 'SHARE_REPORT_FOLDER',
2786 'UPDATE_ACQ_FUNDING_SOURCE',
2787 'UPDATE_INVOICE_ITEM_TYPE',
2788 'UPDATE_INVOICE_METHOD',
2790 'VIEW_FUNDING_SOURCE',
2791 'VIEW_FUND_ALLOCATION',
2794 'VIEW_PURCHASE_ORDER',
2797 'ACQ_ADD_LINEITEM_IDENTIFIER',
2798 'ACQ_SET_LINEITEM_IDENTIFIER',
2801 'CREATE_PURCHASE_ORDER',
2802 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
2803 'IMPORT_ACQ_LINEITEM_BIB_RECORD_UPLOAD',
2806 'MANAGE_FUNDING_SOURCE',
2807 'RECEIVE_PURCHASE_ORDER',
2808 'ADMIN_ACQ_LINEITEM_ALERT_TEXT',
2809 'UPDATE_FUNDING_SOURCE',
2811 'VIEW_IMPORT_MATCH_SET',
2812 'VIEW_MERGE_PROFILE',
2817 -- Add serials permissions to the Serials group
2819 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2821 pgt.id, perm.id, aout.depth, FALSE
2823 permission.grp_tree pgt,
2824 permission.perm_list perm,
2825 actor.org_unit_type aout
2827 pgt.name = 'Serials' AND
2828 aout.name = 'System' AND
2830 'ADMIN_ASSET_COPY_TEMPLATE',
2831 'ADMIN_SERIAL_CAPTION_PATTERN',
2832 'ADMIN_SERIAL_DISTRIBUTION',
2833 'ADMIN_SERIAL_ITEM',
2834 'ADMIN_SERIAL_PATTERN_TEMPLATE',
2835 'ADMIN_SERIAL_STREAM',
2836 'ADMIN_SERIAL_SUBSCRIPTION',
2841 -- Add basic staff permissions to the Volunteers group
2843 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2845 pgt.id, perm.id, aout.depth, FALSE
2847 permission.grp_tree pgt,
2848 permission.perm_list perm,
2849 actor.org_unit_type aout
2851 pgt.name = 'Volunteers' AND
2852 aout.name = 'Branch' AND
2856 'CREATE_IN_HOUSE_USE',
2858 'VIEW_BILLING_TYPE',
2860 'VIEW_COPY_CHECKOUT',
2865 'VIEW_USER_FINES_SUMMARY',
2866 'VIEW_USER_TRANSACTIONS');
2868 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2870 pgt.id, perm.id, aout.depth, FALSE
2872 permission.grp_tree pgt,
2873 permission.perm_list perm,
2874 actor.org_unit_type aout
2876 pgt.name = 'Volunteers' AND
2877 aout.name = 'Consortium' AND
2879 'CREATE_COPY_TRANSIT',
2880 'CREATE_TRANSACTION',
2884 'VIEW_ORG_SETTINGS');
2887 -- Admin user account
2888 INSERT INTO actor.passwd_type
2889 (code, name, login, crypt_algo, iter_count)
2890 VALUES ('main', 'Main Login Password', TRUE, 'bf', 10);
2892 INSERT INTO actor.usr ( profile, card, usrname, passwd, first_given_name, family_name, dob, master_account, super_user, ident_type, ident_value, home_ou ) VALUES ( 1, 1, md5(random()::text), md5(random()::text), 'Administrator', 'System Account', '1979-01-22', TRUE, TRUE, 1, 'identification', 1 );
2894 -- Admin user barcode
2895 INSERT INTO actor.card (usr, barcode) VALUES (1,md5(random()::text));
2896 UPDATE actor.usr SET card = (SELECT currval('actor.card_id_seq')) WHERE id = 1;
2898 -- Admin user permissions
2899 INSERT INTO permission.usr_perm_map (usr,perm,depth) VALUES (1,-1,0);
2901 -- Set a work_ou for the Administrator user
2902 INSERT INTO permission.usr_work_ou_map (usr, work_ou) VALUES (1, 1);
2904 --010.schema.biblio.sql:
2905 INSERT INTO biblio.record_entry VALUES (-1,1,1,1,-1,NOW(),NOW(),FALSE,FALSE,'','AUTOGEN','-1','<record xmlns="http://www.loc.gov/MARC21/slim"/>','FOO');
2907 --040.schema.asset.sql:
2908 INSERT INTO asset.copy_location (id, name,owning_lib) VALUES (1, oils_i18n_gettext(1, 'Stacks', 'acpl', 'name'),1);
2909 SELECT SETVAL('asset.copy_location_id_seq'::TEXT, 100);
2911 INSERT INTO asset.call_number_suffix (id, owning_lib, label) VALUES (-1, 1, '');
2912 INSERT INTO asset.call_number_prefix (id, owning_lib, label) VALUES (-1, 1, '');
2913 INSERT INTO asset.call_number VALUES (-1,1,NOW(),1,NOW(),-1,1,'UNCATALOGED');
2915 --090.schema.action.sql
2916 INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (1, oils_i18n_gettext(1, 'Untargeted expiration', 'ahrcc', 'label'));
2917 INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (2, oils_i18n_gettext(2, 'Hold Shelf expiration', 'ahrcc', 'label'));
2918 INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (3, oils_i18n_gettext(3, 'Patron via phone', 'ahrcc', 'label'));
2919 INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (4, oils_i18n_gettext(4, 'Patron in person', 'ahrcc', 'label'));
2920 INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (5, oils_i18n_gettext(5, 'Staff forced', 'ahrcc', 'label'));
2921 INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (6, oils_i18n_gettext(6, 'Patron via OPAC', 'ahrcc', 'label'));
2922 INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (7, oils_i18n_gettext(7, 'Patron via SIP', 'ahrcc', 'label'));
2923 INSERT INTO action.hold_request_cancel_cause (id,label) VALUES (8, oils_i18n_gettext(8, 'Hold Group Event rollback', 'ahrcc', 'label'));
2924 SELECT SETVAL('action.hold_request_cancel_cause_id_seq', 100);
2928 INSERT INTO config.circ_matrix_matchpoint (org_unit,grp,circulate,duration_rule,recurring_fine_rule,max_fine_rule) VALUES (1,1,true,11,1,1);
2930 INSERT INTO config.circ_matrix_weights(name, org_unit, grp, circ_modifier, copy_location, marc_type, marc_form, marc_bib_level, marc_vr_format, copy_circ_lib, copy_owning_lib, user_home_ou, ref_flag, juvenile_flag, is_renewal, usr_age_upper_bound, usr_age_lower_bound, item_age) VALUES
2931 ('Default', 10.0, 11.0, 5.0, 5.0, 4.0, 3.0, 2.0, 2.0, 8.0, 8.0, 8.0, 1.0, 6.0, 7.0, 0.0, 0.0, 0.0),
2932 ('Org_Unit_First', 11.0, 10.0, 5.0, 5.0, 4.0, 3.0, 2.0, 2.0, 8.0, 8.0, 8.0, 1.0, 6.0, 7.0, 0.0, 0.0, 0.0),
2933 ('Item_Owner_First', 8.0, 8.0, 5.0, 5.0, 4.0, 3.0, 2.0, 2.0, 10.0, 11.0, 8.0, 1.0, 6.0, 7.0, 0.0, 0.0, 0.0),
2934 ('All_Equal', 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
2936 -- hold matrix - 110.hold_matrix.sql:
2937 INSERT INTO config.hold_matrix_matchpoint (requestor_grp) VALUES (1);
2939 INSERT INTO config.hold_matrix_weights(name, user_home_ou, request_ou, pickup_ou, item_owning_ou, item_circ_ou, usr_grp, requestor_grp, circ_modifier, marc_type, marc_form, marc_bib_level, marc_vr_format, juvenile_flag, ref_flag, item_age) VALUES
2940 ('Default', 5.0, 5.0, 5.0, 5.0, 5.0, 7.0, 8.0, 4.0, 3.0, 2.0, 1.0, 1.0, 4.0, 0.0, 0.0),
2941 ('Item_Owner_First', 5.0, 5.0, 5.0, 8.0, 7.0, 5.0, 5.0, 4.0, 3.0, 2.0, 1.0, 1.0, 4.0, 0.0, 0.0),
2942 ('User_Before_Requestor', 5.0, 5.0, 5.0, 5.0, 5.0, 8.0, 7.0, 4.0, 3.0, 2.0, 1.0, 1.0, 4.0, 0.0, 0.0),
2943 ('All_Equal', 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0);
2945 -- dynamic weight associations
2946 INSERT INTO config.weight_assoc(active, org_unit, circ_weights, hold_weights) VALUES
2949 -- User setting types
2950 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2951 VALUES ('opac.default_font', TRUE,
2952 oils_i18n_gettext('opac.default_font', 'OPAC Font Size', 'cust', 'label'),
2953 oils_i18n_gettext('opac.default_font', 'OPAC Font Size', 'cust', 'description'),
2956 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2957 VALUES ('opac.default_search_depth', TRUE,
2958 oils_i18n_gettext('opac.default_search_depth', 'OPAC Search Depth', 'cust', 'label'),
2959 oils_i18n_gettext('opac.default_search_depth', 'OPAC Search Depth', 'cust', 'description'),
2962 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2963 VALUES ('opac.default_search_location', TRUE,
2964 oils_i18n_gettext('opac.default_search_location', 'OPAC Search Location', 'cust', 'label'),
2965 oils_i18n_gettext('opac.default_search_location', 'OPAC Search Location', 'cust', 'description'),
2968 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2969 VALUES ('opac.hits_per_page', TRUE,
2970 oils_i18n_gettext('opac.hits_per_page', 'Hits per Page', 'cust', 'label'),
2971 oils_i18n_gettext('opac.hits_per_page', 'Hits per Page', 'cust', 'description'),
2974 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2975 VALUES ('opac.hold_notify', TRUE,
2976 oils_i18n_gettext('opac.hold_notify', 'Hold Notification Format', 'cust', 'label'),
2977 oils_i18n_gettext('opac.hold_notify', 'Hold Notification Format', 'cust', 'description'),
2980 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2981 VALUES ('staff_client.catalog.record_view.default', TRUE,
2982 oils_i18n_gettext('staff_client.catalog.record_view.default', 'Default Record View', 'cust', 'label'),
2983 oils_i18n_gettext('staff_client.catalog.record_view.default', 'Default Record View', 'cust', 'description'),
2986 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2987 VALUES ('staff_client.copy_editor.templates', TRUE,
2988 oils_i18n_gettext('staff_client.copy_editor.templates', 'Copy Editor Template', 'cust', 'label'),
2989 oils_i18n_gettext('staff_client.copy_editor.templates', 'Copy Editor Template', 'cust', 'description'),
2992 INSERT INTO config.usr_setting_type (name, label, description, datatype)
2993 VALUES ('webstaff.cat.copy.templates',
2994 oils_i18n_gettext('webstaff.cat.copy.templates', 'Web Client Copy Editor Templates', 'cust', 'label'),
2995 oils_i18n_gettext('webstaff.cat.copy.templates', 'Web Client Copy Editor Templates', 'cust', 'description'),
2998 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
2999 VALUES ('circ.holds_behind_desk', FALSE,
3000 oils_i18n_gettext('circ.holds_behind_desk', 'Hold is behind Circ Desk', 'cust', 'label'),
3001 oils_i18n_gettext('circ.holds_behind_desk', 'Hold is behind Circ Desk', 'cust', 'description'),
3004 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
3005 VALUES ('opac.default_pickup_location', TRUE,
3006 oils_i18n_gettext('opac.default_pickup_location', 'Default Hold Pickup Location', 'cust', 'label'),
3007 oils_i18n_gettext('opac.default_pickup_location', 'Default location for holds pickup', 'cust', 'description'),
3010 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
3012 'opac.lists_per_page',
3015 'opac.lists_per_page',
3021 'opac.lists_per_page',
3022 'A number designating the amount of lists displayed per page.',
3029 INSERT INTO config.usr_setting_type (name,opac_visible,label,description,datatype)
3031 'opac.list_items_per_page',
3034 'opac.list_items_per_page',
3035 'List Items per Page',
3040 'opac.list_items_per_page',
3041 'A number designating the amount of list items displayed per page of a selected list.',
3048 INSERT INTO config.usr_setting_type (
3056 'circ.default_overdue_notices_enabled',
3059 'circ.default_overdue_notices_enabled',
3060 'Receive Overdue and Courtesy Emails',
3065 'circ.default_overdue_notices_enabled',
3066 'Receive overdue and predue email notifications',
3074 INSERT INTO config.usr_setting_type (
3082 'circ.collections.exempt',
3085 'circ.collections.exempt',
3086 'Collections: Exempt',
3091 'circ.collections.exempt',
3092 'User is exempt from collections tracking/processing',
3100 -- Add groups for org_unit settings
3101 INSERT INTO config.settings_group (name, label) VALUES
3102 ('acq', oils_i18n_gettext('acq', 'Acquisitions', 'csg', 'label')),
3103 ('sys', oils_i18n_gettext('sys', 'System', 'csg', 'label')),
3104 ('gui', oils_i18n_gettext('gui', 'GUI', 'csg', 'label')),
3105 ('lib', oils_i18n_gettext('lib', 'Library', 'csg', 'label')),
3106 ('sec', oils_i18n_gettext('sec', 'Security', 'csg', 'label')),
3107 ('cat', oils_i18n_gettext('cat', 'Cataloging', 'csg', 'label')),
3108 ('holds', oils_i18n_gettext('holds', 'Holds', 'csg', 'label')),
3109 ('circ', oils_i18n_gettext('circ', 'Circulation', 'csg', 'label')),
3110 ('self', oils_i18n_gettext('self', 'Self Check', 'csg', 'label')),
3111 ('opac', oils_i18n_gettext('opac', 'OPAC', 'csg', 'label')),
3112 ('prog', oils_i18n_gettext('prog', 'Program', 'csg', 'label')),
3113 ('glob', oils_i18n_gettext('glob', 'Global', 'csg', 'label')),
3114 ('finance', oils_i18n_gettext('finance', 'Finances', 'csg', 'label')),
3115 ('credit', oils_i18n_gettext('credit', 'Credit Card Processing', 'csg', 'label')),
3116 ('serial', oils_i18n_gettext('serial', 'Serials', 'csg', 'label')),
3117 ('recall', oils_i18n_gettext('recall', 'Recalls', 'csg', 'label')),
3118 ('booking', oils_i18n_gettext('booking', 'Booking', 'csg', 'label')),
3119 ('offline', oils_i18n_gettext('offline', 'Offline', 'csg', 'label')),
3120 ('receipt_template', oils_i18n_gettext('receipt_template', 'Receipt Template', 'csg', 'label')),
3121 ('sms', oils_i18n_gettext('sms','SMS Text Messages','csg','label')),
3122 ('vandelay', oils_i18n_gettext('vandelay','Vandelay','csg','label'))
3126 INSERT INTO acq.user_request_type (id,label) VALUES (1, oils_i18n_gettext('1', 'Books', 'aurt', 'label'));
3127 INSERT INTO acq.user_request_type (id,label) VALUES (2, oils_i18n_gettext('2', 'Articles', 'aurt', 'label'));
3128 INSERT INTO acq.user_request_type (id,label) VALUES (3, oils_i18n_gettext('3', 'Audiobooks', 'aurt', 'label'));
3129 INSERT INTO acq.user_request_type (id,label) VALUES (4, oils_i18n_gettext('4', 'Music', 'aurt', 'label'));
3130 INSERT INTO acq.user_request_type (id,label) VALUES (5, oils_i18n_gettext('5', 'DVDs', 'aurt', 'label'));
3131 INSERT INTO acq.user_request_type (id,label) VALUES (6, oils_i18n_gettext('6', 'Other', 'aurt', 'label'));
3133 SELECT SETVAL('acq.user_request_type_id_seq'::TEXT, 7);
3136 -- org_unit setting types
3137 INSERT into config.org_unit_setting_type
3138 ( name, grp, label, description, datatype, fm_class ) VALUES
3140 ( 'acq.copy_creator_uses_receiver', 'acq',
3141 oils_i18n_gettext('acq.copy_creator_uses_receiver',
3142 'Set copy creator as receiver',
3144 oils_i18n_gettext('acq.copy_creator_uses_receiver',
3145 'When receiving a copy in acquisitions, set the copy "creator" to be the staff that received the copy',
3146 'coust', 'description'),
3148 ,( 'acq.copy_status_on_receiving', 'acq',
3149 oils_i18n_gettext('acq.copy_status_on_receiving',
3150 'Initial status for received items',
3152 oils_i18n_gettext('acq.copy_status_on_receiving',
3153 'Allows staff to designate a custom copy status on received lineitems. Default status is "In Process".',
3154 'coust', 'description'),
3156 ,( 'acq.default_circ_modifier', 'acq',
3157 oils_i18n_gettext('acq.default_circ_modifier',
3158 'Default circulation modifier',
3160 oils_i18n_gettext('acq.default_circ_modifier',
3161 'Default circulation modifier',
3162 'coust', 'description'),
3165 ,( 'acq.default_copy_location', 'acq',
3166 oils_i18n_gettext('acq.default_copy_location',
3167 'Default copy location',
3169 oils_i18n_gettext('acq.default_copy_location',
3170 'Default copy location',
3171 'coust', 'description'),
3174 ,( 'acq.fund.balance_limit.block', 'acq',
3175 oils_i18n_gettext('acq.fund.balance_limit.block',
3176 'Fund Spending Limit for Block',
3178 oils_i18n_gettext('acq.fund.balance_limit.block',
3179 'When the amount remaining in the fund, including spent money and encumbrances, goes below this percentage, attempts to spend from the fund will be blocked.',
3180 'coust', 'description'),
3183 ,( 'acq.fund.balance_limit.warn', 'acq',
3184 oils_i18n_gettext('acq.fund.balance_limit.warn',
3185 'Fund Spending Limit for Warning',
3187 oils_i18n_gettext('acq.fund.balance_limit.warn',
3188 'When the amount remaining in the fund, including spent money and encumbrances, goes below this percentage, attempts to spend from the fund will result in a warning to the staff.',
3189 'coust', 'description'),
3192 ,( 'acq.tmp_barcode_prefix', 'acq',
3193 oils_i18n_gettext('acq.tmp_barcode_prefix',
3194 'Temporary barcode prefix',
3196 oils_i18n_gettext('acq.tmp_barcode_prefix',
3197 'Temporary barcode prefix',
3198 'coust', 'description'),
3201 ,( 'acq.tmp_callnumber_prefix', 'acq',
3202 oils_i18n_gettext('acq.tmp_callnumber_prefix',
3203 'Temporary call number prefix',
3205 oils_i18n_gettext('acq.tmp_callnumber_prefix',
3206 'Temporary call number prefix',
3207 'coust', 'description'),
3210 ,( 'auth.opac_timeout', 'sec',
3211 oils_i18n_gettext('auth.opac_timeout',
3212 'OPAC Inactivity Timeout (in seconds)',
3214 oils_i18n_gettext('auth.opac_timeout',
3215 'OPAC Inactivity Timeout (in seconds)',
3216 'coust', 'description'),
3219 ,( 'auth.persistent_login_interval', 'sec',
3220 oils_i18n_gettext('auth.persistent_login_interval',
3221 'Persistent Login Duration',
3223 oils_i18n_gettext('auth.persistent_login_interval',
3224 'How long a persistent login lasts. E.g. ''2 weeks''',
3225 'coust', 'description'),
3228 ,( 'auth.staff_timeout', 'sec',
3229 oils_i18n_gettext('auth.staff_timeout',
3230 'Staff Login Inactivity Timeout (in seconds)',
3232 oils_i18n_gettext('auth.staff_timeout',
3233 'Staff Login Inactivity Timeout (in seconds)',
3234 'coust', 'description'),
3237 ,( 'booking.allow_email_notify', 'booking',
3238 oils_i18n_gettext('booking.allow_email_notify',
3239 'Allow Email Notify',
3241 oils_i18n_gettext('booking.allow_email_notify',
3242 'Permit email notification when a reservation is ready for pickup.',
3243 'coust', 'description'),
3246 ,( 'cat.bib.alert_on_empty', 'gui',
3247 oils_i18n_gettext('cat.bib.alert_on_empty',
3248 'Alert on empty bib records',
3250 oils_i18n_gettext('cat.bib.alert_on_empty',
3251 'Alert staff when the last copy for a record is being deleted',
3252 'coust', 'description'),
3255 ,( 'cat.bib.delete_on_no_copy_via_acq_lineitem_cancel', 'cat',
3256 oils_i18n_gettext('cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
3257 'Delete bib if all copies are deleted via Acquisitions lineitem cancellation.',
3259 oils_i18n_gettext('cat.bib.delete_on_no_copy_via_acq_lineitem_cancel',
3260 'Delete bib if all copies are deleted via Acquisitions lineitem cancellation.',
3261 'coust', 'description'),
3264 ,( 'cat.bib.keep_on_empty', 'prog',
3265 oils_i18n_gettext('cat.bib.keep_on_empty',
3266 'Retain empty bib records',
3268 oils_i18n_gettext('cat.bib.keep_on_empty',
3269 'Retain a bib record even when all attached copies are deleted',
3270 'coust', 'description'),
3273 ,( 'cat.default_classification_scheme', 'cat',
3274 oils_i18n_gettext('cat.default_classification_scheme',
3275 'Default Classification Scheme',
3277 oils_i18n_gettext('cat.default_classification_scheme',
3278 'Defines the default classification scheme for new call numbers: 1 = Generic; 2 = Dewey; 3 = LC',
3279 'coust', 'description'),
3282 ,( 'cat.default_copy_status_fast', 'cat',
3283 oils_i18n_gettext('cat.default_copy_status_fast',
3284 'Default copy status (fast add)',
3286 oils_i18n_gettext('cat.default_copy_status_fast',
3287 'Default status when a copy is created using the "Fast Add" interface.',
3288 'coust', 'description'),
3291 ,( 'cat.default_copy_status_normal', 'cat',
3292 oils_i18n_gettext('cat.default_copy_status_normal',
3293 'Default copy status (normal)',
3295 oils_i18n_gettext('cat.default_copy_status_normal',
3296 'Default status when a copy is created using the normal volume/copy creator interface.',
3297 'coust', 'description'),
3300 ,( 'cat.default_item_price', 'finance',
3301 oils_i18n_gettext('cat.default_item_price',
3302 'Default Item Price',
3304 oils_i18n_gettext('cat.default_item_price',
3305 'Default Item Price',
3306 'coust', 'description'),
3309 ,( 'circ.min_item_price', 'finance',
3310 oils_i18n_gettext('circ.min_item_price',
3311 'Minimum Item Price',
3313 oils_i18n_gettext('circ.min_item_price',
3314 'When charging for lost items, charge this amount as a minimum.',
3315 'coust', 'description'),
3318 ,( 'circ.max_item_price', 'finance',
3319 oils_i18n_gettext('circ.max_item_price',
3320 'Maximum Item Price',
3322 oils_i18n_gettext('circ.max_item_price',
3323 'When charging for lost items, limit the charge to this as a maximum.',
3324 'coust', 'description'),
3327 ,( 'cat.label.font.family', 'cat',
3328 oils_i18n_gettext('cat.label.font.family',
3329 'Spine and pocket label font family',