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
@@ -0,0 +1,1443 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ User-Agent:
11
+ - Faraday v0.8.9
12
+ response:
13
+ status:
14
+ code: 200
15
+ message:
16
+ headers:
17
+ server:
18
+ - Apache-Coyote/1.1
19
+ x-powered-by:
20
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
21
+ content-type:
22
+ - application/xml
23
+ date:
24
+ - Fri, 18 Apr 2014 02:29:51 GMT
25
+ connection:
26
+ - close
27
+ body:
28
+ encoding: US-ASCII
29
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-patron><reply-text>ok</reply-text><reply-code>0000</reply-code><patron><info
30
+ type="Circulation Actions" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/circulationActions"></info><info
31
+ type="Patron Information" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/patronInformation"></info><info
32
+ type="Patron Status" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/patronStatus"></info><info
33
+ type="Records" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record"></info><translate-change-active-library>NYU50</translate-change-active-library><institution
34
+ code="NYU50">NYU50</institution></patron></get-patron> '
35
+ http_version:
36
+ recorded_at: Fri, 18 Apr 2014 02:29:51 GMT
37
+ - request:
38
+ method: get
39
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/patronInformation/address
40
+ body:
41
+ encoding: US-ASCII
42
+ string: ''
43
+ headers:
44
+ User-Agent:
45
+ - Faraday v0.8.9
46
+ response:
47
+ status:
48
+ code: 200
49
+ message:
50
+ headers:
51
+ server:
52
+ - Apache-Coyote/1.1
53
+ x-powered-by:
54
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
55
+ content-type:
56
+ - application/xml
57
+ date:
58
+ - Fri, 02 May 2014 02:53:59 GMT
59
+ connection:
60
+ - close
61
+ body:
62
+ encoding: US-ASCII
63
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-pat-adrs><reply-text>ok</reply-text><reply-code>0000</reply-code><address-information
64
+ updateable="Y"><z304-address-1 usage="Mandatory" max_len="50">SURNAME,GIVEN
65
+ NAME</z304-address-1><z304-address-2 usage="Optional" max_len="50">123 ADDRESS,
66
+ #APT</z304-address-2><z304-address-3 usage="Optional" max_len="50">BROOKLYN</z304-address-3><z304-address-4
67
+ usage="Optional" max_len="50">NY</z304-address-4><z304-address-5 usage="Optional"
68
+ max_len="50">NY</z304-address-5><z304-date-from usage="Mandatory">20140211</z304-date-from><z304-date-to
69
+ usage="Mandatory">20200101</z304-date-to><z304-zip usage="Optional" max_len="9">11215</z304-zip><z304-telephone-1
70
+ usage="Optional" max_len="30"></z304-telephone-1><z304-telephone-2 usage="Optional"
71
+ max_len="30"></z304-telephone-2><z304-telephone-3 usage="Optional" max_len="30"></z304-telephone-3><z304-telephone-4
72
+ usage="Optional" max_len="30"></z304-telephone-4><z304-sms-number usage="Optional"
73
+ max_len="30"></z304-sms-number><z303-want-sms usage="Optional">N</z303-want-sms><z303-plain-html
74
+ usage="Optional" code="P">Email Body Only</z303-plain-html><z304-email-address
75
+ usage="Optional" max_len="60">bor_id@library.edu</z304-email-address><mail-options
76
+ usage="Read-Only"><mail-option code="P">Email Body Only</mail-option><mail-option
77
+ code="H">Attachment Only</mail-option><mail-option code="B">Attachment and
78
+ Email Body</mail-option></mail-options></address-information></get-pat-adrs> '
79
+ http_version:
80
+ recorded_at: Fri, 02 May 2014 02:53:59 GMT
81
+ - request:
82
+ method: get
83
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206
84
+ body:
85
+ encoding: US-ASCII
86
+ string: ''
87
+ headers:
88
+ User-Agent:
89
+ - Faraday v0.8.9
90
+ response:
91
+ status:
92
+ code: 200
93
+ message:
94
+ headers:
95
+ server:
96
+ - Apache-Coyote/1.1
97
+ x-powered-by:
98
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
99
+ content-type:
100
+ - application/xml
101
+ date:
102
+ - Fri, 02 May 2014 16:41:29 GMT
103
+ connection:
104
+ - close
105
+ body:
106
+ encoding: US-ASCII
107
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><rec-services><reply-text>ok</reply-text><reply-code>0000</reply-code><record><info
108
+ type="Items" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/items"></info><info
109
+ type="HoldRequest" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/holds"
110
+ allowed="N"><note type="error">Unable to create title level request. No available
111
+ items associated with record.</note></info><info type="ShortLoan" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/shortLoan"
112
+ allowed="N"><note type="error">This record does not have holdings which can
113
+ be booked</note></info><info type="ILL" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/ill"
114
+ allowed="N"><note type="error">Patron does not have a valid ILL Unit</note></info><info
115
+ type="BookingRequest" allowed="N"><bib-library>NYU01</bib-library><bib-doc-number>000980206</bib-doc-number><note
116
+ type="error">This record does not have holdings which can be booked</note></info><info
117
+ type="AcquisitionRequest" allowed="N"><bib-library>NYU01</bib-library><bib-doc-number>000980206</bib-doc-number><note
118
+ type="error">You are not permitted to use this function.</note></info></record></rec-services> '
119
+ http_version:
120
+ recorded_at: Fri, 02 May 2014 16:41:29 GMT
121
+ - request:
122
+ method: get
123
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/items/NYU50001951476001220
124
+ body:
125
+ encoding: US-ASCII
126
+ string: ''
127
+ headers:
128
+ User-Agent:
129
+ - Faraday v0.8.9
130
+ response:
131
+ status:
132
+ code: 200
133
+ message:
134
+ headers:
135
+ server:
136
+ - Apache-Coyote/1.1
137
+ x-powered-by:
138
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
139
+ content-type:
140
+ - application/xml
141
+ date:
142
+ - Fri, 02 May 2014 16:44:47 GMT
143
+ connection:
144
+ - close
145
+ body:
146
+ encoding: US-ASCII
147
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><item-serv><reply-text>ok</reply-text><reply-code>0000</reply-code><item><z30-sub-library-code>TNSGI</z30-sub-library-code><z30-item-process-status-code>DM</z30-item-process-status-code><z30-item-status-code>04</z30-item-status-code><z30-collection-code>SPCLP</z30-collection-code><queue>1
148
+ request(s) of 1 items.</queue><z30><translate-change-active-library>NYU50</translate-change-active-library><z30-doc-number>001951476</z30-doc-number><z30-item-sequence> 122.0</z30-item-sequence><z30-barcode>31207026692263</z30-barcode><z30-sub-library>New
149
+ School University Center</z30-sub-library><z30-material>Issue (bound)</z30-material><z30-item-status>Ask
150
+ at Reference</z30-item-status><z30-open-date>20110510</z30-open-date><z30-update-date>20140317</z30-update-date><z30-cataloger>LOORC</z30-cataloger><z30-date-last-return>20140206</z30-date-last-return><z30-hour-last-return>1151</z30-hour-last-return><z30-ip-last-return>149.31.214.133</z30-ip-last-return><z30-no-loans>001</z30-no-loans><z30-alpha>L</z30-alpha><z30-collection>SpecCol
151
+ Periodicals</z30-collection><z30-call-no-type></z30-call-no-type><z30-call-no>Non-circulating</z30-call-no><z30-call-no-key>$$mnon-circulating</z30-call-no-key><z30-call-no-2-type></z30-call-no-2-type><z30-call-no-2></z30-call-no-2><z30-call-no-2-key></z30-call-no-2-key><z30-description>no.1(1991:spring)</z30-description><z30-note-opac>Spring</z30-note-opac><z30-note-circulation></z30-note-circulation><z30-note-internal>Numbered
152
+ limited edition /1000.</z30-note-internal><z30-order-number></z30-order-number><z30-inventory-number></z30-inventory-number><z30-inventory-number-date>00000000</z30-inventory-number-date><z30-last-shelf-report-date>00000000</z30-last-shelf-report-date><z30-price></z30-price><z30-shelf-report-number></z30-shelf-report-number><z30-on-shelf-date>00000000</z30-on-shelf-date><z30-on-shelf-seq>000000</z30-on-shelf-seq><z30-doc-number-2>000000000</z30-doc-number-2><z30-schedule-sequence-2>00000</z30-schedule-sequence-2><z30-copy-sequence-2>00000</z30-copy-sequence-2><z30-vendor-code></z30-vendor-code><z30-invoice-number></z30-invoice-number><z30-line-number>00000</z30-line-number><z30-pages></z30-pages><z30-issue-date>20110510</z30-issue-date><z30-expected-arrival-date>20110510</z30-expected-arrival-date><z30-arrival-date>20110510</z30-arrival-date><z30-item-statistic></z30-item-statistic><z30-item-process-status>Depository
153
+ mediated</z30-item-process-status><z30-copy-id></z30-copy-id><z30-hol-doc-number>000036718</z30-hol-doc-number><z30-temp-location>No</z30-temp-location><z30-enumeration-a>1</z30-enumeration-a><z30-enumeration-b></z30-enumeration-b><z30-enumeration-c></z30-enumeration-c><z30-enumeration-d></z30-enumeration-d><z30-enumeration-e></z30-enumeration-e><z30-enumeration-f></z30-enumeration-f><z30-enumeration-g></z30-enumeration-g><z30-enumeration-h></z30-enumeration-h><z30-chronological-i>1991</z30-chronological-i><z30-chronological-j>21</z30-chronological-j><z30-chronological-k></z30-chronological-k><z30-chronological-l></z30-chronological-l><z30-chronological-m></z30-chronological-m><z30-supp-index-o></z30-supp-index-o><z30-85x-type>3</z30-85x-type><z30-depository-id>TNSRS</z30-depository-id><z30-linking-number>000000001</z30-linking-number><z30-gap-indicator></z30-gap-indicator><z30-maintenance-count>000</z30-maintenance-count><z30-process-status-date>20140317</z30-process-status-date></z30><z13><translate-change-active-library>NYU50</translate-change-active-library><z13-doc-number>001951476</z13-doc-number><z13-year>1991</z13-year><z13-open-date>20080618</z13-open-date><z13-update-date>20140328</z13-update-date><z13-call-no-key></z13-call-no-key><z13-call-no-code>LOC</z13-call-no-code><z13-call-no></z13-call-no><z13-author-code></z13-author-code><z13-author></z13-author><z13-title-code>24500</z13-title-code><z13-title>Visionaire.</z13-title><z13-imprint-code>260</z13-imprint-code><z13-imprint>[New
154
+ York] : Visionaire Publishing, c1991-</z13-imprint><z13-isbn-issn-code></z13-isbn-issn-code><z13-isbn-issn></z13-isbn-issn></z13><status>On
155
+ Hold</status><info type="HoldRequest" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/items/NYU50001951476001220/hold"
156
+ allowed="N"><note type="error">Item cannot be requested (tab15).</note></info><info
157
+ type="ShortLoan" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/items/NYU50001951476001220/shortLoan"
158
+ allowed="N"><note type="error">The item has no short loan schedule</note></info><info
159
+ type="PhotocopyRequest" allowed="N"><note type="error">Item cannot be photocopied
160
+ (tab15).</note><adm-library>NYU50</adm-library><adm-doc-number>001951476</adm-doc-number><item-sequence>001220</item-sequence></info><info
161
+ type="BookingRequest" allowed="N"><note type="error">Item cannot be booked
162
+ (tab15).</note><adm-library>NYU50</adm-library><adm-doc-number>001951476</adm-doc-number><item-sequence>001220</item-sequence><exact-item>Y</exact-item></info></item></item-serv> '
163
+ http_version:
164
+ recorded_at: Fri, 02 May 2014 16:44:47 GMT
165
+ - request:
166
+ method: get
167
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/patronStatus/registration
168
+ body:
169
+ encoding: US-ASCII
170
+ string: ''
171
+ headers:
172
+ User-Agent:
173
+ - Faraday v0.8.9
174
+ response:
175
+ status:
176
+ code: 200
177
+ message:
178
+ headers:
179
+ server:
180
+ - Apache-Coyote/1.1
181
+ x-powered-by:
182
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
183
+ content-type:
184
+ - application/xml
185
+ date:
186
+ - Fri, 02 May 2014 17:13:43 GMT
187
+ connection:
188
+ - close
189
+ body:
190
+ encoding: US-ASCII
191
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><pat-register><reply-text>ok</reply-text><reply-code>0000</reply-code><registration><translate-change-active-library>NYU50</translate-change-active-library><institution
192
+ code="NYU50"><inst-name>NYU50</inst-name><z305-bor-status-code>55</z305-bor-status-code><z305-bor-status>NYU
193
+ Master.s Student</z305-bor-status><z305-bor-type></z305-bor-type><z305-expiry-date>20141031</z305-expiry-date></institution></registration></pat-register> '
194
+ http_version:
195
+ recorded_at: Fri, 02 May 2014 17:13:43 GMT
196
+ - request:
197
+ method: get
198
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000864162/items/NYU50000864162000010
199
+ body:
200
+ encoding: US-ASCII
201
+ string: ''
202
+ headers:
203
+ User-Agent:
204
+ - Faraday v0.8.9
205
+ response:
206
+ status:
207
+ code: 200
208
+ message:
209
+ headers:
210
+ server:
211
+ - Apache-Coyote/1.1
212
+ x-powered-by:
213
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
214
+ content-type:
215
+ - application/xml
216
+ date:
217
+ - Thu, 15 May 2014 13:53:36 GMT
218
+ connection:
219
+ - close
220
+ body:
221
+ encoding: US-ASCII
222
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><item-serv><reply-text>ok</reply-text><reply-code>0000</reply-code><item><z30-sub-library-code>BOBST</z30-sub-library-code><z30-item-process-status-code></z30-item-process-status-code><z30-item-status-code>01</z30-item-status-code><z30-collection-code>MAIN</z30-collection-code><queue></queue><z30><translate-change-active-library>NYU50</translate-change-active-library><z30-doc-number>000864162</z30-doc-number><z30-item-sequence> 1.0</z30-item-sequence><z30-barcode>31142033188791</z30-barcode><z30-sub-library>NYU
223
+ Bobst</z30-sub-library><z30-material>Books</z30-material><z30-item-status>Regular
224
+ loan</z30-item-status><z30-open-date>20030313</z30-open-date><z30-update-date>20051017</z30-update-date><z30-cataloger>BOWMANA</z30-cataloger><z30-date-last-return>20120502</z30-date-last-return><z30-hour-last-return>0836</z30-hour-last-return><z30-ip-last-return>128.122.88.89</z30-ip-last-return><z30-no-loans>003</z30-no-loans><z30-alpha>L</z30-alpha><z30-collection>Main
225
+ Collection</z30-collection><z30-call-no-type>0</z30-call-no-type><z30-call-no>HN90.I56
226
+ K888 2003</z30-call-no><z30-call-no-key>0 hn!90 i56 k888 2003</z30-call-no-key><z30-call-no-2-type></z30-call-no-2-type><z30-call-no-2></z30-call-no-2><z30-call-no-2-key></z30-call-no-2-key><z30-description></z30-description><z30-note-opac></z30-note-opac><z30-note-circulation></z30-note-circulation><z30-note-internal></z30-note-internal><z30-order-number></z30-order-number><z30-inventory-number></z30-inventory-number><z30-inventory-number-date>00000000</z30-inventory-number-date><z30-last-shelf-report-date>00000000</z30-last-shelf-report-date><z30-price>40.96</z30-price><z30-shelf-report-number></z30-shelf-report-number><z30-on-shelf-date>00000000</z30-on-shelf-date><z30-on-shelf-seq>000000</z30-on-shelf-seq><z30-doc-number-2>000000000</z30-doc-number-2><z30-schedule-sequence-2>00000</z30-schedule-sequence-2><z30-copy-sequence-2>00000</z30-copy-sequence-2><z30-vendor-code></z30-vendor-code><z30-invoice-number></z30-invoice-number><z30-line-number>00000</z30-line-number><z30-pages></z30-pages><z30-issue-date>00000000</z30-issue-date><z30-expected-arrival-date>00000000</z30-expected-arrival-date><z30-arrival-date>00000000</z30-arrival-date><z30-item-statistic></z30-item-statistic><z30-item-process-status>Not
227
+ in Process</z30-item-process-status><z30-copy-id></z30-copy-id><z30-hol-doc-number>002367979</z30-hol-doc-number><z30-temp-location>No</z30-temp-location><z30-enumeration-a></z30-enumeration-a><z30-enumeration-b></z30-enumeration-b><z30-enumeration-c></z30-enumeration-c><z30-enumeration-d></z30-enumeration-d><z30-enumeration-e></z30-enumeration-e><z30-enumeration-f></z30-enumeration-f><z30-enumeration-g></z30-enumeration-g><z30-enumeration-h></z30-enumeration-h><z30-chronological-i></z30-chronological-i><z30-chronological-j></z30-chronological-j><z30-chronological-k></z30-chronological-k><z30-chronological-l></z30-chronological-l><z30-chronological-m></z30-chronological-m><z30-supp-index-o></z30-supp-index-o><z30-85x-type></z30-85x-type><z30-depository-id></z30-depository-id><z30-linking-number>000000000</z30-linking-number><z30-gap-indicator></z30-gap-indicator><z30-maintenance-count>001</z30-maintenance-count><z30-process-status-date>00000000</z30-process-status-date></z30><z13><translate-change-active-library>NYU50</translate-change-active-library><z13-doc-number>000864162</z13-doc-number><z13-year>2003</z13-year><z13-open-date>20080618</z13-open-date><z13-update-date>20080618</z13-update-date><z13-call-no-key></z13-call-no-key><z13-call-no-code>LOC0</z13-call-no-code><z13-call-no>HN90.I56</z13-call-no><z13-author-code>1001</z13-author-code><z13-author>Kuttan,
228
+ Appu, 1941-</z13-author><z13-title-code>24510</z13-title-code><z13-title>From
229
+ digital divide to digital opportunity /</z13-title><z13-imprint-code>260</z13-imprint-code><z13-imprint>Lanham,
230
+ Md. : Scarecrow Press, 2003.</z13-imprint><z13-isbn-issn-code>020</z13-isbn-issn-code><z13-isbn-issn>0810844915
231
+ (alk. paper)</z13-isbn-issn></z13><status>On Shelf</status><info type="HoldRequest"
232
+ href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000864162/items/NYU50000864162000010/hold"
233
+ allowed="Y"><hold allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
234
+ code="BOBST">NYU Bobst</pickup-location><pickup-location code="NCOUR">NYU
235
+ Courant</pickup-location><pickup-location code="NIFA">NYU Institute of Fine
236
+ Arts</pickup-location><pickup-location code="NISAW">NYU Inst Study Ancient
237
+ World</pickup-location><pickup-location code="NREI">NYU Jack Brause</pickup-location><pickup-location
238
+ code="NPOLY">NYU Poly</pickup-location><pickup-location code="NYUAB">NYU Abu
239
+ Dhabi Library (UAE)</pickup-location><pickup-location code="NYUSE">NYUAD Ctr
240
+ for Sci &amp; Eng (UAE)</pickup-location><pickup-location code="NYUSS">NYUAD
241
+ Sama Fac Offices (UAE)</pickup-location><pickup-location code="NYUSX">NYU
242
+ Shanghai Library (China)</pickup-location></pickup-locations><note type="info"></note><note
243
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
244
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140813</last-interest-date><start-interest-date
245
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
246
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
247
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
248
+ usage="Optional"></rush></hold></info><info type="ShortLoan" href="http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000864162/items/NYU50000864162000010/shortLoan"
249
+ allowed="N"><note type="error">The item has no short loan schedule</note></info><info
250
+ type="PhotocopyRequest" allowed="N"><note type="error">Item cannot be photocopied
251
+ (tab15).</note><adm-library>NYU50</adm-library><adm-doc-number>000864162</adm-doc-number><item-sequence>000010</item-sequence></info><info
252
+ type="BookingRequest" allowed="N"><note type="error">Item cannot be booked
253
+ (tab15).</note><adm-library>NYU50</adm-library><adm-doc-number>000864162</adm-doc-number><item-sequence>000010</item-sequence><exact-item>N</exact-item></info></item></item-serv> '
254
+ http_version:
255
+ recorded_at: Thu, 15 May 2014 13:53:36 GMT
256
+ - request:
257
+ method: get
258
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/items/NYU50001951476001220
259
+ body:
260
+ encoding: US-ASCII
261
+ string: ''
262
+ headers:
263
+ User-Agent:
264
+ - Faraday v0.8.9
265
+ response:
266
+ status:
267
+ code: 200
268
+ message:
269
+ headers:
270
+ server:
271
+ - Apache-Coyote/1.1
272
+ x-powered-by:
273
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
274
+ content-type:
275
+ - application/xml
276
+ date:
277
+ - Thu, 15 May 2014 13:54:16 GMT
278
+ connection:
279
+ - close
280
+ body:
281
+ encoding: US-ASCII
282
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><item-serv><reply-text>The
283
+ patron ID is invalid</reply-text><reply-code>0002</reply-code></item-serv> '
284
+ http_version:
285
+ recorded_at: Thu, 15 May 2014 13:54:16 GMT
286
+ - request:
287
+ method: get
288
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/items/NYU50001951476001220
289
+ body:
290
+ encoding: US-ASCII
291
+ string: ''
292
+ headers:
293
+ User-Agent:
294
+ - Faraday v0.8.9
295
+ response:
296
+ status:
297
+ code: 200
298
+ message:
299
+ headers:
300
+ server:
301
+ - Apache-Coyote/1.1
302
+ x-powered-by:
303
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
304
+ content-type:
305
+ - application/xml
306
+ date:
307
+ - Thu, 15 May 2014 13:54:16 GMT
308
+ connection:
309
+ - close
310
+ body:
311
+ encoding: US-ASCII
312
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><item-serv><reply-text>The
313
+ patron ID is invalid</reply-text><reply-code>0002</reply-code></item-serv> '
314
+ http_version:
315
+ recorded_at: Thu, 15 May 2014 13:54:16 GMT
316
+ - request:
317
+ method: get
318
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/items/NYU50001951476001220
319
+ body:
320
+ encoding: US-ASCII
321
+ string: ''
322
+ headers:
323
+ User-Agent:
324
+ - Faraday v0.8.9
325
+ response:
326
+ status:
327
+ code: 200
328
+ message:
329
+ headers:
330
+ server:
331
+ - Apache-Coyote/1.1
332
+ x-powered-by:
333
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
334
+ content-type:
335
+ - application/xml
336
+ date:
337
+ - Thu, 15 May 2014 13:54:16 GMT
338
+ connection:
339
+ - close
340
+ body:
341
+ encoding: US-ASCII
342
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><item-serv><reply-text>The
343
+ patron ID is invalid</reply-text><reply-code>0002</reply-code></item-serv> '
344
+ http_version:
345
+ recorded_at: Thu, 15 May 2014 13:54:17 GMT
346
+ - request:
347
+ method: get
348
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000980206/items/NYU50001951476001220
349
+ body:
350
+ encoding: US-ASCII
351
+ string: ''
352
+ headers:
353
+ User-Agent:
354
+ - Faraday v0.8.9
355
+ response:
356
+ status:
357
+ code: 200
358
+ message:
359
+ headers:
360
+ server:
361
+ - Apache-Coyote/1.1
362
+ x-powered-by:
363
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
364
+ content-type:
365
+ - application/xml
366
+ date:
367
+ - Thu, 15 May 2014 13:54:16 GMT
368
+ connection:
369
+ - close
370
+ body:
371
+ encoding: US-ASCII
372
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><item-serv><reply-text>The
373
+ patron ID is invalid</reply-text><reply-code>0002</reply-code></item-serv> '
374
+ http_version:
375
+ recorded_at: Thu, 15 May 2014 13:54:17 GMT
376
+ - request:
377
+ method: get
378
+ uri: http://aleph.library.edu:1891/rest-dlf/record/NYU01000980206/items/NYU50001951476001220
379
+ body:
380
+ encoding: US-ASCII
381
+ string: ''
382
+ headers:
383
+ User-Agent:
384
+ - Faraday v0.8.9
385
+ response:
386
+ status:
387
+ code: 200
388
+ message:
389
+ headers:
390
+ server:
391
+ - Apache-Coyote/1.1
392
+ x-powered-by:
393
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
394
+ content-type:
395
+ - application/xml
396
+ date:
397
+ - Thu, 15 May 2014 17:19:45 GMT
398
+ connection:
399
+ - close
400
+ body:
401
+ encoding: US-ASCII
402
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item><reply-text>ok</reply-text><reply-code>0000</reply-code><item><z30-sub-library-code>TNSGI</z30-sub-library-code><z30-item-process-status-code>DM</z30-item-process-status-code><z30-item-status-code>04</z30-item-status-code><z30-collection-code>SPCLP</z30-collection-code><queue></queue><z30><translate-change-active-library>NYU50</translate-change-active-library><z30-doc-number>001951476</z30-doc-number><z30-item-sequence> 122.0</z30-item-sequence><z30-barcode>31207026692263</z30-barcode><z30-sub-library>New
403
+ School University Center</z30-sub-library><z30-material>Issue (bound)</z30-material><z30-item-status>Ask
404
+ at Reference</z30-item-status><z30-open-date>20110510</z30-open-date><z30-update-date>20140507</z30-update-date><z30-cataloger>JONESA</z30-cataloger><z30-date-last-return>20140206</z30-date-last-return><z30-hour-last-return>1151</z30-hour-last-return><z30-ip-last-return>149.31.214.133</z30-ip-last-return><z30-no-loans>001</z30-no-loans><z30-alpha>L</z30-alpha><z30-collection>SpecCol
405
+ Periodicals</z30-collection><z30-call-no-type></z30-call-no-type><z30-call-no>Non-circulating</z30-call-no><z30-call-no-key>$$mnon-circulating</z30-call-no-key><z30-call-no-2-type></z30-call-no-2-type><z30-call-no-2></z30-call-no-2><z30-call-no-2-key></z30-call-no-2-key><z30-description>no.1(1991:spring)</z30-description><z30-note-opac>Spring</z30-note-opac><z30-note-circulation>for
406
+ access, please email speccoll@newschool.edu</z30-note-circulation><z30-note-internal>Numbered
407
+ limited edition /1000.</z30-note-internal><z30-order-number></z30-order-number><z30-inventory-number></z30-inventory-number><z30-inventory-number-date>00000000</z30-inventory-number-date><z30-last-shelf-report-date>00000000</z30-last-shelf-report-date><z30-price></z30-price><z30-shelf-report-number></z30-shelf-report-number><z30-on-shelf-date>00000000</z30-on-shelf-date><z30-on-shelf-seq>000000</z30-on-shelf-seq><z30-doc-number-2>000000000</z30-doc-number-2><z30-schedule-sequence-2>00000</z30-schedule-sequence-2><z30-copy-sequence-2>00000</z30-copy-sequence-2><z30-vendor-code></z30-vendor-code><z30-invoice-number></z30-invoice-number><z30-line-number>00000</z30-line-number><z30-pages></z30-pages><z30-issue-date>20110510</z30-issue-date><z30-expected-arrival-date>20110510</z30-expected-arrival-date><z30-arrival-date>20110510</z30-arrival-date><z30-item-statistic></z30-item-statistic><z30-item-process-status>Depository
408
+ mediated</z30-item-process-status><z30-copy-id></z30-copy-id><z30-hol-doc-number>000036718</z30-hol-doc-number><z30-temp-location>No</z30-temp-location><z30-enumeration-a>1</z30-enumeration-a><z30-enumeration-b></z30-enumeration-b><z30-enumeration-c></z30-enumeration-c><z30-enumeration-d></z30-enumeration-d><z30-enumeration-e></z30-enumeration-e><z30-enumeration-f></z30-enumeration-f><z30-enumeration-g></z30-enumeration-g><z30-enumeration-h></z30-enumeration-h><z30-chronological-i>1991</z30-chronological-i><z30-chronological-j>21</z30-chronological-j><z30-chronological-k></z30-chronological-k><z30-chronological-l></z30-chronological-l><z30-chronological-m></z30-chronological-m><z30-supp-index-o></z30-supp-index-o><z30-85x-type>3</z30-85x-type><z30-depository-id>TNSRS</z30-depository-id><z30-linking-number>000000001</z30-linking-number><z30-gap-indicator></z30-gap-indicator><z30-maintenance-count>000</z30-maintenance-count><z30-process-status-date>20140317</z30-process-status-date></z30><z13><translate-change-active-library>NYU50</translate-change-active-library><z13-doc-number>001951476</z13-doc-number><z13-year>1991</z13-year><z13-open-date>20080618</z13-open-date><z13-update-date>20140328</z13-update-date><z13-call-no-key></z13-call-no-key><z13-call-no-code>LOC</z13-call-no-code><z13-call-no></z13-call-no><z13-author-code></z13-author-code><z13-author></z13-author><z13-title-code>24500</z13-title-code><z13-title>Visionaire.</z13-title><z13-imprint-code>260</z13-imprint-code><z13-imprint>[New
409
+ York] : Visionaire Publishing, c1991-</z13-imprint><z13-isbn-issn-code></z13-isbn-issn-code><z13-isbn-issn></z13-isbn-issn></z13><status>Ask
410
+ at Reference</status></item></get-item> '
411
+ http_version:
412
+ recorded_at: Thu, 15 May 2014 17:19:44 GMT
413
+ - request:
414
+ method: get
415
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01000864162/items/NYU50000864162000010/hold
416
+ body:
417
+ encoding: US-ASCII
418
+ string: ''
419
+ headers:
420
+ User-Agent:
421
+ - Faraday v0.8.9
422
+ response:
423
+ status:
424
+ code: 200
425
+ message:
426
+ headers:
427
+ server:
428
+ - Apache-Coyote/1.1
429
+ x-powered-by:
430
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
431
+ content-type:
432
+ - application/xml
433
+ date:
434
+ - Tue, 17 Jun 2014 18:14:00 GMT
435
+ connection:
436
+ - close
437
+ body:
438
+ encoding: US-ASCII
439
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
440
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
441
+ code="BOBST">NYU Bobst</pickup-location><pickup-location code="NCOUR">NYU
442
+ Courant</pickup-location><pickup-location code="NIFA">NYU Institute of Fine
443
+ Arts</pickup-location><pickup-location code="NISAW">NYU Inst Study Ancient
444
+ World</pickup-location><pickup-location code="NREI">NYU Jack Brause</pickup-location><pickup-location
445
+ code="NPOLY">NYU Poly</pickup-location><pickup-location code="NYUAB">NYU Abu
446
+ Dhabi Library (UAE)</pickup-location><pickup-location code="NYUSE">NYUAD Ctr
447
+ for Sci &amp; Eng (UAE)</pickup-location><pickup-location code="NYUSS">NYUAD
448
+ Sama Fac Offices (UAE)</pickup-location><pickup-location code="NYUSX">NYU
449
+ Shanghai Library (China)</pickup-location></pickup-locations><note type="info"></note><note
450
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
451
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
452
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
453
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
454
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
455
+ usage="Optional"></rush></hold></get-item-hold> '
456
+ http_version:
457
+ recorded_at: Tue, 17 Jun 2014 18:14:00 GMT
458
+ - request:
459
+ method: get
460
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
461
+ body:
462
+ encoding: US-ASCII
463
+ string: ''
464
+ headers:
465
+ User-Agent:
466
+ - Faraday v0.8.9
467
+ response:
468
+ status:
469
+ code: 200
470
+ message:
471
+ headers:
472
+ server:
473
+ - Apache-Coyote/1.1
474
+ x-powered-by:
475
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
476
+ content-type:
477
+ - application/xml
478
+ date:
479
+ - Tue, 17 Jun 2014 18:14:00 GMT
480
+ connection:
481
+ - close
482
+ body:
483
+ encoding: US-ASCII
484
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
485
+ allowed="N"><note type="error">Patron does not have permission to place a
486
+ hold request for this item.</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
487
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
488
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
489
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
490
+ usage="Optional"></rush></hold></get-item-hold> '
491
+ http_version:
492
+ recorded_at: Tue, 17 Jun 2014 18:14:00 GMT
493
+ - request:
494
+ method: get
495
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
496
+ body:
497
+ encoding: US-ASCII
498
+ string: ''
499
+ headers:
500
+ User-Agent:
501
+ - Faraday v0.8.9
502
+ response:
503
+ status:
504
+ code: 200
505
+ message:
506
+ headers:
507
+ server:
508
+ - Apache-Coyote/1.1
509
+ x-powered-by:
510
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
511
+ content-type:
512
+ - application/xml
513
+ date:
514
+ - Tue, 17 Jun 2014 18:14:00 GMT
515
+ connection:
516
+ - close
517
+ body:
518
+ encoding: US-ASCII
519
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
520
+ allowed="N"><note type="error">Patron does not have permission to place a
521
+ hold request for this item.</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
522
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
523
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
524
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
525
+ usage="Optional"></rush></hold></get-item-hold> '
526
+ http_version:
527
+ recorded_at: Tue, 17 Jun 2014 18:14:00 GMT
528
+ - request:
529
+ method: get
530
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
531
+ body:
532
+ encoding: US-ASCII
533
+ string: ''
534
+ headers:
535
+ User-Agent:
536
+ - Faraday v0.8.9
537
+ response:
538
+ status:
539
+ code: 200
540
+ message:
541
+ headers:
542
+ server:
543
+ - Apache-Coyote/1.1
544
+ x-powered-by:
545
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
546
+ content-type:
547
+ - application/xml
548
+ date:
549
+ - Tue, 17 Jun 2014 18:14:00 GMT
550
+ connection:
551
+ - close
552
+ body:
553
+ encoding: US-ASCII
554
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
555
+ allowed="N"><note type="error">Patron does not have permission to place a
556
+ hold request for this item.</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
557
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
558
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
559
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
560
+ usage="Optional"></rush></hold></get-item-hold> '
561
+ http_version:
562
+ recorded_at: Tue, 17 Jun 2014 18:14:00 GMT
563
+ - request:
564
+ method: get
565
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
566
+ body:
567
+ encoding: US-ASCII
568
+ string: ''
569
+ headers:
570
+ User-Agent:
571
+ - Faraday v0.8.9
572
+ response:
573
+ status:
574
+ code: 200
575
+ message:
576
+ headers:
577
+ server:
578
+ - Apache-Coyote/1.1
579
+ x-powered-by:
580
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
581
+ content-type:
582
+ - application/xml
583
+ date:
584
+ - Tue, 17 Jun 2014 18:14:00 GMT
585
+ connection:
586
+ - close
587
+ body:
588
+ encoding: US-ASCII
589
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
590
+ allowed="N"><note type="error">Patron does not have permission to place a
591
+ hold request for this item.</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
592
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
593
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
594
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
595
+ usage="Optional"></rush></hold></get-item-hold> '
596
+ http_version:
597
+ recorded_at: Tue, 17 Jun 2014 18:14:00 GMT
598
+ - request:
599
+ method: get
600
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
601
+ body:
602
+ encoding: US-ASCII
603
+ string: ''
604
+ headers:
605
+ User-Agent:
606
+ - Faraday v0.8.9
607
+ response:
608
+ status:
609
+ code: 200
610
+ message:
611
+ headers:
612
+ server:
613
+ - Apache-Coyote/1.1
614
+ x-powered-by:
615
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
616
+ content-type:
617
+ - application/xml
618
+ date:
619
+ - Tue, 17 Jun 2014 18:14:00 GMT
620
+ connection:
621
+ - close
622
+ body:
623
+ encoding: US-ASCII
624
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
625
+ allowed="N"><note type="error">Patron does not have permission to place a
626
+ hold request for this item.</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
627
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
628
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
629
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
630
+ usage="Optional"></rush></hold></get-item-hold> '
631
+ http_version:
632
+ recorded_at: Tue, 17 Jun 2014 18:14:00 GMT
633
+ - request:
634
+ method: get
635
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
636
+ body:
637
+ encoding: US-ASCII
638
+ string: ''
639
+ headers:
640
+ User-Agent:
641
+ - Faraday v0.8.9
642
+ response:
643
+ status:
644
+ code: 200
645
+ message:
646
+ headers:
647
+ server:
648
+ - Apache-Coyote/1.1
649
+ x-powered-by:
650
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
651
+ content-type:
652
+ - application/xml
653
+ date:
654
+ - Tue, 17 Jun 2014 19:47:24 GMT
655
+ connection:
656
+ - close
657
+ body:
658
+ encoding: US-ASCII
659
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
660
+ allowed="N"><note type="error">Patron does not have permission to place a
661
+ hold request for this item.</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
662
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
663
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
664
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
665
+ usage="Optional"></rush></hold></get-item-hold> '
666
+ http_version:
667
+ recorded_at: Tue, 17 Jun 2014 19:47:24 GMT
668
+ - request:
669
+ method: get
670
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
671
+ body:
672
+ encoding: US-ASCII
673
+ string: ''
674
+ headers:
675
+ User-Agent:
676
+ - Faraday v0.8.9
677
+ response:
678
+ status:
679
+ code: 200
680
+ message:
681
+ headers:
682
+ server:
683
+ - Apache-Coyote/1.1
684
+ x-powered-by:
685
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
686
+ content-type:
687
+ - application/xml
688
+ date:
689
+ - Tue, 17 Jun 2014 19:47:24 GMT
690
+ connection:
691
+ - close
692
+ body:
693
+ encoding: US-ASCII
694
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
695
+ allowed="N"><note type="error">Patron does not have permission to place a
696
+ hold request for this item.</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
697
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
698
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
699
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
700
+ usage="Optional"></rush></hold></get-item-hold> '
701
+ http_version:
702
+ recorded_at: Tue, 17 Jun 2014 19:47:25 GMT
703
+ - request:
704
+ method: get
705
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
706
+ body:
707
+ encoding: US-ASCII
708
+ string: ''
709
+ headers:
710
+ User-Agent:
711
+ - Faraday v0.8.9
712
+ response:
713
+ status:
714
+ code: 200
715
+ message:
716
+ headers:
717
+ server:
718
+ - Apache-Coyote/1.1
719
+ x-powered-by:
720
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
721
+ content-type:
722
+ - application/xml
723
+ date:
724
+ - Tue, 17 Jun 2014 19:47:24 GMT
725
+ connection:
726
+ - close
727
+ body:
728
+ encoding: US-ASCII
729
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
730
+ allowed="N"><note type="error">Patron does not have permission to place a
731
+ hold request for this item.</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
732
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
733
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
734
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
735
+ usage="Optional"></rush></hold></get-item-hold> '
736
+ http_version:
737
+ recorded_at: Tue, 17 Jun 2014 19:47:25 GMT
738
+ - request:
739
+ method: get
740
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
741
+ body:
742
+ encoding: US-ASCII
743
+ string: ''
744
+ headers:
745
+ User-Agent:
746
+ - Faraday v0.8.9
747
+ response:
748
+ status:
749
+ code: 200
750
+ message:
751
+ headers:
752
+ server:
753
+ - Apache-Coyote/1.1
754
+ x-powered-by:
755
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
756
+ content-type:
757
+ - application/xml
758
+ date:
759
+ - Tue, 17 Jun 2014 19:47:24 GMT
760
+ connection:
761
+ - close
762
+ body:
763
+ encoding: US-ASCII
764
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
765
+ allowed="N"><note type="error">Patron does not have permission to place a
766
+ hold request for this item.</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
767
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
768
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
769
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
770
+ usage="Optional"></rush></hold></get-item-hold> '
771
+ http_version:
772
+ recorded_at: Tue, 17 Jun 2014 19:47:25 GMT
773
+ - request:
774
+ method: get
775
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
776
+ body:
777
+ encoding: US-ASCII
778
+ string: ''
779
+ headers:
780
+ User-Agent:
781
+ - Faraday v0.8.9
782
+ response:
783
+ status:
784
+ code: 200
785
+ message:
786
+ headers:
787
+ server:
788
+ - Apache-Coyote/1.1
789
+ x-powered-by:
790
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
791
+ content-type:
792
+ - application/xml
793
+ date:
794
+ - Tue, 17 Jun 2014 19:47:24 GMT
795
+ connection:
796
+ - close
797
+ body:
798
+ encoding: US-ASCII
799
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
800
+ allowed="N"><note type="error">Patron does not have permission to place a
801
+ hold request for this item.</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
802
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
803
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
804
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
805
+ usage="Optional"></rush></hold></get-item-hold> '
806
+ http_version:
807
+ recorded_at: Tue, 17 Jun 2014 19:47:25 GMT
808
+ - request:
809
+ method: put
810
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID/record/NYU01002296594/items/NYU50002296594000010/hold
811
+ body:
812
+ encoding: US-ASCII
813
+ string: post_xml=<hold-request-parameters><pickup-location>BOBST</pickup-location><last-interest-date></last-interest-date><start-interest-date></start-interest-date><sub-author></sub-author><sub-title></sub-title><pages></pages><note-1></note-1><note-2></note-2><rush></rush></hold-request-parameters>
814
+ headers:
815
+ User-Agent:
816
+ - Faraday v0.8.9
817
+ Content-Type:
818
+ - application/x-www-form-urlencoded
819
+ response:
820
+ status:
821
+ code: 200
822
+ message:
823
+ headers:
824
+ server:
825
+ - Apache-Coyote/1.1
826
+ x-powered-by:
827
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
828
+ content-type:
829
+ - application/xml
830
+ date:
831
+ - Tue, 17 Jun 2014 19:47:50 GMT
832
+ connection:
833
+ - close
834
+ body:
835
+ encoding: US-ASCII
836
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><put-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><create-hold><note
837
+ type="info">Action Succeeded</note></create-hold></put-item-hold> '
838
+ http_version:
839
+ recorded_at: Tue, 17 Jun 2014 19:47:50 GMT
840
+ - request:
841
+ method: get
842
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
843
+ body:
844
+ encoding: US-ASCII
845
+ string: ''
846
+ headers:
847
+ User-Agent:
848
+ - Faraday v0.8.9
849
+ response:
850
+ status:
851
+ code: 200
852
+ message:
853
+ headers:
854
+ server:
855
+ - Apache-Coyote/1.1
856
+ x-powered-by:
857
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
858
+ content-type:
859
+ - application/xml
860
+ date:
861
+ - Tue, 17 Jun 2014 19:47:50 GMT
862
+ connection:
863
+ - close
864
+ body:
865
+ encoding: US-ASCII
866
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
867
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
868
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
869
+ item is requested.</note><note type="info"></note><note type="info"></note><note
870
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
871
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
872
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
873
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
874
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
875
+ usage="Optional"></rush></hold></get-item-hold> '
876
+ http_version:
877
+ recorded_at: Tue, 17 Jun 2014 19:47:51 GMT
878
+ - request:
879
+ method: get
880
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
881
+ body:
882
+ encoding: US-ASCII
883
+ string: ''
884
+ headers:
885
+ User-Agent:
886
+ - Faraday v0.8.9
887
+ response:
888
+ status:
889
+ code: 200
890
+ message:
891
+ headers:
892
+ server:
893
+ - Apache-Coyote/1.1
894
+ x-powered-by:
895
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
896
+ content-type:
897
+ - application/xml
898
+ date:
899
+ - Tue, 17 Jun 2014 19:47:50 GMT
900
+ connection:
901
+ - close
902
+ body:
903
+ encoding: US-ASCII
904
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
905
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
906
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
907
+ item is requested.</note><note type="info"></note><note type="info"></note><note
908
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
909
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
910
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
911
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
912
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
913
+ usage="Optional"></rush></hold></get-item-hold> '
914
+ http_version:
915
+ recorded_at: Tue, 17 Jun 2014 19:47:51 GMT
916
+ - request:
917
+ method: get
918
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
919
+ body:
920
+ encoding: US-ASCII
921
+ string: ''
922
+ headers:
923
+ User-Agent:
924
+ - Faraday v0.8.9
925
+ response:
926
+ status:
927
+ code: 200
928
+ message:
929
+ headers:
930
+ server:
931
+ - Apache-Coyote/1.1
932
+ x-powered-by:
933
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
934
+ content-type:
935
+ - application/xml
936
+ date:
937
+ - Tue, 17 Jun 2014 19:47:50 GMT
938
+ connection:
939
+ - close
940
+ body:
941
+ encoding: US-ASCII
942
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
943
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
944
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
945
+ item is requested.</note><note type="info"></note><note type="info"></note><note
946
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
947
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
948
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
949
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
950
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
951
+ usage="Optional"></rush></hold></get-item-hold> '
952
+ http_version:
953
+ recorded_at: Tue, 17 Jun 2014 19:47:51 GMT
954
+ - request:
955
+ method: get
956
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
957
+ body:
958
+ encoding: US-ASCII
959
+ string: ''
960
+ headers:
961
+ User-Agent:
962
+ - Faraday v0.8.9
963
+ response:
964
+ status:
965
+ code: 200
966
+ message:
967
+ headers:
968
+ server:
969
+ - Apache-Coyote/1.1
970
+ x-powered-by:
971
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
972
+ content-type:
973
+ - application/xml
974
+ date:
975
+ - Tue, 17 Jun 2014 19:47:50 GMT
976
+ connection:
977
+ - close
978
+ body:
979
+ encoding: US-ASCII
980
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
981
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
982
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
983
+ item is requested.</note><note type="info"></note><note type="info"></note><note
984
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
985
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
986
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
987
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
988
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
989
+ usage="Optional"></rush></hold></get-item-hold> '
990
+ http_version:
991
+ recorded_at: Tue, 17 Jun 2014 19:47:51 GMT
992
+ - request:
993
+ method: get
994
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
995
+ body:
996
+ encoding: US-ASCII
997
+ string: ''
998
+ headers:
999
+ User-Agent:
1000
+ - Faraday v0.8.9
1001
+ response:
1002
+ status:
1003
+ code: 200
1004
+ message:
1005
+ headers:
1006
+ server:
1007
+ - Apache-Coyote/1.1
1008
+ x-powered-by:
1009
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1010
+ content-type:
1011
+ - application/xml
1012
+ date:
1013
+ - Tue, 17 Jun 2014 19:47:50 GMT
1014
+ connection:
1015
+ - close
1016
+ body:
1017
+ encoding: US-ASCII
1018
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1019
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1020
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1021
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1022
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1023
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1024
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1025
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1026
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1027
+ usage="Optional"></rush></hold></get-item-hold> '
1028
+ http_version:
1029
+ recorded_at: Tue, 17 Jun 2014 19:47:51 GMT
1030
+ - request:
1031
+ method: get
1032
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
1033
+ body:
1034
+ encoding: US-ASCII
1035
+ string: ''
1036
+ headers:
1037
+ User-Agent:
1038
+ - Faraday v0.8.9
1039
+ response:
1040
+ status:
1041
+ code: 200
1042
+ message:
1043
+ headers:
1044
+ server:
1045
+ - Apache-Coyote/1.1
1046
+ x-powered-by:
1047
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1048
+ content-type:
1049
+ - application/xml
1050
+ date:
1051
+ - Tue, 17 Jun 2014 19:48:24 GMT
1052
+ connection:
1053
+ - close
1054
+ body:
1055
+ encoding: US-ASCII
1056
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1057
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1058
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1059
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1060
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1061
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1062
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1063
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1064
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1065
+ usage="Optional"></rush></hold></get-item-hold> '
1066
+ http_version:
1067
+ recorded_at: Tue, 17 Jun 2014 19:48:24 GMT
1068
+ - request:
1069
+ method: get
1070
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
1071
+ body:
1072
+ encoding: US-ASCII
1073
+ string: ''
1074
+ headers:
1075
+ User-Agent:
1076
+ - Faraday v0.8.9
1077
+ response:
1078
+ status:
1079
+ code: 200
1080
+ message:
1081
+ headers:
1082
+ server:
1083
+ - Apache-Coyote/1.1
1084
+ x-powered-by:
1085
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1086
+ content-type:
1087
+ - application/xml
1088
+ date:
1089
+ - Tue, 17 Jun 2014 19:48:24 GMT
1090
+ connection:
1091
+ - close
1092
+ body:
1093
+ encoding: US-ASCII
1094
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1095
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1096
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1097
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1098
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1099
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1100
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1101
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1102
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1103
+ usage="Optional"></rush></hold></get-item-hold> '
1104
+ http_version:
1105
+ recorded_at: Tue, 17 Jun 2014 19:48:24 GMT
1106
+ - request:
1107
+ method: get
1108
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
1109
+ body:
1110
+ encoding: US-ASCII
1111
+ string: ''
1112
+ headers:
1113
+ User-Agent:
1114
+ - Faraday v0.8.9
1115
+ response:
1116
+ status:
1117
+ code: 200
1118
+ message:
1119
+ headers:
1120
+ server:
1121
+ - Apache-Coyote/1.1
1122
+ x-powered-by:
1123
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1124
+ content-type:
1125
+ - application/xml
1126
+ date:
1127
+ - Tue, 17 Jun 2014 19:48:24 GMT
1128
+ connection:
1129
+ - close
1130
+ body:
1131
+ encoding: US-ASCII
1132
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1133
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1134
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1135
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1136
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1137
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1138
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1139
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1140
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1141
+ usage="Optional"></rush></hold></get-item-hold> '
1142
+ http_version:
1143
+ recorded_at: Tue, 17 Jun 2014 19:48:24 GMT
1144
+ - request:
1145
+ method: get
1146
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
1147
+ body:
1148
+ encoding: US-ASCII
1149
+ string: ''
1150
+ headers:
1151
+ User-Agent:
1152
+ - Faraday v0.8.9
1153
+ response:
1154
+ status:
1155
+ code: 200
1156
+ message:
1157
+ headers:
1158
+ server:
1159
+ - Apache-Coyote/1.1
1160
+ x-powered-by:
1161
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1162
+ content-type:
1163
+ - application/xml
1164
+ date:
1165
+ - Tue, 17 Jun 2014 19:48:24 GMT
1166
+ connection:
1167
+ - close
1168
+ body:
1169
+ encoding: US-ASCII
1170
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1171
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1172
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1173
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1174
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1175
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1176
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1177
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1178
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1179
+ usage="Optional"></rush></hold></get-item-hold> '
1180
+ http_version:
1181
+ recorded_at: Tue, 17 Jun 2014 19:48:24 GMT
1182
+ - request:
1183
+ method: get
1184
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
1185
+ body:
1186
+ encoding: US-ASCII
1187
+ string: ''
1188
+ headers:
1189
+ User-Agent:
1190
+ - Faraday v0.8.9
1191
+ response:
1192
+ status:
1193
+ code: 200
1194
+ message:
1195
+ headers:
1196
+ server:
1197
+ - Apache-Coyote/1.1
1198
+ x-powered-by:
1199
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1200
+ content-type:
1201
+ - application/xml
1202
+ date:
1203
+ - Tue, 17 Jun 2014 19:48:24 GMT
1204
+ connection:
1205
+ - close
1206
+ body:
1207
+ encoding: US-ASCII
1208
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1209
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1210
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1211
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1212
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1213
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1214
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1215
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1216
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1217
+ usage="Optional"></rush></hold></get-item-hold> '
1218
+ http_version:
1219
+ recorded_at: Tue, 17 Jun 2014 19:48:24 GMT
1220
+ - request:
1221
+ method: put
1222
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01002296594/items/NYU50002296594000010/hold
1223
+ body:
1224
+ encoding: US-ASCII
1225
+ string: post_xml=<hold-request-parameters><pickup-location>BOBST</pickup-location><last-interest-date></last-interest-date><start-interest-date></start-interest-date><sub-author></sub-author><sub-title></sub-title><pages></pages><note-1></note-1><note-2></note-2><rush></rush></hold-request-parameters>
1226
+ headers:
1227
+ User-Agent:
1228
+ - Faraday v0.8.9
1229
+ Content-Type:
1230
+ - application/x-www-form-urlencoded
1231
+ response:
1232
+ status:
1233
+ code: 200
1234
+ message:
1235
+ headers:
1236
+ server:
1237
+ - Apache-Coyote/1.1
1238
+ x-powered-by:
1239
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1240
+ content-type:
1241
+ - application/xml
1242
+ date:
1243
+ - Tue, 17 Jun 2014 19:47:50 GMT
1244
+ connection:
1245
+ - close
1246
+ body:
1247
+ encoding: US-ASCII
1248
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><put-item-hold><reply-text>Failed
1249
+ to create request</reply-text><reply-code>0025</reply-code><create-hold><note
1250
+ type="error">Item or like copy is on shelf. Cannot place hold request.</note></create-hold></put-item-hold> '
1251
+ http_version:
1252
+ recorded_at: Tue, 17 Jun 2014 19:47:50 GMT
1253
+ - request:
1254
+ method: get
1255
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
1256
+ body:
1257
+ encoding: US-ASCII
1258
+ string: ''
1259
+ headers:
1260
+ User-Agent:
1261
+ - Faraday v0.8.9
1262
+ response:
1263
+ status:
1264
+ code: 200
1265
+ message:
1266
+ headers:
1267
+ server:
1268
+ - Apache-Coyote/1.1
1269
+ x-powered-by:
1270
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1271
+ content-type:
1272
+ - application/xml
1273
+ date:
1274
+ - Tue, 17 Jun 2014 21:00:43 GMT
1275
+ connection:
1276
+ - close
1277
+ body:
1278
+ encoding: US-ASCII
1279
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1280
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1281
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1282
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1283
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1284
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1285
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1286
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1287
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1288
+ usage="Optional"></rush></hold></get-item-hold> '
1289
+ http_version:
1290
+ recorded_at: Tue, 17 Jun 2014 21:00:43 GMT
1291
+ - request:
1292
+ method: get
1293
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
1294
+ body:
1295
+ encoding: US-ASCII
1296
+ string: ''
1297
+ headers:
1298
+ User-Agent:
1299
+ - Faraday v0.8.9
1300
+ response:
1301
+ status:
1302
+ code: 200
1303
+ message:
1304
+ headers:
1305
+ server:
1306
+ - Apache-Coyote/1.1
1307
+ x-powered-by:
1308
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1309
+ content-type:
1310
+ - application/xml
1311
+ date:
1312
+ - Tue, 17 Jun 2014 21:00:43 GMT
1313
+ connection:
1314
+ - close
1315
+ body:
1316
+ encoding: US-ASCII
1317
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1318
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1319
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1320
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1321
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1322
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1323
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1324
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1325
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1326
+ usage="Optional"></rush></hold></get-item-hold> '
1327
+ http_version:
1328
+ recorded_at: Tue, 17 Jun 2014 21:00:43 GMT
1329
+ - request:
1330
+ method: get
1331
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
1332
+ body:
1333
+ encoding: US-ASCII
1334
+ string: ''
1335
+ headers:
1336
+ User-Agent:
1337
+ - Faraday v0.8.9
1338
+ response:
1339
+ status:
1340
+ code: 200
1341
+ message:
1342
+ headers:
1343
+ server:
1344
+ - Apache-Coyote/1.1
1345
+ x-powered-by:
1346
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1347
+ content-type:
1348
+ - application/xml
1349
+ date:
1350
+ - Tue, 17 Jun 2014 21:00:43 GMT
1351
+ connection:
1352
+ - close
1353
+ body:
1354
+ encoding: US-ASCII
1355
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1356
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1357
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1358
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1359
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1360
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1361
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1362
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1363
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1364
+ usage="Optional"></rush></hold></get-item-hold> '
1365
+ http_version:
1366
+ recorded_at: Tue, 17 Jun 2014 21:00:43 GMT
1367
+ - request:
1368
+ method: get
1369
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
1370
+ body:
1371
+ encoding: US-ASCII
1372
+ string: ''
1373
+ headers:
1374
+ User-Agent:
1375
+ - Faraday v0.8.9
1376
+ response:
1377
+ status:
1378
+ code: 200
1379
+ message:
1380
+ headers:
1381
+ server:
1382
+ - Apache-Coyote/1.1
1383
+ x-powered-by:
1384
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1385
+ content-type:
1386
+ - application/xml
1387
+ date:
1388
+ - Tue, 17 Jun 2014 21:00:43 GMT
1389
+ connection:
1390
+ - close
1391
+ body:
1392
+ encoding: US-ASCII
1393
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1394
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1395
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1396
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1397
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1398
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1399
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1400
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1401
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1402
+ usage="Optional"></rush></hold></get-item-hold> '
1403
+ http_version:
1404
+ recorded_at: Tue, 17 Jun 2014 21:00:44 GMT
1405
+ - request:
1406
+ method: get
1407
+ uri: http://aleph.library.edu:1891/rest-dlf/patron/BOR_ID_WITHOUT_HOLD_PERMISSION/record/NYU01000864162/items/NYU50000864162000010/hold
1408
+ body:
1409
+ encoding: US-ASCII
1410
+ string: ''
1411
+ headers:
1412
+ User-Agent:
1413
+ - Faraday v0.8.9
1414
+ response:
1415
+ status:
1416
+ code: 200
1417
+ message:
1418
+ headers:
1419
+ server:
1420
+ - Apache-Coyote/1.1
1421
+ x-powered-by:
1422
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
1423
+ content-type:
1424
+ - application/xml
1425
+ date:
1426
+ - Tue, 17 Jun 2014 21:00:43 GMT
1427
+ connection:
1428
+ - close
1429
+ body:
1430
+ encoding: US-ASCII
1431
+ string: ! '<?xml version = "1.0" encoding = "UTF-8"?><get-item-hold><reply-text>ok</reply-text><reply-code>0000</reply-code><hold
1432
+ allowed="Y"><pickup-locations default="Y" usage="Mandatory"><pickup-location
1433
+ code="BOBST">NYU Bobst</pickup-location></pickup-locations><note type="info">This
1434
+ item is requested.</note><note type="info"></note><note type="info"></note><note
1435
+ type="info">Item status: Regular loan&lt;br /&gt; Call number: HN90.I56 K888
1436
+ 2003&lt;br /&gt;</note><last-interest-date usage="Optional">20140915</last-interest-date><start-interest-date
1437
+ usage="Optional"></start-interest-date><sub-author usage="Optional" max_len="50"></sub-author><sub-title
1438
+ usage="Optional" max_len="100"></sub-title><pages usage="Optional" max_len="30"></pages><note-1
1439
+ usage="Optional" max_len="50"></note-1><note-2 usage="Optional" max_len="50"></note-2><rush
1440
+ usage="Optional"></rush></hold></get-item-hold> '
1441
+ http_version:
1442
+ recorded_at: Tue, 17 Jun 2014 21:00:44 GMT
1443
+ recorded_with: VCR 2.9.0