enju_loc 0.2.0 → 0.3.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 (248) hide show
  1. checksums.yaml +5 -5
  2. data/MIT-LICENSE +0 -0
  3. data/README.md +15 -0
  4. data/Rakefile +1 -1
  5. data/app/assets/config/enju_loc_manifest.js +0 -0
  6. data/app/controllers/loc_search_controller.rb +8 -9
  7. data/app/helpers/loc_search_helper.rb +2 -2
  8. data/app/models/loc_search.rb +23 -23
  9. data/lib/enju_loc/loc_search.rb +344 -330
  10. data/lib/enju_loc/version.rb +1 -1
  11. data/spec/cassette_library/LocSearch/_ModsRecord/should_parse_MODS_metadata.yml +7 -7
  12. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_a_valid_manifestation.yml +7 -7
  13. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_lcsh_subjects_only.yml +17 -16
  14. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_multiple_series_statements.yml +10 -10
  15. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_distinguish_title_information_with_subject.yml +7 -7
  16. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_a_manifestation_that_has_invalid_classification.yml +7 -7
  17. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_another_serial.yml +33 -29
  18. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_audio_book.yml +7 -7
  19. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_e-resource.yml +7 -7
  20. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_e-resource_packaged_.yml +7 -7
  21. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_extent.yml +17 -16
  22. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_lccn_exact_math.yml +7 -7
  23. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_notated_music.yml +7 -7
  24. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_note_fields.yml +7 -7
  25. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_publication_year.yml +26 -21
  26. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_serial.yml +30 -29
  27. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_video_publication.yml +7 -7
  28. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_parse_title_information_properly.yml +20 -19
  29. data/spec/cassette_library/LocSearch/_import_from_sru_response/should_support_name_and_title_subjects.yml +7 -7
  30. data/spec/cassette_library/LocSearch/_search/should_return_a_search_result.yml +189 -184
  31. data/spec/cassette_library/LocSearchController/GET_index/should_get_index.yml +189 -184
  32. data/spec/cassette_library/LocSearchController/GET_index/should_get_index_with_page_parameter.yml +177 -171
  33. data/spec/cassette_library/LocSearchController/POST_create/should_create_a_bibliographic_record_if_lccn_is_set.yml +19 -22
  34. data/spec/cassette_library/LocSearchController/POST_create/should_not_create_a_bibliographic_record_if_lccn_is_not_set.yml +5 -5
  35. data/spec/cassette_library/loc_search/index/loc_search_menu/should_reflect_query_params_for_views.yml +140 -155
  36. data/spec/controllers/loc_search_controller_spec.rb +16 -16
  37. data/spec/dummy/app/models/application_record.rb +3 -0
  38. data/spec/dummy/bin/rails +1 -1
  39. data/spec/dummy/bin/setup +21 -12
  40. data/spec/dummy/bin/update +29 -0
  41. data/spec/dummy/bin/yarn +11 -0
  42. data/spec/dummy/config/application.rb +5 -17
  43. data/spec/dummy/config/cable.yml +10 -0
  44. data/spec/dummy/config/database.yml +17 -22
  45. data/spec/dummy/config/environment.rb +1 -1
  46. data/spec/dummy/config/environments/development.rb +24 -11
  47. data/spec/dummy/config/environments/production.rb +28 -16
  48. data/spec/dummy/config/environments/test.rb +6 -8
  49. data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
  50. data/spec/dummy/config/initializers/assets.rb +14 -0
  51. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  52. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  53. data/spec/dummy/config/initializers/wrap_parameters.rb +2 -2
  54. data/spec/dummy/config/puma.rb +56 -0
  55. data/spec/dummy/config/secrets.yml +15 -5
  56. data/spec/dummy/config/spring.rb +6 -0
  57. data/spec/dummy/config/sunspot.yml +23 -0
  58. data/spec/dummy/db/migrate/001_create_agents.rb +7 -7
  59. data/spec/dummy/db/migrate/002_devise_create_users.rb +1 -1
  60. data/spec/dummy/db/migrate/005_create_manifestations.rb +10 -10
  61. data/spec/dummy/db/migrate/006_create_items.rb +6 -6
  62. data/spec/dummy/db/migrate/012_create_owns.rb +3 -3
  63. data/spec/dummy/db/migrate/015_create_creates.rb +3 -3
  64. data/spec/dummy/db/migrate/029_create_subjects.rb +1 -1
  65. data/spec/dummy/db/migrate/041_create_roles.rb +1 -1
  66. data/spec/dummy/db/migrate/047_create_produces.rb +3 -3
  67. data/spec/dummy/db/migrate/059_create_libraries.rb +8 -10
  68. data/spec/dummy/db/migrate/069_create_shelves.rb +4 -5
  69. data/spec/dummy/db/migrate/073_create_carrier_types.rb +2 -2
  70. data/spec/dummy/db/migrate/077_create_user_groups.rb +2 -2
  71. data/spec/dummy/db/migrate/080_create_library_groups.rb +3 -4
  72. data/spec/dummy/db/migrate/112_create_frequencies.rb +2 -2
  73. data/spec/dummy/db/migrate/117_create_form_of_works.rb +2 -2
  74. data/spec/dummy/db/migrate/120_create_baskets.rb +3 -4
  75. data/spec/dummy/db/migrate/124_create_bookstores.rb +2 -2
  76. data/spec/dummy/db/migrate/125_create_donates.rb +3 -3
  77. data/spec/dummy/db/migrate/130_create_request_status_types.rb +2 -2
  78. data/spec/dummy/db/migrate/131_create_request_types.rb +2 -2
  79. data/spec/dummy/db/migrate/133_create_agent_merges.rb +2 -2
  80. data/spec/dummy/db/migrate/134_create_agent_merge_lists.rb +1 -1
  81. data/spec/dummy/db/migrate/142_create_classifications.rb +1 -1
  82. data/spec/dummy/db/migrate/144_create_classification_types.rb +1 -1
  83. data/spec/dummy/db/migrate/145_create_subject_heading_types.rb +1 -1
  84. data/spec/dummy/db/migrate/146_create_subject_types.rb +1 -1
  85. data/spec/dummy/db/migrate/149_create_message_templates.rb +1 -1
  86. data/spec/dummy/db/migrate/154_create_messages.rb +1 -1
  87. data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +1 -1
  88. data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +3 -3
  89. data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +1 -1
  90. data/spec/dummy/db/migrate/20080905191442_create_agent_types.rb +2 -2
  91. data/spec/dummy/db/migrate/20081006090811_create_subscriptions.rb +5 -8
  92. data/spec/dummy/db/migrate/20081006093246_create_subscribes.rb +5 -6
  93. data/spec/dummy/db/migrate/20081023092436_create_search_engines.rb +6 -6
  94. data/spec/dummy/db/migrate/20081025083323_create_countries.rb +5 -5
  95. data/spec/dummy/db/migrate/20081025083905_create_languages.rb +6 -6
  96. data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +2 -2
  97. data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +1 -1
  98. data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +1 -1
  99. data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +1 -1
  100. data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +1 -1
  101. data/spec/dummy/db/migrate/20090719201843_create_extents.rb +1 -1
  102. data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +2 -2
  103. data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +2 -2
  104. data/spec/dummy/db/migrate/20090812151902_create_agent_relationship_types.rb +2 -2
  105. data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +1 -1
  106. data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +2 -2
  107. data/spec/dummy/db/migrate/20091202124834_create_versions.rb +1 -1
  108. data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +1 -1
  109. data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +1 -1
  110. data/spec/dummy/db/migrate/20100211105551_add_admin_networks_to_library_group.rb +1 -1
  111. data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +1 -1
  112. data/spec/dummy/db/migrate/20100314190054_add_opening_hour_to_library.rb +1 -1
  113. data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +1 -1
  114. data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +1 -1
  115. data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +1 -1
  116. data/spec/dummy/db/migrate/20100606073747_create_agent_relationships.rb +1 -1
  117. data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +2 -2
  118. data/spec/dummy/db/migrate/20100814091104_add_position_to_agent_relationship.rb +1 -1
  119. data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +1 -1
  120. data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +1 -1
  121. data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +1 -1
  122. data/spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb +2 -2
  123. data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +1 -1
  124. data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb +1 -1
  125. data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +2 -2
  126. data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +1 -1
  127. data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +1 -1
  128. data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +1 -1
  129. data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +1 -1
  130. data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +3 -3
  131. data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +1 -1
  132. data/spec/dummy/db/migrate/20110913120629_add_lft_and_rgt_to_classification.rb +1 -1
  133. data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +1 -1
  134. data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +1 -1
  135. data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +1 -1
  136. data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +1 -1
  137. data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +1 -1
  138. data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +1 -1
  139. data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +1 -1
  140. data/spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb +1 -1
  141. data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +1 -1
  142. data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +1 -1
  143. data/spec/dummy/db/migrate/20120129014038_create_budget_types.rb +1 -1
  144. data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +1 -1
  145. data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +2 -2
  146. data/spec/dummy/db/migrate/20120319173203_create_accepts.rb +4 -7
  147. data/spec/dummy/db/migrate/20120406020752_add_url_to_subject.rb +1 -1
  148. data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +1 -1
  149. data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +1 -1
  150. data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +1 -1
  151. data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +1 -1
  152. data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +1 -1
  153. data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +1 -1
  154. data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +1 -1
  155. data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +1 -1
  156. data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +1 -1
  157. data/spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb +2 -2
  158. data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +1 -1
  159. data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +1 -1
  160. data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +1 -1
  161. data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +1 -1
  162. data/spec/dummy/db/migrate/20130412083556_add_latitude_and_longitude_to_library.rb +1 -1
  163. data/spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb +1 -1
  164. data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +1 -1
  165. data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +1 -1
  166. data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +1 -1
  167. data/spec/dummy/db/migrate/20130504133816_add_manifestation_id_to_subject.rb +1 -1
  168. data/spec/dummy/db/migrate/20130504143515_add_manifestation_id_to_classification.rb +1 -1
  169. data/spec/dummy/db/migrate/20130504195916_add_subject_heading_type_id_to_subject.rb +1 -1
  170. data/spec/dummy/db/migrate/20130506175303_create_identifier_types.rb +1 -1
  171. data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +3 -3
  172. data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +1 -1
  173. data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +2 -2
  174. data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +3 -3
  175. data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +1 -1
  176. data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +1 -1
  177. data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +1 -1
  178. data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +1 -1
  179. data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +1 -1
  180. data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +1 -1
  181. data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +2 -3
  182. data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +1 -1
  183. data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +1 -1
  184. data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +1 -1
  185. data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +1 -1
  186. data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +1 -1
  187. data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +1 -1
  188. data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +2 -2
  189. data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +2 -2
  190. data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +1 -1
  191. data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +2 -2
  192. data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +2 -2
  193. data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +1 -1
  194. data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +1 -1
  195. data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +1 -1
  196. data/spec/dummy/db/migrate/20140813182425_add_publication_place_to_manifestation.rb +1 -1
  197. data/spec/dummy/db/migrate/20140817155043_add_extent_of_text_to_manifestation.rb +1 -1
  198. data/spec/dummy/db/migrate/20140821151023_create_colors.rb +2 -4
  199. data/spec/dummy/db/migrate/20140822114527_add_error_message_to_resource_import_result.rb +1 -1
  200. data/spec/dummy/db/migrate/20140823083524_add_extent_to_manifestation.rb +1 -1
  201. data/spec/dummy/db/migrate/20140823094847_add_dimensions_to_manifestation.rb +1 -1
  202. data/spec/dummy/db/migrate/20140823095740_rename_manifestation_periodical_to_serial.rb +1 -1
  203. data/spec/dummy/db/migrate/20141003181336_add_full_name_transcription_to_profile.rb +1 -1
  204. data/spec/dummy/db/migrate/20141003182825_add_date_of_birth_to_profile.rb +1 -1
  205. data/spec/dummy/db/migrate/20150117111136_add_foreign_key_to_items_referencing_manifestations.rb +1 -1
  206. data/spec/dummy/db/migrate/20150221063719_add_settings_to_library_group.rb +1 -1
  207. data/spec/dummy/db/migrate/20150506105356_add_error_message_to_user_import_result.rb +1 -1
  208. data/spec/dummy/db/migrate/20150924115059_create_withdraws.rb +4 -6
  209. data/spec/dummy/db/migrate/20151125004028_add_profile_id_to_agent.rb +1 -1
  210. data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +12 -7
  211. data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +16 -3
  212. data/spec/dummy/db/migrate/20160610093229_add_html_snippet_to_library_group.rb +1 -1
  213. data/spec/dummy/db/migrate/20160627232219_add_most_recent_to_user_import_file_transitions.rb +1 -1
  214. data/spec/dummy/db/migrate/20160627232316_add_most_recent_to_user_export_file_transitions.rb +1 -1
  215. data/spec/dummy/db/migrate/20160703185015_add_most_recent_to_message_transitions.rb +1 -1
  216. data/spec/dummy/db/migrate/20160801080612_add_most_recent_to_import_request_transitions.rb +1 -1
  217. data/spec/dummy/db/migrate/20160801080619_add_most_recent_to_resource_import_file_transitions.rb +1 -1
  218. data/spec/dummy/db/migrate/20160801080637_add_most_recent_to_resource_export_file_transitions.rb +1 -1
  219. data/spec/dummy/db/migrate/20160801080643_add_most_recent_to_agent_import_file_transitions.rb +1 -1
  220. data/spec/dummy/db/migrate/20160811102604_add_picture_width_to_picture_file.rb +1 -1
  221. data/spec/dummy/db/migrate/20160813191647_add_max_number_of_results_to_library_group.rb +1 -1
  222. data/spec/dummy/db/migrate/20160813191733_add_family_name_first_to_library_group.rb +1 -1
  223. data/spec/dummy/db/migrate/20160813192542_add_pub_year_facet_range_interval_to_library_group.rb +1 -1
  224. data/spec/dummy/db/migrate/20160813203039_add_user_id_to_library_group.rb +1 -1
  225. data/spec/dummy/db/migrate/20160814165332_add_most_recent_to_message_request_transitions.rb +1 -1
  226. data/spec/dummy/db/migrate/20160820004638_add_attachment_attachment_to_carrier_types.rb +1 -1
  227. data/spec/dummy/db/migrate/20170305064014_add_csv_charset_conversion_to_library_group.rb +5 -0
  228. data/spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb +5 -0
  229. data/spec/dummy/db/migrate/20171119051258_set_not_null_to_manifestation_id_on_items.rb +5 -0
  230. data/spec/dummy/db/migrate/20171126133835_rename_login_banner_to_old_login_banner.rb +5 -0
  231. data/spec/dummy/db/migrate/20171126135238_add_foreign_key_to_library_group_id_on_library.rb +5 -0
  232. data/spec/dummy/db/migrate/20180102162311_add_header_logo_meta_to_library_group.rb +5 -0
  233. data/spec/dummy/db/migrate/20180107160726_add_constraints_to_most_recent_for_user_import_file_transitions.rb +13 -0
  234. data/spec/dummy/db/migrate/20180107160740_add_constraints_to_most_recent_for_user_export_file_transitions.rb +13 -0
  235. data/spec/dummy/db/migrate/20180107161311_add_constraints_to_most_recent_for_agent_import_file_transitions.rb +13 -0
  236. data/spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb +13 -0
  237. data/spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb +13 -0
  238. data/spec/dummy/db/migrate/20180107161410_add_constraints_to_most_recent_for_import_request_transitions.rb +13 -0
  239. data/spec/dummy/db/migrate/20190713114940_add_profile_id_to_user.rb +5 -0
  240. data/spec/dummy/db/migrate/20190713115451_add_full_name_translations_to_profile.rb +5 -0
  241. data/spec/dummy/db/migrate/20190818075603_add_memo_to_manifestation.rb +5 -0
  242. data/spec/dummy/db/migrate/20190818075628_add_memo_to_item.rb +5 -0
  243. data/spec/dummy/db/migrate/20191219122214_create_custom_properties.rb +12 -0
  244. data/spec/dummy/db/schema.rb +688 -692
  245. data/spec/models/loc_search_spec.rb +143 -143
  246. data/spec/rails_helper.rb +1 -4
  247. metadata +321 -251
  248. data/README.rdoc +0 -11
