enju_loc 0.2.0 → 0.3.0.beta.1

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 (238) hide show
  1. checksums.yaml +4 -4
  2. data/README.rdoc +4 -4
  3. data/app/assets/config/enju_loc_manifest.js +0 -0
  4. data/app/controllers/loc_search_controller.rb +8 -9
  5. data/app/helpers/loc_search_helper.rb +2 -2
  6. data/app/models/loc_search.rb +23 -23
  7. data/lib/enju_loc/loc_search.rb +344 -330
  8. data/lib/enju_loc/version.rb +1 -1
  9. data/spec/cassette_library/LocSearch/_ModsRecord/should_parse_MODS_metadata.yml +7 -7
  10. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_a_valid_manifestation.yml +7 -7
  11. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_lcsh_subjects_only.yml +17 -16
  12. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_multiple_series_statements.yml +10 -10
  13. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_distinguish_title_information_with_subject.yml +7 -7
  14. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_a_manifestation_that_has_invalid_classification.yml +7 -7
  15. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_another_serial.yml +33 -29
  16. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_audio_book.yml +7 -7
  17. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_e-resource.yml +7 -7
  18. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_e-resource_packaged_.yml +7 -7
  19. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_extent.yml +17 -16
  20. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_lccn_exact_math.yml +7 -7
  21. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_notated_music.yml +7 -7
  22. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_note_fields.yml +7 -7
  23. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_publication_year.yml +26 -21
  24. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_serial.yml +30 -29
  25. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_video_publication.yml +7 -7
  26. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_parse_title_information_properly.yml +20 -19
  27. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_support_name_and_title_subjects.yml +7 -7
  28. data/spec/cassette_library/LocSearch/_search/should_return_a_search_result.yml +189 -184
  29. data/spec/cassette_library/LocSearchController/GET_index/should_get_index.yml +189 -184
  30. data/spec/cassette_library/LocSearchController/GET_index/should_get_index_with_page_parameter.yml +177 -171
  31. data/spec/cassette_library/LocSearchController/POST_create/should_create_a_bibliographic_record_if_lccn_is_set.yml +19 -22
  32. data/spec/cassette_library/LocSearchController/POST_create/should_not_create_a_bibliographic_record_if_lccn_is_not_set.yml +5 -5
  33. data/spec/cassette_library/loc_search/index/loc_search_menu/should_reflect_query_params_for_views.yml +140 -155
  34. data/spec/controllers/loc_search_controller_spec.rb +16 -16
  35. data/spec/dummy/bin/rails +1 -1
  36. data/spec/dummy/bin/setup +21 -12
  37. data/spec/dummy/bin/update +29 -0
  38. data/spec/dummy/bin/yarn +11 -0
  39. data/spec/dummy/config/application.rb +5 -17
  40. data/spec/dummy/config/cable.yml +10 -0
  41. data/spec/dummy/config/environment.rb +1 -1
  42. data/spec/dummy/config/environments/development.rb +24 -11
  43. data/spec/dummy/config/environments/production.rb +28 -16
  44. data/spec/dummy/config/environments/test.rb +6 -8
  45. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  46. data/spec/dummy/config/initializers/assets.rb +14 -0
  47. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  48. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  49. data/spec/dummy/config/initializers/wrap_parameters.rb +2 -2
  50. data/spec/dummy/config/puma.rb +56 -0
  51. data/spec/dummy/config/secrets.yml +15 -5
  52. data/spec/dummy/config/spring.rb +6 -0
  53. data/spec/dummy/config/sunspot.yml +23 -0
  54. data/spec/dummy/db/migrate/001_create_agents.rb +1 -1
  55. data/spec/dummy/db/migrate/002_devise_create_users.rb +1 -1
  56. data/spec/dummy/db/migrate/005_create_manifestations.rb +1 -1
  57. data/spec/dummy/db/migrate/006_create_items.rb +1 -1
  58. data/spec/dummy/db/migrate/012_create_owns.rb +1 -1
  59. data/spec/dummy/db/migrate/015_create_creates.rb +1 -1
  60. data/spec/dummy/db/migrate/029_create_subjects.rb +1 -1
  61. data/spec/dummy/db/migrate/041_create_roles.rb +1 -1
  62. data/spec/dummy/db/migrate/047_create_produces.rb +1 -1
  63. data/spec/dummy/db/migrate/059_create_libraries.rb +8 -10
  64. data/spec/dummy/db/migrate/069_create_shelves.rb +4 -5
  65. data/spec/dummy/db/migrate/073_create_carrier_types.rb +1 -1
  66. data/spec/dummy/db/migrate/077_create_user_groups.rb +1 -1
  67. data/spec/dummy/db/migrate/080_create_library_groups.rb +3 -4
  68. data/spec/dummy/db/migrate/112_create_frequencies.rb +1 -1
  69. data/spec/dummy/db/migrate/117_create_form_of_works.rb +1 -1
  70. data/spec/dummy/db/migrate/120_create_baskets.rb +3 -4
  71. data/spec/dummy/db/migrate/124_create_bookstores.rb +1 -1
  72. data/spec/dummy/db/migrate/125_create_donates.rb +1 -1
  73. data/spec/dummy/db/migrate/130_create_request_status_types.rb +1 -1
  74. data/spec/dummy/db/migrate/131_create_request_types.rb +1 -1
  75. data/spec/dummy/db/migrate/133_create_agent_merges.rb +1 -1
  76. data/spec/dummy/db/migrate/134_create_agent_merge_lists.rb +1 -1
  77. data/spec/dummy/db/migrate/142_create_classifications.rb +1 -1
  78. data/spec/dummy/db/migrate/144_create_classification_types.rb +1 -1
  79. data/spec/dummy/db/migrate/145_create_subject_heading_types.rb +1 -1
  80. data/spec/dummy/db/migrate/146_create_subject_types.rb +1 -1
  81. data/spec/dummy/db/migrate/149_create_message_templates.rb +1 -1
  82. data/spec/dummy/db/migrate/154_create_messages.rb +1 -1
  83. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +1 -1
  84. data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +1 -1
  85. data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +1 -1
  86. data/spec/dummy/db/migrate/20080905191442_create_agent_types.rb +1 -1
  87. data/spec/dummy/db/migrate/20081006090811_create_subscriptions.rb +5 -8
  88. data/spec/dummy/db/migrate/20081006093246_create_subscribes.rb +5 -6
  89. data/spec/dummy/db/migrate/20081023092436_create_search_engines.rb +1 -1
  90. data/spec/dummy/db/migrate/20081025083323_create_countries.rb +1 -1
  91. data/spec/dummy/db/migrate/20081025083905_create_languages.rb +1 -1
  92. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +1 -1
  93. data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +1 -1
  94. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +1 -1
  95. data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +1 -1
  96. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +1 -1
  97. data/spec/dummy/db/migrate/20090719201843_create_extents.rb +1 -1
  98. data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +1 -1
  99. data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +1 -1
  100. data/spec/dummy/db/migrate/20090812151902_create_agent_relationship_types.rb +1 -1
  101. data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +1 -1
  102. data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +1 -1
  103. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +1 -1
  104. data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +1 -1
  105. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +1 -1
  106. data/spec/dummy/db/migrate/20100211105551_add_admin_networks_to_library_group.rb +1 -1
  107. data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +1 -1
  108. data/spec/dummy/db/migrate/20100314190054_add_opening_hour_to_library.rb +1 -1
  109. data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +1 -1
  110. data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +1 -1
  111. data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +1 -1
  112. data/spec/dummy/db/migrate/20100606073747_create_agent_relationships.rb +1 -1
  113. data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +1 -1
  114. data/spec/dummy/db/migrate/20100814091104_add_position_to_agent_relationship.rb +1 -1
  115. data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +1 -1
  116. data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +1 -1
  117. data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +1 -1
  118. data/spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb +1 -1
  119. data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +1 -1
  120. data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb +1 -1
  121. data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +1 -1
  122. data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +1 -1
  123. data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +1 -1
  124. data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +1 -1
  125. data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +1 -1
  126. data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +1 -1
  127. data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +1 -1
  128. data/spec/dummy/db/migrate/20110913120629_add_lft_and_rgt_to_classification.rb +1 -1
  129. data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +1 -1
  130. data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +1 -1
  131. data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +1 -1
  132. data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +1 -1
  133. data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +1 -1
  134. data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +1 -1
  135. data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +1 -1
  136. data/spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb +1 -1
  137. data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +1 -1
  138. data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +1 -1
  139. data/spec/dummy/db/migrate/20120129014038_create_budget_types.rb +1 -1
  140. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +1 -1
  141. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +1 -1
  142. data/spec/dummy/db/migrate/20120319173203_create_accepts.rb +4 -7
  143. data/spec/dummy/db/migrate/20120406020752_add_url_to_subject.rb +1 -1
  144. data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +1 -1
  145. data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +1 -1
  146. data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +1 -1
  147. data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +1 -1
  148. data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +1 -1
  149. data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +1 -1
  150. data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +1 -1
  151. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +1 -1
  152. data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +1 -1
  153. data/spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb +1 -1
  154. data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +1 -1
  155. data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +1 -1
  156. data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +1 -1
  157. data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +1 -1
  158. data/spec/dummy/db/migrate/20130412083556_add_latitude_and_longitude_to_library.rb +1 -1
  159. data/spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb +1 -1
  160. data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +1 -1
  161. data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +1 -1
  162. data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +1 -1
  163. data/spec/dummy/db/migrate/20130504133816_add_manifestation_id_to_subject.rb +1 -1
  164. data/spec/dummy/db/migrate/20130504143515_add_manifestation_id_to_classification.rb +1 -1
  165. data/spec/dummy/db/migrate/20130504195916_add_subject_heading_type_id_to_subject.rb +1 -1
  166. data/spec/dummy/db/migrate/20130506175303_create_identifier_types.rb +1 -1
  167. data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +1 -1
  168. data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +1 -1
  169. data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +2 -2
  170. data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +3 -3
  171. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +1 -1
  172. data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +1 -1
  173. data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +1 -1
  174. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +1 -1
  175. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +1 -1
  176. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +1 -1
  177. data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +2 -3
  178. data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +1 -1
  179. data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +1 -1
  180. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +1 -1
  181. data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +1 -1
  182. data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +1 -1
  183. data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +1 -1
  184. data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +2 -2
  185. data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +2 -2
  186. data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +1 -1
  187. data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +2 -2
  188. data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +2 -2
  189. data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +1 -1
  190. data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +1 -1
  191. data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +1 -1
  192. data/spec/dummy/db/migrate/20140813182425_add_publication_place_to_manifestation.rb +1 -1
  193. data/spec/dummy/db/migrate/20140817155043_add_extent_of_text_to_manifestation.rb +1 -1
  194. data/spec/dummy/db/migrate/20140821151023_create_colors.rb +2 -4
  195. data/spec/dummy/db/migrate/20140822114527_add_error_message_to_resource_import_result.rb +1 -1
  196. data/spec/dummy/db/migrate/20140823083524_add_extent_to_manifestation.rb +1 -1
  197. data/spec/dummy/db/migrate/20140823094847_add_dimensions_to_manifestation.rb +1 -1
  198. data/spec/dummy/db/migrate/20140823095740_rename_manifestation_periodical_to_serial.rb +1 -1
  199. data/spec/dummy/db/migrate/20141003181336_add_full_name_transcription_to_profile.rb +1 -1
  200. data/spec/dummy/db/migrate/20141003182825_add_date_of_birth_to_profile.rb +1 -1
  201. data/spec/dummy/db/migrate/20150117111136_add_foreign_key_to_items_referencing_manifestations.rb +1 -1
  202. data/spec/dummy/db/migrate/20150221063719_add_settings_to_library_group.rb +1 -1
  203. data/spec/dummy/db/migrate/20150506105356_add_error_message_to_user_import_result.rb +1 -1
  204. data/spec/dummy/db/migrate/20150924115059_create_withdraws.rb +4 -6
  205. data/spec/dummy/db/migrate/20151125004028_add_profile_id_to_agent.rb +1 -1
  206. data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +20 -7
  207. data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +16 -3
  208. data/spec/dummy/db/migrate/20160610093229_add_html_snippet_to_library_group.rb +1 -1
  209. data/spec/dummy/db/migrate/20160627232219_add_most_recent_to_user_import_file_transitions.rb +1 -1
  210. data/spec/dummy/db/migrate/20160627232316_add_most_recent_to_user_export_file_transitions.rb +1 -1
  211. data/spec/dummy/db/migrate/20160703185015_add_most_recent_to_message_transitions.rb +1 -1
  212. data/spec/dummy/db/migrate/20160801080612_add_most_recent_to_import_request_transitions.rb +1 -1
  213. data/spec/dummy/db/migrate/20160801080619_add_most_recent_to_resource_import_file_transitions.rb +1 -1
  214. data/spec/dummy/db/migrate/20160801080637_add_most_recent_to_resource_export_file_transitions.rb +1 -1
  215. data/spec/dummy/db/migrate/20160801080643_add_most_recent_to_agent_import_file_transitions.rb +1 -1
  216. data/spec/dummy/db/migrate/20160811102604_add_picture_width_to_picture_file.rb +1 -1
  217. data/spec/dummy/db/migrate/20160813191647_add_max_number_of_results_to_library_group.rb +1 -1
  218. data/spec/dummy/db/migrate/20160813191733_add_family_name_first_to_library_group.rb +1 -1
  219. data/spec/dummy/db/migrate/20160813192542_add_pub_year_facet_range_interval_to_library_group.rb +1 -1
  220. data/spec/dummy/db/migrate/20160813203039_add_user_id_to_library_group.rb +1 -1
  221. data/spec/dummy/db/migrate/20160814165332_add_most_recent_to_message_request_transitions.rb +1 -1
  222. data/spec/dummy/db/migrate/20160820004638_add_attachment_attachment_to_carrier_types.rb +1 -1
  223. data/spec/dummy/db/migrate/20170305064014_add_csv_charset_conversion_to_library_group.rb +5 -0
  224. data/spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb +5 -0
  225. data/spec/dummy/db/migrate/20171119051258_set_not_null_to_manifestation_id_on_items.rb +5 -0
  226. data/spec/dummy/db/migrate/20171126133835_rename_login_banner_to_old_login_banner.rb +5 -0
  227. data/spec/dummy/db/migrate/20171126135238_add_foreign_key_to_library_group_id_on_library.rb +5 -0
  228. data/spec/dummy/db/migrate/20180102162311_add_header_logo_meta_to_library_group.rb +5 -0
  229. data/spec/dummy/db/migrate/20180107160726_add_constraints_to_most_recent_for_user_import_file_transitions.rb +13 -0
  230. data/spec/dummy/db/migrate/20180107160740_add_constraints_to_most_recent_for_user_export_file_transitions.rb +13 -0
  231. data/spec/dummy/db/migrate/20180107161311_add_constraints_to_most_recent_for_agent_import_file_transitions.rb +13 -0
  232. data/spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb +13 -0
  233. data/spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb +13 -0
  234. data/spec/dummy/db/migrate/20180107161410_add_constraints_to_most_recent_for_import_request_transitions.rb +13 -0
  235. data/spec/dummy/db/schema.rb +675 -693
  236. data/spec/models/loc_search_spec.rb +143 -143
  237. data/spec/rails_helper.rb +1 -4
  238. metadata +269 -252
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.2
11
+ - Faraday v0.13.1
12
12
  Accept-Encoding:
