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.
- checksums.yaml +5 -5
- data/MIT-LICENSE +0 -0
- data/README.md +15 -0
- data/Rakefile +1 -1
- data/app/assets/config/enju_loc_manifest.js +0 -0
- data/app/controllers/loc_search_controller.rb +8 -9
- data/app/helpers/loc_search_helper.rb +2 -2
- data/app/models/loc_search.rb +23 -23
- data/lib/enju_loc/loc_search.rb +344 -330
- data/lib/enju_loc/version.rb +1 -1
- data/spec/cassette_library/LocSearch/_ModsRecord/should_parse_MODS_metadata.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_a_valid_manifestation.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_lcsh_subjects_only.yml +17 -16
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_multiple_series_statements.yml +10 -10
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_distinguish_title_information_with_subject.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_a_manifestation_that_has_invalid_classification.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_another_serial.yml +33 -29
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_audio_book.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_e-resource.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_e-resource_packaged_.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_extent.yml +17 -16
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_lccn_exact_math.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_notated_music.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_note_fields.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_publication_year.yml +26 -21
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_serial.yml +30 -29
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_video_publication.yml +7 -7
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_parse_title_information_properly.yml +20 -19
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_support_name_and_title_subjects.yml +7 -7
- data/spec/cassette_library/LocSearch/_search/should_return_a_search_result.yml +189 -184
- data/spec/cassette_library/LocSearchController/GET_index/should_get_index.yml +189 -184
- data/spec/cassette_library/LocSearchController/GET_index/should_get_index_with_page_parameter.yml +177 -171
- data/spec/cassette_library/LocSearchController/POST_create/should_create_a_bibliographic_record_if_lccn_is_set.yml +19 -22
- data/spec/cassette_library/LocSearchController/POST_create/should_not_create_a_bibliographic_record_if_lccn_is_not_set.yml +5 -5
- data/spec/cassette_library/loc_search/index/loc_search_menu/should_reflect_query_params_for_views.yml +140 -155
- data/spec/controllers/loc_search_controller_spec.rb +16 -16
- data/spec/dummy/app/models/application_record.rb +3 -0
- data/spec/dummy/bin/rails +1 -1
- data/spec/dummy/bin/setup +21 -12
- data/spec/dummy/bin/update +29 -0
- data/spec/dummy/bin/yarn +11 -0
- data/spec/dummy/config/application.rb +5 -17
- data/spec/dummy/config/cable.yml +10 -0
- data/spec/dummy/config/database.yml +17 -22
- data/spec/dummy/config/environment.rb +1 -1
- data/spec/dummy/config/environments/development.rb +24 -11
- data/spec/dummy/config/environments/production.rb +28 -16
- data/spec/dummy/config/environments/test.rb +6 -8
- data/spec/dummy/config/initializers/application_controller_renderer.rb +8 -0
- data/spec/dummy/config/initializers/assets.rb +14 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +2 -2
- data/spec/dummy/config/puma.rb +56 -0
- data/spec/dummy/config/secrets.yml +15 -5
- data/spec/dummy/config/spring.rb +6 -0
- data/spec/dummy/config/sunspot.yml +23 -0
- data/spec/dummy/db/migrate/001_create_agents.rb +7 -7
- data/spec/dummy/db/migrate/002_devise_create_users.rb +1 -1
- data/spec/dummy/db/migrate/005_create_manifestations.rb +10 -10
- data/spec/dummy/db/migrate/006_create_items.rb +6 -6
- data/spec/dummy/db/migrate/012_create_owns.rb +3 -3
- data/spec/dummy/db/migrate/015_create_creates.rb +3 -3
- data/spec/dummy/db/migrate/029_create_subjects.rb +1 -1
- data/spec/dummy/db/migrate/041_create_roles.rb +1 -1
- data/spec/dummy/db/migrate/047_create_produces.rb +3 -3
- data/spec/dummy/db/migrate/059_create_libraries.rb +8 -10
- data/spec/dummy/db/migrate/069_create_shelves.rb +4 -5
- data/spec/dummy/db/migrate/073_create_carrier_types.rb +2 -2
- data/spec/dummy/db/migrate/077_create_user_groups.rb +2 -2
- data/spec/dummy/db/migrate/080_create_library_groups.rb +3 -4
- data/spec/dummy/db/migrate/112_create_frequencies.rb +2 -2
- data/spec/dummy/db/migrate/117_create_form_of_works.rb +2 -2
- data/spec/dummy/db/migrate/120_create_baskets.rb +3 -4
- data/spec/dummy/db/migrate/124_create_bookstores.rb +2 -2
- data/spec/dummy/db/migrate/125_create_donates.rb +3 -3
- data/spec/dummy/db/migrate/130_create_request_status_types.rb +2 -2
- data/spec/dummy/db/migrate/131_create_request_types.rb +2 -2
- data/spec/dummy/db/migrate/133_create_agent_merges.rb +2 -2
- data/spec/dummy/db/migrate/134_create_agent_merge_lists.rb +1 -1
- data/spec/dummy/db/migrate/142_create_classifications.rb +1 -1
- data/spec/dummy/db/migrate/144_create_classification_types.rb +1 -1
- data/spec/dummy/db/migrate/145_create_subject_heading_types.rb +1 -1
- data/spec/dummy/db/migrate/146_create_subject_types.rb +1 -1
- data/spec/dummy/db/migrate/149_create_message_templates.rb +1 -1
- data/spec/dummy/db/migrate/154_create_messages.rb +1 -1
- data/spec/dummy/db/migrate/20080819181903_create_message_requests.rb +1 -1
- data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +3 -3
- data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +1 -1
- data/spec/dummy/db/migrate/20080905191442_create_agent_types.rb +2 -2
- data/spec/dummy/db/migrate/20081006090811_create_subscriptions.rb +5 -8
- data/spec/dummy/db/migrate/20081006093246_create_subscribes.rb +5 -6
- data/spec/dummy/db/migrate/20081023092436_create_search_engines.rb +6 -6
- data/spec/dummy/db/migrate/20081025083323_create_countries.rb +5 -5
- data/spec/dummy/db/migrate/20081025083905_create_languages.rb +6 -6
- data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +2 -2
- data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +1 -1
- data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +1 -1
- data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +1 -1
- data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20090719201843_create_extents.rb +1 -1
- data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +2 -2
- data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +2 -2
- data/spec/dummy/db/migrate/20090812151902_create_agent_relationship_types.rb +2 -2
- data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +1 -1
- data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +2 -2
- data/spec/dummy/db/migrate/20091202124834_create_versions.rb +1 -1
- data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +1 -1
- data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +1 -1
- data/spec/dummy/db/migrate/20100211105551_add_admin_networks_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +1 -1
- data/spec/dummy/db/migrate/20100314190054_add_opening_hour_to_library.rb +1 -1
- data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +1 -1
- data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +1 -1
- data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +1 -1
- data/spec/dummy/db/migrate/20100606073747_create_agent_relationships.rb +1 -1
- data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +2 -2
- data/spec/dummy/db/migrate/20100814091104_add_position_to_agent_relationship.rb +1 -1
- data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +1 -1
- data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +1 -1
- data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +1 -1
- data/spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb +2 -2
- data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb +1 -1
- data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +2 -2
- data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +1 -1
- data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +1 -1
- data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +3 -3
- data/spec/dummy/db/migrate/20110913115320_add_lft_and_rgt_to_message.rb +1 -1
- data/spec/dummy/db/migrate/20110913120629_add_lft_and_rgt_to_classification.rb +1 -1
- data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +1 -1
- data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +1 -1
- data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +1 -1
- data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +1 -1
- data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +1 -1
- data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +1 -1
- data/spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb +1 -1
- data/spec/dummy/db/migrate/20120125050502_add_depth_to_message.rb +1 -1
- data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +1 -1
- data/spec/dummy/db/migrate/20120129014038_create_budget_types.rb +1 -1
- data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +1 -1
- data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +2 -2
- data/spec/dummy/db/migrate/20120319173203_create_accepts.rb +4 -7
- data/spec/dummy/db/migrate/20120406020752_add_url_to_subject.rb +1 -1
- data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +1 -1
- data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +1 -1
- data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb +2 -2
- data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +1 -1
- data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +1 -1
- data/spec/dummy/db/migrate/20130412083556_add_latitude_and_longitude_to_library.rb +1 -1
- data/spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +1 -1
- data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +1 -1
- data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +1 -1
- data/spec/dummy/db/migrate/20130504133816_add_manifestation_id_to_subject.rb +1 -1
- data/spec/dummy/db/migrate/20130504143515_add_manifestation_id_to_classification.rb +1 -1
- data/spec/dummy/db/migrate/20130504195916_add_subject_heading_type_id_to_subject.rb +1 -1
- data/spec/dummy/db/migrate/20130506175303_create_identifier_types.rb +1 -1
- data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +3 -3
- data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +2 -2
- data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +3 -3
- data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +1 -1
- data/spec/dummy/db/migrate/20140518111006_create_message_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140518135713_create_message_request_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +2 -3
- data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +1 -1
- data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +1 -1
- data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +2 -2
- data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +2 -2
- data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +1 -1
- data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +2 -2
- data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +2 -2
- data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +1 -1
- data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +1 -1
- data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +1 -1
- data/spec/dummy/db/migrate/20140813182425_add_publication_place_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20140817155043_add_extent_of_text_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20140821151023_create_colors.rb +2 -4
- data/spec/dummy/db/migrate/20140822114527_add_error_message_to_resource_import_result.rb +1 -1
- data/spec/dummy/db/migrate/20140823083524_add_extent_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20140823094847_add_dimensions_to_manifestation.rb +1 -1
- data/spec/dummy/db/migrate/20140823095740_rename_manifestation_periodical_to_serial.rb +1 -1
- data/spec/dummy/db/migrate/20141003181336_add_full_name_transcription_to_profile.rb +1 -1
- data/spec/dummy/db/migrate/20141003182825_add_date_of_birth_to_profile.rb +1 -1
- data/spec/dummy/db/migrate/20150117111136_add_foreign_key_to_items_referencing_manifestations.rb +1 -1
- data/spec/dummy/db/migrate/20150221063719_add_settings_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20150506105356_add_error_message_to_user_import_result.rb +1 -1
- data/spec/dummy/db/migrate/20150924115059_create_withdraws.rb +4 -6
- data/spec/dummy/db/migrate/20151125004028_add_profile_id_to_agent.rb +1 -1
- data/spec/dummy/db/migrate/20151213070943_add_translation_table_to_library_group.rb +12 -7
- data/spec/dummy/db/migrate/20151213072705_add_footer_banner_to_library_group.rb +16 -3
- data/spec/dummy/db/migrate/20160610093229_add_html_snippet_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160627232219_add_most_recent_to_user_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160627232316_add_most_recent_to_user_export_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160703185015_add_most_recent_to_message_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160801080612_add_most_recent_to_import_request_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160801080619_add_most_recent_to_resource_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160801080637_add_most_recent_to_resource_export_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160801080643_add_most_recent_to_agent_import_file_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160811102604_add_picture_width_to_picture_file.rb +1 -1
- data/spec/dummy/db/migrate/20160813191647_add_max_number_of_results_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160813191733_add_family_name_first_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160813192542_add_pub_year_facet_range_interval_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160813203039_add_user_id_to_library_group.rb +1 -1
- data/spec/dummy/db/migrate/20160814165332_add_most_recent_to_message_request_transitions.rb +1 -1
- data/spec/dummy/db/migrate/20160820004638_add_attachment_attachment_to_carrier_types.rb +1 -1
- data/spec/dummy/db/migrate/20170305064014_add_csv_charset_conversion_to_library_group.rb +5 -0
- data/spec/dummy/db/migrate/20171014084528_add_header_logo_to_library_group.rb +5 -0
- data/spec/dummy/db/migrate/20171119051258_set_not_null_to_manifestation_id_on_items.rb +5 -0
- data/spec/dummy/db/migrate/20171126133835_rename_login_banner_to_old_login_banner.rb +5 -0
- data/spec/dummy/db/migrate/20171126135238_add_foreign_key_to_library_group_id_on_library.rb +5 -0
- data/spec/dummy/db/migrate/20180102162311_add_header_logo_meta_to_library_group.rb +5 -0
- data/spec/dummy/db/migrate/20180107160726_add_constraints_to_most_recent_for_user_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107160740_add_constraints_to_most_recent_for_user_export_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161311_add_constraints_to_most_recent_for_agent_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161331_add_constraints_to_most_recent_for_resource_import_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161347_add_constraints_to_most_recent_for_resource_export_file_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20180107161410_add_constraints_to_most_recent_for_import_request_transitions.rb +13 -0
- data/spec/dummy/db/migrate/20190713114940_add_profile_id_to_user.rb +5 -0
- data/spec/dummy/db/migrate/20190713115451_add_full_name_translations_to_profile.rb +5 -0
- data/spec/dummy/db/migrate/20190818075603_add_memo_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20190818075628_add_memo_to_item.rb +5 -0
- data/spec/dummy/db/migrate/20191219122214_create_custom_properties.rb +12 -0
- data/spec/dummy/db/schema.rb +688 -692
- data/spec/models/loc_search_spec.rb +143 -143
- data/spec/rails_helper.rb +1 -4
- metadata +321 -251
- data/README.rdoc +0 -11
data/spec/cassette_library/LocSearchController/GET_index/should_get_index_with_page_parameter.yml
CHANGED
@@ -8,7 +8,7 @@ http_interactions:
|
|
8
8
|
string: ''
|
9
9
|
headers:
|
10
10
|
User-Agent:
|
11
|
-
- Faraday v0.
|
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
|
-
- '
|
22
|
+
- '34401'
|
23
23
|
Server:
|
24
|
-
- Metaproxy/1.
|
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.
|
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.
|
66
|
-
1.
|
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.
|
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.
|
100
|
-
1.
|
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.
|
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.
|
139
|
-
1.
|
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.
|
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.
|
182
|
-
1.
|
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.
|
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.
|
223
|
-
1.
|
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.
|
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.
|
268
|
-
1.
|
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:
|
419
|
-
recorded_with: VCR
|
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.
|
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
|
-
- '
|
22
|
+
- '9468'
|
23
23
|
Server:
|
24
|
-
- Metaproxy/1.
|
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.
|
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=\"
|
54
|
-
|
55
|
-
\
|
56
|
-
\
|
57
|
-
\ <
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
\
|
63
|
-
\
|
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>発売元株式会社IMAGICA
|
53
|
+
\ <name type=\"corporate\" altRepGroup=\"16\" script=\"Latn\">\n <namePart>Shintōhō
|
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>発売元株式会社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.
|
139
|
-
1.
|
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:
|
142
|
-
recorded_with: VCR
|
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.
|
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.
|
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:
|
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:
|
36
|
-
recorded_with: VCR
|
35
|
+
recorded_at: Sun, 24 Dec 2017 12:57:06 GMT
|
36
|
+
recorded_with: VCR 4.0.0
|