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'),
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 ( 480, 'VIEW_STANDING_PENALTY', oils_i18n_gettext( 480,
1660 'VIEW_STANDING_PENALTY', 'ppl', 'description' )),
1661 ( 481, 'ADMIN_SERIAL_CAPTION_PATTERN', oils_i18n_gettext( 481,
1662 'ADMIN_SERIAL_CAPTION_PATTERN', 'ppl', 'description' )),
1663 ( 482, 'ADMIN_SERIAL_DISTRIBUTION', oils_i18n_gettext( 482,
1664 'ADMIN_SERIAL_DISTRIBUTION', 'ppl', 'description' )),
1665 ( 483, 'ADMIN_SERIAL_STREAM', oils_i18n_gettext( 483,
1666 'ADMIN_SERIAL_STREAM', 'ppl', 'description' )),
1667 ( 484, 'RECEIVE_SERIAL', oils_i18n_gettext(484,
1668 'Receive serial items', 'ppl', 'description')),
1669 ( 485, 'CREATE_VOLUME_SUFFIX', oils_i18n_gettext(485,
1670 'Create suffix label definition.', 'ppl', 'description')),
1671 ( 486, 'UPDATE_VOLUME_SUFFIX', oils_i18n_gettext(486,
1672 'Update suffix label definition.', 'ppl', 'description')),
1673 ( 487, 'DELETE_VOLUME_SUFFIX', oils_i18n_gettext(487,
1674 'Delete suffix label definition.', 'ppl', 'description')),
1675 ( 488, 'CREATE_VOLUME_PREFIX', oils_i18n_gettext(488,
1676 'Create prefix label definition.', 'ppl', 'description')),
1677 ( 489, 'UPDATE_VOLUME_PREFIX', oils_i18n_gettext(489,
1678 'Update prefix label definition.', 'ppl', 'description')),
1679 ( 490, 'DELETE_VOLUME_PREFIX', oils_i18n_gettext(490,
1680 'Delete prefix label definition.', 'ppl', 'description')),
1681 ( 491, 'CREATE_MONOGRAPH_PART', oils_i18n_gettext(491,
1682 'Create monograph part definition.', 'ppl', 'description')),
1683 ( 492, 'UPDATE_MONOGRAPH_PART', oils_i18n_gettext(492,
1684 'Update monograph part definition.', 'ppl', 'description')),
1685 ( 493, 'DELETE_MONOGRAPH_PART', oils_i18n_gettext(493,
1686 'Delete monograph part definition.', 'ppl', 'description')),
1687 ( 494, 'ADMIN_CODED_VALUE', oils_i18n_gettext(494,
1688 'Create/Update/Delete SVF Record Attribute Coded Value Map', 'ppl', 'description')),
1689 ( 495, 'ADMIN_SERIAL_ITEM', oils_i18n_gettext(495,
1690 'Create/Retrieve/Update/Delete Serial Item', 'ppl', 'description')),
1691 ( 496, 'ADMIN_SVF', oils_i18n_gettext(496,
1692 'Create/Update/Delete SVF Record Attribute Defintion', 'ppl', 'description')),
1693 ( 497, 'CREATE_BIB_PTYPE', oils_i18n_gettext(497,
1694 'Create Bibliographic Record Peer Type', 'ppl', 'description')),
1695 ( 498, 'CREATE_PURCHASE_REQUEST', oils_i18n_gettext(498,
1696 'Create User Purchase Request', 'ppl', 'description')),
1697 ( 499, 'DELETE_BIB_PTYPE', oils_i18n_gettext(499,
1698 'Delete Bibliographic Record Peer Type', 'ppl', 'description')),
1699 ( 500, 'MAP_MONOGRAPH_PART', oils_i18n_gettext(500,
1700 'Create/Update/Delete Copy Monograph Part Map', 'ppl', 'description')),
1701 ( 501, 'MARK_ITEM_MISSING_PIECES', oils_i18n_gettext(501,
1702 'Allows the Mark Item Missing Pieces action.', 'ppl', 'description')),
1703 ( 502, 'UPDATE_BIB_PTYPE', oils_i18n_gettext(502,
1704 'Update Bibliographic Record Peer Type', 'ppl', 'description')),
1705 ( 503, 'UPDATE_HOLD_REQUEST_TIME', oils_i18n_gettext(503,
1706 'Allows editing of a hold''s request time, and/or its Cut-in-line/Top-of-queue flag.', 'ppl', 'description')),
1707 ( 504, 'UPDATE_PICKLIST', oils_i18n_gettext(504,
1708 'Allows update/re-use of an acquisitions pick/selection list.', 'ppl', 'description')),
1709 ( 505, 'UPDATE_WORKSTATION', oils_i18n_gettext(505,
1710 'Allows update of a workstation during workstation registration override.', 'ppl', 'description')),
1711 ( 506, 'VIEW_USER_SETTING_TYPE', oils_i18n_gettext(506,
1712 'Allows viewing of configurable user setting types.', 'ppl', 'description')),
1713 ( 507, 'ABORT_TRANSIT_ON_LOST', oils_i18n_gettext(507,
1714 'Allows a user to cancel a transit on a copy with status of LOST', 'ppl', 'description')),
1715 ( 508, 'ABORT_TRANSIT_ON_MISSING', oils_i18n_gettext(508,
1716 'Allows a user to cancel a transit on a copy with status of MISSING', 'ppl', 'description')),
1717 ( 509, 'TRANSIT_CHECKIN_INTERVAL_BLOCK.override', oils_i18n_gettext(509,
1718 'Allows a user to override the TRANSIT_CHECKIN_INTERVAL_BLOCK event', 'ppl', 'description')),
1719 ( 510, 'UPDATE_PATRON_COLLECTIONS_EXEMPT', oils_i18n_gettext(510,
1720 'Allows a user to indicate that a patron is exempt from collections processing', 'ppl', 'description')),
1721 ( 511, 'PERSISTENT_LOGIN', oils_i18n_gettext( 511,
1722 'Allows a user to authenticate and get a long-lived session (length configured in opensrf.xml)', 'ppl', 'description' )),
1723 ( 512, 'ACQ_INVOICE_REOPEN', oils_i18n_gettext( 512,
1724 'Allows a user to reopen an Acquisitions invoice', 'ppl', 'description' )),
1725 ( 513, 'DEBUG_CLIENT', oils_i18n_gettext( 513,
1726 'Allows a user to use debug functions in the staff client', 'ppl', 'description' )),
1727 ( 514, 'UPDATE_PATRON_ACTIVE_CARD', oils_i18n_gettext( 514,
1728 'Allows a user to manually adjust a patron''s active cards', 'ppl', 'description')),
1729 ( 515, 'UPDATE_PATRON_PRIMARY_CARD', oils_i18n_gettext( 515,
1730 'Allows a user to manually adjust a patron''s primary card', 'ppl', 'description')),
1731 ( 516, 'CREATE_REPORT_TEMPLATE', oils_i18n_gettext( 516,
1732 'Allows a user to create report templates', 'ppl', 'description' )),
1733 ( 517, 'COPY_HOLDS_FORCE', oils_i18n_gettext( 517,
1734 'Allow a user to place a force hold on a specific copy', 'ppl', 'description' )),
1735 ( 518, 'COPY_HOLDS_RECALL', oils_i18n_gettext( 518,
1736 'Allow a user to place a cataloging recall on a specific copy', 'ppl', 'description' )),
1737 ( 519, 'ADMIN_SMS_CARRIER', oils_i18n_gettext( 519,
1738 'Allows a user to add/create/delete SMS Carrier entries.', 'ppl', 'description' )),
1739 ( 520, 'COPY_DELETE_WARNING.override', oils_i18n_gettext( 520,
1740 'Allow a user to override warnings about deleting copies in problematic situations.', 'ppl', 'description' )),
1741 ( 521, 'IMPORT_ACQ_LINEITEM_BIB_RECORD_UPLOAD', oils_i18n_gettext( 521,
1742 'Allows a user to create new bibs directly from an ACQ MARC file upload', 'ppl', 'description' )),
1743 ( 522, 'IMPORT_AUTHORITY_MARC', oils_i18n_gettext( 522,
1744 'Allows a user to create new authority records', 'ppl', 'description' )),
1745 ( 523, 'ADMIN_TOOLBAR', oils_i18n_gettext( 523,
1746 'Allows a user to create, edit, and delete custom toolbars', 'ppl', 'description' )),
1747 ( 524, 'PLACE_UNFILLABLE_HOLD', oils_i18n_gettext( 524,
1748 'Allows a user to place a hold that cannot currently be filled.', 'ppl', 'description' )),
1749 ( 525, 'CREATE_PATRON_STAT_CAT_ENTRY_DEFAULT', oils_i18n_gettext( 525,
1750 'User may set a default entry in a patron statistical category', 'ppl', 'description' )),
1751 ( 526, 'UPDATE_PATRON_STAT_CAT_ENTRY_DEFAULT', oils_i18n_gettext( 526,
1752 'User may reset a default entry in a patron statistical category', 'ppl', 'description' )),
1753 ( 527, 'DELETE_PATRON_STAT_CAT_ENTRY_DEFAULT', oils_i18n_gettext( 527,
1754 'User may unset a default entry in a patron statistical category', 'ppl', 'description' )),
1755 ( 528, 'ADMIN_ORG_UNIT_CUSTOM_TREE', oils_i18n_gettext( 528,
1756 'User may update custom org unit trees', 'ppl', 'description' )),
1757 ( 529, 'ADMIN_IMPORT_MATCH_SET', oils_i18n_gettext( 529,
1758 'Allows a user to create/retrieve/update/delete vandelay match sets', 'ppl', 'description' )),
1759 ( 530, 'VIEW_IMPORT_MATCH_SET', oils_i18n_gettext( 530,
1760 'Allows a user to view vandelay match sets', 'ppl', 'description' )),
1761 ( 531, 'ADMIN_ADDRESS_ALERT', oils_i18n_gettext( 531,
1762 'Allows a user to create/retrieve/update/delete address alerts', 'ppl', 'description' )),
1763 ( 532, 'VIEW_ADDRESS_ALERT', oils_i18n_gettext( 532,
1764 'Allows a user to view address alerts', 'ppl', 'description' )),
1765 ( 533, 'ADMIN_COPY_LOCATION_GROUP', oils_i18n_gettext( 533,
1766 'Allows a user to create/retrieve/update/delete copy location groups', 'ppl', 'description' )),
1767 ( 534, 'ADMIN_USER_ACTIVITY_TYPE', oils_i18n_gettext( 534,
1768 'Allows a user to create/retrieve/update/delete user activity types', 'ppl', 'description' )),
1769 ( 535, 'VIEW_TRIGGER_EVENT', oils_i18n_gettext( 535,
1770 'Allows a user to view circ- and hold-related action/trigger events', 'ppl', 'description')),
1771 ( 536, 'IMPORT_OVERLAY_COPY', oils_i18n_gettext( 536,
1772 'Allows a user to overlay copy data in MARC import', 'ppl', 'description')),
1773 ( 537, 'ADMIN_SEARCH_FILTER_GROUP', oils_i18n_gettext( 537,
1774 'Allows staff to manage search filter groups and entries', 'ppl', 'description' )),
1775 ( 538, 'VIEW_SEARCH_FILTER_GROUP', oils_i18n_gettext( 538,
1776 'Allows staff to view search filter groups and entries', 'ppl', 'description' )),
1777 ( 539, 'UPDATE_ORG_UNIT_SETTING.ui.hide_copy_editor_fields', oils_i18n_gettext( 539,
1778 'Allows staff to edit displayed copy editor fields', 'ppl', 'description' )),
1779 ( 540, 'ADMIN_TOOLBAR_FOR_ORG', oils_i18n_gettext( 540,
1780 'Allows a user to create, edit, and delete custom toolbars for org units', 'ppl', 'description')),
1781 ( 541, 'ADMIN_TOOLBAR_FOR_WORKSTATION', oils_i18n_gettext( 541,
1782 'Allows a user to create, edit, and delete custom toolbars for workstations', 'ppl', 'description')),
1783 ( 542, 'ADMIN_TOOLBAR_FOR_USER', oils_i18n_gettext( 542,
1784 'Allows a user to create, edit, and delete custom toolbars for users', 'ppl', 'description')),
1785 ( 543, 'URL_VERIFY', oils_i18n_gettext( 543,
1786 'Allows a user to process and verify URLs', 'ppl', 'description')),
1787 ( 544, 'URL_VERIFY_UPDATE_SETTINGS', oils_i18n_gettext( 544,
1788 'Allows a user to configure URL verification org unit settings', 'ppl', 'description')),
1789 ( 545, 'SAVED_FILTER_DIALOG_FILTERS', oils_i18n_gettext( 545,
1790 'Allows users to save and load sets of filters for filter dialogs, available in certain staff interfaces', 'ppl', 'description')),
1791 ( 546, 'ADMIN_HOLD_CAPTURE_SORT', oils_i18n_gettext( 546,
1792 'Allows a user to make changes to best-hold selection sort order', 'ppl', 'description')),
1793 ( 547, 'ACQ_ADD_LINEITEM_IDENTIFIER', oils_i18n_gettext(547,
1794 'When granted, newly added lineitem identifiers will propagate to linked bib records', 'ppl', 'description')),
1795 ( 548, 'ACQ_SET_LINEITEM_IDENTIFIER', oils_i18n_gettext(548,
1796 'Allows staff to change the lineitem identifier', 'ppl', 'description')),
1797 ( 549, 'COPY_STATUS_LONG_OVERDUE.override', oils_i18n_gettext(549,
1798 'Allows the user to check-in long-overdue items, prompting ' ||
1799 'long-overdue check-in processing', 'ppl', 'code')),
1800 ( 550, 'SET_CIRC_LONG_OVERDUE', oils_i18n_gettext(550,
1801 'Allows the user to mark a circulation as long-overdue', 'ppl', 'code')),
1802 ( 551, 'ADMIN_SERVER_ADDON_FOR_WORKSTATION', oils_i18n_gettext( 551,
1803 'Allows a user to specify which Server Add-ons get invoked at the current workstation', 'ppl', 'description')),
1804 ( 552, 'ADMIN_FLOAT_GROUPS', oils_i18n_gettext( 552,
1805 'Allows administration of floating groups', 'ppl', 'description' )),
1806 ( 553, 'UPDATE_ORG_UNIT_SETTING.circ.min_item_price', oils_i18n_gettext( 553,
1807 'UPDATE_ORG_UNIT_SETTING.circ.min_item_price', 'ppl', 'description' )),
1808 ( 554, 'UPDATE_ORG_UNIT_SETTING.circ.max_item_price', oils_i18n_gettext( 554,
1809 'UPDATE_ORG_UNIT_SETTING.circ.max_item_price', 'ppl', 'description' )),
1810 ( 555, 'group_application.user.staff.admin.system_admin', oils_i18n_gettext( 555,
1811 'Allow a user to add/remove users to/from the "System Administrator" group', 'ppl', 'description' )),
1812 ( 556, 'group_application.user.staff.cat_admin', oils_i18n_gettext( 556,
1813 'Allow a user to add/remove users to/from the "Cataloging Administrator" group', 'ppl', 'description' )),
1814 ( 557, 'group_application.user.staff.circ_admin', oils_i18n_gettext( 557,
1815 'Allow a user to add/remove users to/from the "Circulation Administrator" group', 'ppl', 'description' )),
1816 ( 558, 'group_application.user.staff.data_review', oils_i18n_gettext( 558,
1817 'Allow a user to add/remove users to/from the "Data Review" group', 'ppl', 'description' )),
1818 ( 559, 'group_application.user.staff.volunteers', oils_i18n_gettext( 559,
1819 'Allow a user to add/remove users to/from the "Volunteers" group', 'ppl', 'description' )),
1820 ( 560, 'TOTAL_HOLD_COPY_RATIO_EXCEEDED.override', oils_i18n_gettext( 560,
1821 'Override the TOTAL_HOLD_COPY_RATIO_EXCEEDED event', 'ppl', 'description')),
1822 ( 561, 'AVAIL_HOLD_COPY_RATIO_EXCEEDED.override', oils_i18n_gettext( 561,
1823 'Override the AVAIL_HOLD_COPY_RATIO_EXCEEDED event', 'ppl', 'description')),
1824 ( 562, 'ADMIN_TAG_TABLE', oils_i18n_gettext( 562,
1825 'Allow administration of MARC tag tables', 'ppl', 'description' )),
1826 ( 563, 'ADJUST_BILLS', oils_i18n_gettext( 563,
1827 'Allow a user to adjust a bill (generally to zero)', 'ppl', 'description' )),
1828 ( 564, 'MARK_ITEM_CATALOGING', oils_i18n_gettext( 564,
1829 'Allow a user to mark an item status as ''cataloging''', 'ppl', 'description' )),
1830 ( 565, 'MARK_ITEM_DAMAGED', oils_i18n_gettext( 565,
1831 'Allow a user to mark an item status as ''damaged''', 'ppl', 'description' )),
1832 ( 566, 'MARK_ITEM_DISCARD', oils_i18n_gettext( 566,
1833 'Allow a user to mark an item status as ''discard''', 'ppl', 'description' )),
1834 ( 567, 'MARK_ITEM_RESERVES', oils_i18n_gettext( 567,
1835 'Allow a user to mark an item status as ''reserves''', 'ppl', 'description' )),
1836 ( 568, 'ADMIN_ORG_UNIT_SETTING_TYPE_LOG', oils_i18n_gettext( 568,
1837 'Allow a user to modify the org unit settings log', 'ppl', 'description' )),
1838 ( 570, 'CREATE_POP_BADGE', oils_i18n_gettext( 570,
1839 'Allow a user to create a new popularity badge', 'ppl', 'description' )),
1840 ( 571, 'DELETE_POP_BADGE', oils_i18n_gettext( 571,
1841 'Allow a user to delete a popularity badge', 'ppl', 'description' )),
1842 ( 572, 'UPDATE_POP_BADGE', oils_i18n_gettext( 572,
1843 'Allow a user to modify a popularity badge', 'ppl', 'description' )),
1844 ( 573, 'CREATE_POP_PARAMETER', oils_i18n_gettext( 573,
1845 'Allow a user to create a popularity badge parameter', 'ppl', 'description' )),
1846 ( 574, 'DELETE_POP_PARAMETER', oils_i18n_gettext( 574,
1847 'Allow a user to delete a popularity badge parameter', 'ppl', 'description' )),
1848 ( 575, 'UPDATE_POP_PARAMETER', oils_i18n_gettext( 575,
1849 'Allow a user to modify a popularity badge parameter', 'ppl', 'description' )),
1850 ( 576, 'CREATE_AUTHORITY_RECORD', oils_i18n_gettext( 576,
1851 'Allow a user to create an authority record', 'ppl', 'description' )),
1852 ( 577, 'DELETE_AUTHORITY_RECORD', oils_i18n_gettext( 577,
1853 'Allow a user to delete an authority record', 'ppl', 'description' )),
1854 ( 578, 'UPDATE_AUTHORITY_RECORD', oils_i18n_gettext( 578,
1855 'Allow a user to modify an authority record', 'ppl', 'description' )),
1856 ( 579, 'CREATE_AUTHORITY_CONTROL_SET', oils_i18n_gettext( 579,
1857 'Allow a user to create an authority control set', 'ppl', 'description' )),
1858 ( 580, 'DELETE_AUTHORITY_CONTROL_SET', oils_i18n_gettext( 580,
1859 'Allow a user to delete an authority control set', 'ppl', 'description' )),
1860 ( 581, 'UPDATE_AUTHORITY_CONTROL_SET', oils_i18n_gettext( 581,
1861 'Allow a user to modify an authority control set', 'ppl', 'description' )),
1862 ( 582, 'ACTOR_USER_DELETE_OPEN_XACTS.override', oils_i18n_gettext( 582,
1863 'Override the ACTOR_USER_DELETE_OPEN_XACTS event', 'ppl', 'description' )),
1864 ( 583, 'PATRON_EXCEEDS_LOST_COUNT.override', oils_i18n_gettext( 583,
1865 'Override the PATRON_EXCEEDS_LOST_COUNT event', 'ppl', 'description' )),
1866 ( 584, 'MAX_HOLDS.override', oils_i18n_gettext( 584,
1867 'Override the MAX_HOLDS event', 'ppl', 'description' )),
1868 ( 585, 'ITEM_DEPOSIT_REQUIRED.override', oils_i18n_gettext( 585,
1869 'Override the ITEM_DEPOSIT_REQUIRED event', 'ppl', 'description' )),
1870 ( 586, 'ITEM_DEPOSIT_PAID.override', oils_i18n_gettext( 586,
1871 'Override the ITEM_DEPOSIT_PAID event', 'ppl', 'description' )),
1872 ( 587, 'COPY_STATUS_LOST_AND_PAID.override', oils_i18n_gettext( 587,
1873 'Override the COPY_STATUS_LOST_AND_PAID event', 'ppl', 'description' )),
1874 ( 588, 'ITEM_NOT_HOLDABLE.override', oils_i18n_gettext( 588,
1875 'Override the ITEM_NOT_HOLDABLE event', 'ppl', 'description' )),
1876 ( 589, 'ITEM_RENTAL_FEE_REQUIRED.override', oils_i18n_gettext( 589,
1877 'Override the ITEM_RENTAL_FEE_REQUIRED event', 'ppl', 'description' )),
1878 ( 590, 'ADMIN_COPY_TAG_TYPES', oils_i18n_gettext( 590,
1879 'Administer copy tag types', 'ppl', 'description' )),
1880 ( 591, 'ADMIN_COPY_TAG', oils_i18n_gettext( 591,
1881 'Administer copy tag', 'ppl', 'description' )),
1882 ( 592,'CONTAINER_BATCH_UPDATE', oils_i18n_gettext( 592,
1883 'Allow batch update via buckets', 'ppl', 'description' )),
1884 ( 593, 'ADMIN_SERIAL_PATTERN_TEMPLATE', oils_i18n_gettext( 593,
1885 'Administer serial prediction pattern templates', 'ppl', 'description' )),
1886 ( 594, 'ADMIN_COPY_ALERT_TYPE', oils_i18n_gettext( 594,
1887 'Administer copy alert types', 'ppl', 'description' )),
1888 ( 595, 'CREATE_COPY_ALERT_TYPE', oils_i18n_gettext( 595,
1889 'Create copy alert types', 'ppl', 'description' )),
1890 ( 596, 'UPDATE_COPY_ALERT_TYPE', oils_i18n_gettext( 596,
1891 'Update copy alert types', 'ppl', 'description' )),
1892 ( 597, 'DELETE_COPY_ALERT_TYPE', oils_i18n_gettext( 597,
1893 'Delete copy alert types', 'ppl', 'description' )),
1894 ( 598, 'ADMIN_COPY_ALERT_SUPPRESS', oils_i18n_gettext( 598,
1895 'Administer copy alert suppression', 'ppl', 'description' )),
1896 ( 599, 'CREATE_COPY_ALERT_SUPPRESS', oils_i18n_gettext( 599,
1897 'Create copy alert suppression', 'ppl', 'description' )),
1898 ( 600, 'UPDATE_COPY_ALERT_SUPPRESS', oils_i18n_gettext( 600,
1899 'Update copy alert suppression', 'ppl', 'description' )),
1900 ( 601, 'DELETE_COPY_ALERT_SUPPRESS', oils_i18n_gettext( 601,
1901 'Delete copy alert suppression', 'ppl', 'description' )),
1902 ( 602, 'ADMIN_COPY_ALERT', oils_i18n_gettext( 602,
1903 'Administer copy alerts', 'ppl', 'description' )),
1904 ( 603, 'CREATE_COPY_ALERT', oils_i18n_gettext( 603,
1905 'Create copy alerts', 'ppl', 'description' )),
1906 ( 604, 'VIEW_COPY_ALERT', oils_i18n_gettext( 604,
1907 'View copy alerts', 'ppl', 'description' )),
1908 ( 605, 'UPDATE_COPY_ALERT', oils_i18n_gettext( 605,
1909 'Update copy alerts', 'ppl', 'description' )),
1910 ( 606, 'DELETE_COPY_ALERT', oils_i18n_gettext( 606,
1911 'Delete copy alerts', 'ppl', 'description' )),
1912 ( 607, 'EMERGENCY_CLOSING', oils_i18n_gettext( 607,
1913 'Create and manage Emergency Closings', 'ppl', 'description' )),
1914 (608, 'APPLY_WORKSTATION_SETTING',
1915 oils_i18n_gettext(608, 'Allows a user to apply values to workstation settings', 'ppl', 'description')),
1916 ( 609, 'MANAGE_CUSTOM_PERM_GRP_TREE', oils_i18n_gettext( 609,
1917 'Allows a user to manage custom permission group lists.', 'ppl', 'description' )),
1918 ( 610, 'CLEAR_PURCHASE_REQUEST', oils_i18n_gettext(610,
1919 'Clear Completed User Purchase Requests', 'ppl', 'description')),
1920 ( 611, 'ADMIN_PRINT_TEMPLATE', oils_i18n_gettext(611,
1921 'Modify print templates', 'ppl', 'description')),
1922 ( 612, 'ADMIN_CAROUSEL_TYPE', oils_i18n_gettext(612,
1923 'Allow a user to manage carousel types', 'ppl', 'description')),
1924 ( 613, 'ADMIN_CAROUSEL', oils_i18n_gettext(613,
1925 'Allow a user to manage carousels', 'ppl', 'description')),
1926 ( 614, 'REFRESH_CAROUSEL', oils_i18n_gettext(614,
1927 'Allow a user to refresh carousels', 'ppl', 'description')),
1928 ( 615, 'ADMIN_REMOTEAUTH', oils_i18n_gettext( 615,
1929 'Administer remote patron authentication', 'ppl', 'description' )),
1930 ( 616, 'IMPORT_USE_ORG_UNIT_COPIES', oils_i18n_gettext( 616,
1931 'Allows users to import records based on the number of org unit copies attached to a record', 'ppl', 'description' )),
1932 ( 617, 'IMPORT_ON_ORDER_CAT_COPY', oils_i18n_gettext( 617,
1933 'Allows users to import copies based on the on-order items attached to a record', 'ppl', 'description' )),
1934 ( 618, 'CREATE_PRECAT', oils_i18n_gettext(618,
1935 'Allows a user to create a pre-catalogued copy', 'ppl', 'description')),
1936 ( 619, 'EDIT_SELF_IN_CLIENT', oils_i18n_gettext(619,
1937 'Allow a user to edit their own account in the staff client', 'ppl', 'description')),
1938 ( 620, 'UPDATE_ORG_UNIT_SETTING.opac.patron.custom_css', oils_i18n_gettext(620,
1939 'Update CSS setting for the OPAC', 'ppl', 'description')),
1940 ( 621, 'VIEW_BOOKING_RESOURCE_TYPE', oils_i18n_gettext(621,
1941 'View booking resource types', 'ppl', 'description')),
1942 ( 622, 'VIEW_BOOKING_RESOURCE', oils_i18n_gettext(622,
1943 'View booking resources', 'ppl', 'description')),
1944 ( 623, 'UPDATE_ORG_UNIT_SETTING.opac.matomo', oils_i18n_gettext(623,
1945 'Allows a user to configure Matomo Analytics org unit settings', 'ppl', 'description')),
1946 ( 624, 'MANAGE_RESERVES', oils_i18n_gettext(624,
1947 'Allows user to manage Courses, Course Materials, and associate Users with Courses.', 'ppl', 'description')),
1948 ( 625, 'VIEW_BOOKING_RESERVATION', oils_i18n_gettext(625,
1949 'View booking reservations', 'ppl', 'description')),
1950 ( 626, 'VIEW_BOOKING_RESERVATION_ATTR_MAP', oils_i18n_gettext(626,
1951 'View booking reservation attribute maps', 'ppl', 'description')),
1952 ( 627, 'SSO_ADMIN', oils_i18n_gettext(627,
1953 'Modify patron SSO settings', 'ppl', 'description'))
1957 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, 1000);
1959 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1960 (1, oils_i18n_gettext(1, 'Users', 'pgt', 'name'), NULL, NULL, '3 years', FALSE, 'group_application.user');
1961 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1962 (2, oils_i18n_gettext(2, 'Patrons', 'pgt', 'name'), 1, NULL, '3 years', TRUE, 'group_application.user.patron');
1963 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1964 (3, oils_i18n_gettext(3, 'Staff', 'pgt', 'name'), 1, NULL, '3 years', FALSE, 'group_application.user.staff');
1965 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1966 (4, oils_i18n_gettext(4, 'Catalogers', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.cat');
1967 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1968 (5, oils_i18n_gettext(5, 'Circulators', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.circ');
1969 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1970 (6, oils_i18n_gettext(6, 'Acquisitions', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.acq');
1971 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1972 (7, oils_i18n_gettext(7, 'Acquisitions Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.acq_admin');
1973 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1974 (8, oils_i18n_gettext(8, 'Cataloging Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.cat_admin');
1975 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1976 (9, oils_i18n_gettext(9, 'Circulation Administrator', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.circ_admin');
1977 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1978 (10, oils_i18n_gettext(10, 'Local Administrator', 'pgt', 'name'), 3,
1979 oils_i18n_gettext(10, 'Can do anything at the Branch level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.local_admin');
1980 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1981 (11, oils_i18n_gettext(11, 'Serials', 'pgt', 'name'), 3,
1982 oils_i18n_gettext(11, 'Serials (includes admin features)', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.serials');
1983 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1984 (12, oils_i18n_gettext(12, 'System Administrator', 'pgt', 'name'), 3,
1985 oils_i18n_gettext(12, 'Can do anything at the System level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.system_admin');
1986 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1987 (13, oils_i18n_gettext(13, 'Global Administrator', 'pgt', 'name'), 3,
1988 oils_i18n_gettext(13, 'Can do anything at the Consortium level', 'pgt', 'description'), '3 years', TRUE, 'group_application.user.staff.admin.global_admin');
1989 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1990 (14, oils_i18n_gettext(14, 'Data Review', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.data_review');
1991 INSERT INTO permission.grp_tree (id, name, parent, description, perm_interval, usergroup, application_perm) VALUES
1992 (15, oils_i18n_gettext(15, 'Volunteers', 'pgt', 'name'), 3, NULL, '3 years', TRUE, 'group_application.user.staff.volunteers');
1994 SELECT SETVAL('permission.grp_tree_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_tree));
1996 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
1997 VALUES (1,1,1,10.0);
1998 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
1999 VALUES (1,1,2,10.0);
2000 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
2001 VALUES (1,1,3,10.0);
2002 INSERT INTO permission.grp_penalty_threshold (grp,org_unit,penalty,threshold)
2003 VALUES (1,1,5,10.0);
2005 SELECT SETVAL('permission.grp_penalty_threshold_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_penalty_threshold));
2008 -- Add basic user permissions to the Users group
2010 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2012 pgt.id, perm.id, aout.depth, FALSE
2014 permission.grp_tree pgt,
2015 permission.perm_list perm,
2016 actor.org_unit_type aout
2018 pgt.name = 'Users' AND
2019 aout.name = 'Consortium' AND
2022 'CREATE_MY_CONTAINER',
2023 'CREATE_PURCHASE_REQUEST',
2029 'user_request.create'
2033 -- Add basic user permissions to the Data Review group
2035 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2037 pgt.id, perm.id, aout.depth, FALSE
2039 permission.grp_tree pgt,
2040 permission.perm_list perm,
2041 actor.org_unit_type aout
2043 pgt.name = 'Data Review' AND
2044 aout.name = 'Consortium' AND
2046 'CREATE_COPY_TRANSIT',
2048 'VIEW_BILLING_TYPE',
2049 'VIEW_CIRCULATIONS',
2052 'VIEW_ORG_SETTINGS',
2056 'VIEW_USER_FINES_SUMMARY',
2057 'VIEW_USER_TRANSACTIONS',
2058 'VIEW_VOLUME_NOTES',
2061 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2063 pgt.id, perm.id, aout.depth, FALSE
2065 permission.grp_tree pgt,
2066 permission.perm_list perm,
2067 actor.org_unit_type aout
2069 pgt.name = 'Data Review' AND
2070 aout.name = 'System' AND
2074 'CREATE_IN_HOUSE_USE',
2075 'CREATE_TRANSACTION',
2082 -- Add basic staff permissions to the Staff group
2084 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2086 pgt.id, perm.id, aout.depth, FALSE
2088 permission.grp_tree pgt,
2089 permission.perm_list perm,
2090 actor.org_unit_type aout
2092 pgt.name = 'Staff' AND
2093 aout.name = 'Consortium' AND
2096 'CREATE_CONTAINER_ITEM',
2097 'CREATE_COPY_TRANSIT',
2098 'CREATE_HOLD_NOTIFICATION',
2099 'CREATE_TRANSACTION',
2102 'DELETE_CONTAINER_ITEM',
2103 'group_application.user',
2104 'group_application.user.patron',
2105 'REGISTER_WORKSTATION',
2106 'REMOTE_Z3950_QUERY',
2113 'VIEW_COPY_CHECKOUT_HISTORY',
2116 'VIEW_HOLD_NOTIFICATION',
2122 'VIEW_USER_SETTING_TYPE',
2126 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2128 pgt.id, perm.id, aout.depth, FALSE
2130 permission.grp_tree pgt,
2131 permission.perm_list perm,
2132 actor.org_unit_type aout
2134 pgt.name = 'Staff' AND
2135 aout.name = 'System' AND
2139 'VIEW_BILLING_TYPE',
2140 'VIEW_CIRCULATIONS',
2141 'VIEW_ORG_SETTINGS',
2142 'VIEW_PERMIT_CHECKOUT',
2144 'VIEW_USER_FINES_SUMMARY',
2145 'VIEW_USER_TRANSACTIONS',
2146 'APPLY_WORKSTATION_SETTING'
2149 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2151 pgt.id, perm.id, aout.depth, FALSE
2153 permission.grp_tree pgt,
2154 permission.perm_list perm,
2155 actor.org_unit_type aout
2157 pgt.name = 'Staff' AND
2158 aout.name = 'Branch' AND
2163 'COPY_TRANSIT_RECEIVE',
2165 'CREATE_IN_HOUSE_USE',
2167 'RENEW_HOLD_OVERRIDE',
2174 -- Add basic cataloguing permissions to the Catalogers group
2176 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2178 pgt.id, perm.id, aout.depth, FALSE
2180 permission.grp_tree pgt,
2181 permission.perm_list perm,
2182 actor.org_unit_type aout
2184 pgt.name = 'Catalogers' AND
2185 aout.name = 'Consortium' AND
2188 'CREATE_BIB_IMPORT_QUEUE',
2189 'CREATE_IMPORT_ITEM',
2192 'CREATE_TITLE_NOTE',
2193 'DELETE_BIB_IMPORT_QUEUE',
2194 'DELETE_IMPORT_ITEM',
2196 'DELETE_TITLE_NOTE',
2197 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
2199 'IMPORT_AUTHORITY_MARC',
2200 'MERGE_AUTH_RECORDS',
2201 'MERGE_BIB_RECORDS',
2202 'UPDATE_AUTHORITY_IMPORT_QUEUE',
2203 'UPDATE_AUTHORITY_RECORD_NOTE',
2204 'UPDATE_BIB_IMPORT_QUEUE',
2207 'user_request.view',
2208 'VIEW_AUTHORITY_RECORD_NOTES',
2209 'CREATE_AUTHORITY_RECORD',
2210 'DELETE_AUTHORITY_RECORD',
2211 'UPDATE_AUTHORITY_RECORD');
2213 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2215 pgt.id, perm.id, aout.depth, FALSE
2217 permission.grp_tree pgt,
2218 permission.perm_list perm,
2219 actor.org_unit_type aout
2221 pgt.name = 'Catalogers' AND
2222 aout.name = 'System' AND
2226 'CREATE_MFHD_RECORD',
2228 'CREATE_VOLUME_NOTE',
2231 'DELETE_MFHD_RECORD',
2233 'DELETE_VOLUME_NOTE',
2234 'MAP_MONOGRAPH_PART',
2235 'MARK_ITEM_AVAILABLE',
2236 'MARK_ITEM_BINDERY',
2237 'MARK_ITEM_CHECKED_OUT',
2239 'MARK_ITEM_IN_PROCESS',
2240 'MARK_ITEM_IN_TRANSIT',
2242 'MARK_ITEM_MISSING',
2243 'MARK_ITEM_ON_HOLDS_SHELF',
2244 'MARK_ITEM_ON_ORDER',
2245 'MARK_ITEM_RESHELVING',
2248 'UPDATE_IMPORT_ITEM',
2249 'UPDATE_MFHD_RECORD',
2251 'UPDATE_VOLUME_NOTE',
2252 'VIEW_SERIAL_SUBSCRIPTION',
2253 'MARK_ITEM_CATALOGING',
2254 'MARK_ITEM_DAMAGED',
2255 'MARK_ITEM_DISCARD',
2256 'MARK_ITEM_RESERVES',
2262 -- Add advanced cataloguing permissions to the Cataloging Admin group
2264 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2266 pgt.id, perm.id, aout.depth, TRUE
2268 permission.grp_tree pgt,
2269 permission.perm_list perm,
2270 actor.org_unit_type aout
2272 pgt.name = 'Cataloging Administrator' AND
2273 aout.name = 'Consortium' AND
2275 'ADMIN_IMPORT_ITEM_ATTR_DEF',
2276 'ADMIN_MERGE_PROFILE',
2277 'CREATE_AUTHORITY_IMPORT_IMPORT_DEF',
2278 'CREATE_BIB_IMPORT_FIELD_DEF',
2280 'CREATE_BIB_SOURCE',
2281 'CREATE_IMPORT_ITEM_ATTR_DEF',
2282 'CREATE_IMPORT_TRASH_FIELD',
2283 'CREATE_MERGE_PROFILE',
2284 'CREATE_MONOGRAPH_PART',
2286 'CREATE_VOLUME_PREFIX',
2287 'CREATE_VOLUME_SUFFIX',
2288 'DELETE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
2290 'DELETE_BIB_SOURCE',
2291 'DELETE_IMPORT_ITEM_ATTR_DEF',
2292 'DELETE_IMPORT_TRASH_FIELD',
2293 'DELETE_MERGE_PROFILE',
2294 'DELETE_MONOGRAPH_PART',
2295 'DELETE_VOLUME_PREFIX',
2296 'DELETE_VOLUME_SUFFIX',
2297 'MAP_MONOGRAPH_PART',
2298 'UPDATE_AUTHORITY_IMPORT_IMPORT_FIELD_DEF',
2299 'UPDATE_BIB_IMPORT_IMPORT_FIELD_DEF',
2301 'UPDATE_IMPORT_ITEM_ATTR_DEF',
2302 'UPDATE_IMPORT_TRASH_FIELD',
2303 'UPDATE_MERGE_PROFILE',
2304 'UPDATE_MONOGRAPH_PART',
2305 'UPDATE_VOLUME_PREFIX',
2306 'UPDATE_VOLUME_SUFFIX',
2307 'CREATE_AUTHORITY_CONTROL_SET',
2308 'DELETE_AUTHORITY_CONTROL_SET',
2309 'UPDATE_AUTHORITY_CONTROL_SET');
2311 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2313 pgt.id, perm.id, aout.depth, TRUE
2315 permission.grp_tree pgt,
2316 permission.perm_list perm,
2317 actor.org_unit_type aout
2319 pgt.name = 'Cataloging Administrator' AND
2320 aout.name = 'System' AND
2323 'CREATE_COPY_STAT_CAT',
2324 'CREATE_COPY_STAT_CAT_ENTRY',
2325 'CREATE_COPY_STAT_CAT_ENTRY_MAP',
2327 'CREATE_REPORT_TEMPLATE',
2328 'SHARE_REPORT_FOLDER',
2329 'UPDATE_COPY_LOCATION',
2330 'UPDATE_COPY_STAT_CAT',
2331 'UPDATE_COPY_STAT_CAT_ENTRY',
2332 'VIEW_REPORT_OUTPUT'
2336 'CREATE_POP_PARAMETER',
2337 'DELETE_POP_PARAMETER',
2338 'UPDATE_POP_PARAMETER');
2341 -- Add basic circulation permissions to the Circulators group
2343 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2345 pgt.id, perm.id, aout.depth, FALSE
2347 permission.grp_tree pgt,
2348 permission.perm_list perm,
2349 actor.org_unit_type aout
2351 pgt.name = 'Circulators' AND
2352 aout.name = 'Branch' AND
2355 'ADMIN_BOOKING_RESERVATION',
2356 'ADMIN_BOOKING_RESOURCE',
2357 'ADMIN_BOOKING_RESOURCE_ATTR',
2358 'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
2359 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
2360 'ADMIN_BOOKING_RESOURCE_TYPE',
2361 'ASSIGN_GROUP_PERM',
2363 'MARK_ITEM_AVAILABLE',
2364 'MARK_ITEM_BINDERY',
2365 'MARK_ITEM_CHECKED_OUT',
2367 'MARK_ITEM_IN_PROCESS',
2368 'MARK_ITEM_IN_TRANSIT',
2370 'MARK_ITEM_MISSING',
2371 'MARK_ITEM_MISSING_PIECES',
2372 'MARK_ITEM_ON_HOLDS_SHELF',
2373 'MARK_ITEM_ON_ORDER',
2374 'MARK_ITEM_RESHELVING',
2377 'REMOVE_USER_GROUP_LINK',
2378 'SET_CIRC_CLAIMS_RETURNED',
2379 'SET_CIRC_CLAIMS_RETURNED.override',
2382 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
2383 'UPDATE_PATRON_CLAIM_RETURN_COUNT',
2384 'UPDATE_PAYMENT_NOTE',
2385 'UPDATE_PICKUP_LIB FROM_TRANSIT',
2386 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
2387 'VIEW_BOOKING_RESOURCE',
2388 'VIEW_BOOKING_RESOURCE_TYPE',
2389 'VIEW_GROUP_PENALTY_THRESHOLD',
2390 'VIEW_STANDING_PENALTY',
2394 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2396 pgt.id, perm.id, aout.depth, FALSE
2398 permission.grp_tree pgt,
2399 permission.perm_list perm,
2400 actor.org_unit_type aout
2402 pgt.name = 'Circulators' AND
2403 aout.name = 'System' AND
2405 'ABORT_REMOTE_TRANSIT',
2407 'CAPTURE_RESERVATION',
2408 'CIRC_CLAIMS_RETURNED.override',
2409 'CIRC_EXCEEDS_COPY_RANGE.override',
2410 'CIRC_OVERRIDE_DUE_DATE',
2411 'CIRC_PERMIT_OVERRIDE',
2412 'COPY_ALERT_MESSAGE.override',
2413 'COPY_BAD_STATUS.override',
2414 'COPY_CIRC_NOT_ALLOWED.override',
2415 'COPY_IS_REFERENCE.override',
2416 'COPY_NEEDED_FOR_HOLD.override',
2417 'COPY_NOT_AVAILABLE.override',
2418 'COPY_STATUS_LOST.override',
2419 'COPY_STATUS_MISSING.override',
2420 'CREATE_DUPLICATE_HOLDS',
2421 'CREATE_USER_GROUP_LINK',
2423 'HOLD_EXISTS.override',
2424 'HOLD_ITEM_CHECKED_OUT.override',
2426 'ITEM_AGE_PROTECTED.override',
2427 'ITEM_ON_HOLDS_SHELF.override',
2428 'MAX_RENEWALS_REACHED.override',
2429 'OVERRIDE_HOLD_HAS_LOCAL_COPY',
2430 'PATRON_EXCEEDS_CHECKOUT_COUNT.override',
2431 'PATRON_EXCEEDS_FINES.override',
2432 'PATRON_EXCEEDS_OVERDUE_COUNT.override',
2433 'RETRIEVE_RESERVATION_PULL_LIST',
2437 -- Add advanced circulation permissions to the Circulation Admin group
2439 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2441 pgt.id, perm.id, aout.depth, TRUE
2443 permission.grp_tree pgt,
2444 permission.perm_list perm,
2445 actor.org_unit_type aout
2447 pgt.name = 'Circulation Administrator' AND
2448 aout.name = 'Branch' AND
2452 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2454 pgt.id, perm.id, aout.depth, TRUE
2456 permission.grp_tree pgt,
2457 permission.perm_list perm,
2458 actor.org_unit_type aout
2460 pgt.name = 'Circulation Administrator' AND
2461 aout.name = 'Consortium' AND
2463 'ADMIN_MAX_FINE_RULE',
2464 'CREATE_CIRC_DURATION',
2466 'DELETE_CIRC_DURATION',
2468 'MARK_ITEM_MISSING_PIECES',
2469 'UPDATE_CIRC_DURATION',
2470 'UPDATE_HOLD_REQUEST_TIME',
2471 'UPDATE_NET_ACCESS_LEVEL',
2472 'VIEW_CIRC_MATRIX_MATCHPOINT',
2473 'ABORT_TRANSIT_ON_LOST',
2474 'ABORT_TRANSIT_ON_MISSING',
2475 'UPDATE_PATRON_COLLECTIONS_EXEMPT',
2476 'VIEW_HOLD_MATRIX_MATCHPOINT');
2478 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2480 pgt.id, perm.id, aout.depth, TRUE
2482 permission.grp_tree pgt,
2483 permission.perm_list perm,
2484 actor.org_unit_type aout
2486 pgt.name = 'Circulation Administrator' AND
2487 aout.name = 'System' AND
2490 'ADMIN_BOOKING_RESERVATION',
2491 'ADMIN_BOOKING_RESERVATION_ATTR_MAP',
2492 'ADMIN_BOOKING_RESERVATION_ATTR_VALUE_MAP',
2493 'ADMIN_BOOKING_RESOURCE',
2494 'ADMIN_BOOKING_RESOURCE_ATTR',
2495 'ADMIN_BOOKING_RESOURCE_ATTR_MAP',
2496 'ADMIN_BOOKING_RESOURCE_ATTR_VALUE',
2497 'ADMIN_BOOKING_RESOURCE_TYPE',
2498 'ADMIN_COPY_LOCATION_ORDER',
2499 'ADMIN_HOLD_CANCEL_CAUSE',
2500 'ASSIGN_GROUP_PERM',
2503 'COPY_TRANSIT_RECEIVE',
2505 'CREATE_BILLING_TYPE',
2506 'CREATE_NON_CAT_TYPE',
2507 'CREATE_PATRON_STAT_CAT',
2508 'CREATE_PATRON_STAT_CAT_ENTRY',
2509 'CREATE_PATRON_STAT_CAT_ENTRY_DEFAULT',
2510 'CREATE_PATRON_STAT_CAT_ENTRY_MAP',
2511 'CREATE_USER_GROUP_LINK',
2512 'DELETE_BILLING_TYPE',
2513 'DELETE_NON_CAT_TYPE',
2514 'DELETE_PATRON_STAT_CAT',
2515 'DELETE_PATRON_STAT_CAT_ENTRY',
2516 'DELETE_PATRON_STAT_CAT_ENTRY_DEFAULT',
2517 'DELETE_PATRON_STAT_CAT_ENTRY_MAP',
2519 'group_application.user.staff',
2521 'MARK_ITEM_AVAILABLE',
2522 'MARK_ITEM_BINDERY',
2523 'MARK_ITEM_CHECKED_OUT',
2525 'MARK_ITEM_IN_PROCESS',
2526 'MARK_ITEM_IN_TRANSIT',
2528 'MARK_ITEM_MISSING',
2529 'MARK_ITEM_ON_HOLDS_SHELF',
2530 'MARK_ITEM_ON_ORDER',
2531 'MARK_ITEM_RESHELVING',
2533 'money.collections_tracker.create',
2534 'money.collections_tracker.delete',
2538 'REMOVE_USER_GROUP_LINK',
2539 'SET_CIRC_CLAIMS_RETURNED',
2540 'SET_CIRC_CLAIMS_RETURNED.override',
2544 'UPDATE_NON_CAT_TYPE',
2545 'UPDATE_PATRON_CLAIM_NEVER_CHECKED_OUT_COUNT',
2546 'UPDATE_PATRON_CLAIM_RETURN_COUNT',
2547 'UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF',
2548 'UPDATE_PICKUP_LIB_FROM_TRANSIT',
2550 'VIEW_BOOKING_RESOURCE',
2551 'VIEW_BOOKING_RESOURCE_TYPE',
2552 'VIEW_REPORT_OUTPUT',
2553 'VIEW_STANDING_PENALTY',
2555 'TRANSIT_CHECKIN_INTERVAL_BLOCK.override',
2557 'ACTOR_USER_DELETE_OPEN_XACTS.override',
2558 'PATRON_EXCEEDS_LOST_COUNT.override',
2559 'MAX_HOLDS.override',
2560 'ITEM_DEPOSIT_REQUIRED.override',
2561 'ITEM_RENTAL_FEE_REQUIRED.override',
2562 'ITEM_DEPOSIT_PAID.override',
2563 'COPY_STATUS_LOST_AND_PAID.override',
2564 'ADMIN_PRINT_TEMPLATE',
2565 'ITEM_NOT_HOLDABLE.override');
2568 -- Add basic sys admin permissions to the Local Administrator group
2570 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2572 pgt.id, perm.id, aout.depth, TRUE
2574 permission.grp_tree pgt,
2575 permission.perm_list perm,
2576 actor.org_unit_type aout
2578 pgt.name = 'Local Administrator' AND
2579 aout.name = 'Branch' AND
2584 -- Add administration permissions to the System Administrator group
2586 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2588 pgt.id, perm.id, aout.depth, TRUE
2590 permission.grp_tree pgt,
2591 permission.perm_list perm,
2592 actor.org_unit_type aout
2594 pgt.name = 'System Administrator' AND
2595 aout.name = 'System' AND
2599 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2601 pgt.id, perm.id, aout.depth, FALSE
2603 permission.grp_tree pgt,
2604 permission.perm_list perm,
2605 actor.org_unit_type aout
2607 pgt.name = 'System Administrator' AND
2608 aout.name = 'Consortium' AND
2609 perm.code ~ '^VIEW_TRIGGER';
2612 -- Add administration permissions to the Global Administrator group
2614 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2616 pgt.id, perm.id, aout.depth, TRUE
2618 permission.grp_tree pgt,
2619 permission.perm_list perm,
2620 actor.org_unit_type aout
2622 pgt.name = 'Global Administrator' AND
2623 aout.name = 'Consortium' AND
2628 -- Add basic acquisitions permissions to the Acquisitions group
2630 SELECT SETVAL('permission.grp_perm_map_id_seq'::TEXT, (SELECT MAX(id) FROM permission.grp_perm_map));
2632 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2634 pgt.id, perm.id, aout.depth, FALSE
2636 permission.grp_tree pgt,
2637 permission.perm_list perm,
2638 actor.org_unit_type aout
2640 pgt.name = 'Acquisitions' AND
2641 aout.name = 'Consortium' AND
2643 'ACQ_ADD_LINEITEM_IDENTIFIER',
2644 'ACQ_INVOICE-REOPEN',
2645 'ACQ_SET_LINEITEM_IDENTIFIER',
2647 'ADMIN_ACQ_DISTRIB_FORMULA',
2651 'CLEAR_PURCHASE_REQUEST',
2652 'CREATE_BIB_IMPORT_QUEUE',
2653 'CREATE_IMPORT_ITEM',
2658 'CREATE_PURCHASE_ORDER',
2659 'DELETE_BIB_IMPORT_QUEUE',
2660 'DELETE_IMPORT_ITEM',
2663 'DELETE_VOLUME_NOTE',
2665 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
2666 'IMPORT_ACQ_LINEITEM_BIB_RECORD_UPLOAD',
2670 'MANAGE_FUNDING_SOURCE',
2672 'MARK_ITEM_AVAILABLE',
2673 'MARK_ITEM_BINDERY',
2674 'MARK_ITEM_CHECKED_OUT',
2676 'MARK_ITEM_IN_PROCESS',
2677 'MARK_ITEM_IN_TRANSIT',
2679 'MARK_ITEM_MISSING',
2680 'MARK_ITEM_ON_HOLDS_SHELF',
2681 'MARK_ITEM_ON_ORDER',
2682 'MARK_ITEM_RESHELVING',
2683 'RECEIVE_PURCHASE_ORDER',
2684 'UPDATE_BATCH_COPY',
2685 'UPDATE_BIB_IMPORT_QUEUE',
2688 'UPDATE_FUND_ALLOCATION',
2689 'UPDATE_FUNDING_SOURCE',
2690 'UPDATE_IMPORT_ITEM',
2695 'user_request.delete',
2696 'user_request.update',
2697 'user_request.view',
2698 'VIEW_ACQ_FUND_ALLOCATION_PERCENT',
2699 'VIEW_ACQ_FUNDING_SOURCE',
2701 'VIEW_FUND_ALLOCATION',
2702 'VIEW_FUNDING_SOURCE',
2705 'VIEW_ORG_SETTINGS',
2708 'VIEW_PURCHASE_ORDER',
2709 'VIEW_IMPORT_MATCH_SET',
2710 'VIEW_MERGE_PROFILE',
2711 'VIEW_REPORT_OUTPUT');
2714 -- Add acquisitions administration permissions to the Acquisitions Admin group
2716 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2718 pgt.id, perm.id, aout.depth, TRUE
2720 permission.grp_tree pgt,
2721 permission.perm_list perm,
2722 actor.org_unit_type aout
2724 pgt.name = 'Acquisitions Administrator' AND
2725 aout.name = 'Consortium' AND
2727 'ACQ_INVOICE_REOPEN',
2728 'ACQ_XFER_MANUAL_DFUND_AMOUNT',
2729 'ADMIN_ACQ_CANCEL_CAUSE',
2731 'ADMIN_ACQ_CLAIM_EVENT_TYPE',
2732 'ADMIN_ACQ_CLAIM_TYPE',
2733 'ADMIN_ACQ_DISTRIB_FORMULA',
2734 'ADMIN_ACQ_FISCAL_YEAR',
2736 'ADMIN_ACQ_FUND_ALLOCATION_PERCENT',
2737 'ADMIN_ACQ_FUND_TAG',
2738 'ADMIN_ACQ_LINE_ITEM_ALERT_TEXT',
2739 'ADMIN_CLAIM_POLICY',
2740 'ADMIN_CURRENCY_TYPE',
2742 'ADMIN_FUNDING_SOURCE',
2744 'ADMIN_INVOICE_METHOD',
2745 'ADMIN_INVOICE_PAYMENT_METHOD',
2746 'ADMIN_LINEITEM_MARC_ATTR_DEF',
2748 'ADMIN_USER_REQUEST_TYPE',
2749 'CREATE_ACQ_FUNDING_SOURCE',
2751 'CREATE_FUND_ALLOCATION',
2752 'CREATE_FUNDING_SOURCE',
2753 'CREATE_INVOICE_ITEM_TYPE',
2754 'CREATE_INVOICE_METHOD',
2756 'DELETE_ACQ_FUNDING_SOURCE',
2758 'DELETE_FUND_ALLOCATION',
2759 'DELETE_FUNDING_SOURCE',
2760 'DELETE_INVOICE_ITEM_TYPE',
2761 'DELETE_INVOICE_METHOD',
2764 'CREATE_REPORT_TEMPLATE',
2765 'SHARE_REPORT_FOLDER',
2766 'UPDATE_ACQ_FUNDING_SOURCE',
2767 'UPDATE_INVOICE_ITEM_TYPE',
2768 'UPDATE_INVOICE_METHOD',
2770 'VIEW_FUNDING_SOURCE',
2771 'VIEW_FUND_ALLOCATION',
2774 'VIEW_PURCHASE_ORDER',
2777 'ACQ_ADD_LINEITEM_IDENTIFIER',
2778 'ACQ_SET_LINEITEM_IDENTIFIER',
2781 'CREATE_PURCHASE_ORDER',
2782 'IMPORT_ACQ_LINEITEM_BIB_RECORD',
2783 'IMPORT_ACQ_LINEITEM_BIB_RECORD_UPLOAD',
2786 'MANAGE_FUNDING_SOURCE',
2787 'RECEIVE_PURCHASE_ORDER',
2788 'ADMIN_ACQ_LINEITEM_ALERT_TEXT',
2789 'UPDATE_FUNDING_SOURCE',
2791 'VIEW_IMPORT_MATCH_SET',
2792 'VIEW_MERGE_PROFILE',
2797 -- Add serials permissions to the Serials group
2799 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2801 pgt.id, perm.id, aout.depth, FALSE
2803 permission.grp_tree pgt,
2804 permission.perm_list perm,
2805 actor.org_unit_type aout
2807 pgt.name = 'Serials' AND
2808 aout.name = 'System' AND
2810 'ADMIN_ASSET_COPY_TEMPLATE',
2811 'ADMIN_SERIAL_CAPTION_PATTERN',
2812 'ADMIN_SERIAL_DISTRIBUTION',
2813 'ADMIN_SERIAL_ITEM',
2814 'ADMIN_SERIAL_PATTERN_TEMPLATE',
2815 'ADMIN_SERIAL_STREAM',
2816 'ADMIN_SERIAL_SUBSCRIPTION',
2821 -- Add basic staff permissions to the Volunteers group
2823 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2825 pgt.id, perm.id, aout.depth, FALSE
2827 permission.grp_tree pgt,
2828 permission.perm_list perm,
2829 actor.org_unit_type aout
2831 pgt.name = 'Volunteers' AND
2832 aout.name = 'Branch' AND
2836 'CREATE_IN_HOUSE_USE',
2838 'VIEW_BILLING_TYPE',
2840 'VIEW_COPY_CHECKOUT',
2845 'VIEW_USER_FINES_SUMMARY',
2846 'VIEW_USER_TRANSACTIONS');
2848 INSERT INTO permission.grp_perm_map (grp, perm, depth, grantable)
2850 pgt.id, perm.id, aout.depth, FALSE
2852 permission.grp_tree pgt,
2853 permission.perm_list perm,
2854 actor.org_unit_type aout
2856 pgt.name = 'Volunteers' AND
2857 aout.name = 'Consortium' AND
2859 'CREATE_COPY_TRANSIT',
2860 'CREATE_TRANSACTION',
2864 'VIEW_ORG_SETTINGS');
2867 -- Admin user account
2868 INSERT INTO actor.passwd_type
2869 (code, name, login, crypt_algo, iter_count)
2870 VALUES ('main', 'Main Login Password', TRUE, 'bf', 10);
2872 INSERT INTO actor.usr ( profile, card, usrname, passwd, first_given_name, family_name, dob, master_account, super_user, ident_type, ident_value