13
13
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
14
  Accept:
@@ -19,9 +19,9 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Content-Length:
22
- - '9627'
22
+ - '9468'
23
23
  Server:
24
- - Metaproxy/1.11.3
24
+ - Metaproxy/1.13.0
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -30,7 +30,7 @@ http_interactions:
30
30
  encoding: UTF-8
31
31
  string: "<?xml version=\"1.0\"?>\n<zs:searchRetrieveResponse xmlns:zs=\"http://www.loc.gov/zing/srw/\"><zs:version>1.1</zs:version><zs:numberOfRecords>1</zs:numberOfRecords><zs:records><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
32
32
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
33
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
33
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
34
34
  \ <titleInfo altRepGroup=\"01\" script=\"Latn\">\n <title>Entotsu no mieru
35
35
  basho</title>\n </titleInfo>\n <titleInfo type=\"alternative\" altRepGroup=\"15\"
36
36
  script=\"Latn\">\n <title>Mujaki na hitobito</title>\n </titleInfo>\n
@@ -50,20 +50,17 @@ http_interactions:
50
50
  Hiroshi</namePart>\n <namePart type=\"date\">1920-1981</namePart>\n </name>\n
51
51
  \ <name type=\"personal\" altRepGroup=\"13\" script=\"Latn\">\n <namePart>Tanaka,
