exlibris-aleph 1.1.0 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (268) hide show
  1. data/README.md +199 -82
  2. data/Rakefile +8 -14
  3. data/lib/exlibris-aleph.rb +0 -3
  4. data/lib/exlibris/aleph/admin_library.rb +27 -0
  5. data/lib/exlibris/aleph/api/base.rb +27 -0
  6. data/lib/exlibris/aleph/api/client/base.rb +86 -0
  7. data/lib/exlibris/aleph/api/client/patron.rb +20 -0
  8. data/lib/exlibris/aleph/api/client/patron/address.rb +22 -0
  9. data/lib/exlibris/aleph/api/client/patron/record.rb +23 -0
  10. data/lib/exlibris/aleph/api/client/patron/record/item.rb +26 -0
  11. data/lib/exlibris/aleph/api/client/patron/record/item/create_hold.rb +31 -0
  12. data/lib/exlibris/aleph/api/client/patron/record/item/create_hold/parameters.rb +55 -0
  13. data/lib/exlibris/aleph/api/client/patron/record/item/hold.rb +29 -0
  14. data/lib/exlibris/aleph/api/client/patron/status.rb +22 -0
  15. data/lib/exlibris/aleph/api/client/record.rb +21 -0
  16. data/lib/exlibris/aleph/api/client/record/filters.rb +23 -0
  17. data/lib/exlibris/aleph/api/client/record/holding.rb +23 -0
  18. data/lib/exlibris/aleph/api/client/record/holdings.rb +23 -0
  19. data/lib/exlibris/aleph/api/client/record/item.rb +23 -0
  20. data/lib/exlibris/aleph/api/client/record/items.rb +23 -0
  21. data/lib/exlibris/aleph/api/reader/base.rb +15 -0
  22. data/lib/exlibris/aleph/api/reader/patron.rb +19 -0
  23. data/lib/exlibris/aleph/api/reader/patron/address.rb +90 -0
  24. data/lib/exlibris/aleph/api/reader/patron/record.rb +38 -0
  25. data/lib/exlibris/aleph/api/reader/patron/record/item.rb +77 -0
  26. data/lib/exlibris/aleph/api/reader/patron/record/item/create_hold.rb +33 -0
  27. data/lib/exlibris/aleph/api/reader/patron/record/item/hold.rb +56 -0
  28. data/lib/exlibris/aleph/api/reader/patron/status.rb +33 -0
  29. data/lib/exlibris/aleph/api/reader/record.rb +10 -0
  30. data/lib/exlibris/aleph/api/reader/record/item.rb +45 -0
  31. data/lib/exlibris/aleph/collection.rb +26 -0
  32. data/lib/exlibris/aleph/config.rb +17 -57
  33. data/lib/exlibris/aleph/holding.rb +59 -0
  34. data/lib/exlibris/aleph/holding/metadata.rb +28 -0
  35. data/lib/exlibris/aleph/holdings.rb +51 -0
  36. data/lib/exlibris/aleph/item.rb +138 -0
  37. data/lib/exlibris/aleph/item/call_number.rb +14 -0
  38. data/lib/exlibris/aleph/item/circulation_policy.rb +30 -0
  39. data/lib/exlibris/aleph/item/circulation_policy/display.rb +16 -0
  40. data/lib/exlibris/aleph/item/circulation_policy/identifier.rb +34 -0
  41. data/lib/exlibris/aleph/item/circulation_policy/privileges.rb +72 -0
  42. data/lib/exlibris/aleph/item/circulation_status.rb +31 -0
  43. data/lib/exlibris/aleph/item/display_mask.rb +19 -0
  44. data/lib/exlibris/aleph/item/opac_note.rb +17 -0
  45. data/lib/exlibris/aleph/item/processing_status.rb +23 -0
  46. data/lib/exlibris/aleph/item/queue.rb +32 -0
  47. data/lib/exlibris/aleph/item/status.rb +23 -0
  48. data/lib/exlibris/aleph/items.rb +51 -0
  49. data/lib/exlibris/aleph/metadata.rb +25 -0
  50. data/lib/exlibris/aleph/patron.rb +18 -82
  51. data/lib/exlibris/aleph/patron/address.rb +56 -0
  52. data/lib/exlibris/aleph/patron/circulation_policy.rb +26 -0
  53. data/lib/exlibris/aleph/patron/circulation_policy/identifier.rb +29 -0
  54. data/lib/exlibris/aleph/patron/circulation_policy/privileges.rb +56 -0
  55. data/lib/exlibris/aleph/patron/record.rb +39 -0
  56. data/lib/exlibris/aleph/patron/record/circulation_policy.rb +18 -0
  57. data/lib/exlibris/aleph/patron/record/circulation_policy/privileges.rb +42 -0
  58. data/lib/exlibris/aleph/patron/record/item.rb +63 -0
  59. data/lib/exlibris/aleph/patron/record/item/circulation_policy.rb +21 -0
  60. data/lib/exlibris/aleph/patron/record/item/circulation_policy/privileges.rb +39 -0
  61. data/lib/exlibris/aleph/patron/record/item/create_hold.rb +43 -0
  62. data/lib/exlibris/aleph/patron/record/item/hold.rb +41 -0
  63. data/lib/exlibris/aleph/patron/status.rb +19 -0
  64. data/lib/exlibris/aleph/pickup_location.rb +12 -0
  65. data/lib/exlibris/aleph/record.rb +14 -43
  66. data/lib/exlibris/aleph/record/metadata.rb +8 -0
  67. data/lib/exlibris/aleph/sub_library.rb +30 -0
  68. data/lib/exlibris/aleph/table/base.rb +22 -0
  69. data/lib/exlibris/aleph/table/collections.rb +17 -0
  70. data/lib/exlibris/aleph/table/item/circulation_policies.rb +65 -0
  71. data/lib/exlibris/aleph/table/item/display_masks.rb +19 -0
  72. data/lib/exlibris/aleph/table/patron/circulation_policies.rb +47 -0
  73. data/lib/exlibris/aleph/table/patron/statuses.rb +19 -0
  74. data/lib/exlibris/aleph/table/reader/base.rb +57 -0
  75. data/lib/exlibris/aleph/table/reader/collections.rb +35 -0
  76. data/lib/exlibris/aleph/table/reader/item_circulation_policies.rb +50 -0
  77. data/lib/exlibris/aleph/table/reader/item_display_masks.rb +19 -0
  78. data/lib/exlibris/aleph/table/reader/matcher/base.rb +30 -0
  79. data/lib/exlibris/aleph/table/reader/matcher/collections.rb +17 -0
  80. data/lib/exlibris/aleph/table/reader/matcher/item_circulation_policies.rb +17 -0
  81. data/lib/exlibris/aleph/table/reader/matcher/item_display_masks.rb +17 -0
  82. data/lib/exlibris/aleph/table/reader/matcher/patron_circulation_policies.rb +17 -0
  83. data/lib/exlibris/aleph/table/reader/matcher/patron_statuses.rb +17 -0
  84. data/lib/exlibris/aleph/table/reader/matcher/sub_libraries.rb +17 -0
  85. data/lib/exlibris/aleph/table/reader/patron_circulation_policies.rb +51 -0
  86. data/lib/exlibris/aleph/table/reader/patron_statuses.rb +19 -0
  87. data/lib/exlibris/aleph/table/reader/row/base.rb +25 -0
  88. data/lib/exlibris/aleph/table/reader/row/collections.rb +13 -0
  89. data/lib/exlibris/aleph/table/reader/row/item_circulation_policies.rb +17 -0
  90. data/lib/exlibris/aleph/table/reader/row/item_display_masks.rb +13 -0
  91. data/lib/exlibris/aleph/table/reader/row/patron_circulation_policies.rb +20 -0
  92. data/lib/exlibris/aleph/table/reader/row/patron_statuses.rb +13 -0
  93. data/lib/exlibris/aleph/table/reader/row/sub_libraries.rb +13 -0
  94. data/lib/exlibris/aleph/table/reader/sub_libraries.rb +32 -0
  95. data/lib/exlibris/aleph/table/sub_libraries.rb +11 -0
  96. data/lib/exlibris/aleph/tables_manager.rb +66 -0
  97. data/lib/exlibris/aleph/version.rb +1 -1
  98. data/spec/exlibris/aleph/admin_library_spec.rb +83 -0
  99. data/spec/exlibris/aleph/api/base_spec.rb +23 -0
  100. data/spec/exlibris/aleph/api/client/base_spec.rb +40 -0
  101. data/spec/exlibris/aleph/api/client/patron/address_spec.rb +40 -0
  102. data/spec/exlibris/aleph/api/client/patron/record/item/create_hold/parameters_spec.rb +101 -0
  103. data/spec/exlibris/aleph/api/client/patron/record/item/create_hold_spec.rb +102 -0
  104. data/spec/exlibris/aleph/api/client/patron/record/item/hold_spec.rb +89 -0
  105. data/spec/exlibris/aleph/api/client/patron/record/item_spec.rb +52 -0
  106. data/spec/exlibris/aleph/api/client/patron/record_spec.rb +45 -0
  107. data/spec/exlibris/aleph/api/client/patron/status_spec.rb +40 -0
  108. data/spec/exlibris/aleph/api/client/patron_spec.rb +38 -0
  109. data/spec/exlibris/aleph/api/client/record/filters_spec.rb +46 -0
  110. data/spec/exlibris/aleph/api/client/record/holding_spec.rb +41 -0
  111. data/spec/exlibris/aleph/api/client/record/holdings_spec.rb +46 -0
  112. data/spec/exlibris/aleph/api/client/record/item_spec.rb +41 -0
  113. data/spec/exlibris/aleph/api/client/record/items_spec.rb +46 -0
  114. data/spec/exlibris/aleph/api/client/record_spec.rb +43 -0
  115. data/spec/exlibris/aleph/api/reader/base_spec.rb +18 -0
  116. data/spec/exlibris/aleph/api/reader/patron/address_spec.rb +151 -0
  117. data/spec/exlibris/aleph/api/reader/patron/record/item/create_hold_spec.rb +65 -0
  118. data/spec/exlibris/aleph/api/reader/patron/record/item/hold_spec.rb +145 -0
  119. data/spec/exlibris/aleph/api/reader/patron/record/item_spec.rb +266 -0
  120. data/spec/exlibris/aleph/api/reader/patron/record_spec.rb +98 -0
  121. data/spec/exlibris/aleph/api/reader/patron/status_spec.rb +57 -0
  122. data/spec/exlibris/aleph/api/reader/patron_spec.rb +28 -0
  123. data/spec/exlibris/aleph/api/reader/record/item_spec.rb +178 -0
  124. data/spec/exlibris/aleph/collection_spec.rb +95 -0
  125. data/spec/exlibris/aleph/config_spec.rb +17 -0
  126. data/spec/exlibris/aleph/holding/metadata_spec.rb +57 -0
  127. data/spec/exlibris/aleph/holding_spec.rb +53 -0
  128. data/spec/exlibris/aleph/holdings_spec.rb +59 -0
  129. data/spec/exlibris/aleph/item/call_number_spec.rb +20 -0
  130. data/spec/exlibris/aleph/item/circulation_policy/display_spec.rb +33 -0
  131. data/spec/exlibris/aleph/item/circulation_policy/identifier_spec.rb +154 -0
  132. data/spec/exlibris/aleph/item/circulation_policy/privileges_spec.rb +183 -0
  133. data/spec/exlibris/aleph/item/circulation_policy_spec.rb +146 -0
  134. data/spec/exlibris/aleph/item/circulation_status_spec.rb +83 -0
  135. data/spec/exlibris/aleph/item/display_mask_spec.rb +72 -0
  136. data/spec/exlibris/aleph/item/opac_note_spec.rb +19 -0
  137. data/spec/exlibris/aleph/item/processing_status_spec.rb +75 -0
  138. data/spec/exlibris/aleph/item/queue_spec.rb +31 -0
  139. data/spec/exlibris/aleph/item/status_spec.rb +80 -0
  140. data/spec/exlibris/aleph/item_spec.rb +97 -0
  141. data/spec/exlibris/aleph/items_spec.rb +59 -0
  142. data/spec/exlibris/aleph/metadata_spec.rb +118 -0
  143. data/spec/exlibris/aleph/patron/address_spec.rb +68 -0
  144. data/spec/exlibris/aleph/patron/circulation_policy/identifier_spec.rb +115 -0
  145. data/spec/exlibris/aleph/patron/circulation_policy/privileges_spec.rb +128 -0
  146. data/spec/exlibris/aleph/patron/circulation_policy_spec.rb +119 -0
  147. data/spec/exlibris/aleph/patron/record/circulation_policy/privileges_spec.rb +88 -0
  148. data/spec/exlibris/aleph/patron/record/circulation_policy_spec.rb +37 -0
  149. data/spec/exlibris/aleph/patron/record/item/circulation_policy/privileges_spec.rb +76 -0
  150. data/spec/exlibris/aleph/patron/record/item/circulation_policy_spec.rb +52 -0
  151. data/spec/exlibris/aleph/patron/record/item/create_hold_spec.rb +49 -0
  152. data/spec/exlibris/aleph/patron/record/item/hold_spec.rb +41 -0
  153. data/spec/exlibris/aleph/patron/record/item_spec.rb +64 -0
  154. data/spec/exlibris/aleph/patron/record_spec.rb +30 -0
  155. data/spec/exlibris/aleph/patron/status_spec.rb +72 -0
  156. data/spec/exlibris/aleph/patron_spec.rb +28 -0
  157. data/spec/exlibris/aleph/pickup_location_spec.rb +19 -0
  158. data/spec/exlibris/aleph/record/metadata_spec.rb +120 -0
  159. data/spec/exlibris/aleph/record_spec.rb +44 -0
  160. data/spec/exlibris/aleph/sub_library_spec.rb +110 -0
  161. data/spec/exlibris/aleph/table/base_spec.rb +17 -0
  162. data/spec/exlibris/aleph/table/collections_spec.rb +24 -0
  163. data/spec/exlibris/aleph/table/item/circulation_policies_spec.rb +65 -0
  164. data/spec/exlibris/aleph/table/item/display_masks_spec.rb +26 -0
  165. data/spec/exlibris/aleph/table/patron/circulation_policies_spec.rb +47 -0
  166. data/spec/exlibris/aleph/table/patron/statuses_spec.rb +26 -0
  167. data/spec/exlibris/aleph/table/reader/base_spec.rb +28 -0
  168. data/spec/exlibris/aleph/table/reader/collections_spec.rb +33 -0
  169. data/spec/exlibris/aleph/table/reader/item_circulation_policies_spec.rb +33 -0
  170. data/spec/exlibris/aleph/table/reader/item_display_masks_spec.rb +27 -0
  171. data/spec/exlibris/aleph/table/reader/matcher/base_spec.rb +32 -0
  172. data/spec/exlibris/aleph/table/reader/matcher/collections_spec.rb +39 -0
  173. data/spec/exlibris/aleph/table/reader/matcher/item_circulation_policies_spec.rb +39 -0
  174. data/spec/exlibris/aleph/table/reader/matcher/item_display_masks_spec.rb +40 -0
  175. data/spec/exlibris/aleph/table/reader/matcher/patron_circulation_policies_spec.rb +40 -0
  176. data/spec/exlibris/aleph/table/reader/matcher/patron_statuses_spec.rb +40 -0
  177. data/spec/exlibris/aleph/table/reader/matcher/sub_libraries_spec.rb +40 -0
  178. data/spec/exlibris/aleph/table/reader/patron_circulation_policies_spec.rb +27 -0
  179. data/spec/exlibris/aleph/table/reader/patron_statuses_spec.rb +27 -0
  180. data/spec/exlibris/aleph/table/reader/row/base_spec.rb +20 -0
  181. data/spec/exlibris/aleph/table/reader/row/collections_spec.rb +37 -0
  182. data/spec/exlibris/aleph/table/reader/row/item_circulation_policies_spec.rb +89 -0
  183. data/spec/exlibris/aleph/table/reader/row/item_display_masks_spec.rb +29 -0
  184. data/spec/exlibris/aleph/table/reader/row/patron_circulation_policies_spec.rb +115 -0
  185. data/spec/exlibris/aleph/table/reader/row/patron_statuses_spec.rb +29 -0
  186. data/spec/exlibris/aleph/table/reader/row/sub_libraries_spec.rb +41 -0
  187. data/spec/exlibris/aleph/table/reader/sub_libraries_spec.rb +36 -0
  188. data/spec/exlibris/aleph/table/sub_libraries_spec.rb +19 -0
  189. data/spec/exlibris/aleph/tables_manager_spec.rb +120 -0
  190. data/spec/exlibris/aleph_spec.rb +5 -0
  191. data/spec/spec_helper.rb +27 -0
  192. data/spec/support/mnt/aleph_tab/adm50/tab/filename +0 -0
  193. data/{test → spec/support}/mnt/aleph_tab/alephe/tab/tab_sub_library.eng +0 -0
  194. data/{test → spec/support}/mnt/aleph_tab/nyu50/tab/pc_tab_exp_field_extended.eng +0 -0
  195. data/{test/mnt/aleph_tab → spec/support/mnt/aleph_tab/nyu50/tab}/tab15.eng +2 -0
  196. data/{test → spec/support}/mnt/aleph_tab/nyu50/tab/tab16 +0 -0
  197. data/{test → spec/support}/mnt/aleph_tab/nyu50/tab/tab31 +0 -0
  198. data/{test → spec/support}/mnt/aleph_tab/nyu50/tab/tab37 +0 -0
  199. data/{test → spec/support}/mnt/aleph_tab/nyu50/tab/tab40.eng +0 -0
  200. data/{test → spec/support}/mnt/aleph_tab/nyu50/tab/tab_www_item_desc.eng +0 -0
  201. data/{test → spec/support}/mnt/aleph_tab/nyu51/tab/pc_tab_exp_field_extended.eng +0 -0
  202. data/{test → spec/support}/mnt/aleph_tab/nyu51/tab/tab15.eng +0 -0
  203. data/{test → spec/support}/mnt/aleph_tab/nyu51/tab/tab16 +0 -0
  204. data/{test → spec/support}/mnt/aleph_tab/nyu51/tab/tab31 +0 -0
  205. data/{test → spec/support}/mnt/aleph_tab/nyu51/tab/tab37 +0 -0
  206. data/{test → spec/support}/mnt/aleph_tab/nyu51/tab/tab40.eng +0 -0
  207. data/{test → spec/support}/mnt/aleph_tab/nyu51/tab/tab_www_item_desc.eng +0 -0
  208. data/spec/vcr_cassettes/patron.yml +1443 -0
  209. data/spec/vcr_cassettes/record.yml +763 -0
  210. metadata +351 -165
  211. data/lib/exlibris/aleph/abstract.rb +0 -28
  212. data/lib/exlibris/aleph/rest/base.rb +0 -56
  213. data/lib/exlibris/aleph/tab_helper.rb +0 -303
  214. data/lib/exlibris/aleph/tabs_parser/base.rb +0 -49
  215. data/lib/exlibris/aleph/tabs_parser/pc_tab_exp_field_extended.rb +0 -20
  216. data/lib/exlibris/aleph/tabs_parser/sub_library.rb +0 -32
  217. data/lib/exlibris/aleph/tabs_parser/tab15_by_item_process_status.rb +0 -33
  218. data/lib/exlibris/aleph/tabs_parser/tab15_by_item_status.rb +0 -33
  219. data/lib/exlibris/aleph/tabs_parser/tab31.rb +0 -39
  220. data/lib/exlibris/aleph/tabs_parser/tab37.rb +0 -63
  221. data/lib/exlibris/aleph/tabs_parser/tab40.rb +0 -20
  222. data/lib/exlibris/aleph/tabs_parser/tab_sub_library.rb +0 -21
  223. data/lib/exlibris/aleph/tabs_parser/tab_www_item_desc.rb +0 -20
  224. data/lib/exlibris/aleph/task_installer.rb +0 -25
  225. data/lib/exlibris/aleph/write_attributes.rb +0 -38
  226. data/lib/exlibris/aleph/xml_util.rb +0 -50
  227. data/lib/exlibris/aleph/xservice/bor_auth.rb +0 -47
  228. data/lib/tasks/exlibris-aleph_tasks.rake +0 -48
  229. data/test/config/aleph/alephe/sub_libraries.yml +0 -801
  230. data/test/config/aleph/nyu50/collections.yml +0 -1168
  231. data/test/config/aleph/nyu50/item_permissions_by_item_process_status.yml +0 -61876
  232. data/test/config/aleph/nyu50/item_permissions_by_item_status.yml +0 -17319
  233. data/test/config/aleph/nyu50/items.yml +0 -617
  234. data/test/config/aleph/nyu50/patron_permissions.yml +0 -19720
  235. data/test/config/aleph/nyu50/patrons.yml +0 -249
  236. data/test/config/aleph/nyu50/pickup_locations.yml +0 -2910
  237. data/test/config/aleph/nyu51/collections.yml +0 -41
  238. data/test/config/aleph/nyu51/item_permissions_by_item_process_status.yml +0 -7689
  239. data/test/config/aleph/nyu51/item_permissions_by_item_status.yml +0 -430
  240. data/test/config/aleph/nyu51/items.yml +0 -617
  241. data/test/config/aleph/nyu51/patron_permissions.yml +0 -6588
  242. data/test/config/aleph/nyu51/patrons.yml +0 -237
  243. data/test/config/aleph/nyu51/pickup_locations.yml +0 -456
  244. data/test/config_test.rb +0 -24
  245. data/test/exlibris-aleph_test.rb +0 -7
  246. data/test/mnt/aleph_tab/nyu50/tab/tab15.eng +0 -4742
  247. data/test/mnt/aleph_tab/pc_tab_exp_field_extended.eng +0 -158
  248. data/test/mnt/aleph_tab/tab16 +0 -3792
  249. data/test/mnt/aleph_tab/tab31 +0 -998
  250. data/test/mnt/aleph_tab/tab37 +0 -405
  251. data/test/mnt/aleph_tab/tab40.eng +0 -335
  252. data/test/mnt/aleph_tab/tab_sub_library.eng +0 -378
  253. data/test/mnt/aleph_tab/tab_www_item_desc.eng +0 -208
  254. data/test/patron_test.rb +0 -98
  255. data/test/record_benchmarks.rb +0 -26
  256. data/test/record_test.rb +0 -64
  257. data/test/support/config.yml +0 -2
  258. data/test/tab_helper_benchmarks.rb +0 -53
  259. data/test/tab_helper_test.rb +0 -192
  260. data/test/test_helper.rb +0 -46
  261. data/test/vcr_cassettes/bor_auth.yml +0 -42
  262. data/test/vcr_cassettes/patron.yml +0 -142
  263. data/test/vcr_cassettes/patron_address.yml +0 -45
  264. data/test/vcr_cassettes/patron_bogus_url.yml +0 -731
  265. data/test/vcr_cassettes/patron_error.yml +0 -93
  266. data/test/vcr_cassettes/record.yml +0 -146
  267. data/test/vcr_cassettes/record_bogus_url.yml +0 -690
  268. data/test/xservice/bor_auth_test.rb +0 -28
