enju_loc 0.2.0 → 0.3.0.beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.rdoc +4 -4
- 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/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/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 +1 -1
- data/spec/dummy/db/migrate/002_devise_create_users.rb +1 -1
- data/spec/dummy/db/migrate/005_create_manifestations.rb +1 -1
- data/spec/dummy/db/migrate/006_create_items.rb +1 -1
- data/spec/dummy/db/migrate/012_create_owns.rb +1 -1
- data/spec/dummy/db/migrate/015_create_creates.rb +1 -1
- 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 +1 -1
- 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 +1 -1
- data/spec/dummy/db/migrate/077_create_user_groups.rb +1 -1
- data/spec/dummy/db/migrate/080_create_library_groups.rb +3 -4
- data/spec/dummy/db/migrate/112_create_frequencies.rb +1 -1
- data/spec/dummy/db/migrate/117_create_form_of_works.rb +1 -1
- data/spec/dummy/db/migrate/120_create_baskets.rb +3 -4
- data/spec/dummy/db/migrate/124_create_bookstores.rb +1 -1
- data/spec/dummy/db/migrate/125_create_donates.rb +1 -1
- data/spec/dummy/db/migrate/130_create_request_status_types.rb +1 -1
- data/spec/dummy/db/migrate/131_create_request_types.rb +1 -1
- data/spec/dummy/db/migrate/133_create_agent_merges.rb +1 -1
- 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 +1 -1
- data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +1 -1
- data/spec/dummy/db/migrate/20080905191442_create_agent_types.rb +1 -1
- 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 +1 -1
- data/spec/dummy/db/migrate/20081025083323_create_countries.rb +1 -1
- data/spec/dummy/db/migrate/20081025083905_create_languages.rb +1 -1
- data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +1 -1
- 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 +1 -1
- data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +1 -1
- data/spec/dummy/db/migrate/20090812151902_create_agent_relationship_types.rb +1 -1
- data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +1 -1
- data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +1 -1
- 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 +1 -1
- 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 +1 -1
- 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 +1 -1
- 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 +1 -1
- 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 +1 -1
- 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 +1 -1
- 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 +1 -1
- 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 +20 -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/schema.rb +675 -693
- data/spec/models/loc_search_spec.rb +143 -143
- data/spec/rails_helper.rb +1 -4
- metadata +269 -252
@@ -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
|
- '4267'
|
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>\n <title>Anne around the world</title>\n <subTitle>L.M.
|
35
35
|
Montgomery and her classic</subTitle>\n </titleInfo>\n <name type=\"personal\">\n
|
36
36
|
\ <namePart>Ledwell, Jane</namePart>\n <namePart type=\"date\">1972-</namePart>\n
|
@@ -70,10 +70,10 @@ http_interactions:
|
|
70
70
|
authority=\"marcorg\">NLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">130903</recordCreationDate>\n
|
71
71
|
\ <recordChangeDate encoding=\"iso8601\">20130924105652.0</recordChangeDate>\n
|
72
72
|
\ <recordIdentifier>17873351</recordIdentifier>\n <recordOrigin>Converted
|
73
|
-
from MARCXML to MODS version 3.
|
74
|
-
1.
|
73
|
+
from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
74
|
+
1.117 2017/02/14)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
|
75
75
|
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
|
76
76
|
\ </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=\"^2013433146\"</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
|
77
77
|
http_version:
|
78
|
-
recorded_at:
|
79
|
-
recorded_with: VCR
|
78
|
+
recorded_at: Sun, 24 Dec 2017 12:57:16 GMT
|
79
|
+
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
|
+
- '29137'
|
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>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
34
|
\ <titleInfo>\n <title/>\n <subTitle/>\n </titleInfo>\n <typeOfResource>text</typeOfResource>\n
|
35
35
|
\ <genre authority=\"rdacontent\">text</genre>\n <originInfo>\n <place>\n
|
36
36
|
\ <placeTerm type=\"code\" authority=\"marccountry\">ii</placeTerm>\n
|
@@ -49,19 +49,19 @@ http_interactions:
|
|
49
49
|
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
50
50
|
\ <recordCreationDate encoding=\"marc\">160427</recordCreationDate>\n <recordChangeDate
|
51
51
|
encoding=\"iso8601\">20160427233023.0</recordChangeDate>\n <recordIdentifier>19069741</recordIdentifier>\n
|
52
|
-
\ <recordOrigin>Converted from MARCXML to MODS version 3.
|
53
|
-
1.
|
52
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
53
|
+
1.117 2017/02/14)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
|
54
54
|
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
|
55
55
|
\ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
56
56
|
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
57
|
-
version=\"3.
|
57
|
+
version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
|
58
58
|
\ <titleInfo>\n <title/>\n <subTitle/>\n </titleInfo>\n <typeOfResource>text</typeOfResource>\n
|
59
59
|
\ <genre authority=\"rdacontent\">text</genre>\n <originInfo>\n <place>\n
|
60
|
-
\ <placeTerm type=\"code\" authority=\"marccountry\">
|
61
|
-
\ </place>\n <dateIssued encoding=\"marc\">
|
60
|
+
\ <placeTerm type=\"code\" authority=\"marccountry\">bg</placeTerm>\n
|
61
|
+
\ </place>\n <dateIssued encoding=\"marc\">2016</dateIssued>\n <issuance>monographic</issuance>\n
|
62
62
|
\ </originInfo>\n <originInfo eventType=\"publication\">\n <place>\n <placeTerm
|
63
|
-
type=\"text\">
|
64
|
-
\ <dateIssued>
|
63
|
+
type=\"text\">Dhaka :</placeTerm>\n </place>\n <publisher>,</publisher>\n
|
64
|
+
\ <dateIssued>2016.</dateIssued>\n </originInfo>\n <language>\n <languageTerm
|
65
65
|
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
66
66
|
\ <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>pages</extent>\n
|
67
67
|
\ <form type=\"media\" authority=\"rdamedia\">unmediated</form>\n <form
|
@@ -70,14 +70,14 @@ http_interactions:
|
|
70
70
|
\ <identifier type=\"lccn\"/>\n <identifier type=\"stock number\">Library
|
71
71
|
of Congress -- New Delhi Overseas Office</identifier>\n <recordInfo>\n <descriptionStandard>rda</descriptionStandard>\n
|
72
72
|
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
73
|
-
\ <recordCreationDate encoding=\"marc\">
|
74
|
-
encoding=\"iso8601\">
|
75
|
-
\ <recordOrigin>Converted from MARCXML to MODS version 3.
|
76
|
-
1.
|
73
|
+
\ <recordCreationDate encoding=\"marc\">170801</recordCreationDate>\n <recordChangeDate
|
74
|
+
encoding=\"iso8601\">20170801021251.0</recordChangeDate>\n <recordIdentifier>19856612</recordIdentifier>\n
|
75
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
76
|
+
1.117 2017/02/14)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
|
77
77
|
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
|
78
78
|
\ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>2</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
79
79
|
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
80
|
-
version=\"3.
|
80
|
+
version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
|
81
81
|
\ <titleInfo>\n <title/>\n <subTitle/>\n </titleInfo>\n <typeOfResource>text</typeOfResource>\n
|
82
82
|
\ <genre authority=\"rdacontent\">text</genre>\n <originInfo>\n <place>\n
|
83
83
|
\ <placeTerm type=\"code\" authority=\"marccountry\">ii</placeTerm>\n
|
@@ -95,12 +95,35 @@ http_interactions:
|
|
95
95
|
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
96
96
|
\ <recordCreationDate encoding=\"marc\">151222</recordCreationDate>\n <recordChangeDate
|
97
97
|
encoding=\"iso8601\">20160425121812.0</recordChangeDate>\n <recordIdentifier>18914467</recordIdentifier>\n
|
98
|
-
\ <recordOrigin>Converted from MARCXML to MODS version 3.
|
99
|
-
1.
|
98
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
99
|
+
1.117 2017/02/14)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
|
100
100
|
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
|
101
101
|
\ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>3</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
102
102
|
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
103
|
-
version=\"3.
|
103
|
+
version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
|
104
|
+
\ <titleInfo>\n <title/>\n <subTitle/>\n </titleInfo>\n <typeOfResource>text</typeOfResource>\n
|
105
|
+
\ <genre authority=\"rdacontent\">text</genre>\n <originInfo>\n <place>\n
|
106
|
+
\ <placeTerm type=\"code\" authority=\"marccountry\">ii</placeTerm>\n
|
107
|
+
\ </place>\n <dateIssued encoding=\"marc\">2013</dateIssued>\n <issuance>monographic</issuance>\n
|
108
|
+
\ </originInfo>\n <originInfo eventType=\"publication\">\n <place>\n <placeTerm
|
109
|
+
type=\"text\">New Delhi :</placeTerm>\n </place>\n <publisher>,</publisher>\n
|
110
|
+
\ <dateIssued>2013.</dateIssued>\n </originInfo>\n <language>\n <languageTerm
|
111
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
112
|
+
\ <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>pages</extent>\n
|
113
|
+
\ <form type=\"media\" authority=\"rdamedia\">unmediated</form>\n <form
|
114
|
+
type=\"carrier\" authority=\"rdacarrier\">volume</form>\n </physicalDescription>\n
|
115
|
+
\ <note type=\"statement of responsibility\" altRepGroup=\"00\">.</note>\n
|
116
|
+
\ <identifier type=\"lccn\"/>\n <identifier type=\"stock number\">Library
|
117
|
+
of Congress -- New Delhi Overseas Office</identifier>\n <recordInfo>\n <descriptionStandard>rda</descriptionStandard>\n
|
118
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
119
|
+
\ <recordCreationDate encoding=\"marc\">150120</recordCreationDate>\n <recordChangeDate
|
120
|
+
encoding=\"iso8601\">20150120064427.0</recordChangeDate>\n <recordIdentifier>18455127</recordIdentifier>\n
|
121
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
122
|
+
1.117 2017/02/14)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
|
123
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
|
124
|
+
\ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>4</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
125
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
126
|
+
version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
|
104
127
|
\ <titleInfo>\n <title/>\n <subTitle/>\n </titleInfo>\n <typeOfResource>text</typeOfResource>\n
|
105
128
|
\ <genre authority=\"rdacontent\">text</genre>\n <originInfo>\n <place>\n
|
106
129
|
\ <placeTerm type=\"code\" authority=\"marccountry\">ii</placeTerm>\n
|
@@ -118,12 +141,148 @@ http_interactions:
|
|
118
141
|
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
119
142
|
\ <recordCreationDate encoding=\"marc\">160104</recordCreationDate>\n <recordChangeDate
|
120
143
|
encoding=\"iso8601\">20160104054453.0</recordChangeDate>\n <recordIdentifier>18924045</recordIdentifier>\n
|
121
|
-
\ <recordOrigin>Converted from MARCXML to MODS version 3.
|
122
|
-
1.
|
144
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
145
|
+
1.117 2017/02/14)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
|
123
146
|
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
|
124
|
-
\ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>
|
147
|
+
\ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>5</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
148
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
149
|
+
version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
|
150
|
+
\ <titleInfo>\n <title># 13 American Red Cross ambulance</title>\n </titleInfo>\n
|
151
|
+
\ <typeOfResource>still image</typeOfResource>\n <genre authority=\"marcgt\">graphic</genre>\n
|
152
|
+
\ <genre authority=\"gmgpc\">Glass negatives.</genre>\n <originInfo>\n <place>\n
|
153
|
+
\ <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
154
|
+
\ </place>\n <dateIssued>[between 1910 and 1935]</dateIssued>\n <dateIssued
|
155
|
+
encoding=\"marc\" point=\"start\" qualifier=\"questionable\">1910</dateIssued>\n
|
156
|
+
\ <dateIssued encoding=\"marc\" point=\"end\" qualifier=\"questionable\">1935</dateIssued>\n
|
157
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
158
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
159
|
+
\ <physicalDescription>\n <form authority=\"gmd\">graphic</form>\n <form
|
160
|
+
authority=\"marccategory\">electronic resource</form>\n <form authority=\"marcsmd\">remote</form>\n
|
161
|
+
\ <form authority=\"marccategory\">nonprojected graphic</form>\n <form
|
162
|
+
authority=\"marcsmd\">photonegative</form>\n <extent>1 negative : glass
|
163
|
+
; 8 x 10 in. or smaller</extent>\n </physicalDescription>\n <accessCondition
|
164
|
+
type=\"use and reproduction\">No known restrictions on publication. For more
|
165
|
+
information, see National Photo Company Collection - Rights and Restrictions
|
166
|
+
Information</accessCondition>\n <note>Title from unverified data provided
|
167
|
+
by the National Photo Company on the negative or negative sleeve.</note>\n
|
168
|
+
\ <note>Date from negatives in same range.</note>\n <note>Copy neg.; caption
|
169
|
+
inside envelope.</note>\n <note type=\"acquisition\">Gift; Herbert A. French;
|
170
|
+
1947.</note>\n <note xmlns:xlink=\"http://www.w3.org/1999/xlink\" type=\"biographical/historical\"
|
171
|
+
xlink:href=\"http://hdl.loc.gov/loc.pnp/pp.npco\">General information about
|
172
|
+
the National Photo Company collection is available at http://hdl.loc.gov/loc.pnp/pp.npco</note>\n
|
173
|
+
\ <note type=\"action\">This glass negative might show streaks and other blemishes
|
174
|
+
resulting from a natural deterioration in the original coatings.</note>\n
|
175
|
+
\ <classification authority=\"lcc\">LC-F82- 10391</classification>\n <location>\n
|
176
|
+
\ <physicalLocation>Library of Congress Prints and Photographs Division
|
177
|
+
Washington, D.C. 20540 USA</physicalLocation>\n <physicalLocation xmlns:xlink=\"http://www.w3.org/1999/xlink\"
|
178
|
+
xlink:href=\"http://hdl.loc.gov/loc.pnp/pp.print\">http://hdl.loc.gov/loc.pnp/pp.print</physicalLocation>\n
|
179
|
+
\ </location>\n <location>\n <url displayLabel=\"digital file from original\"
|
180
|
+
usage=\"primary display\">http://hdl.loc.gov/loc.pnp/npcc.31085</url>\n </location>\n
|
181
|
+
\ <relatedItem type=\"host\">\n <titleInfo>\n <title>National Photo
|
182
|
+
Company Collection (Library of Congress)</title>\n </titleInfo>\n <identifier
|
183
|
+
type=\"local\">(DLC) 2005684470</identifier>\n </relatedItem>\n <identifier
|
184
|
+
type=\"lccn\">2016824645</identifier>\n <identifier type=\"stock number\"
|
185
|
+
displayLabel=\"(digital file from original)\">LC-DIG-npcc-31085 DLC</identifier>\n
|
186
|
+
\ <identifier type=\"hdl\">hdl:loc.pnp/npcc.31085</identifier>\n <recordInfo>\n
|
187
|
+
\ <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>gihc</descriptionStandard>\n
|
188
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
189
|
+
\ <recordCreationDate encoding=\"marc\">080702</recordCreationDate>\n <recordChangeDate
|
190
|
+
encoding=\"iso8601\">20171208103838.0</recordChangeDate>\n <recordIdentifier>20173605</recordIdentifier>\n
|
191
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
192
|
+
1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>6</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
125
193
|
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
126
|
-
version=\"3.
|
194
|
+
version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
|
195
|
+
\ <titleInfo>\n <title># 158 Peru</title>\n </titleInfo>\n <typeOfResource>still
|
196
|
+
image</typeOfResource>\n <genre authority=\"marcgt\">graphic</genre>\n <genre
|
197
|
+
authority=\"gmgpc\">Glass negatives.</genre>\n <originInfo>\n <place>\n
|
198
|
+
\ <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
199
|
+
\ </place>\n <dateIssued>[between 1910 and 1935]</dateIssued>\n <dateIssued
|
200
|
+
encoding=\"marc\" point=\"start\" qualifier=\"questionable\">1910</dateIssued>\n
|
201
|
+
\ <dateIssued encoding=\"marc\" point=\"end\" qualifier=\"questionable\">1935</dateIssued>\n
|
202
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
203
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
204
|
+
\ <physicalDescription>\n <form authority=\"gmd\">graphic</form>\n <form
|
205
|
+
authority=\"marccategory\">electronic resource</form>\n <form authority=\"marcsmd\">remote</form>\n
|
206
|
+
\ <form authority=\"marccategory\">nonprojected graphic</form>\n <form
|
207
|
+
authority=\"marcsmd\">photonegative</form>\n <extent>1 negative : glass
|
208
|
+
; 8 x 6 in.</extent>\n </physicalDescription>\n <accessCondition type=\"use
|
209
|
+
and reproduction\">No known restrictions on publication. For more information,
|
210
|
+
see National Photo Company Collection - Rights and Restrictions Information</accessCondition>\n
|
211
|
+
\ <note>Title from unverified data provided by the National Photo Company
|
212
|
+
on the negative or negative sleeve.</note>\n <note>Date from negatives in
|
213
|
+
same range.</note>\n <note>Copy neg.</note>\n <note type=\"acquisition\">Gift;
|
214
|
+
Herbert A. French; 1947.</note>\n <note xmlns:xlink=\"http://www.w3.org/1999/xlink\"
|
215
|
+
type=\"biographical/historical\" xlink:href=\"http://hdl.loc.gov/loc.pnp/pp.npco\">General
|
216
|
+
information about the National Photo Company collection is available at http://hdl.loc.gov/loc.pnp/pp.npco</note>\n
|
217
|
+
\ <note type=\"action\">This glass negative might show streaks and other blemishes
|
218
|
+
resulting from a natural deterioration in the original coatings.</note>\n
|
219
|
+
\ <subject>\n <hierarchicalGeographic>\n <country>Peru</country>\n
|
220
|
+
\ </hierarchicalGeographic>\n </subject>\n <classification authority=\"lcc\">LC-F82-
|
221
|
+
10442</classification>\n <location>\n <physicalLocation>Library of Congress
|
222
|
+
Prints and Photographs Division Washington, D.C. 20540 USA</physicalLocation>\n
|
223
|
+
\ <physicalLocation xmlns:xlink=\"http://www.w3.org/1999/xlink\" xlink:href=\"http://hdl.loc.gov/loc.pnp/pp.print\">http://hdl.loc.gov/loc.pnp/pp.print</physicalLocation>\n
|
224
|
+
\ </location>\n <location>\n <url displayLabel=\"digital file from original\"
|
225
|
+
usage=\"primary display\">http://hdl.loc.gov/loc.pnp/npcc.31136</url>\n </location>\n
|
226
|
+
\ <relatedItem type=\"host\">\n <titleInfo>\n <title>National Photo
|
227
|
+
Company Collection (Library of Congress)</title>\n </titleInfo>\n <identifier
|
228
|
+
type=\"local\">(DLC) 2005684470</identifier>\n </relatedItem>\n <identifier
|
229
|
+
type=\"lccn\">2016824696</identifier>\n <identifier type=\"stock number\"
|
230
|
+
displayLabel=\"(digital file from original)\">LC-DIG-npcc-31136 DLC</identifier>\n
|
231
|
+
\ <identifier type=\"hdl\">hdl:loc.pnp/npcc.31136</identifier>\n <recordInfo>\n
|
232
|
+
\ <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>gihc</descriptionStandard>\n
|
233
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
234
|
+
\ <recordCreationDate encoding=\"marc\">080702</recordCreationDate>\n <recordChangeDate
|
235
|
+
encoding=\"iso8601\">20171208103953.0</recordChangeDate>\n <recordIdentifier>20173657</recordIdentifier>\n
|
236
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
237
|
+
1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>7</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
238
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
239
|
+
version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
|
240
|
+
\ <titleInfo>\n <title># 19 American Red [Cross] Allentown camp; Red Cross
|
241
|
+
dogs & stretcher bearers</title>\n </titleInfo>\n <typeOfResource>still
|
242
|
+
image</typeOfResource>\n <genre authority=\"marcgt\">graphic</genre>\n <genre
|
243
|
+
authority=\"gmgpc\">Glass negatives.</genre>\n <originInfo>\n <place>\n
|
244
|
+
\ <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
245
|
+
\ </place>\n <dateIssued>[between 1910 and 1935]</dateIssued>\n <dateIssued
|
246
|
+
encoding=\"marc\" point=\"start\" qualifier=\"questionable\">1910</dateIssued>\n
|
247
|
+
\ <dateIssued encoding=\"marc\" point=\"end\" qualifier=\"questionable\">1935</dateIssued>\n
|
248
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
249
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
250
|
+
\ <physicalDescription>\n <form authority=\"gmd\">graphic</form>\n <form
|
251
|
+
authority=\"marccategory\">electronic resource</form>\n <form authority=\"marcsmd\">remote</form>\n
|
252
|
+
\ <form authority=\"marccategory\">nonprojected graphic</form>\n <form
|
253
|
+
authority=\"marcsmd\">photonegative</form>\n <extent>1 negative : glass
|
254
|
+
; 8 x 10 in. or smaller</extent>\n </physicalDescription>\n <accessCondition
|
255
|
+
type=\"use and reproduction\">No known restrictions on publication. For more
|
256
|
+
information, see National Photo Company Collection - Rights and Restrictions
|
257
|
+
Information</accessCondition>\n <note>Title from unverified data provided
|
258
|
+
by the National Photo Company on the negative or negative sleeve.</note>\n
|
259
|
+
\ <note>Date from negatives in same range.</note>\n <note>Copy neg.; caption
|
260
|
+
inside envelope.</note>\n <note type=\"acquisition\">Gift; Herbert A. French;
|
261
|
+
1947.</note>\n <note xmlns:xlink=\"http://www.w3.org/1999/xlink\" type=\"biographical/historical\"
|
262
|
+
xlink:href=\"http://hdl.loc.gov/loc.pnp/pp.npco\">General information about
|
263
|
+
the National Photo Company collection is available at http://hdl.loc.gov/loc.pnp/pp.npco</note>\n
|
264
|
+
\ <note type=\"action\">This glass negative might show streaks and other blemishes
|
265
|
+
resulting from a natural deterioration in the original coatings.</note>\n
|
266
|
+
\ <classification authority=\"lcc\">LC-F82- 10389</classification>\n <location>\n
|
267
|
+
\ <physicalLocation>Library of Congress Prints and Photographs Division
|
268
|
+
Washington, D.C. 20540 USA</physicalLocation>\n <physicalLocation xmlns:xlink=\"http://www.w3.org/1999/xlink\"
|
269
|
+
xlink:href=\"http://hdl.loc.gov/loc.pnp/pp.print\">http://hdl.loc.gov/loc.pnp/pp.print</physicalLocation>\n
|
270
|
+
\ </location>\n <location>\n <url displayLabel=\"digital file from original\"
|
271
|
+
usage=\"primary display\">http://hdl.loc.gov/loc.pnp/npcc.31083</url>\n </location>\n
|
272
|
+
\ <relatedItem type=\"host\">\n <titleInfo>\n <title>National Photo
|
273
|
+
Company Collection (Library of Congress)</title>\n </titleInfo>\n <identifier
|
274
|
+
type=\"local\">(DLC) 2005684470</identifier>\n </relatedItem>\n <identifier
|
275
|
+
type=\"lccn\">2016824643</identifier>\n <identifier type=\"stock number\"
|
276
|
+
displayLabel=\"(digital file from original)\">LC-DIG-npcc-31083 DLC</identifier>\n
|
277
|
+
\ <identifier type=\"hdl\">hdl:loc.pnp/npcc.31083</identifier>\n <recordInfo>\n
|
278
|
+
\ <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>gihc</descriptionStandard>\n
|
279
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
280
|
+
\ <recordCreationDate encoding=\"marc\">080702</recordCreationDate>\n <recordChangeDate
|
281
|
+
encoding=\"iso8601\">20171208103835.0</recordChangeDate>\n <recordIdentifier>20173603</recordIdentifier>\n
|
282
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
283
|
+
1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>8</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
284
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
285
|
+
version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
|
127
286
|
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Code Ed</partName>\n
|
128
287
|
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Code Ed</title>\n
|
129
288
|
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
@@ -154,10 +313,10 @@ http_interactions:
|
|
154
313
|
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n
|
155
314
|
\ <recordChangeDate encoding=\"iso8601\">20140605152157.0</recordChangeDate>\n
|
156
315
|
\ <recordIdentifier>18176739</recordIdentifier>\n <recordOrigin>Converted
|
157
|
-
from MARCXML to MODS version 3.
|
158
|
-
1.
|
316
|
+
from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
317
|
+
1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>9</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
159
318
|
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
160
|
-
version=\"3.
|
319
|
+
version=\"3.6\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-6.xsd\">\n
|
161
320
|
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Corn star</partName>\n
|
162
321
|
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Corn star</title>\n
|
163
322
|
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
@@ -192,162 +351,8 @@ http_interactions:
|
|
192
351
|
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
193
352
|
\ <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n <recordChangeDate
|
194
353
|
encoding=\"iso8601\">20140609084709.0</recordChangeDate>\n <recordIdentifier>18181141</recordIdentifier>\n
|
195
|
-
\ <recordOrigin>Converted from MARCXML to MODS version 3.
|
196
|
-
1.
|
197
|
-
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
198
|
-
version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
|
199
|
-
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Dog Ed pursuit</partName>\n
|
200
|
-
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Dog Ed pursuit</title>\n
|
201
|
-
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
202
|
-
application title:\">\n <title>S#*! my dad says</title>\n <partName>Dog
|
203
|
-
Ed pursuit</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
204
|
-
\ <title>Shit my dad says</title>\n <partName>Dog Ed pursuit</partName>\n
|
205
|
-
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
|
206
|
-
says</title>\n <partName>Dog Ed pursuit</partName>\n </titleInfo>\n <name
|
207
|
-
type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
|
208
|
-
\ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
209
|
-
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
210
|
-
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
211
|
-
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
212
|
-
\ </place>\n <dateIssued>2010-11-04</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
|
213
|
-
\ <dateCaptured encoding=\"iso8601\">20101104</dateCaptured>\n <issuance>monographic</issuance>\n
|
214
|
-
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
215
|
-
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
216
|
-
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
217
|
-
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
218
|
-
\ </physicalDescription>\n <abstract type=\"Summary\">\"Ed finds himself
|
219
|
-
attached to Root Beer, Vince and Bonnie's dog. Meanwhile, Henry has very rough
|
220
|
-
sex with Vince and Bonnie's supervisor as Bonnie tells Ed to do the same human-canine
|
221
|
-
attachment to Vince\"--Wikipedia WWW site, viewed June 9, 2014.</abstract>\n
|
222
|
-
\ <note type=\"statement of responsibility\" altRepGroup=\"00\">directed by
|
223
|
-
Gail Mancuso ; written by Jeff Astrof.</note>\n <note>Episode no. 7.</note>\n
|
224
|
-
\ <note>Production no. 2J5658.</note>\n <note>Sources used: video container;
|
225
|
-
Copyright catalog online; Copyright description; Wikipedia WWW site, viewed
|
226
|
-
June 9, 2014.</note>\n <note type=\"performers\">William Shatner.</note>\n
|
227
|
-
\ <note type=\"performers\">Guest star: Missi Pyle.</note>\n <classification
|
228
|
-
authority=\"lcc\">VAP 8699 (viewing copy)</classification>\n <identifier
|
229
|
-
type=\"lccn\">2014603699</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
230
|
-
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
231
|
-
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
|
232
|
-
\ <recordChangeDate encoding=\"iso8601\">20140609133830.0</recordChangeDate>\n
|
233
|
-
\ <recordIdentifier>18181703</recordIdentifier>\n <recordOrigin>Converted
|
234
|
-
from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
|
235
|
-
1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>7</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
236
|
-
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
237
|
-
version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
|
238
|
-
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Easy writer</partName>\n
|
239
|
-
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Easy writer</title>\n
|
240
|
-
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
241
|
-
application title:\">\n <title>S#*! my dad says</title>\n <partName>Easy,
|
242
|
-
writer</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit
|
243
|
-
my dad says</title>\n <partName>Easy, writer</partName>\n </titleInfo>\n
|
244
|
-
\ <titleInfo type=\"alternative\">\n <title>Bleep my dad says</title>\n
|
245
|
-
\ <partName>Easy, writer</partName>\n </titleInfo>\n <name type=\"corporate\">\n
|
246
|
-
\ <namePart>Copyright Collection (Library of Congress)</namePart>\n </name>\n
|
247
|
-
\ <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
248
|
-
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
249
|
-
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
250
|
-
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
251
|
-
\ </place>\n <dateIssued>2010-10-28</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
|
252
|
-
\ <dateCaptured encoding=\"iso8601\">20101028</dateCaptured>\n <issuance>monographic</issuance>\n
|
253
|
-
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
254
|
-
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
255
|
-
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
256
|
-
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
257
|
-
\ </physicalDescription>\n <abstract type=\"Summary\">\"Ed is embarrassed
|
258
|
-
when Henry writes an article about him\"--Copyright description.</abstract>\n
|
259
|
-
\ <note type=\"statement of responsibility\" altRepGroup=\"00\">directed by
|
260
|
-
Rob Schiller ; written by Jeff Astrof.</note>\n <note>Episode no. 6.</note>\n
|
261
|
-
\ <note>Production no. 2J5657.</note>\n <note>Sources used: video container;
|
262
|
-
Copyright catalog online; Copyright description; Wikipedia WWW site, viewed
|
263
|
-
June 9, 2014.</note>\n <note type=\"performers\">William Shatner.</note>\n
|
264
|
-
\ <note type=\"performers\">Guest stars: Todd Stashwick, Rebecca Creskoff.</note>\n
|
265
|
-
\ <classification authority=\"lcc\">VAP 8698 (viewing copy)</classification>\n
|
266
|
-
\ <identifier type=\"lccn\">2014603698</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
267
|
-
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
268
|
-
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
|
269
|
-
\ <recordChangeDate encoding=\"iso8601\">20151125184709.0</recordChangeDate>\n
|
270
|
-
\ <recordIdentifier>18181694</recordIdentifier>\n <recordOrigin>Converted
|
271
|
-
from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
|
272
|
-
1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>8</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
273
|
-
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
274
|
-
version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
|
275
|
-
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Ed goes
|
276
|
-
to court</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
277
|
-
\ <title>Ed goes to court</title>\n </titleInfo>\n <titleInfo type=\"alternative\"
|
278
|
-
displayLabel=\"Copyright application title:\">\n <title>S#*! my dad says</title>\n
|
279
|
-
\ <partName>Ed goes to court</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
280
|
-
\ <title>Shit my dad says</title>\n <partName>Ed goes to court</partName>\n
|
281
|
-
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
|
282
|
-
says</title>\n <partName>Ed goes to court</partName>\n </titleInfo>\n
|
283
|
-
\ <name type=\"corporate\">\n <namePart>Copyright Collection (Library of
|
284
|
-
Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
|
285
|
-
\ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
|
286
|
-
comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
|
287
|
-
television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
|
288
|
-
type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2011-01-27</dateIssued>\n
|
289
|
-
\ <dateIssued encoding=\"marc\">2011</dateIssued>\n <dateCaptured encoding=\"iso8601\">20110127</dateCaptured>\n
|
290
|
-
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
291
|
-
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
292
|
-
\ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
293
|
-
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
294
|
-
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
295
|
-
\ </physicalDescription>\n <abstract type=\"Summary\">\"As the newly-elected
|
296
|
-
head of the Homeowners' Association, Ed is more concerned with pursuing his
|
297
|
-
neighbor Rosemary Pernworth than passing any legislation\"--Wikipedia WWW
|
298
|
-
site, viewed June 9, 2014.</abstract>\n <note type=\"statement of responsibility\"
|
299
|
-
altRepGroup=\"00\">directed by Ted Wass ; written by Jeff Astrof.</note>\n
|
300
|
-
\ <note>Episode no. 15.</note>\n <note>Production no. 2J5665.</note>\n <note>Sources
|
301
|
-
used: video container; Copyright catalog online; Copyright description; Wikipedia
|
302
|
-
WWW site, viewed June 9, 2014.</note>\n <note type=\"performers\">William
|
303
|
-
Shatner.</note>\n <note type=\"performers\">Guest stars: Jean Smart, Tila
|
304
|
-
Tequila.</note>\n <classification authority=\"lcc\">VAQ 1399 (viewing copy)</classification>\n
|
305
|
-
\ <identifier type=\"lccn\">2014603999</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
306
|
-
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
307
|
-
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
|
308
|
-
\ <recordChangeDate encoding=\"iso8601\">20140609100925.0</recordChangeDate>\n
|
309
|
-
\ <recordIdentifier>18181286</recordIdentifier>\n <recordOrigin>Converted
|
310
|
-
from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
|
311
|
-
1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>9</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
312
|
-
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
313
|
-
version=\"3.5\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-5.xsd\">\n
|
314
|
-
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Family dinner
|
315
|
-
for schmucks</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
316
|
-
\ <title>Family dinner for schmucks</title>\n </titleInfo>\n <titleInfo
|
317
|
-
type=\"alternative\" displayLabel=\"Copyright application title:\">\n <title>S#*!
|
318
|
-
my dad says</title>\n <partName>Family dinner for schmucks</partName>\n
|
319
|
-
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit my dad
|
320
|
-
says</title>\n <partName>Family dinner for schmucks</partName>\n </titleInfo>\n
|
321
|
-
\ <titleInfo type=\"alternative\">\n <title>Bleep my dad says</title>\n
|
322
|
-
\ <partName>Family dinner for schmucks</partName>\n </titleInfo>\n <name
|
323
|
-
type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
|
324
|
-
\ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
325
|
-
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
326
|
-
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
327
|
-
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
328
|
-
\ </place>\n <dateIssued>2010-12-16</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
|
329
|
-
\ <dateCaptured encoding=\"iso8601\">20101216</dateCaptured>\n <issuance>monographic</issuance>\n
|
330
|
-
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
331
|
-
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
332
|
-
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
333
|
-
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
334
|
-
\ </physicalDescription>\n <abstract type=\"Summary\">\"Bonnie tries to start
|
335
|
-
a family tradition. Henry gets in trouble for taking the blame for a friend's
|
336
|
-
mistake. Ed makes a friend at the hospital with his personality\"--Wikipedia
|
337
|
-
WWW site, viewed June 9, 2014.</abstract>\n <note type=\"statement of responsibility\"
|
338
|
-
altRepGroup=\"00\">directed by Rob Schiller ; written by Chris Kelly.</note>\n
|
339
|
-
\ <note>Episode no. 11.</note>\n <note>Production no. 2J5661.</note>\n <note>Sources
|
340
|
-
used: video container; Copyright catalog online; Copyright description; Wikipedia
|
341
|
-
WWW site, viewed June 9, 2014.</note>\n <note type=\"performers\">William
|
342
|
-
Shatner.</note>\n <note type=\"performers\">Guest stars: Andrew J. West,
|
343
|
-
Todd Stashwick.</note>\n <classification authority=\"lcc\">VAQ 1396 (viewing
|
344
|
-
copy)</classification>\n <identifier type=\"lccn\">2014603961</identifier>\n
|
345
|
-
\ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>amim</descriptionStandard>\n
|
346
|
-
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
347
|
-
\ <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n <recordChangeDate
|
348
|
-
encoding=\"iso8601\">20140609081554.0</recordChangeDate>\n <recordIdentifier>18181095</recordIdentifier>\n
|
349
|
-
\ <recordOrigin>Converted from MARCXML to MODS version 3.5 using MARC21slim2MODS3-5.xsl\n\t\t\t\t(Revision
|
350
|
-
1.106 2014/12/19)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>10</zs:recordPosition></zs:record></zs:records><zs:nextRecordPosition>11</zs:nextRecordPosition><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>library</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
|
354
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.6 using MARC21slim2MODS3-6.xsl\n\t\t\t\t(Revision
|
355
|
+
1.117 2017/02/14)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>10</zs:recordPosition></zs:record></zs:records><zs:nextRecordPosition>11</zs:nextRecordPosition><zs:echoedSearchRetrieveRequest><zs:version>1.1</zs:version><zs:query>library</zs:query><zs:maximumRecords>10</zs:maximumRecords><zs:recordPacking>xml</zs:recordPacking><zs:recordSchema>mods</zs:recordSchema></zs:echoedSearchRetrieveRequest></zs:searchRetrieveResponse>\n"
|
351
356
|
http_version:
|
352
|
-
recorded_at:
|
353
|
-
recorded_with: VCR
|
357
|
+
recorded_at: Sun, 24 Dec 2017 12:57:40 GMT
|
358
|
+
recorded_with: VCR 4.0.0
|