52
52
  Haruo</namePart>\n <namePart type=\"date\">1912-1992</namePart>\n </name>\n
53
- \ <name type=\"personal\" altRepGroup=\"14\" script=\"Latn\">\n <namePart>Shiina,
54
- Rinzo&#x304;</namePart>\n <namePart type=\"date\">1911-1973</namePart>\n
55
- \ </name>\n <name type=\"corporate\" altRepGroup=\"16\" script=\"Latn\">\n
56
- \ <namePart>Shinto&#x304;ho&#x304; Kabushiki Kaisha</namePart>\n </name>\n
57
- \ <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">videorecording</genre>\n
58
- \ <genre authority=\"lcgft\">Fiction films.</genre>\n <genre authority=\"lcgft\">Feature
59
- films.</genre>\n <originInfo script=\"Latn\" altRepGroup=\"02\">\n <place>\n
60
- \ <placeTerm type=\"code\" authority=\"marccountry\">ja</placeTerm>\n
61
- \ </place>\n <place>\n <placeTerm type=\"text\">Tokyo]</placeTerm>\n
62
- \ </place>\n <publisher>hatsubaimoto Kabushiki Kaisha IMAGICA</publisher>\n
63
- \ <publisher>hanbaimoto Kabushiki Kaisha Bappu</publisher>\n <dateIssued>2005</dateIssued>\n
64
- \ <issuance>monographic</issuance>\n </originInfo>\n <originInfo script=\"CJK\"
65
- altRepGroup=\"02\">\n <place>\n <placeTerm type=\"text\">[Tokyo] :</placeTerm>\n
66
- \ </place>\n <publisher>&#x767A;&#x58F2;&#x5143;&#x682A;&#x5F0F;&#x4F1A;&#x793E;IMAGICA
53
+ \ <name type=\"corporate\" altRepGroup=\"16\" script=\"Latn\">\n <namePart>Shinto&#x304;ho&#x304;
54
+ Kabushiki Kaisha</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
55
+ \ <genre authority=\"marcgt\">videorecording</genre>\n <genre authority=\"lcgft\">Fiction
56
+ films.</genre>\n <genre authority=\"lcgft\">Feature films.</genre>\n <originInfo
57
+ script=\"Latn\" altRepGroup=\"02\">\n <place>\n <placeTerm type=\"code\"
58
+ authority=\"marccountry\">ja</placeTerm>\n </place>\n <place>\n <placeTerm
59
+ type=\"text\">Tokyo]</placeTerm>\n </place>\n <publisher>hatsubaimoto
60
+ Kabushiki Kaisha IMAGICA</publisher>\n <publisher>hanbaimoto Kabushiki
61
+ Kaisha Bappu</publisher>\n <dateIssued>2005</dateIssued>\n <issuance>monographic</issuance>\n
62
+ \ </originInfo>\n <originInfo script=\"CJK\" altRepGroup=\"02\">\n <place>\n
63
+ \ <placeTerm type=\"text\">[Tokyo] :</placeTerm>\n </place>\n <publisher>&#x767A;&#x58F2;&#x5143;&#x682A;&#x5F0F;&#x4F1A;&#x793E;IMAGICA
67
64
  :</publisher>\n <dateIssued>2005.</dateIssued>\n </originInfo>\n <language>\n