@@ -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
- - '34051'
22
+ - '34401'
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,161 @@ 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
+ \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Dog Ed pursuit</partName>\n
35
+ \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Dog Ed pursuit</title>\n
36
+ \ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
37
+ application title:\">\n <title>S#*! my dad says</title>\n <partName>Dog
38
+ Ed pursuit</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
39
+ \ <title>Shit my dad says</title>\n <partName>Dog Ed pursuit</partName>\n
40
+ \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
41
+ says</title>\n <partName>Dog Ed pursuit</partName>\n </titleInfo>\n <name
42
+ type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
43
+ \ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
44
+ picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
45
+ programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
46
+ \ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
47
+ \ </place>\n <dateIssued>2010-11-04</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
48
+ \ <dateCaptured encoding=\"iso8601\">20101104</dateCaptured>\n <issuance>monographic</issuance>\n
49
+ \ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
50
+ \ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
51
+ \ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
52
+ copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
53
+ \ </physicalDescription>\n <abstract type=\"Summary\">\"Ed finds himself
54
+ attached to Root Beer, Vince and Bonnie's dog. Meanwhile, Henry has very rough
55
+ sex with Vince and Bonnie's supervisor as Bonnie tells Ed to do the same human-canine
56
+ attachment to Vince\"--Wikipedia WWW site, viewed June 9, 2014.</abstract>\n
57
+ \ <note type=\"statement of responsibility\" altRepGroup=\"00\">directed by
58
+ Gail Mancuso ; written by Jeff Astrof.</note>\n <note>Episode no. 7.</note>\n
59
+ \ <note>Production no. 2J5658.</note>\n <note>Sources used: video container;
60
+ Copyright catalog online; Copyright description; Wikipedia WWW site, viewed
61
+ June 9, 2014.</note>\n <note type=\"performers\">William Shatner.</note>\n
62
+ \ <note type=\"performers\">Guest star: Missi Pyle.</note>\n <classification
63
+ authority=\"lcc\">VAP 8699 (viewing copy)</classification>\n <identifier
64
+ type=\"lccn\">2014603699</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
65
+ \ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
66
+ authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
67
+ \ <recordChangeDate encoding=\"iso8601\">20140609133830.0</recordChangeDate>\n
68
+ \ <recordIdentifier>18181703</recordIdentifier>\n <recordOrigin>Converted
69
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
70
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>11</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
71
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
72
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
73
+ \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Easy writer</partName>\n
74
+ \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Easy writer</title>\n
75
+ \ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
76
+ application title:\">\n <title>S#*! my dad says</title>\n <partName>Easy,
77
+ writer</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit
78
+ my dad says</title>\n <partName>Easy, writer</partName>\n </titleInfo>\n
79
+ \ <titleInfo type=\"alternative\">\n <title>Bleep my dad says</title>\n
80
+ \ <partName>Easy, writer</partName>\n </titleInfo>\n <name type=\"corporate\">\n
81
+ \ <namePart>Copyright Collection (Library of Congress)</namePart>\n </name>\n
82
+ \ <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
83
+ picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
84
+ programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
85
+ \ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
86
+ \ </place>\n <dateIssued>2010-10-28</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
87
+ \ <dateCaptured encoding=\"iso8601\">20101028</dateCaptured>\n <issuance>monographic</issuance>\n
88
+ \ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
89
+ \ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
90
+ \ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
91
+ copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
92
+ \ </physicalDescription>\n <abstract type=\"Summary\">\"Ed is embarrassed
93
+ when Henry writes an article about him\"--Copyright description.</abstract>\n
94
+ \ <note type=\"statement of responsibility\" altRepGroup=\"00\">directed by
95
+ Rob Schiller ; written by Jeff Astrof.</note>\n <note>Episode no. 6.</note>\n
96
+ \ <note>Production no. 2J5657.</note>\n <note>Sources used: video container;
97
+ Copyright catalog online; Copyright description; Wikipedia WWW site, viewed
98
+ June 9, 2014.</note>\n <note type=\"performers\">William Shatner.</note>\n
99
+ \ <note type=\"performers\">Guest stars: Todd Stashwick, Rebecca Creskoff.</note>\n
100
+ \ <classification authority=\"lcc\">VAP 8698 (viewing copy)</classification>\n
101
+ \ <identifier type=\"lccn\">2014603698</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
102
+ \ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
103
+ authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
104
+ \ <recordChangeDate encoding=\"iso8601\">20151125184709.0</recordChangeDate>\n
105
+ \ <recordIdentifier>18181694</recordIdentifier>\n <recordOrigin>Converted
106
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
107
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>12</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
108
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
109
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
110
+ \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Ed goes
111
+ to court</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
112
+ \ <title>Ed goes to court</title>\n </titleInfo>\n <titleInfo type=\"alternative\"
113
+ displayLabel=\"Copyright application title:\">\n <title>S#*! my dad says</title>\n
114
+ \ <partName>Ed goes to court</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
115
+ \ <title>Shit my dad says</title>\n <partName>Ed goes to court</partName>\n
116
+ \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
117
+ says</title>\n <partName>Ed goes to court</partName>\n </titleInfo>\n
118
+ \ <name type=\"corporate\">\n <namePart>Copyright Collection (Library of
119
+ Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
120
+ \ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
121
+ comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
122
+ television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
123
+ type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2011-01-27</dateIssued>\n
124
+ \ <dateIssued encoding=\"marc\">2011</dateIssued>\n <dateCaptured encoding=\"iso8601\">20110127</dateCaptured>\n
125
+ \ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
126
+ authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
127
+ \ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
128
+ \ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
129
+ copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
130
+ \ </physicalDescription>\n <abstract type=\"Summary\">\"As the newly-elected
131
+ head of the Homeowners' Association, Ed is more concerned with pursuing his
132
+ neighbor Rosemary Pernworth than passing any legislation\"--Wikipedia WWW
133
+ site, viewed June 9, 2014.</abstract>\n <note type=\"statement of responsibility\"
134
+ altRepGroup=\"00\">directed by Ted Wass ; written by Jeff Astrof.</note>\n
135
+ \ <note>Episode no. 15.</note>\n <note>Production no. 2J5665.</note>\n <note>Sources
136
+ used: video container; Copyright catalog online; Copyright description; Wikipedia
137
+ WWW site, viewed June 9, 2014.</note>\n <note type=\"performers\">William
138
+ Shatner.</note>\n <note type=\"performers\">Guest stars: Jean Smart, Tila
139
+ Tequila.</note>\n <classification authority=\"lcc\">VAQ 1399 (viewing copy)</classification>\n
140
+ \ <identifier type=\"lccn\">2014603999</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
141
+ \ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
142
+ authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
143
+ \ <recordChangeDate encoding=\"iso8601\">20140609100925.0</recordChangeDate>\n
144
+ \ <recordIdentifier>18181286</recordIdentifier>\n <recordOrigin>Converted
145
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
146
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>13</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
147
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
148
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
149
+ \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Family dinner
150
+ for schmucks</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
151
+ \ <title>Family dinner for schmucks</title>\n </titleInfo>\n <titleInfo
152
+ type=\"alternative\" displayLabel=\"Copyright application title:\">\n <title>S#*!
153
+ my dad says</title>\n <partName>Family dinner for schmucks</partName>\n
154
+ \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit my dad
155
+ says</title>\n <partName>Family dinner for schmucks</partName>\n </titleInfo>\n
156
+ \ <titleInfo type=\"alternative\">\n <title>Bleep my dad says</title>\n
157
+ \ <partName>Family dinner for schmucks</partName>\n </titleInfo>\n <name
158
+ type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
159
+ \ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
160
+ picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
161
+ programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
162
+ \ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
163
+ \ </place>\n <dateIssued>2010-12-16</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
164
+ \ <dateCaptured encoding=\"iso8601\">20101216</dateCaptured>\n <issuance>monographic</issuance>\n
165
+ \ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
166
+ \ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
167
+ \ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
168
+ copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
169
+ \ </physicalDescription>\n <abstract type=\"Summary\">\"Bonnie tries to start
170
+ a family tradition. Henry gets in trouble for taking the blame for a friend's
171
+ mistake. Ed makes a friend at the hospital with his personality\"--Wikipedia
172
+ WWW site, viewed June 9, 2014.</abstract>\n <note type=\"statement of responsibility\"
173
+ altRepGroup=\"00\">directed by Rob Schiller ; written by Chris Kelly.</note>\n
174
+ \ <note>Episode no. 11.</note>\n <note>Production no. 2J5661.</note>\n <note>Sources
175
+ used: video container; Copyright catalog online; Copyright description; Wikipedia
176
+ WWW site, viewed June 9, 2014.</note>\n <note type=\"performers\">William
177
+ Shatner.</note>\n <note type=\"performers\">Guest stars: Andrew J. West,
178
+ Todd Stashwick.</note>\n <classification authority=\"lcc\">VAQ 1396 (viewing
179
+ copy)</classification>\n <identifier type=\"lccn\">2014603961</identifier>\n
180
+ \ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>amim</descriptionStandard>\n
181
+ \ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
182
+ \ <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n <recordChangeDate
183
+ encoding=\"iso8601\">20140609081554.0</recordChangeDate>\n <recordIdentifier>18181095</recordIdentifier>\n
184
+ \ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
185
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>14</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
186
+ xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
187
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
34
188
  \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Goodson