@@ -1,405 +0,0 @@
1
- !
2
- ! NOTE - 1) do not edit this header section
3
- ! - 2) this header is created from the template located
4
- ! in $aleph_headers (sub-folders)
5
- ! - 3) to add remarks within the table,
6
- ! start the line with !rem or !*
7
- ! - 4) to mark a line as non-used (but restorable)
8
- ! add ! at start of line, retaining column structure
9
- ! displaced by one position to the right
10
- ! - 5) all internal codes must be Latin characters A-Z,0-9
11
- !
12
- !============================================================================
13
- ! tab37 - Hold Requests Pick-up List Configuration
14
- !============================================================================
15
- ! Last header change: 27/10/2002
16
- !
17
- ! TABLE_KEY 1,2,3,4,5
18
- ! HELP
19
- !
20
- ! tab37 defines one aspect of hold requests:
21
- ! - the drop-down list of pickup and delivery locations for hold requests
22
- ! (dependent on item status, item process status, patron status and
23
- ! sublibrary of item).
24
- !
25
- ! If the item sublibrary, item status, item process status, patron status
26
- ! and pickup location are not defined in this table, the item cannot be
27
- ! requested.
28
- !
29
- !
30
- ! If you are using a specific item status in col.2 (i.e. not ##), make
31
- ! sure that the specific lines come before the general lines, since
32
- ! the table is read from top to bottom, and the first match is always taken.
33
- ! The same holds true for col.3 (item process status) and col.4 (patron
34
- ! status).
35
- !
36
- ! All item statuses are matched on ## in the first line, and the second line
37
- ! will never be used.
38
- !
39
- ! Example of correct setup:
40
- ! ULINC 14 ## ## # UEDUC
41
- ! ULINC ## ## ## # UEDUC
42
- !
43
- ! Example of incorrect setup:
44
- ! ULINC ## ## ## # UEDUC
45
- ! ULINC 14 ## ## # UEDUC
46
- !
47
- ! If you have a combination of one specific item status with all patron
48
- ! statuses and a combination of all item statuses with a specific patron
49
- ! status, define these lines first.
50
- !
51
- ! For example:
52
- ! You want all items with item status 14 except those requested by a patron
53
- ! with patron status 05 to be ready for pickup at UEDUC, and all items
54
- ! requested by a patron with patron status 05 to be ready for pickup at
55
- ! UHLTH. In order to achieve this specify lines for the
56
- ! combination of the two specific statuses (see example below).
57
- ! Example of correct setup:
58
- !
59
- ! ULINC 14 ## 05 # UHLTH
60
- ! ULINC 14 ## ## # UEDUC
61
- ! ULINC ## ## 05 # UHLTH
62
- ! ULINC ## ## ## # ULINC
63
- !
64
- ! You can define up to 1000 different pickup locations for
65
- ! each combination. Up to ten different locations can be entered on each line.
66
- ! If there is more than one line per combination (to allow for more than ten
67
- ! pickup locations), leave columns 1-5 empty in the other lines.
68
- !
69
- ! For example :
70
- !
71
- ! UHLTH ## ## ## # XXX01 XXX02 XXX03 XXX04 XXX05 XXX06 XXX07 XXX08 XXX09 XXX10
72
- ! XXX11 XXX12 XXX13 XXX14 XXX15 XXX16 XXX17 XXX18 XXX19 XXX20
73
- ! XXX21 XXX22 XXX23
74
- !
75
- ! -----------------------------------------------
76
- ! Display of the pickup sublibrary drop-down list
77
- ! -----------------------------------------------
78
- !
79
- ! Only a specific line matching sublibrary/item-status/item-process-
80
- ! status is taken for the dropdown list (i.e. although ## lines would match
81
- ! they are not included in the dropdown list if a more specific line is
82
- ! found).
83
- !
84
- ! Column 5 (Availability of item) can be used to filter out a sublibrary from
85
- ! the drop-down list of pickup locations. If column 5 is set to "N", the
86
- ! pickup location will display only if the item is not available (i.e. the item
87
- ! is on loan or on the hold shelf).
88
- !
89
- ! There are two correct ways to use this:
90
- ! 1) by exclusion:
91
- ! UHLTH ## ## ## N HOME
92
- ! UHLTH ## ## ## # UHLTH UEDUC
93
- !
94
- ! 2) by inclusion:
95
- ! UHLTH ## ## ## Y UHLTH UEDUC
96
- ! UHLTH ## ## ## N UHLTH UEDUC HOME
97
- !
98
- ! END_HELP
99
- !
100
- ! COL 1. 5; ALPHA_NUM, UPPER; #;
101
- ! Sublibrary;
102
- ! Sublibrary of the item;
103
- ! COL 2. 2; NUM {00-99}; #;
104
- ! Item status;
105
- ! Status of item being requested;
106
- ! COL 3. 2; ALPHA_NUM; #;
107
- ! Item process status;
108
- ! Process Status of item being requested;
109
- ! COL 4. 2; ALPHA_NUM; #;
110
- ! Patron status;
111
- ! Status of the patron;
112
- ! COL 5. 1; ALPHA {Y,N,#, }, UPPER; #;
113
- ! Availability of item;
114
- ! If "Y" this line only applies to available items (i.e. on the
115
- ! shelf). If "N" this line only applies to unavailable items (i.e. on
116
- ! loan, hold waiting to be picked up or in transit). Use # to indicate
117
- ! that the line is insensitive to availability of the item;
118
- ! COL 6. 5; ALPHA_NUM, UPPER; ;
119
- ! Pickup location;
120
- ! location to which the item will be sent (either to be picked up by
121
- ! the patron, or actually sent to the patron);
122
- ! COL 7. 5; ALPHA_NUM, UPPER; ;
123
- ! Pickup location;
124
- ! location to which the item will be sent (either to be picked up by
125
- ! the patron, or actually sent to the patron);
126
- ! COL 8. 5; ALPHA_NUM, UPPER; ;
127
- ! Pickup location;
128
- ! location to which the item will be sent (either to be picked up by
129
- ! the patron, or actually sent to the patron);
130
- ! COL 9. 5; ALPHA_NUM, UPPER; ;
131
- ! Pickup location;
132
- ! location to which the item will be sent (either to be picked up by
133
- ! the patron, or actually sent to the patron);
134
- ! COL 10. 5; ALPHA_NUM, UPPER; ;
135
- ! Pickup location;
136
- ! location to which the item will be sent (either to be picked up by
137
- ! the patron, or actually sent to the patron);
138
- ! COL 11. 5; ALPHA_NUM, UPPER; ;
139
- ! Pickup location;
140
- ! location to which the item will be sent (either to be picked up by
141
- ! the patron, or actually sent to the patron);
142
- ! COL 12. 5; ALPHA_NUM, UPPER; ;
143
- ! Pickup location;
144
- ! location to which the item will be sent (either to be picked up by
145
- ! the patron, or actually sent to the patron);
146
- ! COL 13. 5; ALPHA_NUM, UPPER; ;
147
- ! Pickup location;
148
- ! location to which the item will be sent (either to be picked up by
149
- ! the patron, or actually sent to the patron);
150
- ! COL 14. 5; ALPHA_NUM, UPPER; ;
151
- ! Pickup location;
152
- ! location to which the item will be sent (either to be picked up by
153
- ! the patron, or actually sent to the patron);
154
- ! COL 15. 5; ALPHA_NUM, UPPER; ;
155
- ! Pickup location;
156
- ! location to which the item will be sent (either to be picked up by
157
- ! the patron, or actually sent to the patron);
158
- ! 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
159
- !!!!!-!!-!!-!!-!-!!!!!-!!!!!-!!!!!-!!!!!-!!!!!-!!!!!-!!!!!-!!!!!-!!!!!-!!!!!
160
- BAFC ## ## 50 # BAFC NYUAB NYUSE NYUSS
161
- BAFC ## ## 51 # BAFC NYUAB NYUSE NYUSS
162
- BAFC ## ## 52 # BAFC NYUAB NYUSE NYUSS
163
- BAFC ## ## 53 # BAFC NYUAB NYUSE NYUSS
164
- BAFC ## ## 54 # BAFC
165
- BAFC ## ## 61 # BAFC
166
- BAFC ## ## 62 # BAFC NYUAB NYUSE NYUSS
167
- BAFC ## ## 70 # BAFC NYUAB NYUSE NYUSS
168
- BAFC ## ## 74 # BAFC
169
- BAFC ## ## 80 # BAFC NYUAB NYUSE NYUSS
170
- BAFC ## ## 88 # BAFC NYUAB NYUSE NYUSS
171
- BAFC ## ## 89 # BAFC NYUAB NYUSE NYUSS
172
- BAFC ## AC ## Y BAFC
173
- BAFC ## DP ## Y BAFC
174
- BAFC ## ## ## N BAFC
175
- BLCC ## RP ## Y BLCC
176
- BLCC ## ## ## N BLCC
177
- BOBST ## ## 50 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
178
- BOBST ## ## 51 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
179
- BOBST ## ## 52 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
180
- BOBST ## ## 53 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
181
- BOBST ## ## 54 # BOBST NCOUR NIFA NISAW NREI NPOLY
182
- BOBST ## ## 61 # BOBST NCOUR NIFA NISAW NREI NPOLY
183
- BOBST ## ## 62 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
184
- BOBST ## ## 70 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
185
- BOBST ## ## 74 # BOBST NCOUR NIFA NISAW NREI NPOLY
186
- BOBST ## ## 80 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
187
- BOBST ## ## 81 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
188
- BOBST ## ## 82 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB
189
- BOBST ## ## 88 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
190
- BOBST ## ## 89 # BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NBERL NFLOR NLOND
191
- NPRAG NWADC
192
- BOBST ## DP 50 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
193
- BOBST ## DP 51 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
194
- BOBST ## DP 52 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
195
- BOBST ## DP 53 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
196
- BOBST ## DP 54 Y BOBST NCOUR NIFA NISAW NREI NPOLY
197
- BOBST ## DP 61 Y BOBST NCOUR NIFA NISAW NREI NPOLY
198
- BOBST ## DP 62 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
199
- BOBST ## DP 70 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
200
- BOBST ## DP 74 Y BOBST NCOUR NIFA NISAW NREI NPOLY
201
- BOBST ## DP 80 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
202
- BOBST ## DP 81 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
203
- BOBST ## DP 82 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB
204
- BOBST ## DP 88 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
205
- BOBST ## DP 89 Y BOBST NCOUR NIFA NISAW NREI NPOLY NYUAB NBERL NFLOR NLOND
206
- NPRAG NWADC
207
- BOBST ## DP ## Y BOBST
208
- BOBST ## AC ## Y BOBST
209
- BOBST ## BD ## Y BOBST
210
- BOBST ## CB ## Y BOBST
211
- BOBST ## CT ## Y BOBST
212
- BOBST ## CU ## Y BOBST
213
- BOBST ## HC ## Y BOBST
214
- BOBST ## HN ## Y BOBST
215
- BOBST ## HP ## Y BOBST
216
- BOBST ## IT ## Y BOBST
217
- BOBST ## LB ## Y BOBST
218
- BOBST ## MQ ## Y BOBST
219
- BOBST ## OR ## Y BOBST
220
- BOBST ## PH ## Y BOBST
221
- BOBST ## PP ## Y BOBST
222
- BOBST ## PT ## Y BOBST
223
- BOBST ## RN ## Y BOBST
224
- BOBST ## RO ## Y BOBST
225
- BOBST ## XD ## N BOBST
226
- BOBST ## RP ## Y BOBST
227
- BOBST ## VI ## Y BOBST
228
- BOBST ## TS ## Y BOBST
229
- BOBST ## ## ## N BOBST
230
- BREF6 ## DP ## Y BOBST
231
- BREF6 ## BD ## Y BOBST
232
- BREF6 ## CT ## Y BOBST
233
- BREF6 ## CU ## Y BOBST
234
- BREF6 ## HC ## Y BOBST
235
- BREF6 ## HR ## Y BOBST
236
- BREF6 ## LB ## Y BOBST
237
- BREF6 ## OR ## Y BOBST
238
- BREF6 ## PP ## Y BOBST
239
- BREF6 ## ## ## N BOBST
240
- BRES ## CT ## Y BRES
241
- BRES ## DP ## Y BRES
242
- BRES ## OR ## N BRES
243
- BRES ## ## ## N BRES
244
- CU ## CU ## Y CU
245
- CU ## DP ## Y CU
246
- CU ## IT ## Y CU
247
- CU ## PP ## Y CU
248
- CU ## ## ## N CU
249
- NCOUR ## ## 50 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
250
- NCOUR ## ## 51 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
251
- NCOUR ## ## 52 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
252
- NCOUR ## ## 53 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
253
- NCOUR ## ## 54 # NCOUR BOBST NIFA NISAW NREI NPOLY
254
- NCOUR ## ## 61 # NCOUR BOBST NIFA NISAW NREI NPOLY
255
- NCOUR ## ## 62 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
256
- NCOUR ## ## 70 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
257
- NCOUR ## ## 74 # NCOUR BOBST NIFA NISAW NREI NPOLY
258
- NCOUR ## ## 80 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
259
- NCOUR ## ## 81 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
260
- NCOUR ## ## 82 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB
261
- NCOUR ## ## 88 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
262
- NCOUR ## ## 89 # NCOUR BOBST NIFA NISAW NREI NPOLY NYUAB NYUSE NYUSS
263
- NCOUR ## BD ## Y NCOUR
264
- NCOUR ## CU ## Y NCOUR
265
- NCOUR ## DP ## Y NCOUR
266
- NCOUR ## IT ## Y NCOUR
267
- NCOUR ## LB ## Y NCOUR
268
- NCOUR ## OR ## Y NCOUR
269
- NCOUR ## PP ## Y NCOUR
270
- NCOUR ## RP ## Y NCOUR
271
- NCOUR ## XC ## Y NCOUR
272
- NCOUR ## ## ## N NCOUR
273
- NIFA ## DP ## Y NIFA
274
- NIFA ## BD ## Y NIFA
275
- NIFA ## CB ## Y NIFA
276
- NIFA ## CT ## Y NIFA
277
- NIFA ## CU ## Y NIFA
278
- NIFA ## LB ## Y NIFA
279
- NIFA ## OR ## Y NIFA
280
- NIFA ## PH ## Y NIFA
281
- NIFA ## PP ## Y NIFA
282
- NIFA ## RP ## Y NIFA
283
- NIFA ## XH ## Y NIFA
284
- NIFA ## ## ## N NIFA
285
- NIFAC ## DP ## Y NIFAC
286
- NIFAC ## BD ## Y NIFAC
287
- NIFAC ## CB ## Y NIFAC
288
- NIFAC ## CT ## Y NIFAC
289
- NIFAC ## CU ## Y NIFAC
290
- NIFAC ## LB ## Y NIFAC
291
- NIFAC ## OR ## Y NIFAC
292
- NIFAC ## PH ## Y NIFAC
293
- NIFAC ## PP ## Y NIFAC
294
- NIFAC ## RP ## Y NIFAC
295
- NIFAC ## XH ## Y NIFAC
296
- NIFAC ## ## ## N NIFAC
297
-
298
- NREI ## ## 50 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
299
- NREI ## ## 51 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
300
- NREI ## ## 52 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
301
- NREI ## ## 53 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
302
- NREI ## ## 54 # NREI BOBST NCOUR NIFA NISAW NPOLY
303
- NREI ## ## 61 # NREI BOBST NCOUR NIFA NISAW NPOLY
304
- NREI ## ## 62 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
305
- NREI ## ## 70 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
306
- NREI ## ## 74 # NREI BOBST NCOUR NIFA NISAW NPOLY
307
- NREI ## ## 80 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
308
- NREI ## ## 81 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
309
- NREI ## ## 82 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB
310
- NREI ## ## 88 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
311
- NREI ## ## 89 # NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB
312
- NREI ## DP 50 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
313
- NREI ## DP 51 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
314
- NREI ## DP 52 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
315
- NREI ## DP 53 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
316
- NREI ## DP 54 Y NREI BOBST NCOUR NIFA NISAW NPOLY
317
- NREI ## DP 61 Y NREI BOBST NCOUR NIFA NISAW NPOLY
318
- NREI ## DP 62 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
319
- NREI ## DP 70 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
320
- NREI ## DP 74 Y NREI BOBST NCOUR NIFA NISAW NPOLY
321
- NREI ## DP 80 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
322
- NREI ## DP 81 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
323
- NREI ## DP 82 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB
324
- NREI ## DP 88 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB NYUSE NYUSS
325
- NREI ## DP 89 Y NREI BOBST NCOUR NIFA NISAW NPOLY NYUAB
326
- NREI ## DP ## Y NREI
327
- NREI ## AC ## Y NREI
328
- NREI ## BD ## Y NREI
329
- NREI ## CB ## Y NREI
330
- NREI ## CT ## Y NREI
331
- NREI ## CU ## Y NREI
332
- NREI ## HC ## Y NREI
333
- NREI ## HN ## Y NREI
334
- NREI ## HP ## Y NREI
335
- NREI ## IT ## Y NREI
336
- NREI ## LB ## Y NREI
337
- NREI ## MQ ## Y NREI
338
- NREI ## OR ## Y NREI
339
- NREI ## PH ## Y NREI
340
- NREI ## PP ## Y NREI
341
- NREI ## PT ## Y NREI
342
- NREI ## RN ## Y NREI
343
- NREI ## RO ## Y NREI
344
- NREI ## XD ## N NREI
345
- NREI ## RP ## Y NREI
346
- NREI ## VI ## Y NREI
347
- NREI ## TS ## Y NREI
348
- NREI ## ## ## N NREI
349
-
350
- NYSID ## BD ## Y NYSID
351
- NYSID ## CU ## Y NYSID
352
- NYSID ## DP ## Y NYSID
353
- NYSID ## LB ## Y NYSID
354
- NYSID ## PH ## Y NYSID
355
- NYSID ## RP ## Y NYSID
356
- NYSID ## XH ## Y NYSID
357
- NYSID ## ## ## N NYSID
358
-
359
- TNSFO ## ## 30 # TNSFO TNSGI TNSSC
360
- TNSFO ## ## 31 # TNSFO TNSGI TNSSC
361
- TNSFO ## ## 32 # TNSFO TNSGI TNSSC
362
- TNSFO ## ## 33 # TNSFO TNSGI TNSSC
363
- TNSFO ## ## 34 # TNSFO TNSGI TNSSC
364
- TNSFO ## DP ## Y TNSFO
365
- TNSFO ## BD ## Y TNSFO
366
- TNSFO ## CT ## Y TNSFO
367
- TNSFO ## CU ## Y TNSFO
368
- TNSFO ## LB ## Y TNSFO
369
- TNSFO ## OR ## Y TNSFO
370
- TNSFO ## OS ## Y TNSFO
371
- TNSFO ## PP ## Y TNSFO
372
- TNSFO ## RP ## Y TNSFO
373
- TNSFO ## ## ## N TNSFO
374
- TNSGI ## ## 30 # TNSFO TNSGI TNSSC
375
- TNSGI ## ## 31 # TNSFO TNSGI TNSSC
376
- TNSGI ## ## 32 # TNSFO TNSGI TNSSC
377
- TNSGI ## ## 33 # TNSFO TNSGI TNSSC
378
- TNSGI ## ## 34 # TNSFO TNSGI TNSSC
379
- TNSGI ## DP ## Y TNSGI
380
- TNSGI ## AC ## Y TNSGI
381
- TNSGI ## BD ## Y TNSGI
382
- TNSGI ## CT ## Y TNSGI
383
- TNSGI ## CU ## Y TNSGI
384
- TNSGI ## LB ## Y TNSGI
385
- TNSGI ## OR ## Y TNSGI
386
- TNSGI ## OS ## Y TNSGI
387
- TNSGI ## PP ## Y TNSGI
388
- TNSGI ## ## ## N TNSGI
389
- TNSKE ## ## ## N TNSKE
390
- TNSSC ## ## 30 # TNSFO TNSGI TNSSC
391
- TNSSC ## ## 31 # TNSFO TNSGI TNSSC
392
- TNSSC ## ## 32 # TNSFO TNSGI TNSSC
393
- TNSSC ## ## 33 # TNSFO TNSGI TNSSC
394
- TNSSC ## ## 34 # TNSFO TNSGI TNSSC
395
- TNSSC ## DP ## Y TNSSC
396
- TNSSC ## BD ## Y TNSSC
397
- TNSSC ## CT ## Y TNSSC
398
- TNSSC ## CU ## Y TNSSC
399
- TNSSC ## LB ## Y TNSSC
400
- TNSSC ## OR ## Y TNSSC
401
- TNSSC ## OS ## Y TNSSC
402
- TNSSC ## PP ## Y TNSSC
403
- TNSSC ## RP ## Y TNSSC
404
- TNSSC ## ## ## N TNSSC
405
- TNSOS ## ## ## N TNSFO
@@ -1,335 +0,0 @@
1
- !
2
- ! NOTE - 1) do not edit this header section
3
- ! - 2) this header is created from the template located
4
- ! in $aleph_headers (sub-folders)
5
- ! - 3) to add remarks within the table,
6
- ! start the line with !rem or !*
7
- ! - 4) to mark a line as non-used (but restorable)
8
- ! add ! at start of line, retaining column structure
9
- ! displaced by one position to the right
10
- ! - 5) all internal codes must be Latin characters A-Z,0-9
11
- !
12
- !====================================
13
- ! tab40 - collection definition
14
- !====================================
15
- ! Last header change: 04/03/2003
16
- !
17
- ! HELP
18
- ! This table defines the expansion of the collection code as entered in
19
- ! the Z30-COLLECTION FIELD in items, to the expanded form to be displayed
20
- ! in the OPAC.
21
- ! END_HELP
22
- !
23
- ! TABLE_KEY 1,2,3
24
- !
25
- ! COL 1. 5; ALPHA_NUM, UPPER; ;
26
- ! Code;
27
- ! Collection code;
28
- ! COL 2. 5; ALPHA_NUM, UPPER; #;
29
- ! Sublibrary;
30
- ! Sublibrary;
31
- ! COL 3. 1; ALPHA, UPPER {L}; ;
32
- ! Alpha;
33
- ! Character set;
34
- ! COL 4. 80; TEXT; ;
35
- ! Name;
36
- ! Collection name
37
- ! up to 80 characters;
38
- !
39
- ! 1 2 3 4
40
- !!!!!-!!!!!-!-!!!!!!!!!!!!!!!!!!!!!!!>
41
- AFC BAFC L Main Collection
42
- AFCR BAFC L Reference
43
- ARES BAFC L Reserve
44
- AV BAFC L Main Collection
45
- BIMC BAFC L Main Collection
46
- CLSTX BAFC L Closed Stacks
47
- MULTI BAFC L Main Collection
48
- FADKN BFALE L Adkins
49
- FALEF BFALE L Fales
50
- FALES BFALE L SpecCol
51
- FBER BFALE L Berol
52
- FDOWN BFALE L Downtown
53
- FKAPP BFALE L Kapp
54
- FMDT BFALE L Downtown - Media
55
- FMFA BFALE L Fales - Media
56
- FMEDI BFALE L SpecCol - Media
57
- FREF BFALE L Reference
58
- FREMA BFALE L Remarque / Goddard Papers
59
- FTSD BFALE L Technical Services
60
- MAIN BLCC L Computer Center
61
- BLEIS BOBST L Leisure Collection
62
- ALEV BOBST L LL2
63
- ALEVI BOBST L LL2 - Index
64
- ARCH BOBST L University Archives
65
- BEARF BOBST L East Asian Reference
66
- ATRIU BOBST L 1st Floor Reference Atrium Temp Collection
67
- BCIRC BOBST L ILL
68
- CLOSS BOBST L Closed Stack
69
- EASIA BOBST L East Asian
70
- !EGYPT BOBST L Egyptian under Bobst
71
- ETC BOBST L Electronic Text Center
72
- MAIN BOBST L Main Collection
73
- MFORM BOBST L Microform
74
- MREF BOBST L Music Reference
75
- MUSIC BOBST L Music
76
- PARL7 BOBST L NE Wing 7 - Parm papers
77
- PARL8 BOBST L 8th floor lounge
78
- PERIO BOBST L Periodicals
79
- PRES BOBST L Preservation OffSite Storage
80
- READ4 BOBST L Reading Room 4
81
- READ8 BOBST L Reading Room 8
82
- REF1 BOBST L 1st Floor Reference
83
- REF1B BOBST L 1st Floor Reference - Books in Print
84
- REF1C BOBST L 1st Floor Reference - Career section
85
- REF1D BOBST L 1st Floor Reference - Desk Reference
86
- REF1E BOBST L 1st Floor Reference - Etext (Studio)
87
- REF1I BOBST L 1st Floor Reference - Index
88
- REF1N BOBST L 1st Floor Reference - International Documents
89
- REF1S BOBST L 1st Floor Reference - Study
90
- REF5 BOBST L 5th Floor Reference
91
- REF9 BOBST L 9th Floor Reference
92
- RR4CL BOBST L 7th Floor South - Children's Literature
93
- RR4PP BOBST L 4th Floor East - Parliamentary Papers
94
- STORE BOBST L Storage
95
- STUDI BOBST L Studio
96
- TSD BOBST L Technical Services
97
- RF6 BREF6 L Main Collection
98
- RF6DR BREF6 L Desk Reference
99
- RF6I BREF6 L Index
100
- RF6IC BREF6 L Investment Collection
101
- RF6ID BREF6 L International Documents - Desk
102
- RF6II BREF6 L International Documents - Index
103
- RF6IN BREF6 L International Documents
104
- RF6IR BREF6 L International Reference
105
- !RF6IU BREF6 L International Documents - UN
106
- RF6ND BREF6 L NYPL Dictionary Catalog
107
- RF6NU BREF6 L National Union Catalog
108
- RF6UD BREF6 L United States Documents - Desk
109
- RF6UN BREF6 L United Nations Documents
110
- RF6US BREF6 L United States Documents
111
- BRES BRES L Reserve Collection
112
- TAM BTAM L Main Collection
113
- TAMR BTAM L Reference
114
- TTSD BTAM L Technical Services
115
- TAMVF BTAM L Vertical File
116
- TAMW BTAM L Wagner
117
- BNYUI BWEB L Internet Resources
118
- !BNYUS BWEB L Internet Resources - US Documents
119
- ARCH CU L Archives
120
- ATLAS CU L Atlas
121
- !CDROM CU L CD-ROM
122
- CLOSP CU L Closed Periodical Stacks
123
- CLOSS CU L Closed Stack
124
- CRES CU L Reserve Collection
125
- DIGTL CU L Digital Media
126
- INDEX CU L Index
127
- LSTAF CU L Library Staff
128
- MAIN CU L Main Collection
129
- MEZZ CU L Mezzanine
130
- MEZZP CU L Mezzanine Periodicals
131
- MICRO CU L Microform
132
- MICRP CU L Microform Periodicals
133
- NET CU L Restricted Internet Resources
134
- PERIO CU L Periodicals
135
- REF CU L Reference
136
- !SOFT CU L Software
137
- VIDEO CU L Video
138
- ARMS KBHS L Archives - Manuscripts
139
- ARTIF KBHS L Art - Artifacts
140
- ATLAS KBHS L Atlas
141
- CBDSK KBHS L Conservation / Bindery - Desk
142
- CBIND KBHS L Conservation / Bindery
143
- CSTAC KBHS L Closed Stacks
144
- FOLIO KBHS L Folio
145
- IMAGE KBHS L Images
146
- MAIN KBHS L Main Collection
147
- FLMAP KBHS L Flat Maps
148
- FDMAP KBHS L Folded Maps
149
- MFORM KBHS L Microform
150
- REF KBHS L Reference
151
- REFD KBHS L Reference - Desk
152
- SPCL KBHS L Special Collections
153
- STAFR KBHS L Staff Reference
154
- ACF MISC L Academic Computing
155
- BCRES MISC L CRES under Bobst
156
- BEGYP MISC L Egyption under Bobst
157
- BLANK MISC L No Bobst Fields to map
158
- BLDVD MISC L No Bobst Fields DVD
159
- BLVF MISC L No Bobst Fields Vertical File
160
- BOBI MISC L International Docs Bobst
161
- BOBVF MISC L Vertical File Bobst
162
- CBRES MISC L BRES under Courant
163
- GLIS MISC L GMA Errors
164
- GREY MISC L Grey
165
- GREYA MISC L Grey
166
- NCRES MISC L CRES under New School
167
- NYAA MISC L New York Academy of Art
168
- NYUIM MISC L NYU Restricted Internet Resources - Microform??
169
- RENOV MISC L Bobst Renovation Storage
170
- RENSC MISC L Bobst Renovation Storage - Special Collections
171
- TWJ MISC L Bill Jones Test Records
172
- ARCHR NCOUR L Archives Reserve
173
- MAIN NCOUR L Main Collection
174
- MICRO NCOUR L Microform
175
- MRES NCOUR L Reserves
176
- PERIO NCOUR L Periodicals
177
- REF NCOUR L Reference
178
- SEM NCOUR L Seminaire
179
- SPCL NCOUR L SpecCol
180
- STOR NCOUR L Storage
181
- TABLE NCOUR L Tables
182
- TECHR NCOUR L Technical Reports
183
- VIDEO NCOUR L Video
184
- ASIAN NIFA L Asian
185
- ASIAP NIFA L Asian Periodicals
186
- ASIAR NIFA L Asian Reference
187
- CLASS NIFA L Classical
188
- EGYPT NIFA L Egyptian
189
- FRES NIFA L Reserves
190
- GUIDE NIFA L Guides
191
- MAIN NIFA L Main Collection
192
- MICRO NIFA L Microform
193
- OFFSI NIFA L Offsite
194
- PERIO NIFA L Periodicals
195
- REF NIFA L Reference
196
- SPCL NIFA L SpecCol
197
- SPCLF NIFA L SpecCol Friedlaender collection
198
- TECH NIFA L Techincal Services
199
- VIS NIFA L Visual Resources
200
- MAIN NIFAC L Main Collection
201
- MICRO NIFAC L Microform
202
- PERIO NIFAC L Periodicals
203
- REF NIFAC L Reference
204
- SPCL NIFAC L SpecCol
205
- AWRES NISAW L Reserves
206
- FOLIO NISAW L Folio Collection
207
- LARGE NISAW L Large Collection
208
- MAIN NISAW L Main Collection
209
- OAK NISAW L Oak Collection
210
- OVERZ NISAW L Oversize Collection
211
- REF3 NISAW L Reference 3 Collection
212
- REF4 NISAW L Reference 4 Collection
213
- REF5 NISAW L Reference 5 Collection
214
- SMALL NISAW L Small Collection
215
- MAIN NKEV L Main Collection
216
- MAIN NLAPI L Main Collection
217
- MICRO NLAPI L Microform
218
- SOPRA NLAPI L Upper
219
- SPCL NLAPI L Special Collections
220
- STDLO NLAPI L Studiolo
221
- VILLA NLAPI L Villa Ulivi
222
- MAIN NOFFS L Main Collection
223
- MICRO NOFFS L Microform
224
- OSARC NOFFS L Archives
225
- OSINT NOFFS L International Documents
226
- OSREF NOFFS L Reference
227
- OSSDT NOFFS L SpecCol Downtown
228
- OSSPA NOFFS L SpecCol Adkins
229
- OSSPC NOFFS L SpecCol
230
- OSSPF NOFFS L SpecCol Fales
231
- OSTAM NOFFS L Tamiment
232
- OSTS NOFFS L Technical Services
233
- MAIN NREI L Main Collection
234
- PERIO NREI L Periodicals
235
- REF NREI L Reference
236
- VIDEO NREI L Video
237
- ADMIN NYHS L AdminOffice
238
- ALMA NYHS L Almanacs
239
- ARCH NYHS L Archives
240
- ARCHI NYHS L Architecture
241
- BEEK NYHS L Beekman Collection
242
- BLAB NYHS L Book Lab
243
- BROAD NYHS L Broadsides
244
- CIRCU NYHS L Circus
245
- DIR NYHS L Directories
246
- GREEN NYHS L Greenwood Collection
247
- HAWKS NYHS L Hawks-Niblo Collection
248
- INDEX NYHS L Index
249
- KING NYHS L King Library
250
- LANDA NYHS L Landauer
251
- LIND NYHS L Lind
252
- LIVI NYHS L Livingston
253
- MAIN NYHS L Main Collection
254
- MAPS NYHS L Maps
255
- MICRO NYHS L Microform
256
- MORS NYHS L Morris Collection
257
- MSCL NYHS L Mss Collection
258
- MSREF NYHS L MssRef
259
- MUS NYHS L Museum Collection
260
- MUSIC NYHS L Music
261
- NET NYHS L Internet Resources
262
- NEWSP NYHS L Newspaper Collection
263
- PAMPH NYHS L Pamphlets
264
- PERIO NYHS L Periodicals
265
- PRARE NYHS L Print Room Rare
266
- PREF NYHS L Print Room Reference
267
- PRNTS NYHS L Print Room
268
- REF NYHS L Reference
269
- REFA NYHS L Art Reference
270
- SPCL NYHS L SpecCol
271
- TECH NYHS L Technical Services
272
- AUCT NYSID L Auction Catalogs
273
- AV NYSID L Audiovisual
274
- CLOSS NYSID L Closed Stacks
275
- IRES NYSID L Reserves
276
- MAIN NYSID L Main Collection
277
- MATRC NYSID L Materials Resourc Center
278
- NET NYSID L Internet Resource
279
- NETMU NYSID L Internet Resource
280
- NETSU NYSID L Internet Resource
281
- PERIO NYSID L Periodicals
282
- REF NYSID L Reference
283
- SPCL NYSID L SpecCol
284
- VIDEO NYSID L Audiovisual
285
- ARCH TNSFO L Archives
286
- ATLAS TNSFO L Reference
287
- AV TNSFO L Audio Visual
288
- CATM TNSFO L Catalog Maintenance
289
- CLOSP TNSFO L Closed Stack
290
- CLOSS TNSFO L Closed Stack
291
- INDEX TNSFO L Reference
292
- MAIN TNSFO L Main Collection
293
- MICRO TNSFO L Microform
294
- MIG TNSFO L Migration Center
295
- NRES TNSFO L Newschool Reserve
296
- PERIO TNSFO L Periodicals
297
- REF TNSFO L Reference
298
- REFD TNSFO L Reference - Desk
299
- REFI TNSFO L Reference - Index
300
- STOR TNSFO L Storage
301
- TECH TNSFO L Tech Center
302
- TESOL TNSFO L TESOL
303
- THES TNSFO L Thesis
304
- !ANNEX TNSGI L Annex
305
- !ANNSC TNSGI L Annex - Special Collections
306
- AV TNSGI L Audio Visual
307
- MAIN TNSGI L Main Collection
308
- PERIO TNSGI L Periodicals
309
- PRES TNSGI L Reserve Collection
310
- REF TNSGI L Reference
311
- !REFA TNSGI L Reference
312
- !SLIDE TNSGI L Slide
313
- SPCL TNSGI L SpecCol
314
- SPCLP TNSGI L SpecCol Periodicals
315
- ARCH TNSKE L Main Collection
316
- !MAIN TNSOS L Main Collection
317
- ANNEX TNSSC L Annex
318
- AV TNSSC L Audio Visual
319
- CIRC TNSSC L Circ Desk
320
- MAIN TNSSC L Main Collection
321
- MINI TNSSC L Miniature Scores
322
- MUREF TNSSC L Music Reference
323
- MUSIC TNSSC L Music
324
- OFFIC TNSSC L Office
325
- PERIO TNSSC L Periodicals
326
- REF TNSSC L Reference
327
- SCORE TNSSC L Full Score
328
- SPCL TNSSC L SpecCol
329
- SRES TNSSC L Reserve Collection
330
- BPLUS WEB L Internet Resources - BobCat Plus
331
- GENI WEB L Internet Resources
332
- GENIU WEB L Internet Resources - US Documents
333
- TNSI TWEB L Internet Resources
334
- TNSIM TWEB L Internet Resources
335
- TNSIS TWEB L Internet Resources