68
65
  \ <languageTerm authority=\"iso639-2b\" type=\"code\">jpn</languageTerm>\n
69
66
  \ </language>\n <physicalDescription>\n <form authority=\"gmd\">videorecording</form>\n
@@ -135,8 +132,8 @@ http_interactions:
135
132
  authority=\"marcorg\">KKU</recordContentSource>\n <recordCreationDate encoding=\"marc\">130509</recordCreationDate>\n
136
133
  \ <recordChangeDate encoding=\"iso8601\">20150402132546.0</recordChangeDate>\n
137
134
  \ <recordIdentifier>17731062</recordIdentifier>\n <recordOrigin>Converted
138
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
139
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2013385616\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
135
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
136
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn=\"^2013385616\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
140
137
  http_version:
141
- recorded_at: Thu, 07 Jul 2016 15:06:03 GMT
142
- recorded_with: VCR 3.0.3
138
+ recorded_at: Sun, 24 Dec 2017 12:57:05 GMT
139
+ recorded_with: VCR 4.0.0
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.2
11
+ - Faraday v0.13.1
12
12
  Accept-Encoding:
13
13
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
14
  Accept:
@@ -21,7 +21,7 @@ http_interactions:
21
21
  Content-Length:
22
22
  - '701'
23
23
  Server:
24
- - Metaproxy/1.11.3
24
+ - Metaproxy/1.13.0
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -30,7 +30,7 @@ http_interactions:
30
30
  encoding: UTF-8
31
31
  string: |
32
32
  <?xml version="1.0"?>
33
- <zs:searchRetrieveResponse xmlns:zs="http://www.loc.gov/zing/srw/"><zs:version>1.1</zs:version><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn="^"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest><zs:diagnostics xmlns:diag="http://www.loc.gov/zing/srw/diagnostic/"><diag:diagnostic><diag:uri>info:srw/diagnostic/1/1</diag:uri><diag:details>search failed at opac rc=1 (backend=z3950.loc.gov:7098/voyager)</diag:details><diag:message>Permanent system error</diag:message></diag:diagnostic></zs:diagnostics></zs:searchRetrieveResponse>
33
+ <zs:searchRetrieveResponse xmlns:zs="http://www.loc.gov/zing/srw/"><zs:version>1.1</zs:version><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>bath.lccn="^"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest><zs:diagnostics xmlns:diag="http://www.loc.gov/zing/srw/diagnostic/"><diag:diagnostic><diag:uri>info:srw/diagnostic/1/1</diag:uri><diag:details>search failed at opac rc=1 (backend=z3950.loc.gov:7097/voyager)</diag:details><diag:message>Permanent system error</diag:message></diag:diagnostic></zs:diagnostics></zs:searchRetrieveResponse>
34
34
  http_version:
35
- recorded_at: Thu, 07 Jul 2016 15:06:05 GMT
36
- recorded_with: VCR 3.0.3
35
+ recorded_at: Sun, 24 Dec 2017 12:57:06 GMT
36
+ recorded_with: VCR 4.0.0
@@ -8,7 +8,7 @@ http_interactions:
8
8
  string: ''
9
9
  headers:
10
10
  User-Agent:
11
- - Faraday v0.9.2
11
+ - Faraday v0.13.1
12
12
  Accept-Encoding:
13
13
  - gzip;q=1.0,deflate;q=0.6,identity;q=0.3
14
14
  Accept:
@@ -19,9 +19,9 @@ http_interactions:
19
19
  message: OK
20
20
  headers:
21
21
  Content-Length:
22
- - '41181'
22
+ - '40150'
23
23
  Server:
24
- - Metaproxy/1.11.3
24
+ - Metaproxy/1.13.0
25
25
  Connection:
26
26
  - Keep-Alive
27
27
  Content-Type:
@@ -30,7 +30,7 @@ http_interactions:
30
30
  encoding: UTF-8
31
31
  string: "<?xml version=\"1.0\"?>\n<zs:searchRetrieveResponse xmlns:zs=\"http://www.loc.gov/zing/srw/\"><zs:version>1.1</zs:version><zs:numberOfRecords>10000</zs:numberOfRecords><zs:records><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
32
32
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
33
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
33
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
34
34
  \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>The truth
35
35
  about dads and moms</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
36
36
  \ <title>Truth about dads and moms</title>\n </titleInfo>\n <titleInfo
@@ -68,10 +68,10 @@ http_interactions:
68
68
  authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
69
69
  \ <recordChangeDate encoding=\"iso8601\">20140609105314.0</recordChangeDate>\n
70
70
  \ <recordIdentifier>18181426</recordIdentifier>\n <recordOrigin>Converted
71
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
72
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
71
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
72
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
73
73
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
74
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
74
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
75
75
  \ <titleInfo>\n <title>1 &amp; 2 Tesalonika, James, 1, 2, &amp; 3 John</title>\n
76
76
  \ </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Bible</title>\n
77
77
  \ <partName>New Testament. Selections. Mayoyao Ifugao</partName>\n </titleInfo>\n
@@ -89,26 +89,29 @@ http_interactions:
89
89
  authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">020614</recordCreationDate>\n
90
90
  \ <recordChangeDate encoding=\"iso8601\">20130528124142.0</recordChangeDate>\n
91
91
  \ <recordIdentifier>12818077</recordIdentifier>\n <recordOrigin>Converted
92
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
93
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>2</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
92
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
93
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>2</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
94
94
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
95
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
95
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
96
96
  \ <titleInfo>\n <title>1,001 best low-carb recipes</title>\n <subTitle>delicious,
97
97
  healthy, easy-to-make recipes for cutting carbs</subTitle>\n </titleInfo>\n
98
98
  \ <titleInfo type=\"alternative\">\n <title>One thousand one low-carb recipes</title>\n
99
99
  \ </titleInfo>\n <titleInfo type=\"uniform\">\n <title>1,001 low-carb
100
100
  recipes for life</title>\n </titleInfo>\n <name type=\"personal\">\n <namePart>Spitler,