35
189
  goes deep</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
36
190
  \ <title>Goodson goes deep</title>\n </titleInfo>\n <titleInfo type=\"alternative\"
@@ -62,10 +216,10 @@ http_interactions:
62
216
  authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n
63
217
  \ <recordChangeDate encoding=\"iso8601\">20140605152717.0</recordChangeDate>\n
64
218
  \ <recordIdentifier>18176790</recordIdentifier>\n <recordOrigin>Converted
65
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
66
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>11</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
219
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
220
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>15</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
67
221
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
68
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
222
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
69
223
  \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Lock and
70
224
  load</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Lock
71
225
  and load</title>\n </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
@@ -96,10 +250,10 @@ http_interactions:
96
250
  authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n
97
251
  \ <recordChangeDate encoding=\"iso8601\">20140605153440.0</recordChangeDate>\n
98
252
  \ <recordIdentifier>18176812</recordIdentifier>\n <recordOrigin>Converted
99
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
100
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>12</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
253
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
254
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>16</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
101
255
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
102
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
256
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
103
257
  \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Make a WISiH</partName>\n
104
258
  \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Make a WISiH</title>\n
105
259
  \ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
@@ -135,10 +289,10 @@ http_interactions:
135
289
  \ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
136
290
  \ <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n <recordChangeDate
