enju_loc 0.1.0.pre1
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 +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +3 -0
- data/Rakefile +38 -0
- data/app/assets/javascripts/loc_search.js +2 -0
- data/app/assets/stylesheets/loc_search.css +4 -0
- data/app/controllers/loc_search_controller.rb +49 -0
- data/app/helpers/loc_search_helper.rb +18 -0
- data/app/models/loc_search.rb +97 -0
- data/app/views/loc_search/index.html.erb +49 -0
- data/config/locales/en.yml +13 -0
- data/config/locales/ja.yml +11 -0
- data/config/routes.rb +3 -0
- data/lib/enju_loc.rb +21 -0
- data/lib/enju_loc/engine.rb +7 -0
- data/lib/enju_loc/loc_search.rb +537 -0
- data/lib/enju_loc/version.rb +3 -0
- data/lib/tasks/enju_loc_tasks.rake +4 -0
- data/spec/cassette_library/LocSearch/_ModsRecord/should_parse_MODS_metadata.yml +111 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_a_valid_manifestation.yml +113 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_lcsh_subjects_only.yml +66 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_multiple_series_statements.yml +69 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_distinguish_title_information_with_subject.yml +67 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_a_manifestation_that_has_invalid_classification.yml +81 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_another_serial.yml +85 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_audio_book.yml +91 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_e-resource.yml +73 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_note_fields.yml +72 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_publication_year.yml +78 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_serial.yml +70 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_video_publication.yml +204 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_parse_title_information_properly.yml +80 -0
- data/spec/cassette_library/LocSearch/_import_from_sru_response/should_support_name_and_title_subjects.yml +77 -0
- data/spec/cassette_library/LocSearch/_search/should_return_a_search_result.yml +353 -0
- data/spec/cassette_library/LocSearchController/GET_index/should_get_index.yml +353 -0
- data/spec/cassette_library/LocSearchController/GET_index/should_get_index_with_page_parameter.yml +415 -0
- data/spec/cassette_library/LocSearchController/POST_create/should_create_a_bibliographic_record_if_lccn_is_set.yml +140 -0
- data/spec/cassette_library/LocSearchController/POST_create/should_not_create_a_bibliographic_record_if_lccn_is_not_set.yml +38 -0
- data/spec/controllers/loc_search_controller_spec.rb +44 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/models/setting.rb +4 -0
- data/spec/dummy/app/models/user.rb +8 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +47 -0
- data/spec/dummy/config/application.yml +38 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +30 -0
- data/spec/dummy/config/environments/production.rb +60 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/devise.rb +207 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +58 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/001_create_agents.rb +50 -0
- data/spec/dummy/db/migrate/002_devise_create_users.rb +46 -0
- data/spec/dummy/db/migrate/005_create_manifestations.rb +44 -0
- data/spec/dummy/db/migrate/006_create_items.rb +21 -0
- data/spec/dummy/db/migrate/012_create_owns.rb +12 -0
- data/spec/dummy/db/migrate/015_create_creates.rb +12 -0
- data/spec/dummy/db/migrate/029_create_subjects.rb +27 -0
- data/spec/dummy/db/migrate/041_create_roles.rb +13 -0
- data/spec/dummy/db/migrate/047_create_produces.rb +12 -0
- data/spec/dummy/db/migrate/059_create_libraries.rb +28 -0
- data/spec/dummy/db/migrate/069_create_shelves.rb +15 -0
- data/spec/dummy/db/migrate/073_create_carrier_types.rb +11 -0
- data/spec/dummy/db/migrate/077_create_user_groups.rb +12 -0
- data/spec/dummy/db/migrate/080_create_library_groups.rb +17 -0
- data/spec/dummy/db/migrate/112_create_frequencies.rb +12 -0
- data/spec/dummy/db/migrate/117_create_form_of_works.rb +12 -0
- data/spec/dummy/db/migrate/120_create_baskets.rb +12 -0
- data/spec/dummy/db/migrate/124_create_bookstores.rb +17 -0
- data/spec/dummy/db/migrate/125_create_donates.rb +12 -0
- data/spec/dummy/db/migrate/130_create_request_status_types.rb +12 -0
- data/spec/dummy/db/migrate/131_create_request_types.rb +12 -0
- data/spec/dummy/db/migrate/142_create_classifications.rb +19 -0
- data/spec/dummy/db/migrate/144_create_classification_types.rb +16 -0
- data/spec/dummy/db/migrate/145_create_subject_heading_types.rb +16 -0
- data/spec/dummy/db/migrate/146_create_subject_types.rb +16 -0
- data/spec/dummy/db/migrate/20080830154109_create_realizes.rb +13 -0
- data/spec/dummy/db/migrate/20080830172106_create_exemplifies.rb +13 -0
- data/spec/dummy/db/migrate/20080905191442_create_agent_types.rb +12 -0
- data/spec/dummy/db/migrate/20081006090811_create_subscriptions.rb +17 -0
- data/spec/dummy/db/migrate/20081006093246_create_subscribes.rb +14 -0
- data/spec/dummy/db/migrate/20081023092436_create_search_engines.rb +17 -0
- data/spec/dummy/db/migrate/20081025083323_create_countries.rb +28 -0
- data/spec/dummy/db/migrate/20081025083905_create_languages.rb +23 -0
- data/spec/dummy/db/migrate/20081027150907_create_picture_files.rb +15 -0
- data/spec/dummy/db/migrate/20081028083142_create_agent_import_files.rb +20 -0
- data/spec/dummy/db/migrate/20081028083208_create_resource_import_files.rb +20 -0
- data/spec/dummy/db/migrate/20090705133942_add_attachments_picture_to_picture_file.rb +15 -0
- data/spec/dummy/db/migrate/20090705212043_add_attachments_attachment_to_manifestation.rb +15 -0
- data/spec/dummy/db/migrate/20090719201843_create_extents.rb +12 -0
- data/spec/dummy/db/migrate/20090720091106_create_medium_of_performances.rb +12 -0
- data/spec/dummy/db/migrate/20090720091429_create_content_types.rb +12 -0
- data/spec/dummy/db/migrate/20090812151902_create_agent_relationship_types.rb +12 -0
- data/spec/dummy/db/migrate/20091012101112_add_dcndl_schema.rb +27 -0
- data/spec/dummy/db/migrate/20091025080447_create_licenses.rb +12 -0
- data/spec/dummy/db/migrate/20091202124834_create_versions.rb +18 -0
- data/spec/dummy/db/migrate/20091214131723_create_series_statements.rb +13 -0
- data/spec/dummy/db/migrate/20100129142347_create_import_requests.rb +14 -0
- data/spec/dummy/db/migrate/20100211105551_add_admin_networks_to_library_group.rb +9 -0
- data/spec/dummy/db/migrate/20100223121519_rename_series_statement_title_to_original_title.rb +13 -0
- data/spec/dummy/db/migrate/20100314190054_add_opening_hour_to_library.rb +9 -0
- data/spec/dummy/db/migrate/20100321235924_add_series_statement_identifier_to_series_statement.rb +10 -0
- data/spec/dummy/db/migrate/20100525124311_create_manifestation_relationships.rb +13 -0
- data/spec/dummy/db/migrate/20100606065209_create_user_has_roles.rb +12 -0
- data/spec/dummy/db/migrate/20100606073747_create_agent_relationships.rb +13 -0
- data/spec/dummy/db/migrate/20100607044753_create_manifestation_relationship_types.rb +12 -0
- data/spec/dummy/db/migrate/20100814091104_add_position_to_agent_relationship.rb +11 -0
- data/spec/dummy/db/migrate/20100925043847_create_resource_import_results.rb +15 -0
- data/spec/dummy/db/migrate/20100925074559_create_agent_import_results.rb +11 -0
- data/spec/dummy/db/migrate/20101212070145_add_acquired_at_to_item.rb +9 -0
- data/spec/dummy/db/migrate/20110222073537_add_url_to_library_group.rb +9 -0
- data/spec/dummy/db/migrate/20110301035123_add_pub_date_to_manifestation.rb +9 -0
- data/spec/dummy/db/migrate/20110301121550_add_birth_date_and_death_date_to_agent.rb +11 -0
- data/spec/dummy/db/migrate/20110318183304_add_valid_period_for_new_user_to_user_group.rb +11 -0
- data/spec/dummy/db/migrate/20110603184217_add_edit_mode_to_resource_import_file.rb +9 -0
- data/spec/dummy/db/migrate/20110619064807_add_edition_string_to_manifestation.rb +9 -0
- data/spec/dummy/db/migrate/20110620173525_add_bookstore_id_to_item.rb +11 -0
- data/spec/dummy/db/migrate/20110627034940_create_series_statement_merge_lists.rb +9 -0
- data/spec/dummy/db/migrate/20110627035057_create_series_statement_merges.rb +12 -0
- data/spec/dummy/db/migrate/20110913120629_add_lft_and_rgt_to_classification.rb +11 -0
- data/spec/dummy/db/migrate/20110916091020_add_volume_number_to_manifestation.rb +13 -0
- data/spec/dummy/db/migrate/20110916103953_add_manifestaiton_id_to_series_statement.rb +10 -0
- data/spec/dummy/db/migrate/20110918162329_add_note_to_series_statement.rb +9 -0
- data/spec/dummy/db/migrate/20111124110059_create_create_types.rb +12 -0
- data/spec/dummy/db/migrate/20111124110319_create_realize_types.rb +12 -0
- data/spec/dummy/db/migrate/20111124110355_create_produce_types.rb +12 -0
- data/spec/dummy/db/migrate/20111124112131_add_create_type_to_create.rb +7 -0
- data/spec/dummy/db/migrate/20120105074911_add_isil_to_library.rb +5 -0
- data/spec/dummy/db/migrate/20120125152919_add_title_subseries_transcription_to_series_statement.rb +6 -0
- data/spec/dummy/db/migrate/20120129014038_create_budget_types.rb +12 -0
- data/spec/dummy/db/migrate/20120129020544_add_budget_type_id_to_item.rb +6 -0
- data/spec/dummy/db/migrate/20120319120638_add_content_type_id_to_manifestation.rb +6 -0
- data/spec/dummy/db/migrate/20120319173203_create_accepts.rb +14 -0
- data/spec/dummy/db/migrate/20120406020752_add_url_to_subject.rb +5 -0
- data/spec/dummy/db/migrate/20120410104851_add_year_of_publication_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120413072700_add_picture_meta_to_picture_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413100352_add_fingerprint_to_picture_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413161340_add_fingerprint_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413161403_add_fingerprint_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413170705_add_error_message_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120413170720_add_error_message_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20120415164821_add_attachment_meta_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120418081407_add_month_of_publication_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20120510140958_add_closed_to_shelf.rb +5 -0
- data/spec/dummy/db/migrate/20120511072422_add_agent_identifier_to_agent.rb +6 -0
- data/spec/dummy/db/migrate/20120602141129_add_edit_mode_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20121116031206_add_fulltext_content_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20121116033446_add_doi_to_manifestation.rb +6 -0
- data/spec/dummy/db/migrate/20130221154434_add_additional_attributes_to_user.rb +16 -0
- data/spec/dummy/db/migrate/20130412083556_add_latitude_and_longitude_to_library.rb +6 -0
- data/spec/dummy/db/migrate/20130421093852_add_periodical_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20130421155019_add_creator_string_to_series_statement.rb +7 -0
- data/spec/dummy/db/migrate/20130421164124_add_series_master_to_series_statement.rb +5 -0
- data/spec/dummy/db/migrate/20130429020822_add_root_manifestation_id_to_series_statement.rb +6 -0
- data/spec/dummy/db/migrate/20130504133816_add_manifestation_id_to_subject.rb +6 -0
- data/spec/dummy/db/migrate/20130504143515_add_manifestation_id_to_classification.rb +6 -0
- data/spec/dummy/db/migrate/20130504195916_add_subject_heading_type_id_to_subject.rb +5 -0
- data/spec/dummy/db/migrate/20130506175303_create_identifier_types.rb +12 -0
- data/spec/dummy/db/migrate/20130506175834_create_identifiers.rb +15 -0
- data/spec/dummy/db/migrate/20130509185724_add_statement_of_responsibility_to_manifestation.rb +5 -0
- data/spec/dummy/db/migrate/20140110122216_create_user_import_files.rb +18 -0
- data/spec/dummy/db/migrate/20140110131010_create_user_import_results.rb +11 -0
- data/spec/dummy/db/migrate/20140122054321_create_profiles.rb +20 -0
- data/spec/dummy/db/migrate/20140519170214_create_resource_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140519171220_create_import_request_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140524020735_create_agent_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140524074813_create_user_import_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140610123439_drop_email_unique_constraint_enju_leaf_rc10.rb +11 -0
- data/spec/dummy/db/migrate/20140614065404_create_resource_export_files.rb +11 -0
- data/spec/dummy/db/migrate/20140614141500_create_resource_export_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140628072217_add_user_encoding_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140628073524_add_user_encoding_to_agent_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140628073535_add_user_encoding_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140709113413_create_user_export_files.rb +11 -0
- data/spec/dummy/db/migrate/20140709113905_create_user_export_file_transitions.rb +14 -0
- data/spec/dummy/db/migrate/20140720140916_add_binding_item_identifier_to_item.rb +8 -0
- data/spec/dummy/db/migrate/20140720170714_add_default_library_id_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140720170735_add_default_user_group_id_to_user_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140721151416_add_default_shelf_id_to_resource_import_file.rb +5 -0
- data/spec/dummy/db/migrate/20140802082007_add_manifestation_id_to_item.rb +6 -0
- data/spec/dummy/db/migrate/20140811031145_add_expired_at_to_profile.rb +5 -0
- data/spec/dummy/db/migrate/20140813182425_add_publication_place_to_manifestation.rb +5 -0
- data/spec/dummy/db/schema.rb +1008 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +2139 -0
- data/spec/dummy/log/test.log +21513 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/fixtures/agent_types.yml +35 -0
- data/spec/fixtures/carrier_types.yml +51 -0
- data/spec/fixtures/classification_types.yml +13 -0
- data/spec/fixtures/content_types.yml +19 -0
- data/spec/fixtures/countries.yml +2059 -0
- data/spec/fixtures/frequencies.yml +76 -0
- data/spec/fixtures/identifier_types.yml +36 -0
- data/spec/fixtures/languages.yml +1901 -0
- data/spec/fixtures/roles.yml +35 -0
- data/spec/fixtures/subject_heading_types.yml +39 -0
- data/spec/fixtures/subject_types.yml +42 -0
- data/spec/fixtures/user_has_roles.yml +41 -0
- data/spec/fixtures/users.yml +51 -0
- data/spec/models/loc_search_spec.rb +195 -0
- data/spec/rails_helper.rb +43 -0
- data/spec/spec_helper.rb +47 -0
- data/spec/support/controller_macros.rb +25 -0
- data/spec/support/devise.rb +4 -0
- metadata +615 -0
data/spec/cassette_library/LocSearch/_import_from_sru_response/should_import_video_publication.yml
ADDED
@@ -0,0 +1,204 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&query=bath.lccn=2013602064&version=1.1&operation=searchRetrieve
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
accept:
|
11
|
+
- ! '*/*'
|
12
|
+
user-agent:
|
13
|
+
- Ruby
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 200
|
17
|
+
message: OK
|
18
|
+
headers:
|
19
|
+
content-length:
|
20
|
+
- '13708'
|
21
|
+
server:
|
22
|
+
- Metaproxy/1.5.3
|
23
|
+
connection:
|
24
|
+
- Keep-Alive
|
25
|
+
content-type:
|
26
|
+
- text/xml
|
27
|
+
body:
|
28
|
+
encoding: US-ASCII
|
29
|
+
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
|
30
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
31
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
32
|
+
\ <titleInfo>\n <title>Clint Eastwood</title>\n </titleInfo>\n <titleInfo
|
33
|
+
type=\"uniform\">\n <title>Dirty Harry (Motion picture)</title>\n </titleInfo>\n
|
34
|
+
\ <titleInfo type=\"uniform\">\n <title>Magnum force (Motion picture)</title>\n
|
35
|
+
\ </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Enforcer (Motion
|
36
|
+
picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Gauntlet
|
37
|
+
(Motion picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n
|
38
|
+
\ <title>Sudden impact (Motion picture)</title>\n </titleInfo>\n <titleInfo
|
39
|
+
type=\"uniform\">\n <title>Tightrope (Motion picture)</title>\n </titleInfo>\n
|
40
|
+
\ <titleInfo type=\"uniform\">\n <title>Dead pool (Motion picture)</title>\n
|
41
|
+
\ </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Rookie (Motion
|
42
|
+
picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Where
|
43
|
+
eagles dare (Motion picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n
|
44
|
+
\ <title>Kelly's heroes (Motion picture)</title>\n </titleInfo>\n <titleInfo
|
45
|
+
type=\"uniform\">\n <title>Firefox (Motion picture)</title>\n </titleInfo>\n
|
46
|
+
\ <titleInfo type=\"uniform\">\n <title>Heartbreak Ridge (Motion picture)</title>\n
|
47
|
+
\ </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Absolute power
|
48
|
+
(Motion picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n
|
49
|
+
\ <title>True crime (Motion picture)</title>\n </titleInfo>\n <titleInfo
|
50
|
+
type=\"uniform\">\n <title>Space cowboys (Motion picture)</title>\n </titleInfo>\n
|
51
|
+
\ <titleInfo type=\"uniform\">\n <title>Blood work (Motion picture)</title>\n
|
52
|
+
\ </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Every which way
|
53
|
+
but loose (Motion picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n
|
54
|
+
\ <title>Any which way you can (Motion picture)</title>\n </titleInfo>\n
|
55
|
+
\ <titleInfo type=\"uniform\">\n <title>Bronco Billy (Motion picture)</title>\n
|
56
|
+
\ </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Honkytonk man (Motion
|
57
|
+
picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n <title>City
|
58
|
+
heat (Motion picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n
|
59
|
+
\ <title>Pink Cadillac (Motion picture)</title>\n </titleInfo>\n <titleInfo
|
60
|
+
type=\"uniform\">\n <title>Perfect world (Motion picture)</title>\n </titleInfo>\n
|
61
|
+
\ <titleInfo type=\"uniform\">\n <title>Bridges of Madison County (Motion
|
62
|
+
picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Outlaw
|
63
|
+
Josey Wales (Motion picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n
|
64
|
+
\ <title>Pale rider (Motion picture)</title>\n </titleInfo>\n <titleInfo
|
65
|
+
type=\"uniform\">\n <title>Unforgiven (Motion picture)</title>\n </titleInfo>\n
|
66
|
+
\ <titleInfo type=\"uniform\">\n <title>Bird (Motion picture)</title>\n
|
67
|
+
\ </titleInfo>\n <titleInfo type=\"uniform\">\n <title>White hunter, black
|
68
|
+
heart (Motion picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n
|
69
|
+
\ <title>Midnight in the garden of good and evil (Motion picture)</title>\n
|
70
|
+
\ </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Mystic River (Motion
|
71
|
+
picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Million
|
72
|
+
dollar baby (Motion picture : 2004)</title>\n </titleInfo>\n <titleInfo
|
73
|
+
type=\"uniform\">\n <title>Letters from Iwo Jima (Motion picture)</title>\n
|
74
|
+
\ </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Gran Torino (Motion
|
75
|
+
picture)</title>\n </titleInfo>\n <titleInfo type=\"uniform\">\n <title>Eastwood
|
76
|
+
factor (Motion picture)</title>\n </titleInfo>\n <name type=\"personal\">\n
|
77
|
+
\ <namePart>Eastwood, Clint</namePart>\n <namePart type=\"date\">1930-</namePart>\n
|
78
|
+
\ </name>\n <name type=\"corporate\">\n <namePart>Warner Bros. Pictures
|
79
|
+
(1969- )</namePart>\n </name>\n <name type=\"corporate\">\n <namePart>Warner
|
80
|
+
Home Video (Firm)</namePart>\n </name>\n <name type=\"corporate\">\n <namePart>Malpaso
|
81
|
+
(Company)</namePart>\n </name>\n <name type=\"corporate\">\n <namePart>LC
|
82
|
+
Purchase Collection (Library of Congress)</namePart>\n </name>\n <typeOfResource>moving
|
83
|
+
image</typeOfResource>\n <genre authority=\"marcgt\">motion picture</genre>\n
|
84
|
+
\ <genre authority=\"lcgft\">Feature films.</genre>\n <genre authority=\"lcgft\">Fiction
|
85
|
+
films.</genre>\n <genre authority=\"lcgft\">Video recordings for the hearing
|
86
|
+
impaired.</genre>\n <originInfo>\n <place>\n <placeTerm type=\"code\"
|
87
|
+
authority=\"marccountry\">xxu</placeTerm>\n </place>\n <place>\n <placeTerm
|
88
|
+
type=\"text\">Burbank, CA</placeTerm>\n </place>\n <publisher>Distributed
|
89
|
+
by Warner Home Video</publisher>\n <dateIssued>[2010]</dateIssued>\n <dateIssued
|
90
|
+
encoding=\"marc\">2010</dateIssued>\n <issuance>monographic</issuance>\n
|
91
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
92
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
93
|
+
\ <form authority=\"marcsmd\">videodisc</form>\n <extent>viewing copy
|
94
|
+
19 videodiscs (4244 min.) : sd., col. ; 4 3/4 in. + 1 booklet (24 p. : ill.
|
95
|
+
(some col.) ; 20 x 28 cm.)</extent>\n </physicalDescription>\n <abstract
|
96
|
+
type=\"Summary\">\"Hollywood legend Clint Eastwood has touched generations
|
97
|
+
of filmgoers for over half a century. The five-time Academy Award winner has
|
98
|
+
made an indelible mark as one of Hollywood's most iconic actors and insightful
|
99
|
+
directors. In honor of Eastwood's long standing 35 year relationship with
|
100
|
+
Warner Bros. through Malpaso Productions, this definitive collection celebrates
|
101
|
+
Eastwood's entire filmography at the studio from Where Eagles Dare (1968)
|
102
|
+
through Gran Torino (2008) all packaged in an elegant giftset. Also included
|
103
|
+
is an all-new documentary about Eastwood's life and career produced by esteemed
|
104
|
+
film critic and historian Richard Schickel, featuring in-depth interviews
|
105
|
+
and revealing, intimate footage never-before-seen plus rare photos and letters\"--Publisher's
|
106
|
+
web site.</abstract>\n <tableOfContents>Disc 1. Dirty Harry ; Magnum force
|
107
|
+
-- disc 2. The enforcer ; The gauntlet -- disc 3. Sudden impact ; Tightrope
|
108
|
+
-- disc 4. The dead pool ; The rookie -- disc 5. Where eagles dare ; Kelly's
|
109
|
+
heroes -- disc 6. Firefox ; Heartbreak ridge -- disc 7. Absolute power ; True
|
110
|
+
crime -- disc 8. Space cowboys ; Blood work -- disc 9. Every which way but
|
111
|
+
loose ; Any which way you can -- disc 10. Bronco Billy ; Honkytonk man --
|
112
|
+
disc 11. City heat ; Pink Cadillac -- disc 12. A perfect world ; Bridges of
|
113
|
+
Madison County -- disc 13. The outlaw Josey Wales ; Pale rider -- disc 14.
|
114
|
+
Unforgiven -- disc 15. Bird ; White hunter, black heart -- disc 16. Midnight
|
115
|
+
in the garden of good and evil ; Mystic river -- disc 17. Million dollar baby
|
116
|
+
; Letters from Iwo Jima -- disc 18. Gran Torino -- disc 19. The Eastwood factor.</tableOfContents>\n
|
117
|
+
\ <note type=\"statement of responsibility\" altRepGroup=\"00\">Warner Brothers
|
118
|
+
Pictures.</note>\n <note>Title from container.</note>\n <note>\"35 films
|
119
|
+
35 years\"--Container sleeve.</note>\n <note>Irregular original packaging.</note>\n
|
120
|
+
\ <note type=\"creation/production credits\">Directed by Eastwood, except
|
121
|
+
where noted.</note>\n <note type=\"performers\">Clint Eastwood ... [et al.].</note>\n
|
122
|
+
\ <note type=\"system details\">DVD; region 1; NTSC; widescreen.</note>\n
|
123
|
+
\ <note type=\"language\">In English with optional subtitles in English, French,
|
124
|
+
and Spanish; English subtitles for the deaf and hard of hearing.</note>\n
|
125
|
+
\ <subject authority=\"lcsh\">\n <name type=\"personal\">\n <namePart>Eastwood,
|
126
|
+
Clint</namePart>\n <namePart type=\"date\">1930-</namePart>\n </name>\n
|
127
|
+
\ </subject>\n <classification authority=\"lcc\">DXA 0027 (viewing copy)</classification>\n
|
128
|
+
\ <classification authority=\"ddc\" edition=\"22\">791.43/75</classification>\n
|
129
|
+
\ <relatedItem type=\"constituent\">\n <titleInfo>\n <title>Dirty
|
130
|
+
Harry (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n <relatedItem
|
131
|
+
type=\"constituent\">\n <titleInfo>\n <title>Magnum force (Motion
|
132
|
+
picture)</title>\n </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
133
|
+
\ <titleInfo>\n <title>Enforcer (Motion picture)</title>\n </titleInfo>\n
|
134
|
+
\ </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n
|
135
|
+
\ <title>Gauntlet (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n
|
136
|
+
\ <relatedItem type=\"constituent\">\n <titleInfo>\n <title>Sudden
|
137
|
+
impact (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n <relatedItem
|
138
|
+
type=\"constituent\">\n <titleInfo>\n <title>Tightrope (Motion picture)</title>\n
|
139
|
+
\ </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
140
|
+
\ <titleInfo>\n <title>Dead pool (Motion picture)</title>\n </titleInfo>\n
|
141
|
+
\ </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n
|
142
|
+
\ <title>Rookie (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n
|
143
|
+
\ <relatedItem type=\"constituent\">\n <titleInfo>\n <title>Where
|
144
|
+
eagles dare (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n
|
145
|
+
\ <relatedItem type=\"constituent\">\n <titleInfo>\n <title>Kelly's
|
146
|
+
heroes (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n <relatedItem
|
147
|
+
type=\"constituent\">\n <titleInfo>\n <title>Firefox (Motion picture)</title>\n
|
148
|
+
\ </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
149
|
+
\ <titleInfo>\n <title>Heartbreak Ridge (Motion picture)</title>\n
|
150
|
+
\ </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
151
|
+
\ <titleInfo>\n <title>Absolute power (Motion picture)</title>\n </titleInfo>\n
|
152
|
+
\ </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n
|
153
|
+
\ <title>True crime (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n
|
154
|
+
\ <relatedItem type=\"constituent\">\n <titleInfo>\n <title>Space
|
155
|
+
cowboys (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n <relatedItem
|
156
|
+
type=\"constituent\">\n <titleInfo>\n <title>Blood work (Motion picture)</title>\n
|
157
|
+
\ </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
158
|
+
\ <titleInfo>\n <title>Every which way but loose (Motion picture)</title>\n
|
159
|
+
\ </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
160
|
+
\ <titleInfo>\n <title>Any which way you can (Motion picture)</title>\n
|
161
|
+
\ </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
162
|
+
\ <titleInfo>\n <title>Bronco Billy (Motion picture)</title>\n </titleInfo>\n
|
163
|
+
\ </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n
|
164
|
+
\ <title>Honkytonk man (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n
|
165
|
+
\ <relatedItem type=\"constituent\">\n <titleInfo>\n <title>City heat
|
166
|
+
(Motion picture)</title>\n </titleInfo>\n </relatedItem>\n <relatedItem
|
167
|
+
type=\"constituent\">\n <titleInfo>\n <title>Pink Cadillac (Motion
|
168
|
+
picture)</title>\n </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
169
|
+
\ <titleInfo>\n <title>Perfect world (Motion picture)</title>\n </titleInfo>\n
|
170
|
+
\ </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n
|
171
|
+
\ <title>Bridges of Madison County (Motion picture)</title>\n </titleInfo>\n
|
172
|
+
\ </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n
|
173
|
+
\ <title>Outlaw Josey Wales (Motion picture)</title>\n </titleInfo>\n
|
174
|
+
\ </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n
|
175
|
+
\ <title>Pale rider (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n
|
176
|
+
\ <relatedItem type=\"constituent\">\n <titleInfo>\n <title>Unforgiven
|
177
|
+
(Motion picture)</title>\n </titleInfo>\n </relatedItem>\n <relatedItem
|
178
|
+
type=\"constituent\">\n <titleInfo>\n <title>Bird (Motion picture)</title>\n
|
179
|
+
\ </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
180
|
+
\ <titleInfo>\n <title>White hunter, black heart (Motion picture)</title>\n
|
181
|
+
\ </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
182
|
+
\ <titleInfo>\n <title>Midnight in the garden of good and evil (Motion
|
183
|
+
picture)</title>\n </titleInfo>\n </relatedItem>\n <relatedItem type=\"constituent\">\n
|
184
|
+
\ <titleInfo>\n <title>Mystic River (Motion picture)</title>\n </titleInfo>\n
|
185
|
+
\ </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n
|
186
|
+
\ <title>Million dollar baby (Motion picture : 2004)</title>\n </titleInfo>\n
|
187
|
+
\ </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n
|
188
|
+
\ <title>Letters from Iwo Jima (Motion picture)</title>\n </titleInfo>\n
|
189
|
+
\ </relatedItem>\n <relatedItem type=\"constituent\">\n <titleInfo>\n
|
190
|
+
\ <title>Gran Torino (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n
|
191
|
+
\ <relatedItem type=\"constituent\">\n <titleInfo>\n <title>Eastwood
|
192
|
+
factor (Motion picture)</title>\n </titleInfo>\n </relatedItem>\n <identifier
|
193
|
+
type=\"lccn\">2013602064</identifier>\n <identifier type=\"oclc\">ocn641973755</identifier>\n
|
194
|
+
\ <identifier type=\"oclc\">641973755</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
195
|
+
\ <recordContentSource authority=\"marcorg\">SZR</recordContentSource>\n
|
196
|
+
\ <recordCreationDate encoding=\"marc\">130410</recordCreationDate>\n <recordChangeDate
|
197
|
+
encoding=\"iso8601\">20130813145154.0</recordChangeDate>\n <recordIdentifier>17691505</recordIdentifier>\n
|
198
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
199
|
+
1.94 2014/02/21)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
|
200
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
|
201
|
+
\ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records></zs:searchRetrieveResponse>\n"
|
202
|
+
http_version: '1.1'
|
203
|
+
recorded_at: Fri, 15 Aug 2014 14:32:05 GMT
|
204
|
+
recorded_with: VCR 2.9.2
|
@@ -0,0 +1,80 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&query=bath.lccn=2012532441&version=1.1&operation=searchRetrieve
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
accept:
|
11
|
+
- ! '*/*'
|
12
|
+
user-agent:
|
13
|
+
- Ruby
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 200
|
17
|
+
message: OK
|
18
|
+
headers:
|
19
|
+
content-length:
|
20
|
+
- '4266'
|
21
|
+
server:
|
22
|
+
- Metaproxy/1.5.3
|
23
|
+
connection:
|
24
|
+
- Keep-Alive
|
25
|
+
content-type:
|
26
|
+
- text/xml
|
27
|
+
body:
|
28
|
+
encoding: US-ASCII
|
29
|
+
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
|
30
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
31
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
32
|
+
\ <titleInfo>\n <nonSort>The </nonSort>\n <title>data journalism handbook</title>\n
|
33
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Subtitle
|
34
|
+
on cover:\">\n <title>How journalists can use data to improve the news</title>\n
|
35
|
+
\ </titleInfo>\n <name type=\"personal\">\n <namePart>Gray, Jonathan.</namePart>\n
|
36
|
+
\ </name>\n <name type=\"personal\">\n <namePart>Bounegru, Liliana.</namePart>\n
|
37
|
+
\ </name>\n <name type=\"personal\">\n <namePart>Chambers, Lucy.</namePart>\n
|
38
|
+
\ </name>\n <name type=\"corporate\">\n <namePart>European Journalism
|
39
|
+
Centre</namePart>\n </name>\n <name type=\"corporate\">\n <namePart>Open
|
40
|
+
Knowledge Foundation</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n
|
41
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">cau</placeTerm>\n
|
42
|
+
\ </place>\n <place>\n <placeTerm type=\"text\">Sebastopol, CA</placeTerm>\n
|
43
|
+
\ </place>\n <publisher>O'Reilly Media</publisher>\n <dateIssued>2012</dateIssued>\n
|
44
|
+
\ <edition>1st ed.</edition>\n <issuance>monographic</issuance>\n </originInfo>\n
|
45
|
+
\ <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
46
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
|
47
|
+
\ <extent>xvii, 220 p. : ill., maps ; 24 cm.</extent>\n </physicalDescription>\n
|
48
|
+
\ <abstract type=\"Summary\">With The Data Journalism Handbook, you'll explore
|
49
|
+
the potential, limits, and applied use of this new and fascinating field.
|
50
|
+
This handbook has attracted scores of contributors since the European Journalism
|
51
|
+
Centre and the Open Knowledge Foundation launched the project at MozFest 2011.
|
52
|
+
Through a collection of tips and techniques form leading journalists, professors,
|
53
|
+
software developers, and data analysts, you'll learn how data can be wither
|
54
|
+
the source of data journalism or a tool with which the story is told--or both.</abstract>\n
|
55
|
+
\ <tableOfContents>In the newsroom -- Case studies -- Getting data -- Understanding
|
56
|
+
data -- Delivering data.</tableOfContents>\n <note type=\"statement of responsibility\"
|
57
|
+
altRepGroup=\"00\">edited by Jonathan Gray, Liliana Bounegru, and Lucy Chambers.</note>\n
|
58
|
+
\ <note>\"A project of the European Journalism Centre and the Open Knowledge
|
59
|
+
Foundation.\"--T.p. verso.</note>\n <note>\"Strata: making data work\"--Cover
|
60
|
+
p. [4].</note>\n <subject authority=\"lcsh\">\n <topic>Journalism</topic>\n
|
61
|
+
\ <topic>Data processing</topic>\n </subject>\n <subject authority=\"lcsh\">\n
|
62
|
+
\ <topic>Data mining</topic>\n </subject>\n <subject authority=\"lcsh\">\n
|
63
|
+
\ <topic>Information visualization</topic>\n </subject>\n <classification
|
64
|
+
authority=\"lcc\">PN4784.E5 D36 2012</classification>\n <classification authority=\"ddc\"
|
65
|
+
edition=\"23\">070.4/30285</classification>\n <location>\n <url displayLabel=\"electronic
|
66
|
+
resource\" usage=\"primary display\">http://datajournalismhandbook.org/1.0/en/</url>\n
|
67
|
+
\ </location>\n <identifier type=\"isbn\">9781449330064 (pbk.)</identifier>\n
|
68
|
+
\ <identifier type=\"isbn\">1449330061 (pbk.)</identifier>\n <identifier
|
69
|
+
type=\"lccn\">2012532441</identifier>\n <identifier type=\"oclc\">ocn781679351</identifier>\n
|
70
|
+
\ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource
|
71
|
+
authority=\"marcorg\">BTCTA</recordContentSource>\n <recordCreationDate
|
72
|
+
encoding=\"marc\">130808</recordCreationDate>\n <recordChangeDate encoding=\"iso8601\">20130923143859.0</recordChangeDate>\n
|
73
|
+
\ <recordIdentifier>17845092</recordIdentifier>\n <recordOrigin>Converted
|
74
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
75
|
+
1.94 2014/02/21)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
|
76
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
|
77
|
+
\ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records></zs:searchRetrieveResponse>\n"
|
78
|
+
http_version: '1.1'
|
79
|
+
recorded_at: Tue, 12 Aug 2014 15:35:18 GMT
|
80
|
+
recorded_with: VCR 2.9.2
|
@@ -0,0 +1,77 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&query=bath.lccn=2013433146&version=1.1&operation=searchRetrieve
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
accept:
|
11
|
+
- ! '*/*'
|
12
|
+
user-agent:
|
13
|
+
- Ruby
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 200
|
17
|
+
message: OK
|
18
|
+
headers:
|
19
|
+
content-length:
|
20
|
+
- '4009'
|
21
|
+
server:
|
22
|
+
- Metaproxy/1.5.3
|
23
|
+
connection:
|
24
|
+
- Keep-Alive
|
25
|
+
content-type:
|
26
|
+
- text/xml
|
27
|
+
body:
|
28
|
+
encoding: US-ASCII
|
29
|
+
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
|
30
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
31
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
32
|
+
\ <titleInfo>\n <title>Anne around the world</title>\n <subTitle>L.M.
|
33
|
+
Montgomery and her classic</subTitle>\n </titleInfo>\n <name type=\"personal\">\n
|
34
|
+
\ <namePart>Ledwell, Jane</namePart>\n <namePart type=\"date\">1972-</namePart>\n
|
35
|
+
\ </name>\n <name type=\"personal\">\n <namePart>Mitchell, Jean</namePart>\n
|
36
|
+
\ <namePart type=\"date\">1953-</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n
|
37
|
+
\ <genre authority=\"marcgt\">bibliography</genre>\n <originInfo>\n <place>\n
|
38
|
+
\ <placeTerm type=\"code\" authority=\"marccountry\">quc</placeTerm>\n
|
39
|
+
\ </place>\n <place>\n <placeTerm type=\"text\">Montréal</placeTerm>\n
|
40
|
+
\ </place>\n <publisher>McGill-Queen's University Press</publisher>\n
|
41
|
+
\ <dateIssued>c2013</dateIssued>\n <dateIssued encoding=\"marc\">2013</dateIssued>\n
|
42
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
43
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
44
|
+
\ <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>x,
|
45
|
+
302 p. ; 23 cm.</extent>\n </physicalDescription>\n <note type=\"statement
|
46
|
+
of responsibility\" altRepGroup=\"00\">edited by Jane Ledwell and Jean Mitchell.</note>\n
|
47
|
+
\ <note type=\"bibliography\">Includes bibliographical references and index.</note>\n
|
48
|
+
\ <note type=\"additional physical form\">Issued also in electronic format.</note>\n
|
49
|
+
\ <subject authority=\"lcsh\">\n <name type=\"personal\">\n <namePart>Montgomery,
|
50
|
+
L. M. (Lucy Maud)</namePart>\n <namePart type=\"date\">1874-1942</namePart>\n
|
51
|
+
\ </name>\n <titleInfo>\n <title>Anne of Green Gables</title>\n
|
52
|
+
\ </titleInfo>\n </subject>\n <subject authority=\"lcsh\">\n <name
|
53
|
+
type=\"personal\">\n <namePart>Montgomery, L. M. (Lucy Maud)</namePart>\n
|
54
|
+
\ <namePart type=\"date\">1874-1942</namePart>\n </name>\n <topic>Criticism
|
55
|
+
and interpretation</topic>\n </subject>\n <subject authority=\"lcsh\">\n
|
56
|
+
\ <name type=\"personal\">\n <namePart>Montgomery, L. M. (Lucy Maud)</namePart>\n
|
57
|
+
\ <namePart type=\"date\">1874-1942</namePart>\n </name>\n <topic>Influence</topic>\n
|
58
|
+
\ </subject>\n <subject authority=\"gnd\">\n <name type=\"personal\">\n
|
59
|
+
\ <namePart>Montgomery, Lucy M</namePart>\n <namePart type=\"date\">1874-1942</namePart>\n
|
60
|
+
\ </name>\n <titleInfo>\n <title>Anne of Green Gables</title>\n
|
61
|
+
\ </titleInfo>\n </subject>\n <classification authority=\"lcc\">PR9199.3.M6
|
62
|
+
Z5193 2013</classification>\n <classification authority=\"ddc\" edition=\"23\">C813/.52</classification>\n
|
63
|
+
\ <identifier type=\"isbn\">9780773541399 (bound)</identifier>\n <identifier
|
64
|
+
type=\"isbn\">9780773541405 (pbk.)</identifier>\n <identifier type=\"isbn\">9780773588585
|
65
|
+
(ePDF)</identifier>\n <identifier type=\"isbn\">9780773588592 (ePUB)</identifier>\n
|
66
|
+
\ <identifier type=\"lccn\">2013433146</identifier>\n <identifier type=\"oclc\">ocn818414672</identifier>\n
|
67
|
+
\ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource
|
68
|
+
authority=\"marcorg\">NLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">130903</recordCreationDate>\n
|
69
|
+
\ <recordChangeDate encoding=\"iso8601\">20130924105652.0</recordChangeDate>\n
|
70
|
+
\ <recordIdentifier>17873351</recordIdentifier>\n <recordOrigin>Converted
|
71
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
72
|
+
1.94 2014/02/21)</recordOrigin>\n <languageOfCataloging>\n <languageTerm
|
73
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </languageOfCataloging>\n
|
74
|
+
\ </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records></zs:searchRetrieveResponse>\n"
|
75
|
+
http_version: '1.1'
|
76
|
+
recorded_at: Wed, 13 Aug 2014 14:37:59 GMT
|
77
|
+
recorded_with: VCR 2.9.2
|
@@ -0,0 +1,353 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&query=library&version=1.1&operation=searchRetrieve
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
accept:
|
11
|
+
- ! '*/*'
|
12
|
+
user-agent:
|
13
|
+
- Ruby
|
14
|
+
response:
|
15
|
+
status:
|
16
|
+
code: 200
|
17
|
+
message: OK
|
18
|
+
headers:
|
19
|
+
content-length:
|
20
|
+
- '28628'
|
21
|
+
server:
|
22
|
+
- Metaproxy/1.5.3
|
23
|
+
connection:
|
24
|
+
- Keep-Alive
|
25
|
+
content-type:
|
26
|
+
- text/xml
|
27
|
+
body:
|
28
|
+
encoding: US-ASCII
|
29
|
+
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
|
30
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
31
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
32
|
+
\ <titleInfo>\n <title/>\n </titleInfo>\n <typeOfResource>text</typeOfResource>\n
|
33
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">np</placeTerm>\n
|
34
|
+
\ </place>\n <place>\n <placeTerm type=\"text\">Kathmandu</placeTerm>\n
|
35
|
+
\ </place>\n <publisher/>\n <dateIssued>2008</dateIssued>\n <dateIssued
|
36
|
+
encoding=\"marc\">2013</dateIssued>\n <issuance>monographic</issuance>\n
|
37
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
38
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
|
39
|
+
\ <extent>p.</extent>\n </physicalDescription>\n <note type=\"statement
|
40
|
+
of responsibility\" altRepGroup=\"00\">.</note>\n <identifier type=\"lccn\"/>\n
|
41
|
+
\ <identifier type=\"stock number\">Library of Congress -- New Delhi Overseas
|
42
|
+
Office</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
43
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
44
|
+
\ <recordCreationDate encoding=\"marc\">130904</recordCreationDate>\n <recordChangeDate
|
45
|
+
encoding=\"iso8601\">20130904000057.0</recordChangeDate>\n <recordIdentifier>17874249</recordIdentifier>\n
|
46
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
47
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
48
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
49
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
50
|
+
\ <titleInfo>\n <title/>\n </titleInfo>\n <typeOfResource>moving image</typeOfResource>\n
|
51
|
+
\ <genre authority=\"marcgt\">videorecording</genre>\n <originInfo>\n <place>\n
|
52
|
+
\ <placeTerm type=\"code\" authority=\"marccountry\">ii</placeTerm>\n
|
53
|
+
\ </place>\n <place>\n <placeTerm type=\"text\">New Delhi</placeTerm>\n
|
54
|
+
\ </place>\n <publisher>public Service Broadcasting Trust</publisher>\n
|
55
|
+
\ <dateIssued>2011</dateIssued>\n <issuance>monographic</issuance>\n
|
56
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
57
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
58
|
+
\ <form authority=\"marcsmd\">videodisc</form>\n <extent>1 videodisc
|
59
|
+
of 1 (DVD) (ca. xx min.) : sd., col. ; 4 3/4 in. viewing copy.</extent>\n
|
60
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">Summary note.</abstract>\n
|
61
|
+
\ <targetAudience authority=\"marctarget\">general</targetAudience>\n <note
|
62
|
+
type=\"statement of responsibility\" altRepGroup=\"00\">.</note>\n <note
|
63
|
+
type=\"acquisition\">Purchase./Gift.</note>\n <subject>\n <geographicCode
|
64
|
+
authority=\"marcgac\">a-ii---</geographicCode>\n </subject>\n <identifier
|
65
|
+
type=\"lccn\"/>\n <identifier type=\"stock number\">Library of Congress --
|
66
|
+
New Delhi Overseas Office</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
67
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
68
|
+
\ <recordCreationDate encoding=\"marc\">130511</recordCreationDate>\n <recordChangeDate
|
69
|
+
encoding=\"iso8601\">20130511054641.0</recordChangeDate>\n <recordIdentifier>17734504</recordIdentifier>\n
|
70
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
71
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>2</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
72
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
73
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
74
|
+
\ <titleInfo>\n <title/>\n </titleInfo>\n <typeOfResource>text</typeOfResource>\n
|
75
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">np</placeTerm>\n
|
76
|
+
\ </place>\n <place>\n <placeTerm type=\"text\"/>\n </place>\n
|
77
|
+
\ <publisher/>\n <issuance>monographic</issuance>\n </originInfo>\n
|
78
|
+
\ <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">nep</languageTerm>\n
|
79
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
|
80
|
+
\ <extent>p. ; cm.</extent>\n </physicalDescription>\n <abstract type=\"Summary\">x</abstract>\n
|
81
|
+
\ <note type=\"statement of responsibility\" altRepGroup=\"00\"/>\n <note
|
82
|
+
type=\"language\">In Nepali.</note>\n <identifier type=\"lccn\"/>\n <identifier
|
83
|
+
type=\"stock number\" displayLabel=\"Rs\">Library of Congress -- New Delhi
|
84
|
+
Overseas Office</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
85
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
86
|
+
\ <recordCreationDate encoding=\"marc\">070118</recordCreationDate>\n <recordChangeDate
|
87
|
+
encoding=\"iso8601\">20070118062927.0</recordChangeDate>\n <recordIdentifier>14701563</recordIdentifier>\n
|
88
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
89
|
+
1.94 2014/02/21)</recordOrigin>\n </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
|
90
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
91
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
92
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Code Ed</partName>\n
|
93
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Code Ed</title>\n
|
94
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
95
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>Code
|
96
|
+
Ed</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit
|
97
|
+
my dad says</title>\n <partName>Code Ed</partName>\n </titleInfo>\n <titleInfo
|
98
|
+
type=\"alternative\">\n <title>Bleep my dad says</title>\n <partName>Code
|
99
|
+
Ed</partName>\n </titleInfo>\n <name type=\"corporate\">\n <namePart>Copyright
|
100
|
+
Collection (Library of Congress)</namePart>\n </name>\n <typeOfResource>moving
|
101
|
+
image</typeOfResource>\n <genre authority=\"marcgt\">motion picture</genre>\n
|
102
|
+
\ <genre authority=\"lcgft\">Situation comedies (Television programs)</genre>\n
|
103
|
+
\ <genre authority=\"lcgft\">Fiction television programs.</genre>\n <originInfo>\n
|
104
|
+
\ <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
105
|
+
\ </place>\n <dateIssued>2010-10-14</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
|
106
|
+
\ <dateCaptured encoding=\"iso8601\">20101014</dateCaptured>\n <issuance>monographic</issuance>\n
|
107
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
108
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
109
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
110
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
111
|
+
\ </physicalDescription>\n <note type=\"statement of responsibility\" altRepGroup=\"00\">directed
|
112
|
+
by Rob Schiller ; written by Michael Lisbe and Nate Reger.</note>\n <note>Production
|
113
|
+
no. 2J5654.</note>\n <note>Sources used: video container; Copyright catalog
|
114
|
+
online; Copyright description; Wikipedia WWW site, viewed June 4, 2014.</note>\n
|
115
|
+
\ <note type=\"performers\">William Shatner, Jonathan Sadowski, Will Sasso.</note>\n
|
116
|
+
\ <classification authority=\"lcc\">VAQ 3023 (viewing copy)</classification>\n
|
117
|
+
\ <identifier type=\"lccn\">2014604741</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
118
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
119
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n
|
120
|
+
\ <recordChangeDate encoding=\"iso8601\">20140605152157.0</recordChangeDate>\n
|
121
|
+
\ <recordIdentifier>18176739</recordIdentifier>\n <recordOrigin>Converted
|
122
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
123
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>4</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
124
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
125
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
126
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Corn star</partName>\n
|
127
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Corn star</title>\n
|
128
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
129
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>Corn
|
130
|
+
star</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit
|
131
|
+
my dad says</title>\n <partName>Corn star</partName>\n </titleInfo>\n
|
132
|
+
\ <titleInfo type=\"alternative\">\n <title>Bleep my dad says</title>\n
|
133
|
+
\ <partName>Corn star</partName>\n </titleInfo>\n <name type=\"corporate\">\n
|
134
|
+
\ <namePart>Copyright Collection (Library of Congress)</namePart>\n </name>\n
|
135
|
+
\ <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
136
|
+
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
137
|
+
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
138
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
139
|
+
\ </place>\n <dateIssued>2011-01-20</dateIssued>\n <dateIssued encoding=\"marc\">2011</dateIssued>\n
|
140
|
+
\ <dateCaptured encoding=\"iso8601\">20110120</dateCaptured>\n <issuance>monographic</issuance>\n
|
141
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
142
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
143
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
144
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
145
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"When the height of
|
146
|
+
Ed's corn stalks becomes an issue with the home owners' association, he decides
|
147
|
+
to fix the problem by running for president of the association\"--Wikipedia
|
148
|
+
WWW site, viewed June 9, 2014.</abstract>\n <note type=\"statement of responsibility\"
|
149
|
+
altRepGroup=\"00\">directed by Peter Bonerz ; written by Justin Halpern and
|
150
|
+
Patrick Schumacker.</note>\n <note>Episode no. 14.</note>\n <note>Production
|
151
|
+
no. 2J5664.</note>\n <note>Sources used: video container; Copyright catalog
|
152
|
+
online; Copyright description; Wikipedia WWW site, viewed June 9, 2014.</note>\n
|
153
|
+
\ <note type=\"performers\">William Shatner.</note>\n <note type=\"performers\">Guest
|
154
|
+
stars: Jean Smart, Rachael Harris.</note>\n <classification authority=\"lcc\">VAQ
|
155
|
+
1398 (viewing copy)</classification>\n <identifier type=\"lccn\">2014603998</identifier>\n
|
156
|
+
\ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>amim</descriptionStandard>\n
|
157
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
158
|
+
\ <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n <recordChangeDate
|
159
|
+
encoding=\"iso8601\">20140609084709.0</recordChangeDate>\n <recordIdentifier>18181141</recordIdentifier>\n
|
160
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
161
|
+
1.94 2014/02/21)</recordOrigin>\n </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
|
162
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
163
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
164
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Dog Ed pursuit</partName>\n
|
165
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Dog Ed pursuit</title>\n
|
166
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
167
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>Dog
|
168
|
+
Ed pursuit</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
169
|
+
\ <title>Shit my dad says</title>\n <partName>Dog Ed pursuit</partName>\n
|
170
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
|
171
|
+
says</title>\n <partName>Dog Ed pursuit</partName>\n </titleInfo>\n <name
|
172
|
+
type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
|
173
|
+
\ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
174
|
+
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
175
|
+
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
176
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
177
|
+
\ </place>\n <dateIssued>2010-11-04</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
|
178
|
+
\ <dateCaptured encoding=\"iso8601\">20101104</dateCaptured>\n <issuance>monographic</issuance>\n
|
179
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
180
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
181
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
182
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
183
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"Ed finds himself
|
184
|
+
attached to Root Beer, Vince and Bonnie's dog. Meanwhile, Henry has very rough
|
185
|
+
sex with Vince and Bonnie's supervisor as Bonnie tells Ed to do the same human-canine
|
186
|
+
attachment to Vince\"--Wikipedia WWW site, viewed June 9, 2014.</abstract>\n
|
187
|
+
\ <note type=\"statement of responsibility\" altRepGroup=\"00\">directed by
|
188
|
+
Gail Mancuso ; written by Jeff Astrof.</note>\n <note>Episode no. 7.</note>\n
|
189
|
+
\ <note>Production no. 2J5658.</note>\n <note>Sources used: video container;
|
190
|
+
Copyright catalog online; Copyright description; Wikipedia WWW site, viewed
|
191
|
+
June 9, 2014.</note>\n <note type=\"performers\">William Shatner.</note>\n
|
192
|
+
\ <note type=\"performers\">Guest star: Missi Pyle.</note>\n <classification
|
193
|
+
authority=\"lcc\">VAP 8699 (viewing copy)</classification>\n <identifier
|
194
|
+
type=\"lccn\">2014603699</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
195
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
196
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
|
197
|
+
\ <recordChangeDate encoding=\"iso8601\">20140609133830.0</recordChangeDate>\n
|
198
|
+
\ <recordIdentifier>18181703</recordIdentifier>\n <recordOrigin>Converted
|
199
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
200
|
+
1.94 2014/02/21)</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
|
201
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
202
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
203
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Easy, writer</partName>\n
|
204
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Easy, writer</title>\n
|
205
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
206
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>Easy,
|
207
|
+
writer</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit
|
208
|
+
my dad says</title>\n <partName>Easy, writer</partName>\n </titleInfo>\n
|
209
|
+
\ <titleInfo type=\"alternative\">\n <title>Bleep my dad says</title>\n
|
210
|
+
\ <partName>Easy, writer</partName>\n </titleInfo>\n <name type=\"corporate\">\n
|
211
|
+
\ <namePart>Copyright Collection (Library of Congress)</namePart>\n </name>\n
|
212
|
+
\ <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
213
|
+
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
214
|
+
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
215
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
216
|
+
\ </place>\n <dateIssued>2010-10-28</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
|
217
|
+
\ <dateCaptured encoding=\"iso8601\">20101028</dateCaptured>\n <issuance>monographic</issuance>\n
|
218
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
219
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
220
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
221
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
222
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"Ed is embarrassed
|
223
|
+
when Henry writes an article about him\"--Copyright description.</abstract>\n
|
224
|
+
\ <note type=\"statement of responsibility\" altRepGroup=\"00\">directed by
|
225
|
+
Rob Schiller ; written by Jeff Astrof.</note>\n <note>Episode no. 6.</note>\n
|
226
|
+
\ <note>Production no. 2J5657.</note>\n <note>Sources used: video container;
|
227
|
+
Copyright catalog online; Copyright description; Wikipedia WWW site, viewed
|
228
|
+
June 9, 2014.</note>\n <note type=\"performers\">William Shatner.</note>\n
|
229
|
+
\ <note type=\"performers\">Guest stars: Todd Stashwick, Rebecca Creskoff.</note>\n
|
230
|
+
\ <classification authority=\"lcc\">VAP 8698 (viewing copy)</classification>\n
|
231
|
+
\ <identifier type=\"lccn\">2014603698</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
232
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
233
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
|
234
|
+
\ <recordChangeDate encoding=\"iso8601\">20140609133108.0</recordChangeDate>\n
|
235
|
+
\ <recordIdentifier>18181694</recordIdentifier>\n <recordOrigin>Converted
|
236
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
237
|
+
1.94 2014/02/21)</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.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
240
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Ed goes
|
241
|
+
to court</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
242
|
+
\ <title>Ed goes to court</title>\n </titleInfo>\n <titleInfo type=\"alternative\"
|
243
|
+
displayLabel=\"Copyright application title:\">\n <title>S#*! my dad says</title>\n
|
244
|
+
\ <partName>Ed goes to court</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
245
|
+
\ <title>Shit my dad says</title>\n <partName>Ed goes to court</partName>\n
|
246
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
|
247
|
+
says</title>\n <partName>Ed goes to court</partName>\n </titleInfo>\n
|
248
|
+
\ <name type=\"corporate\">\n <namePart>Copyright Collection (Library of
|
249
|
+
Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
|
250
|
+
\ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
|
251
|
+
comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
|
252
|
+
television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
|
253
|
+
type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2011-01-27</dateIssued>\n
|
254
|
+
\ <dateIssued encoding=\"marc\">2011</dateIssued>\n <dateCaptured encoding=\"iso8601\">20110127</dateCaptured>\n
|
255
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
256
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
257
|
+
\ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
258
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
259
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
260
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"As the newly-elected
|
261
|
+
head of the Homeowners' Association, Ed is more concerned with pursuing his
|
262
|
+
neighbor Rosemary Pernworth than passing any legislation\"--Wikipedia WWW
|
263
|
+
site, viewed June 9, 2014.</abstract>\n <note type=\"statement of responsibility\"
|
264
|
+
altRepGroup=\"00\">directed by Ted Wass ; written by Jeff Astrof.</note>\n
|
265
|
+
\ <note>Episode no. 15.</note>\n <note>Production no. 2J5665.</note>\n <note>Sources
|
266
|
+
used: video container; Copyright catalog online; Copyright description; Wikipedia
|
267
|
+
WWW site, viewed June 9, 2014.</note>\n <note type=\"performers\">William
|
268
|
+
Shatner.</note>\n <note type=\"performers\">Guest stars: Jean Smart, Tila
|
269
|
+
Tequila.</note>\n <classification authority=\"lcc\">VAQ 1399 (viewing copy)</classification>\n
|
270
|
+
\ <identifier type=\"lccn\">2014603999</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
271
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
272
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
|
273
|
+
\ <recordChangeDate encoding=\"iso8601\">20140609100925.0</recordChangeDate>\n
|
274
|
+
\ <recordIdentifier>18181286</recordIdentifier>\n <recordOrigin>Converted
|
275
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
276
|
+
1.94 2014/02/21)</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
|
277
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
278
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
279
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Family dinner
|
280
|
+
for schmucks</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
281
|
+
\ <title>Family dinner for schmucks</title>\n </titleInfo>\n <titleInfo
|
282
|
+
type=\"alternative\" displayLabel=\"Copyright application title:\">\n <title>S#*!
|
283
|
+
my dad says</title>\n <partName>Family dinner for schmucks</partName>\n
|
284
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit my dad
|
285
|
+
says</title>\n <partName>Family dinner for schmucks</partName>\n </titleInfo>\n
|
286
|
+
\ <titleInfo type=\"alternative\">\n <title>Bleep my dad says</title>\n
|
287
|
+
\ <partName>Family dinner for schmucks</partName>\n </titleInfo>\n <name
|
288
|
+
type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
|
289
|
+
\ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
290
|
+
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
291
|
+
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
292
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
293
|
+
\ </place>\n <dateIssued>2010-12-16</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
|
294
|
+
\ <dateCaptured encoding=\"iso8601\">20101216</dateCaptured>\n <issuance>monographic</issuance>\n
|
295
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
296
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
297
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
298
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
299
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"Bonnie tries to start
|
300
|
+
a family tradition. Henry gets in trouble for taking the blame for a friend's
|
301
|
+
mistake. Ed makes a friend at the hospital with his personality\"--Wikipedia
|
302
|
+
WWW site, viewed June 9, 2014.</abstract>\n <note type=\"statement of responsibility\"
|
303
|
+
altRepGroup=\"00\">directed by Rob Schiller ; written by Chris Kelly.</note>\n
|
304
|
+
\ <note>Episode no. 11.</note>\n <note>Production no. 2J5661.</note>\n <note>Sources
|
305
|
+
used: video container; Copyright catalog online; Copyright description; Wikipedia
|
306
|
+
WWW site, viewed June 9, 2014.</note>\n <note type=\"performers\">William
|
307
|
+
Shatner.</note>\n <note type=\"performers\">Guest stars: Andrew J. West,
|
308
|
+
Todd Stashwick.</note>\n <classification authority=\"lcc\">VAQ 1396 (viewing
|
309
|
+
copy)</classification>\n <identifier type=\"lccn\">2014603961</identifier>\n
|
310
|
+
\ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>amim</descriptionStandard>\n
|
311
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
312
|
+
\ <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n <recordChangeDate
|
313
|
+
encoding=\"iso8601\">20140609081554.0</recordChangeDate>\n <recordIdentifier>18181095</recordIdentifier>\n
|
314
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
315
|
+
1.94 2014/02/21)</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
|
316
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
317
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
318
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Goodson
|
319
|
+
goes deep</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
320
|
+
\ <title>Goodson goes deep</title>\n </titleInfo>\n <titleInfo type=\"alternative\"
|
321
|
+
displayLabel=\"Copyright application title:\">\n <title>S#*! my dad says</title>\n
|
322
|
+
\ <partName>Goodson goes deep</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
323
|
+
\ <title>Shit my dad says</title>\n <partName>Goodson goes deep</partName>\n
|
324
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
|
325
|
+
says</title>\n <partName>Goodson goes deep</partName>\n </titleInfo>\n
|
326
|
+
\ <name type=\"corporate\">\n <namePart>Copyright Collection (Library of
|
327
|
+
Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
|
328
|
+
\ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
|
329
|
+
comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
|
330
|
+
television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
|
331
|
+
type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2011-01-06</dateIssued>\n
|
332
|
+
\ <dateIssued encoding=\"marc\">2011</dateIssued>\n <dateCaptured encoding=\"iso8601\">20110106</dateCaptured>\n
|
333
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
334
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
335
|
+
\ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
336
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
337
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
338
|
+
\ </physicalDescription>\n <note type=\"statement of responsibility\" altRepGroup=\"00\">directed
|
339
|
+
by Steve Zuckerman ; written by Jonathan Goldstein.</note>\n <note>Production
|
340
|
+
no. 2J5662.</note>\n <note>Sources used: video container; Copyright catalog
|
341
|
+
online; Copyright description; Wikipedia WWW site, viewed June 4, 2014.</note>\n
|
342
|
+
\ <note type=\"performers\">William Shatner, Jonathan Sadowski, Will Sasso.</note>\n
|
343
|
+
\ <classification authority=\"lcc\">VAQ 3026 (viewing copy)</classification>\n
|
344
|
+
\ <identifier type=\"lccn\">2014604744</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
345
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
346
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n
|
347
|
+
\ <recordChangeDate encoding=\"iso8601\">20140605152717.0</recordChangeDate>\n
|
348
|
+
\ <recordIdentifier>18176790</recordIdentifier>\n <recordOrigin>Converted
|
349
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
350
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>10</zs:recordPosition></zs:record></zs:records><zs:nextRecordPosition>11</zs:nextRecordPosition></zs:searchRetrieveResponse>\n"
|
351
|
+
http_version: '1.1'
|
352
|
+
recorded_at: Tue, 12 Aug 2014 15:35:24 GMT
|
353
|
+
recorded_with: VCR 2.9.2
|