101
- Sue.</namePart>\n </name>\n <name type=\"personal\">\n <namePart>Yoakam,
102
- Linda R.</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n
103
- \ <genre authority=\"rdacontent\">text</genre>\n <originInfo>\n <place>\n
104
- \ <placeTerm type=\"code\" authority=\"marccountry\">ilu</placeTerm>\n
105
- \ </place>\n <dateIssued encoding=\"marc\">2016</dateIssued>\n <issuance>monographic</issuance>\n
106
- \ </originInfo>\n <originInfo eventType=\"publication\">\n <place>\n <placeTerm
107
- type=\"text\">Chicago :</placeTerm>\n </place>\n <publisher>Agate Surrey,</publisher>\n
101
+ Sue</namePart>\n <role>\n <roleTerm type=\"text\">editor.</roleTerm>\n
102
+ \ </role>\n </name>\n <name type=\"personal\">\n <namePart>Yoakam,
103
+ Linda R.</namePart>\n <role>\n <roleTerm type=\"text\">editor.</roleTerm>\n
104
+ \ </role>\n </name>\n <typeOfResource>text</typeOfResource>\n <genre
105
+ authority=\"rdacontent\">text</genre>\n <originInfo>\n <place>\n <placeTerm
106
+ type=\"code\" authority=\"marccountry\">ilu</placeTerm>\n </place>\n <dateIssued
107
+ encoding=\"marc\">2016</dateIssued>\n <copyrightDate encoding=\"marc\">2016</copyrightDate>\n
108
+ \ <issuance>monographic</issuance>\n </originInfo>\n <originInfo eventType=\"publication\">\n
109
+ \ <place>\n <placeTerm type=\"text\">Chicago :</placeTerm>\n </place>\n
110
+ \ <publisher>Surrey Books, an imprint of Agate Publishing, Inc.,</publisher>\n
108
111
  \ <dateIssued>[2016]</dateIssued>\n </originInfo>\n <language>\n <languageTerm
109
112
  authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
110
- \ <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>pages
111
- cm.</extent>\n <form type=\"media\" authority=\"rdamedia\">unmediated</form>\n
113
+ \ <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>x,
114
+ 518 pages ; 26 cm.</extent>\n <form type=\"media\" authority=\"rdamedia\">unmediated</form>\n
112
115
  \ <form type=\"carrier\" authority=\"rdacarrier\">volume</form>\n </physicalDescription>\n
113
116
  \ <abstract type=\"Summary\">\"A redesigned and reformatted version of a title
114
117
  now returning to print, this second edition of 1,001 Best Low-Carb Recipes
@@ -141,11 +144,11 @@ http_interactions:
141
144
  5: Seafood -- Chapter 6: Vegetables and Side Dishes -- Chapter 7: Salads and
142
145
  Dressings -- Chapter 8: Snacks, Appetizers, and Pizza -- Chapter 9: Desserts
143
146
  -- Index.</tableOfContents>\n <note type=\"statement of responsibility\"
144
- altRepGroup=\"00\">edited by Sue Spitler with Linda R. Yoakam.</note>\n <note>Includes
145
- index.</note>\n <note>Revision of: 1,001 low-carb recipes for life / edited
146
- by Sue Spitler with Linda R. Yoakam. c2004.</note>\n <note>Inludes index.</note>\n
147
- \ <subject authority=\"lcsh\">\n <topic>Low-carbohydrate diet</topic>\n
148
- \ <genre>Recipes</genre>\n </subject>\n <subject authority=\"bisacsh\">\n
147
+ altRepGroup=\"00\">edited by Sue Spitler with Linda R. Yoakam, MS, RD.</note>\n
148
+ \ <note>Includes index.</note>\n <note>Revision of: 1,001 low-carb recipes
149
+ for life / edited by Sue Spitler with Linda R. Yoakam. c2004.</note>\n <note>Includes
150
+ index.</note>\n <subject authority=\"lcsh\">\n <topic>Low-carbohydrate
151
+ diet</topic>\n <genre>Recipes</genre>\n </subject>\n <subject authority=\"bisacsh\">\n
149
152
  \ <topic>COOKING / Health &amp; Healing / Low Carbohydrate</topic>\n </subject>\n
150
153
  \ <subject authority=\"bisacsh\">\n <topic>COOKING / Courses &amp; Dishes
151
154
  / General</topic>\n </subject>\n <subject authority=\"bisacsh\">\n <topic>COOKING
@@ -156,19 +159,19 @@ http_interactions:
156
159
  \ <classification authority=\"bisacsh\">CKB108000 CKB101000 CKB070000 CKB039000</classification>\n
157
160
  \ <relatedItem type=\"series\">\n <titleInfo>\n <title>1,001</title>\n
158
161
  \ </titleInfo>\n </relatedItem>\n <identifier type=\"isbn\">9781572841840
159
- (paperback)</identifier>\n <identifier type=\"isbn\" invalid=\"yes\">9781572847705
160
- (ebook)</identifier>\n <identifier type=\"isbn\" invalid=\"yes\">1572847700
161
- (ebook)</identifier>\n <identifier type=\"lccn\">2015031870</identifier>\n
162
- \ <recordInfo>\n <descriptionStandard>rda</descriptionStandard>\n <recordContentSource
163
- authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">150909</recordCreationDate>\n
164
- \ <recordChangeDate encoding=\"iso8601\">20160503082307.0</recordChangeDate>\n
165
- \ <recordIdentifier>18776592</recordIdentifier>\n <recordOrigin>Converted
166
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
167
- 1.106 2014/12/19)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
162
+ (paperback)</identifier>\n <identifier type=\"isbn\">1572841842 (paperback)</identifier>\n
163
+ \ <identifier type=\"isbn\" invalid=\"yes\">9781572847705 (ebook)</identifier>\n
164
+ \ <identifier type=\"isbn\" invalid=\"yes\">1572847700 (ebook)</identifier>\n
165
+ \ <identifier type=\"lccn\">2015031870</identifier>\n <recordInfo>\n <descriptionStandard>rda</descriptionStandard>\n
166
+ \ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
167
+ \ <recordCreationDate encoding=\"marc\">150909</recordCreationDate>\n <recordChangeDate
168
+ encoding=\"iso8601\">20170710144843.0</recordChangeDate>\n <recordIdentifier>18776592</recordIdentifier>\n
169
+ \ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
170
+ 1.117 2017/02/14)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
168
171
  authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
169
172
  \ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>3</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
170
173
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
171
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
174
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
172
175
  \ <titleInfo>\n <title>1,001 ingenious gardening ideas</title>\n <subTitle>new,
173
176
  fun, and fabulous tips that will change the way you garden-forever!</subTitle>\n
174
177
  \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>One thousand
@@ -199,12 +202,12 @@ http_interactions:
199
202
  paper)</identifier>\n <identifier type=\"lccn\">99006038</identifier>\n <recordInfo>\n
200
203
  \ <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource
201
204
  authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">990115</recordCreationDate>\n
202
- \ <recordChangeDate encoding=\"iso8601\">20140224084743.0</recordChangeDate>\n
205
+ \ <recordChangeDate encoding=\"iso8601\">20161013093819.0</recordChangeDate>\n
203
206
  \ <recordIdentifier>739641</recordIdentifier>\n <recordOrigin>Converted
