exlibris-aleph 1.1.0 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,801 +0,0 @@
1
- ---
2
- USR00:
3
- :code: USR00
4
- :type: '2'
5
- :library: ''
6
- :text: USR00 Library
7
- HOME:
8
- :code: HOME
9
- :type: '3'
10
- :library: ''
11
- :text: Home address
12
- BOX:
13
- :code: BOX
14
- :type: '3'
15
- :library: ''
16
- :text: In-house mailbox
17
- ILLDT:
18
- :code: ILLDT
19
- :type: '3'
20
- :library: ''
21
- :text: ILL Department
22
- BOBST:
23
- :code: BOBST
24
- :type: '1'
25
- :library: NYU50
26
- :text: NYU Bobst
27
- BAFC:
28
- :code: BAFC
29
- :type: '1'
30
- :library: NYU50
31
- :text: NYU Bobst Avery Fisher Center
32
- BFALE:
33
- :code: BFALE
34
- :type: '1'
35
- :library: NYU50
36
- :text: NYU Bobst Special Collections
37
- BLCC:
38
- :code: BLCC
39
- :type: '1'
40
- :library: NYU50
41
- :text: NYU Bobst Library Computer Ctr
42
- BREF6:
43
- :code: BREF6
44
- :type: '1'
45
- :library: NYU50
46
- :text: NYU Bobst 6th Floor Reference
47
- BRES:
48
- :code: BRES
49
- :type: '1'
50
- :library: NYU50
51
- :text: NYU Bobst Reserve Collection
52
- BTAM:
53
- :code: BTAM
54
- :type: '1'
55
- :library: NYU50
56
- :text: NYU Bobst Tamiment
57
- BWEB:
58
- :code: BWEB
59
- :type: '1'
60
- :library: NYU50
61
- :text: NYU Restricted
62
- CU:
63
- :code: CU
64
- :type: '1'
65
- :library: NYU50
66
- :text: Cooper Union Library
67
- KBHS:
68
- :code: KBHS
69
- :type: '1'
70
- :library: NYU50
71
- :text: Brooklyn Historical Society
72
- MISC:
73
- :code: MISC
74
- :type: '1'
75
- :library: NYU50
76
- :text: Miscellaneous for cleanup
77
- NBERL:
78
- :code: NBERL
79
- :type: '3'
80
- :library: NYU50
81
- :text: NYU Berlin (Germany)
82
- NCOUR:
83
- :code: NCOUR
84
- :type: '1'
85
- :library: NYU50
86
- :text: NYU Courant
87
- NFLOR:
88
- :code: NFLOR
89
- :type: '3'
90
- :library: NYU50
91
- :text: NYU Florence (Italy)
92
- NIFA:
93
- :code: NIFA
94
- :type: '1'
95
- :library: NYU50
96
- :text: NYU Institute of Fine Arts
97
- NIFAC:
98
- :code: NIFAC
99
- :type: '1'
100
- :library: NYU50
101
- :text: NYU IFA Conservation Center
102
- NISAW:
103
- :code: NISAW
104
- :type: '1'
105
- :library: NYU50
106
- :text: NYU Inst Study Ancient World
107
- NKEV:
108
- :code: NKEV
109
- :type: '1'
110
- :library: NYU50
111
- :text: NYU Kevorkian
112
- NLAPI:
113
- :code: NLAPI
114
- :type: '1'
115
- :library: NYU50
116
- :text: NYU La Pietra Library (Italy)
117
- NLOND:
118
- :code: NLOND
119
- :type: '3'
120
- :library: NYU50
121
- :text: NYU London (England)
122
- NOFFS:
123
- :code: NOFFS
124
- :type: '1'
125
- :library: NYU50
126
- :text: NYU Offsite Storage
127
- NPOLY:
128
- :code: NPOLY
129
- :type: '1'
130
- :library: NYU50
131
- :text: NYU Poly
132
- NPRAG:
133
- :code: NPRAG
134
- :type: '3'
135
- :library: NYU50
136
- :text: NYU Prague (Czech Republic)
137
- NREI:
138
- :code: NREI
139
- :type: '1'
140
- :library: NYU50
141
- :text: NYU Jack Brause
142
- NSHEQ:
143
- :code: NSHEQ
144
- :type: '1'
145
- :library: NYU52
146
- :text: NYU Shanghai Library Equipment
147
- NSHNG:
148
- :code: NSHNG
149
- :type: '1'
150
- :library: NYU52
151
- :text: NYU Shanghai Library (China)
152
- NWADC:
153
- :code: NWADC
154
- :type: '3'
155
- :library: NYU50
156
- :text: NYU Washington, D.C.
157
- NYHS:
158
- :code: NYHS
159
- :type: '1'
160
- :library: NYU50
161
- :text: New-York Historical Society
162
- NYSID:
163
- :code: NYSID
164
- :type: '1'
165
- :library: NYU50
166
- :text: New York School of Int Des
167
- NYUAB:
168
- :code: NYUAB
169
- :type: '3'
170
- :library: NYU50
171
- :text: NYU Abu Dhabi Library (UAE)
172
- NYUSS:
173
- :code: NYUSS
174
- :type: '3'
175
- :library: NYU50
176
- :text: NYUAD Sama Fac Offices (UAE)
177
- NYUSE:
178
- :code: NYUSE
179
- :type: '3'
180
- :library: NYU50
181
- :text: NYUAD Ctr for Sci & Eng (UAE)
182
- SWEB:
183
- :code: SWEB
184
- :type: '1'
185
- :library: NYU52
186
- :text: NYU NSHNG Restricted EResouces
187
- TNSFO:
188
- :code: TNSFO
189
- :type: '1'
190
- :library: NYU50
191
- :text: New School Fogelman Library
192
- TNSGI:
193
- :code: TNSGI
194
- :type: '1'
195
- :library: NYU50
196
- :text: New School Gimbel Library
197
- TNSKE:
198
- :code: TNSKE
199
- :type: '1'
200
- :library: NYU50
201
- :text: New School Kellen Archives
202
- TNSOS:
203
- :code: TNSOS
204
- :type: '1'
205
- :library: NYU50
206
- :text: New School Offsite Storage
207
- TNSSC:
208
- :code: TNSSC
209
- :type: '1'
210
- :library: NYU50
211
- :text: New School Scherman Library
212
- TWEB:
213
- :code: TWEB
214
- :type: '1'
215
- :library: NYU50
216
- :text: New School Restricted
217
- WEB:
218
- :code: WEB
219
- :type: '1'
220
- :library: NYU50
221
- :text: Unrestricted
222
- NYU50:
223
- :code: NYU50
224
- :type: '2'
225
- :library: NYU50
226
- :text: NYU50
227
- AFC:
228
- :code: AFC
229
- :type: '5'
230
- :library: NYU50
231
- :text: Avery Fisher Center
232
- BOBA:
233
- :code: BOBA
234
- :type: '5'
235
- :library: NYU50
236
- :text: Bobst Acquisitions
237
- BOBS:
238
- :code: BOBS
239
- :type: '5'
240
- :library: NYU50
241
- :text: Bobst Serials
242
- BOBE:
243
- :code: BOBE
244
- :type: '5'
245
- :library: NYU50
246
- :text: Bobst Electronic
247
- NCOU1:
248
- :code: NCOU1
249
- :type: '5'
250
- :library: NYU50
251
- :text: NYU Courant
252
- CU1:
253
- :code: CU1
254
- :type: '5'
255
- :library: NYU50
256
- :text: Cooper Union
257
- BFAL1:
258
- :code: BFAL1
259
- :type: '5'
260
- :library: NYU50
261
- :text: Fales Library
262
- NIF1:
263
- :code: NIF1
264
- :type: '5'
265
- :library: NYU50
266
- :text: Institute of Fine Arts
267
- NIF2:
268
- :code: NIF2
269
- :type: '5'
270
- :library: NYU50
271
- :text: Inst of Fine Arts Conserv
272
- NISA1:
273
- :code: NISA1
274
- :type: '5'
275
- :library: NYU50
276
- :text: Inst for Study of Anc World
277
- TNSF1:
278
- :code: TNSF1
279
- :type: '5'
280
- :library: NYU50
281
- :text: New School Fogelman Library
282
- TNSG1:
283
- :code: TNSG1
284
- :type: '5'
285
- :library: NYU50
286
- :text: New School Gimbel Library
287
- TNSS1:
288
- :code: TNSS1
289
- :type: '5'
290
- :library: NYU50
291
- :text: New School Scherman Library
292
- NEWA:
293
- :code: NEWA
294
- :type: '5'
295
- :library: NYU50
296
- :text: New School University, Acq
297
- NEWS:
298
- :code: NEWS
299
- :type: '5'
300
- :library: NYU50
301
- :text: New School University, Ser
302
- NYUSH:
303
- :code: NYUSH
304
- :type: '5'
305
- :library: NYU52
306
- :text: NYU Shanghai Library (China)
307
- NYSI1:
308
- :code: NYSI1
309
- :type: '5'
310
- :library: NYU50
311
- :text: NY School of Interior Design
312
- REI:
313
- :code: REI
314
- :type: '5'
315
- :library: NYU50
316
- :text: Real Estate Institute
317
- BTA1:
318
- :code: BTA1
319
- :type: '5'
320
- :library: NYU50
321
- :text: Tamiment Library
322
- REF6:
323
- :code: REF6
324
- :type: '5'
325
- :library: NYU50
326
- :text: NYU Bobst Library 6th Fl
327
- NABUD:
328
- :code: NABUD
329
- :type: '1'
330
- :library: NYU51
331
- :text: NYU Abu Dhabi Library (UAE)
332
- NADEQ:
333
- :code: NADEQ
334
- :type: '1'
335
- :library: NYU51
336
- :text: NYU Abu Dhabi Equipment
337
- NADEX:
338
- :code: NADEX
339
- :type: '1'
340
- :library: NYU51
341
- :text: NYU Abu Dhabi (UAE) Annex
342
- NADSS:
343
- :code: NADSS
344
- :type: '3'
345
- :library: NYU51
346
- :text: NYUAD Sama Fac Offices (UAE)
347
- NADSE:
348
- :code: NADSE
349
- :type: '3'
350
- :library: NYU51
351
- :text: NYUAD Ctr for Sci & Eng (UAE)
352
- NWEB:
353
- :code: NWEB
354
- :type: '1'
355
- :library: NYU51
356
- :text: Restricted Electronic Resource
357
- NAFC:
358
- :code: NAFC
359
- :type: '1'
360
- :library: NYU51
361
- :text: NYU Abu Dhabi Media in NY
362
- NYUAD:
363
- :code: NYUAD
364
- :type: '5'
365
- :library: NYU51
366
- :text: NYU Abu Dhabi Library (UAE)
367
- NYU51:
368
- :code: NYU51
369
- :type: '2'
370
- :library: NYU51
371
- :text: NYU51
372
- ALEPH:
373
- :code: ALEPH
374
- :type: '2'
375
- :library: ''
376
- :text: General Patron
377
- USM50:
378
- :code: USM50
379
- :type: '2'
380
- :library: USM50
381
- :text: Exlibris Demo Libraries
382
- MED:
383
- :code: MED
384
- :type: '1'
385
- :library: USM50
386
- :text: Medicine Library
387
- HYL:
388
- :code: HYL
389
- :type: '1'
390
- :library: USM50
391
- :text: East Asian Library
392
- HIL:
393
- :code: HIL
394
- :type: '1'
395
- :library: USM50
396
- :text: Humanities Library
397
- LAM:
398
- :code: LAM
399
- :type: '1'
400
- :library: USM50
401
- :text: Main Undergraduate
402
- LAW:
403
- :code: LAW
404
- :type: '1'
405
- :library: USM50
406
- :text: Law Library
407
- LIT:
408
- :code: LIT
409
- :type: '1'
410
- :library: USM50
411
- :text: Economics Library
412
- MUS:
413
- :code: MUS
414
- :type: '1'
415
- :library: USM50
416
- :text: Music Library
417
- WID:
418
- :code: WID
419
- :type: '1'
420
- :library: USM50
421
- :text: Main Library
422
- EXL:
423
- :code: EXL
424
- :type: '1'
425
- :library: USM50
426
- :text: PLIF Library
427
- CIRC:
428
- :code: CIRC
429
- :type: '1'
430
- :library: USM50
431
- :text: PLIF ILL Library
432
- HILR:
433
- :code: HILR
434
- :type: '4'
435
- :library: USM50
436
- :text: Humanities Reading Room
437
- HIL01:
438
- :code: HIL01
439
- :type: '5'
440
- :library: USM50
441
- :text: Humanities (Ordering Unit)
442
- HYL01:
443
- :code: HYL01
444
- :type: '5'
445
- :library: USM50
446
- :text: East Asian (Chinese)
447
- HYL02:
448
- :code: HYL02
449
- :type: '5'
450
- :library: USM50
451
- :text: East Asian (Japanese)
452
- HYL03:
453
- :code: HYL03
454
- :type: '5'
455
- :library: USM50
456
- :text: East Asian (Korean)
457
- HYL04:
458
- :code: HYL04
459
- :type: '5'
460
- :library: USM50
461
- :text: East Asian (Vietnamese)
462
- HYL05:
463
- :code: HYL05
464
- :type: '5'
465
- :library: USM50
466
- :text: East Asian (Western)
467
- HYL06:
468
- :code: HYL06
469
- :type: '5'
470
- :library: USM50
471
- :text: East Asian (Serials)
472
- LAM01:
473
- :code: LAM01
474
- :type: '5'
475
- :library: USM50
476
- :text: Undergraduate (Monographs)
477
- LAM02:
478
- :code: LAM02
479
- :type: '5'
480
- :library: USM50
481
- :text: Undergraduate (Serials)
482
- LAM03:
483
- :code: LAM03
484
- :type: '5'
485
- :library: USM50
486
- :text: Undergraduate (Standing Orders
487
- LAW01:
488
- :code: LAW01
489
- :type: '5'
490
- :library: USM50
491
- :text: Law
492
- LAW02:
493
- :code: LAW02
494
- :type: '5'
495
- :library: USM50
496
- :text: Law (East Asian Acquisitions)
497
- LAW03:
498
- :code: LAW03
499
- :type: '5'
500
- :library: USM50
501
- :text: Law (Islamic Acquisitions)
502
- LIT01:
503
- :code: LIT01
504
- :type: '5'
505
- :library: USM50
506
- :text: Economics (Monograph)
507
- LIT02:
508
- :code: LIT02
509
- :type: '5'
510
- :library: USM50
511
- :text: Economics (Serials)
512
- MED01:
513
- :code: MED01
514
- :type: '5'
515
- :library: USM50
516
- :text: Medicine (Unit 1)
517
- MED02:
518
- :code: MED02
519
- :type: '5'
520
- :library: USM50
521
- :text: Medicine (Unit 2)
522
- MUS01:
523
- :code: MUS01
524
- :type: '5'
525
- :library: USM50
526
- :text: Music (Unit 1)
527
- MUS02:
528
- :code: MUS02
529
- :type: '5'
530
- :library: USM50
531
- :text: Music (Unit 2)
532
- WID01:
533
- :code: WID01
534
- :type: '5'
535
- :library: USM50
536
- :text: Main Library (General)
537
- WID02:
538
- :code: WID02
539
- :type: '5'
540
- :library: USM50
541
- :text: Main Library (Serial)
542
- WID03:
543
- :code: WID03
544
- :type: '5'
545
- :library: USM50
546
- :text: Main Library (Slavic)
547
- WID04:
548
- :code: WID04
549
- :type: '5'
550
- :library: USM50
551
- :text: Main Library (Judaica)
552
- WID05:
553
- :code: WID05
554
- :type: '5'
555
- :library: USM50
556
- :text: Main Library (Middle East)
557
- U60WD:
558
- :code: U60WD
559
- :type: '6'
560
- :library: USM50
561
- :text: ILL unit-WID
562
- U60HL:
563
- :code: U60HL
564
- :type: '6'
565
- :library: USM50
566
- :text: ILL unit-HYL
567
- U60LA:
568
- :code: U60LA
569
- :type: '6'
570
- :library: USM50
571
- :text: ILL unit-LAW
572
- U70WD:
573
- :code: U70WD
574
- :type: '6'
575
- :library: USM50
576
- :text: ILL unit-WID 17
577
- CBAB:
578
- :code: CBAB
579
- :type: '1'
580
- :library: USM50
581
- :text: CBAB
582
- BCU:
583
- :code: BCU
584
- :type: '1'
585
- :library: USM50
586
- :text: BCU
587
- MBAZU:
588
- :code: MBAZU
589
- :type: '1'
590
- :library: USM50
591
- :text: MBAZU
592
- USM51:
593
- :code: USM51
594
- :type: '2'
595
- :library: USM51
596
- :text: USM51 Demo Libraries
597
- ELEC5:
598
- :code: ELEC5
599
- :type: '1'
600
- :library: USM55
601
- :text: Electronic Resources 55
602
- GDOC5:
603
- :code: GDOC5
604
- :type: '1'
605
- :library: USM51
606
- :text: Government Documents 51
607
- EDUC5:
608
- :code: EDUC5
609
- :type: '1'
610
- :library: USM51
611
- :text: Education Library 51
612
- LINC5:
613
- :code: LINC5
614
- :type: '1'
615
- :library: USM51
616
- :text: Lincoln Library 51
617
- RRLIN:
618
- :code: RRLIN
619
- :type: '4'
620
- :library: USM51
621
- :text: LINC5 Reading Room 51
622
- OU511:
623
- :code: OU511
624
- :type: '5'
625
- :library: USM51
626
- :text: Ordering Unit 1 usm51
627
- OR512:
628
- :code: OR512
629
- :type: '5'
630
- :library: USM51
631
- :text: Ordering Unit 2 usm51
632
- OR513:
633
- :code: OR513
634
- :type: '5'
635
- :library: USM51
636
- :text: Ordering Unit 3 usm51
637
- OR514:
638
- :code: OR514
639
- :type: '5'
640
- :library: USM51
641
- :text: Ordering Unit 4 usm51
642
- OR515:
643
- :code: OR515
644
- :type: '5'
645
- :library: USM51
646
- :text: Ordering Unit 5 usm51
647
- U61ED:
648
- :code: U61ED
649
- :type: '6'
650
- :library: USM51
651
- :text: ILL unit-EDUC5
652
- U61EL:
653
- :code: U61EL
654
- :type: '6'
655
- :library: USM51
656
- :text: ILL unit-ELEC5
657
- U61LN:
658
- :code: U61LN
659
- :type: '6'
660
- :library: USM51
661
- :text: ILL unit-LINC5
662
- S61GD:
663
- :code: S61GD
664
- :type: '6'
665
- :library: USM51
666
- :text: ILL unit-GDOC5 SMTP
667
- USM53:
668
- :code: USM53
669
- :type: '2'
670
- :library: USM53
671
- :text: USM53 Demo Libraries
672
- ELEC7:
673
- :code: ELEC7
674
- :type: '1'
675
- :library: USM53
676
- :text: Electronic Resources 53
677
- GDOC7:
678
- :code: GDOC7
679
- :type: '1'
680
- :library: USM53
681
- :text: Government Documents 53
682
- EDUC7:
683
- :code: EDUC7
684
- :type: '1'
685
- :library: USM53
686
- :text: Education Library 53
687
- LINC7:
688
- :code: LINC7
689
- :type: '1'
690
- :library: USM53
691
- :text: Lincoln Library 53
692
- USM54:
693
- :code: USM54
694
- :type: '2'
695
- :library: USM54
696
- :text: USM54 Demo Libraries
697
- ELEC4:
698
- :code: ELEC4
699
- :type: '1'
700
- :library: USM54
701
- :text: Electronic Resources 54
702
- USM55:
703
- :code: USM55
704
- :type: '2'
705
- :library: USM55
706
- :text: USM55 Demo Libraries
707
- CUN50:
708
- :code: CUN50
709
- :type: '2'
710
- :library: CUN50
711
- :text: CUN50 Demo Libraries
712
- CLEC5:
713
- :code: CLEC5
714
- :type: '1'
715
- :library: CUN50
716
- :text: Electronic Resources
717
- CDOC5:
718
- :code: CDOC5
719
- :type: '1'
720
- :library: CUN50
721
- :text: Government Documents
722
- CDUC5:
723
- :code: CDUC5
724
- :type: '1'
725
- :library: CUN50
726
- :text: Education Library
727
- CINC5:
728
- :code: CINC5
729
- :type: '1'
730
- :library: CUN50
731
- :text: Lincoln Library
732
- UNI50:
733
- :code: UNI50
734
- :type: '2'
735
- :library: UNI50
736
- :text: Exlibris UNIMARC Libraries
737
- NARCV:
738
- :code: NARCV
739
- :type: '1'
740
- :library: UNI50
741
- :text: Archives Library
742
- NELEC:
743
- :code: NELEC
744
- :type: '1'
745
- :library: UNI50
746
- :text: Electronic Resources
747
- NRLEC:
748
- :code: NRLEC
749
- :type: '4'
750
- :library: UNI50
751
- :text: NELEC Reading Room
752
- NGDOC:
753
- :code: NGDOC
754
- :type: '1'
755
- :library: UNI50
756
- :text: Government Documents
757
- NRDOC:
758
- :code: NRDOC
759
- :type: '4'
760
- :library: UNI50
761
- :text: NGDOC Reading Room
762
- NEDUC:
763
- :code: NEDUC
764
- :type: '1'
765
- :library: UNI50
766
- :text: Education Library
767
- NHLTH:
768
- :code: NHLTH
769
- :type: '1'
770
- :library: UNI50
771
- :text: Health Library
772
- NLINC:
773
- :code: NLINC
774
- :type: '1'
775
- :library: UNI50
776
- :text: Lincoln Library
777
- NLAW:
778
- :code: NLAW
779
- :type: '1'
780
- :library: UNI50
781
- :text: Law Library
782
- NMUSI:
783
- :code: NMUSI
784
- :type: '1'
785
- :library: UNI50
786
- :text: Music Library
787
- NSCI:
788
- :code: NSCI
789
- :type: '1'
790
- :library: UNI50
791
- :text: Science Library
792
- NUPTN:
793
- :code: NUPTN
794
- :type: '1'
795
- :library: UNI50
796
- :text: Uptown Branch
797
- NEW__:
798
- :code: NEW__
799
- :type: '1'
800
- :library: NYU50
801
- :text: NYU TEST