137
291
  encoding=\"iso8601\">20140609135602.0</recordChangeDate>\n <recordIdentifier>18181741</recordIdentifier>\n
138
- \ <recordOrigin>Converted 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>13</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
292
+ \ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
293
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>17</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
140
294
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
141
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
295
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
142
296
  \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Not without
143
297
  my jacket</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
144
298
  \ <title>Not without my jacket</title>\n </titleInfo>\n <titleInfo type=\"alternative\"
@@ -178,10 +332,10 @@ http_interactions:
178
332
  authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
179
333
  \ <recordChangeDate encoding=\"iso8601\">20140609110500.0</recordChangeDate>\n
180
334
  \ <recordIdentifier>18181445</recordIdentifier>\n <recordOrigin>Converted
181
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
182
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>14</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
335
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
336
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>18</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
183
337
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
184
- 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
185
339
  \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>[Pilot]</partName>\n
186
340
  \ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
187
341
  application title:\">\n <title>S#*! my dad says</title>\n <partName>Pilot</partName>\n
@@ -219,10 +373,10 @@ http_interactions:
219
373
  authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140606</recordCreationDate>\n
220
374
  \ <recordChangeDate encoding=\"iso8601\">20140609081428.0</recordChangeDate>\n
221
375
  \ <recordIdentifier>18179971</recordIdentifier>\n <recordOrigin>Converted