204
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
205
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>4</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
207
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
208
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>4</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
206
209
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
207
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
210
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
208
211
  \ <titleInfo>\n <title>1,001 statistics practice problems for dummies</title>\n
209
212
  \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Statistics
210
213
  for dummies</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
@@ -327,114 +330,12 @@ http_interactions:
327
330
  authority=\"marcorg\">ZGD</recordContentSource>\n <recordCreationDate encoding=\"marc\">131031</recordCreationDate>\n
328
331
  \ <recordChangeDate encoding=\"iso8601\">20150508162158.0</recordChangeDate>\n
329
332
  \ <recordIdentifier>17924313</recordIdentifier>\n <recordOrigin>Converted
330
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
331
- 1.106 2014/12/19)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
333
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
334
+ 1.117 2017/02/14)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
332
335
  authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
333
336
  \ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>5</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
334
337
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
335
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
336
- \ <titleInfo>\n <title>1,012 GMAT practice questions</title>\n </titleInfo>\n
337
- \ <titleInfo type=\"alternative\">\n <title>One thousand twelve GMAT practice
338
- questions</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>1,012
339
- GMAT</title>\n </titleInfo>\n <typeOfResource>text</typeOfResource>\n <genre
340
- authority=\"fast\">Examinations.</genre>\n <genre authority=\"fast\">Periodicals.</genre>\n
341
- \ <genre authority=\"fast\">Study guides.</genre>\n <originInfo>\n <place>\n
342
- \ <placeTerm type=\"code\" authority=\"marccountry\">nyu</placeTerm>\n
343
- \ </place>\n <place>\n <placeTerm type=\"text\">New York, NY</placeTerm>\n
344
- \ </place>\n <publisher>Princeton Review</publisher>\n <dateIssued
345
- encoding=\"marc\" point=\"start\">2009</dateIssued>\n <dateIssued encoding=\"marc\"
346
- point=\"end\">2099</dateIssued>\n <issuance>serial</issuance>\n <frequency>Every
347
- two to three years</frequency>\n <frequency authority=\"marcfrequency\">Biennial</frequency>\n
348
- \ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
349
- \ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
350
- \ </physicalDescription>\n <note type=\"date/sequential designation\">Began
351
- in 2009.</note>\n <note>At head of title: The Princeton Review.</note>\n
352
- \ <note type=\"numbering\">First issue lacks designation but copyrighted 2009.</note>\n
353
- \ <subject>\n <geographicCode authority=\"marcgac\">n-us---</geographicCode>\n
354
- \ </subject>\n <subject authority=\"lcsh\">\n <topic>Graduate Management
355
- Admission Test</topic>\n <genre>Study guides</genre>\n </subject>\n <subject
356
- authority=\"lcsh\">\n <topic>Business</topic>\n <topic>Examinations,
357
- questions, etc</topic>\n <genre>Periodicals</genre>\n </subject>\n <subject
358
- authority=\"lcsh\">\n <topic>Management</topic>\n <geographic>United
359
- States</geographic>\n <genre>Examinations, questions, etc</genre>\n <genre>Periodicals</genre>\n
360
- \ </subject>\n <subject authority=\"fast\">\n <topic>Business</topic>\n
361
- \ <topic>Examinations, questions, etc</topic>\n </subject>\n <subject
362
- authority=\"fast\">\n <topic>Graduate Management Admission Test</topic>\n
363
- \ </subject>\n <subject authority=\"fast\">\n <topic>Management</topic>\n
364
- \ </subject>\n <subject authority=\"fast\">\n <geographic>United States</geographic>\n
365
- \ </subject>\n <classification authority=\"lcc\">HF1118 .A15</classification>\n
366
- \ <classification authority=\"ddc\" edition=\"14\">650.076</classification>\n
367
- \ <relatedItem type=\"succeeding\">\n <titleInfo>\n <title>1,037 practice
368
- questions for the new GMAT</title>\n </titleInfo>\n <identifier type=\"issn\">2325-3495</identifier>\n
369
- \ <identifier type=\"local\">(DLC) 2012204312</identifier>\n <identifier
370
- type=\"local\">(OCoLC)816513528</identifier>\n </relatedItem>\n <identifier
371
- type=\"issn\">1946-3073</identifier>\n <identifier type=\"issn-l\">1946-3073</identifier>\n
372
- \ <identifier type=\"lccn\">2009202106</identifier>\n <identifier type=\"oclc\">ocn297530915</identifier>\n
373
- \ <identifier type=\"stock number\" displayLabel=\"$19.00 (single issue)\">The
374
- Princeton Review, 1745 Broadway, Maildrop 15-1, New York, N.Y. 10019</identifier>\n
375
- \ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource
376
- authority=\"marcorg\">NSDP</recordContentSource>\n <recordCreationDate
377
- encoding=\"marc\">090109</recordCreationDate>\n <recordChangeDate encoding=\"iso8601\">20150922075657.0</recordChangeDate>\n
378
- \ <recordIdentifier>15582586</recordIdentifier>\n <recordOrigin>Converted
379
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
380
- 1.106 2014/12/19)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
381
- authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
382
- \ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>6</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
383
- xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
384
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
385
- \ <titleInfo>\n <title>1,037 practice questions for the new GMAT</title>\n
386
- \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>One thousand
387
- thirty seven practice questions for the new GMAT</title>\n </titleInfo>\n
388
- \ <titleInfo type=\"alternative\">\n <title>1,037 GMAT</title>\n </titleInfo>\n
389
- \ <name type=\"corporate\">\n <namePart>Princeton Review (Firm)</namePart>\n
390
- \ <role>\n <roleTerm type=\"text\">issuing body.</roleTerm>\n </role>\n
391
- \ </name>\n <typeOfResource>text</typeOfResource>\n <genre authority=\"rdacontent\">text</genre>\n
392
- \ <genre authority=\"fast\">Examinations.</genre>\n <genre authority=\"fast\">Periodicals.</genre>\n
393
- \ <genre authority=\"fast\">Study guides.</genre>\n <originInfo>\n <place>\n
394
- \ <placeTerm type=\"code\" authority=\"marccountry\">mau</placeTerm>\n
395
- \ </place>\n <dateIssued encoding=\"marc\" point=\"start\">2012</dateIssued>\n
396
- \ <dateIssued encoding=\"marc\" point=\"end\">9999</dateIssued>\n <issuance>serial</issuance>\n
397
- \ <frequency>Every two to three years</frequency>\n <frequency authority=\"marcfrequency\">Completely
398
- irregular</frequency>\n </originInfo>\n <originInfo eventType=\"publication\">\n
399
- \ <place>\n <placeTerm type=\"text\">Framingham, MA :</placeTerm>\n
400
- \ </place>\n <publisher>The Princeton Review,</publisher>\n <dateIssued>[2012]-</dateIssued>\n
401
- \ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
402
- \ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
403
- \ <extent>volumes ; 28 cm</extent>\n <form type=\"media\" authority=\"rdamedia\">unmediated</form>\n
404
- \ <form type=\"carrier\" authority=\"rdacarrier\">volume</form>\n </physicalDescription>\n
405
- \ <note type=\"statement of responsibility\" altRepGroup=\"00\">the Princeton
406
- Review.</note>\n <note type=\"date/sequential designation\">Began in 2012.</note>\n
407
- \ <subject>\n <geographicCode authority=\"marcgac\">n-us---</geographicCode>\n
408
- \ </subject>\n <subject authority=\"lcsh\">\n <topic>Graduate Management
409
- Admission Test</topic>\n <genre>Study guides</genre>\n </subject>\n <subject
410
- authority=\"lcsh\">\n <topic>Business</topic>\n <topic>Examinations,
411
- questions, etc</topic>\n <genre>Periodicals</genre>\n </subject>\n <subject
412
- authority=\"lcsh\">\n <topic>Management</topic>\n <geographic>United
413
- States</geographic>\n <genre>Examinations, questions, etc</genre>\n <genre>Periodicals</genre>\n
414
- \ </subject>\n <subject authority=\"fast\">\n <topic>Business</topic>\n
415
- \ <topic>Examinations, questions, etc</topic>\n </subject>\n <subject
416
- authority=\"fast\">\n <topic>Graduate Management Admission Test</topic>\n
417
- \ </subject>\n <subject authority=\"fast\">\n <topic>Management</topic>\n
418
- \ </subject>\n <subject authority=\"fast\">\n <geographic>United States</geographic>\n
419
- \ </subject>\n <classification authority=\"lcc\">HF1118 .A15</classification>\n
420
- \ <classification authority=\"ddc\" edition=\"14\">650.076</classification>\n
421
- \ <relatedItem type=\"preceding\">\n <titleInfo>\n <title>1,012 GMAT
422
- practice questions</title>\n </titleInfo>\n <identifier type=\"issn\">1946-3073</identifier>\n
423
- \ <identifier type=\"local\">(DLC) 2009202106</identifier>\n <identifier
424
- type=\"local\">(OCoLC)297530915</identifier>\n </relatedItem>\n <identifier
425
- type=\"issn\">2325-3495</identifier>\n <identifier type=\"issn\" invalid=\"yes\">1946-3073</identifier>\n
426
- \ <identifier type=\"lccn\">2012204312</identifier>\n <identifier type=\"oclc\">ocn816513528</identifier>\n
427
- \ <identifier type=\"stock number\">The Princeton Review, 111 Speen St., Ste.,
428
- 550, Framingtham, MA 01701</identifier>\n <recordInfo>\n <descriptionStandard>rda</descriptionStandard>\n
429
- \ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
430
- \ <recordCreationDate encoding=\"marc\">120711</recordCreationDate>\n <recordChangeDate
431
- encoding=\"iso8601\">20150711155858.0</recordChangeDate>\n <recordIdentifier>17460729</recordIdentifier>\n
432
- \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
433
- 1.106 2014/12/19)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
434
- authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
435
- \ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>7</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
436
- xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
437
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
338
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
438
339
  \ <titleInfo>\n <title>10 real SATs</title>\n </titleInfo>\n <titleInfo
439
340
  type=\"alternative\">\n <title>Ten real SATs</title>\n </titleInfo>\n
440
341
  \ <name type=\"corporate\">\n <namePart>College Entrance Examination Board</namePart>\n
@@ -455,10 +356,10 @@ http_interactions:
455
356
  \ <recordContentSource authority=\"marcorg\">IStc</recordContentSource>\n
456
357
  \ <recordCreationDate encoding=\"marc\">970516</recordCreationDate>\n <recordChangeDate
457
358
  encoding=\"iso8601\">20050929180225.0</recordChangeDate>\n <recordIdentifier>4019494</recordIdentifier>\n
458
- \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
459
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>8</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
359
+ \ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
360
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>6</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
460
361
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
461
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
362
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
462
363
  \ <titleInfo>\n <title>10 SATs</title>\n <subTitle>plus advice from
463
364
  the College Board on how to prepare for them</subTitle>\n </titleInfo>\n
464
365
  \ <titleInfo type=\"alternative\">\n <title>Ten SATs</title>\n </titleInfo>\n
@@ -482,12 +383,12 @@ http_interactions:
482
383
  (pbk.) :</identifier>\n <identifier type=\"lccn\">87063591</identifier>\n
483
384
  \ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource
484
385
  authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">871230</recordCreationDate>\n
485
- \ <recordChangeDate encoding=\"iso8601\">20050929180202.0</recordChangeDate>\n
386
+ \ <recordChangeDate encoding=\"iso8601\">20161117090338.0</recordChangeDate>\n
486
387
  \ <recordIdentifier>2424452</recordIdentifier>\n <recordOrigin>Converted
487
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
488
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>9</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
388
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
389
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>7</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
489
390
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
490
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
391
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
491
392
  \ <titleInfo>\n <title>10 SATs</title>\n <subTitle>scholastic aptitude
492
393
  tests of the College Board</subTitle>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
493
394
  \ <title>10 S.A.T.s</title>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
@@ -509,9 +410,93 @@ http_interactions:
509
410
  type=\"lccn\">83071936</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
510
411
  \ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
511
412
  \ <recordCreationDate encoding=\"marc\">840130</recordCreationDate>\n <recordChangeDate