222
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
223
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>15</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
376
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
377
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>19</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
224
378
  xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
225
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
379
+ version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
226
380
  \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>The better
227
381
  father</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Better
228
382
  father</title>\n </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
@@ -264,156 +418,8 @@ http_interactions:
264
418
  authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
265
419
  \ <recordChangeDate encoding=\"iso8601\">20140609083946.0</recordChangeDate>\n
266
420
  \ <recordIdentifier>18181125</recordIdentifier>\n <recordOrigin>Converted
267
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
268
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>16</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
269
- xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
270
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
271
- \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>The manly
272
- thing to do</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
273
- \ <title>Manly thing to do</title>\n </titleInfo>\n <titleInfo type=\"alternative\"
274
- displayLabel=\"Copyright application title:\">\n <title>S#*! my dad says</title>\n
275
- \ <partName>The manly thing to do</partName>\n </titleInfo>\n <titleInfo
276
- type=\"alternative\">\n <title>Shit my dad says</title>\n <partName>The
277
- manly thing to do</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
278
- \ <title>Bleep my dad says</title>\n <partName>The manly thing to do</partName>\n
279
- \ </titleInfo>\n <name type=\"corporate\">\n <namePart>Copyright Collection
280
- (Library of Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
281
- \ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
282
- comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
283
- television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
284
- type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2010-11-11</dateIssued>\n
285
- \ <dateIssued encoding=\"marc\">2010</dateIssued>\n <dateCaptured encoding=\"iso8601\">20101111</dateCaptured>\n
286
- \ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
287
- authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
288
- \ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
289
- \ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
290
- copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
291
- \ </physicalDescription>\n <note type=\"statement of responsibility\" altRepGroup=\"00\">directed
292
- by Gail Mancuso ; written by Justin Halpern and Patrick Schumacker.</note>\n
293
- \ <note>Production no. 2J5659.</note>\n <note>Sources used: video container;
294
- Copyright catalog online; Copyright description; Wikipedia WWW site, viewed
295
- June 4, 2014.</note>\n <note type=\"performers\">William Shatner, Jonathan
296
- Sadowski, Will Sasso.</note>\n <classification authority=\"lcc\">VAQ 3025
297
- (viewing copy)</classification>\n <identifier type=\"lccn\">2014604743</identifier>\n
298
- \ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>amim</descriptionStandard>\n
299
- \ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
300
- \ <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n <recordChangeDate
301
- encoding=\"iso8601\">20140605152553.0</recordChangeDate>\n <recordIdentifier>18176777</recordIdentifier>\n
302
- \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
303
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>17</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
304
- xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
305
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
306
- \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>The truth
307
- about dads and moms</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
308
- \ <title>Truth about dads and moms</title>\n </titleInfo>\n <titleInfo
309
- type=\"alternative\" displayLabel=\"Copyright application title:\">\n <title>S#*!
310
- my dad says</title>\n <partName>The truth about dads and moms</partName>\n
311
- \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit my dad
312
- says</title>\n <partName>The truth about dads and moms</partName>\n </titleInfo>\n
313
- \ <titleInfo type=\"alternative\">\n <title>Bleep my dad says</title>\n
314
- \ <partName>The truth about dads and moms</partName>\n </titleInfo>\n <name
315
- type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
316
- \ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
317
- picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
318
- programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
319
- \ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
320
- \ </place>\n <dateIssued>2010-10-07</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
321
- \ <dateCaptured encoding=\"iso8601\">20101007</dateCaptured>\n <issuance>monographic</issuance>\n
322
- \ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
323
- \ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
324
- \ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
325
- copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
326
- \ </physicalDescription>\n <abstract type=\"Summary\">\"After Ed takes Henry
327
- out to an early dinner one night, they bump into Tim (Tim Bagley), who was
328
- fired for forging Ed's driver's test. Henry disagrees with Ed on what should
329
- be done to fix it. Meanwhile Bonnie gets an expensive make-up job and is determined
330
- to make it last to get her money out it. Also Vince tells Henry of what really
331
- happened when they were younger\"--Wikipedia WWW site, viewed June 9, 2014.</abstract>\n
332
- \ <note type=\"statement of responsibility\" altRepGroup=\"00\">directed by
333
- \ Rob Schiller ; written by Erin Ehrlich.</note>\n <note>Episode no. 3.</note>\n
334
- \ <note>Production no. 2J5633.</note>\n <note>Sources used: video container;
335
- Copyright catalog online; Copyright description; Wikipedia WWW site, viewed
336
- June 9, 2014.</note>\n <note type=\"performers\">William Shatner, Tim Bagley.</note>\n
337
- \ <classification authority=\"lcc\">VAP 8696 (viewing copy)</classification>\n
338
- \ <identifier type=\"lccn\">2014603696</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
339
- \ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
340
- authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
341
- \ <recordChangeDate encoding=\"iso8601\">20140609105314.0</recordChangeDate>\n
342
- \ <recordIdentifier>18181426</recordIdentifier>\n <recordOrigin>Converted
343
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
344
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>18</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
345
- xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
346
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
347
- \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Well suitored</partName>\n
348
- \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Well suitored</title>\n
349
- \ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
350
- application title:\">\n <title>S#*! my dad says</title>\n <partName>Well
351
- suitored</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
352
- \ <title>Shit my dad says</title>\n <partName>Well suitored</partName>\n
353
- \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
354
- says</title>\n <partName>Well suitored</partName>\n </titleInfo>\n <name
355
- type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
356
- \ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
357
- picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
358
- programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
359
- \ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
360
- \ </place>\n <dateIssued>2011-02-03</dateIssued>\n <dateIssued encoding=\"marc\">2011</dateIssued>\n
361
- \ <dateCaptured encoding=\"iso8601\">20110203</dateCaptured>\n <issuance>monographic</issuance>\n
362
- \ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
363
- \ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
364
- \ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
365
- copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
366
- \ </physicalDescription>\n <note type=\"statement of responsibility\" altRepGroup=\"00\">directed
367
- by Ted Wass ; written by Michael Lisbe and Nate Reger.</note>\n <note>Production
368
- no. 2J5666.</note>\n <note>Sources used: video container; Copyright catalog
369
- online; Copyright description; Wikipedia WWW site, viewed June 4, 2014.</note>\n
370
- \ <note type=\"performers\">William Shatner, Jonathan Sadowski, Will Sasso.</note>\n
371
- \ <classification authority=\"lcc\">VAQ 3027 (viewing copy)</classification>\n
372
- \ <identifier type=\"lccn\">2014604745</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
373
- \ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
374
- authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n
375
- \ <recordChangeDate encoding=\"iso8601\">20140605153100.0</recordChangeDate>\n
376
- \ <recordIdentifier>18176801</recordIdentifier>\n <recordOrigin>Converted
377
- from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
378
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>19</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
379
- xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
380
- version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
381
- \ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Who's your
382
- daddy?</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Who's
383
- your daddy?</title>\n </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
384
- application title:\">\n <title>S#*! my dad says</title>\n <partName>Who's
385
- your daddy?</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
386
- \ <title>Shit my dad says</title>\n <partName>Who's your daddy?</partName>\n
387
- \ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
388
- says</title>\n <partName>Who's your daddy?</partName>\n </titleInfo>\n
389
- \ <name type=\"corporate\">\n <namePart>Copyright Collection (Library of
390
- Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
391
- \ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
392
- comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
393
- television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
394
- type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2011-02-17</dateIssued>\n
395
- \ <dateIssued encoding=\"marc\">2011</dateIssued>\n <dateCaptured encoding=\"iso8601\">20110217</dateCaptured>\n
396
- \ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
397
- authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
398
- \ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
399
- \ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
400
- copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
401
- \ </physicalDescription>\n <abstract type=\"Summary\">\"After meeting Henry's
402
- new girlfriend, Ed realizes he has a strange connection with her\"--Wikipedia
403
- WWW site, viewed June 9, 2014.</abstract>\n <note type=\"statement of responsibility\"
404
- altRepGroup=\"00\">directed by Steve Zuckerman ; written by Steve Gabriel.</note>\n
405
- \ <note>Episode no. 18.</note>\n <note>Production no. 2J5668.</note>\n <note>Sources
406
- used: video container; Copyright catalog online; Copyright description; Wikipedia
407
- WWW site, viewed June 9, 2014.</note>\n <note type=\"performers\">William
408
- Shatner.</note>\n <note type=\"performers\">Guest stars: Riki Lindhome, Camille
409
- Donatacci Grammer.</note>\n <classification authority=\"lcc\">VAQ 1400 (viewing
410
- copy)</classification>\n <identifier type=\"lccn\">2014603989</identifier>\n
411
- \ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>amim</descriptionStandard>\n
412
- \ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
413
- \ <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n <recordChangeDate
414
- encoding=\"iso8601\">20140609104408.0</recordChangeDate>\n <recordIdentifier>18181381</recordIdentifier>\n
415
- \ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
416
- 1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>20</zs:recordPosition></zs:record></zs:records><zs:nextRecordPosition>21</zs:nextRecordPosition><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>library</zs:query><zs:startRecord>11</zs:startRecord><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
421
+ from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
422
+ 1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>20</zs:recordPosition></zs:record></zs:records><zs:nextRecordPosition>21</zs:nextRecordPosition><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>library</zs:query><zs:startRecord>11</zs:startRecord><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
417
423
  http_version:
418
- recorded_at: Thu, 07 Jul 2016 15:06:02 GMT
419
- recorded_with: VCR 3.0.3
424
+ recorded_at: Sun, 24 Dec 2017 12:57:04 GMT
425
+ 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
- - '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