512
- encoding=\"iso8601\">20050929180222.0</recordChangeDate>\n <recordIdentifier>3298317</recordIdentifier>\n
513
- \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
514
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>10</zs:recordPosition></zs:record></zs:records><zs:nextRecordPosition>11</zs:nextRecordPosition><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>test</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
413
+ encoding=\"iso8601\">20161117082749.0</recordChangeDate>\n <recordIdentifier>3298317</recordIdentifier>\n
414
+ \ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
415
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>8</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
416
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
417
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
418
+ \ <titleInfo>\n <title>10 SATs</title>\n <subTitle>the actual and complete
419
+ scholastic aptitude test plus advice from the College Board on how to prepare
420
+ for it</subTitle>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Ten
421
+ SATs</title>\n </titleInfo>\n <name type=\"corporate\">\n <namePart>College
422
+ Entrance Examination Board</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n
423
+ \ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">nyu</placeTerm>\n
424
+ \ </place>\n <place>\n <placeTerm type=\"text\">New York</placeTerm>\n
425
+ \ </place>\n <publisher>College Entrance Examination Board</publisher>\n
426
+ \ <publisher>Distributed by Scribner</publisher>\n <dateIssued>c1986</dateIssued>\n
427
+ \ <dateIssued encoding=\"marc\">1986</dateIssued>\n <edition>2nd ed.</edition>\n
428
+ \ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
429
+ authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
430
+ \ <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>304
431
+ p. : ill. ; 28 cm.</extent>\n </physicalDescription>\n <subject authority=\"lcsh\">\n
432
+ \ <topic>SAT (Educational test)</topic>\n </subject>\n <subject authority=\"lcsh\">\n
433
+ \ <topic>SAT (Educational test)</topic>\n <topic>Study guides</topic>\n
434
+ \ </subject>\n <classification authority=\"lcc\">LB2353.57 .A16 1986</classification>\n
435
+ \ <classification authority=\"ddc\" edition=\"19\">371.2/6</classification>\n
436
+ \ <identifier type=\"isbn\">0874472466 (pbk.) :</identifier>\n <identifier
437
+ type=\"lccn\">85073338</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
438
+ \ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
439
+ \ <recordCreationDate encoding=\"marc\">851021</recordCreationDate>\n <recordChangeDate
440
+ encoding=\"iso8601\">20161117082741.0</recordChangeDate>\n <recordIdentifier>500315</recordIdentifier>\n
441
+ \ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
442
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>9</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
443
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
444
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
445
+ \ <titleInfo>\n <title>100 contractors receiving the largest dollar volume
446
+ of prime contract awards for research, development, test, and evaluation</title>\n
447
+ \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>One hundred
448
+ contractors receiving the largest dollar volume prime contract awards for
449
+ research, development, test, and evaluation</title>\n </titleInfo>\n <titleInfo
450
+ type=\"alternative\">\n <title>100 contractors receiving the largest dollar
451
+ volume of prime contract awards for RDT &amp; E</title>\n </titleInfo>\n
452
+ \ <name type=\"corporate\">\n <namePart>United States</namePart>\n <namePart>Department
453
+ of Defense.</namePart>\n <namePart>Washington Headquarters Services.</namePart>\n
454
+ \ <namePart>Directorate for Information Operations and Reports.</namePart>\n
455
+ \ </name>\n <typeOfResource>text</typeOfResource>\n <genre authority=\"rdacontent\">text</genre>\n
456
+ \ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">dcu</placeTerm>\n
457
+ \ </place>\n <place>\n <placeTerm type=\"text\">Washington, D.C.]</placeTerm>\n
458
+ \ </place>\n <publisher>Dept. of Defense, Washington Headquarters Services,
459
+ Directorate for Information Operations and Reports</publisher>\n <publisher>For
460
+ sale by the Supt. of Docs, U.S. G.P.O.</publisher>\n <dateIssued>1996-[1997]</dateIssued>\n
461
+ \ <dateIssued encoding=\"marc\" point=\"start\">1996</dateIssued>\n <dateIssued
462
+ encoding=\"marc\" point=\"end\">1997</dateIssued>\n <issuance>serial</issuance>\n
463
+ \ <frequency>Annual</frequency>\n <frequency authority=\"marcfrequency\">Annual</frequency>\n
464
+ \ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
465
+ \ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
466
+ \ <extent>volumes ; 28 cm</extent>\n <form type=\"media\" authority=\"rdamedia\">unmediated</form>\n
467
+ \ <form type=\"carrier\" authority=\"rdacarrier\">volume</form>\n </physicalDescription>\n
468
+ \ <note type=\"date/sequential designation\">Fiscal year 1996-fiscal year
469
+ 1997.</note>\n <note>Distributed to depository libraries on microfiche.</note>\n
470
+ \ <note type=\"numbering\">Report covers fiscal year.</note>\n <subject>\n
471
+ \ <geographicCode authority=\"marcgac\">n-us---</geographicCode>\n </subject>\n
472
+ \ <subject authority=\"lcsh\">\n <topic>Defense contracts</topic>\n <geographic>United
473
+ States</geographic>\n <genre>Periodicals</genre>\n </subject>\n <subject
474
+ authority=\"lcsh\">\n <geographic>United States</geographic>\n <topic>Armed
475
+ Forces</topic>\n <topic>Procurement</topic>\n <genre>Periodicals</genre>\n
476
+ \ </subject>\n <classification authority=\"lcc\">UC267 .A15</classification>\n
477
+ \ <classification authority=\"ddc\" edition=\"19\">355.6/211/0973</classification>\n
478
+ \ <relatedItem type=\"otherFormat\">\n <originInfo>\n <publisher>Supt.
479
+ of Docs., U.S.G.P.O.</publisher>\n </originInfo>\n <identifier type=\"local\">(DLC)sn
480
+ 98038271</identifier>\n <identifier type=\"local\">(OCoLC)40131503</identifier>\n
481
+ \ </relatedItem>\n <relatedItem type=\"preceding\">\n <titleInfo>\n <title>500
482
+ contractors receiving the largest dollar volume of prime contract awards for
483
+ research, development, test, and evaluation</title>\n </titleInfo>\n <identifier
484
+ type=\"issn\">0884-1314</identifier>\n <identifier type=\"local\">(DLC)
485
+ \ 85641927</identifier>\n <identifier type=\"local\">(OCoLC)9878607</identifier>\n
486
+ \ </relatedItem>\n <relatedItem type=\"succeeding\">\n <titleInfo>\n <title>100
487
+ contractors receiving the largest dollar volume of prime contract awards for
488
+ research, development, test, and evaluation (Online)</title>\n </titleInfo>\n
489
+ \ <identifier type=\"issn\">1936-3257</identifier>\n <identifier type=\"local\">(DLC)
490
+ \ 2012219066</identifier>\n <identifier type=\"local\">(OCoLC)42909785</identifier>\n
491
+ \ </relatedItem>\n <identifier type=\"lccn\">98640735</identifier>\n <identifier
492
+ type=\"oclc\">ocm37715440</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
493
+ \ <recordContentSource authority=\"marcorg\">DGAO</recordContentSource>\n
494
+ \ <recordCreationDate encoding=\"marc\">971001</recordCreationDate>\n <recordChangeDate
495
+ encoding=\"iso8601\">20130505155748.0</recordChangeDate>\n <recordIdentifier>11496755</recordIdentifier>\n
496
+ \ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
497
+ 1.117 2017/02/14)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
498
+ authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
499
+ \ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>10</zs:recordPosition></zs:record></zs:records><zs:nextRecordPosition>11</zs:nextRecordPosition><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>test</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
515
500
  http_version:
516
- recorded_at: Thu, 07 Jul 2016 15:06:30 GMT
517
- recorded_with: VCR 3.0.3
501
+ recorded_at: Sun, 24 Dec 2017 12:57:45 GMT
502
+ recorded_with: VCR 4.0.0