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
@@ -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&startRecord=1&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: Mon, 11 Aug 2014 06:53:29 GMT
|
353
|
+
recorded_with: VCR 2.9.2
|
data/spec/cassette_library/LocSearchController/GET_index/should_get_index_with_page_parameter.yml
ADDED
@@ -0,0 +1,415 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&startRecord=11&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
|
+
- '33710'
|
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>$#*! my dad says</title>\n <partName>Lock and
|
33
|
+
load</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Lock
|
34
|
+
and load</title>\n </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
35
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>Lock
|
36
|
+
& load</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
37
|
+
\ <title>Shit my dad says</title>\n <partName>Lock and load</partName>\n
|
38
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
|
39
|
+
says</title>\n <partName>Lock and load</partName>\n </titleInfo>\n <name
|
40
|
+
type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
|
41
|
+
\ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
42
|
+
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
43
|
+
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
44
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
45
|
+
\ </place>\n <dateIssued>2011-02-10</dateIssued>\n <dateIssued encoding=\"marc\">2011</dateIssued>\n
|
46
|
+
\ <dateCaptured encoding=\"iso8601\">20110210</dateCaptured>\n <issuance>monographic</issuance>\n
|
47
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
48
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
49
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
50
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
51
|
+
\ </physicalDescription>\n <note type=\"statement of responsibility\" altRepGroup=\"00\">directed
|
52
|
+
by Steve Zuckerman ; written by Chris Kelly.</note>\n <note>Production no.
|
53
|
+
2J5667.</note>\n <note>Sources used: video container; Copyright catalog online;
|
54
|
+
Copyright description; Wikipedia WWW site, viewed June 4, 2014.</note>\n <note
|
55
|
+
type=\"performers\">William Shatner, Jonathan Sadowski, Will Sasso.</note>\n
|
56
|
+
\ <classification authority=\"lcc\">VAQ 3028 (viewing copy)</classification>\n
|
57
|
+
\ <identifier type=\"lccn\">2014604746</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
58
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
59
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n
|
60
|
+
\ <recordChangeDate encoding=\"iso8601\">20140605153440.0</recordChangeDate>\n
|
61
|
+
\ <recordIdentifier>18176812</recordIdentifier>\n <recordOrigin>Converted
|
62
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
63
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>11</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
64
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
65
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
66
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Make a WISiH</partName>\n
|
67
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Make a WISiH</title>\n
|
68
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
69
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>Make
|
70
|
+
a WISiH</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit
|
71
|
+
my dad says</title>\n <partName>Make a WISiH</partName>\n </titleInfo>\n
|
72
|
+
\ <titleInfo type=\"alternative\">\n <title>Bleep my dad says</title>\n
|
73
|
+
\ <partName>Make a WISiH</partName>\n </titleInfo>\n <name type=\"corporate\">\n
|
74
|
+
\ <namePart>Copyright Collection (Library of Congress)</namePart>\n </name>\n
|
75
|
+
\ <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
76
|
+
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
77
|
+
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
78
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
79
|
+
\ </place>\n <dateIssued>2010-11-18</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
|
80
|
+
\ <dateCaptured encoding=\"iso8601\">20101118</dateCaptured>\n <issuance>monographic</issuance>\n
|
81
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
82
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
83
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
84
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
85
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"Ed and Henry are
|
86
|
+
watching TV when an infomercial comes on for wish a self help guru, Ed asks
|
87
|
+
who would fall for that kind of scam when Vince and Bonny walk in saying they
|
88
|
+
have quit their real estate jobs to start a real estate business because they
|
89
|
+
wished for it. \"--Wikipedia WWW site, viewed June 9, 2014.</abstract>\n <note
|
90
|
+
type=\"statement of responsibility\" altRepGroup=\"00\">directed by Rob Schiller
|
91
|
+
; written by Jeff Astrof.</note>\n <note>Episode no. 9.</note>\n <note>Production
|
92
|
+
no. 2J5660.</note>\n <note>Sources used: video container; Copyright catalog
|
93
|
+
online; Copyright description; Wikipedia WWW site, viewed June 9, 2014.</note>\n
|
94
|
+
\ <note type=\"performers\">William Shatner.</note>\n <note type=\"performers\">Guest
|
95
|
+
star: Cybill Shepherd.</note>\n <classification authority=\"lcc\">VAP 8700
|
96
|
+
(viewing copy)</classification>\n <identifier type=\"lccn\">2014603960</identifier>\n
|
97
|
+
\ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>amim</descriptionStandard>\n
|
98
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
99
|
+
\ <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n <recordChangeDate
|
100
|
+
encoding=\"iso8601\">20140609135602.0</recordChangeDate>\n <recordIdentifier>18181741</recordIdentifier>\n
|
101
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
102
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>12</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
103
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
104
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
105
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Not without
|
106
|
+
my jacket</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
107
|
+
\ <title>Not without my jacket</title>\n </titleInfo>\n <titleInfo type=\"alternative\"
|
108
|
+
displayLabel=\"Copyright application title:\">\n <title>S#*! my dad says</title>\n
|
109
|
+
\ <partName>Not without my jacket</partName>\n </titleInfo>\n <titleInfo
|
110
|
+
type=\"alternative\">\n <title>Shit my dad says</title>\n <partName>Not
|
111
|
+
without my jacket</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
112
|
+
\ <title>Bleep my dad says</title>\n <partName>Not without my jacket</partName>\n
|
113
|
+
\ </titleInfo>\n <name type=\"corporate\">\n <namePart>Copyright Collection
|
114
|
+
(Library of Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
|
115
|
+
\ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
|
116
|
+
comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
|
117
|
+
television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
|
118
|
+
type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2010-10-21</dateIssued>\n
|
119
|
+
\ <dateIssued encoding=\"marc\">2010</dateIssued>\n <dateCaptured encoding=\"iso8601\">20101021</dateCaptured>\n
|
120
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
121
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
122
|
+
\ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
123
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
124
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
125
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"Ed gets upset when
|
126
|
+
Henry uses his coffee mug without permission, explaining that it's his rule
|
127
|
+
that someone must clear it with him before borrowing something (and he never
|
128
|
+
breaks his rules). However, Ed must go to great lengths to retrieve a jacket
|
129
|
+
of Henry's that he accidentally lent out without asking, to avoid looking
|
130
|
+
like a hypocrite\"--Wikipedia WWW site, viewed June 9, 2014.</abstract>\n
|
131
|
+
\ <note type=\"statement of responsibility\" altRepGroup=\"00\">directed by
|
132
|
+
Gail Mancuso Justin ; written by Halpern and Patrick Schumaker.</note>\n <note>Episode
|
133
|
+
no. 5.</note>\n <note>Production no. 2J5655.</note>\n <note>Sources used:
|
134
|
+
video container; Copyright catalog online; Copyright description; Wikipedia
|
135
|
+
WWW site, viewed June 9, 2014.</note>\n <note type=\"performers\">William
|
136
|
+
Shatner.</note>\n <note type=\"performers\">Guest stars: Bob Stephenson,
|
137
|
+
Brooklyn Sudano, Paula Calelisbe, Preston Jones.</note>\n <classification
|
138
|
+
authority=\"lcc\">VAP 8697 (viewing copy)</classification>\n <identifier
|
139
|
+
type=\"lccn\">2014603697</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
140
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
141
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
|
142
|
+
\ <recordChangeDate encoding=\"iso8601\">20140609110500.0</recordChangeDate>\n
|
143
|
+
\ <recordIdentifier>18181445</recordIdentifier>\n <recordOrigin>Converted
|
144
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
145
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>13</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
146
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
147
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
148
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>[Pilot]</partName>\n
|
149
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
150
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>Pilot</partName>\n
|
151
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit my dad
|
152
|
+
says</title>\n <partName>Pilot</partName>\n </titleInfo>\n <titleInfo
|
153
|
+
type=\"alternative\">\n <title>Bleep my dad says</title>\n <partName>Pilot</partName>\n
|
154
|
+
\ </titleInfo>\n <name type=\"corporate\">\n <namePart>Copyright Collection
|
155
|
+
(Library of Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
|
156
|
+
\ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
|
157
|
+
comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
|
158
|
+
television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
|
159
|
+
type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2010-09-23</dateIssued>\n
|
160
|
+
\ <dateIssued encoding=\"marc\">2010</dateIssued>\n <dateCaptured encoding=\"iso8601\">20100923</dateCaptured>\n
|
161
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
162
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
163
|
+
\ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
164
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
165
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
166
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"In the series pilot,
|
167
|
+
Henry (Jonathan Sadowski) gets laid off from his job and decides to see if
|
168
|
+
he can borrow money from his father Ed (William Shatner). Meanwhile Ed must
|
169
|
+
work to get his driver's license again after he forgot to renew it. Two other
|
170
|
+
main characters, Vince (Will Sasso), Henry's brother and his wife Bonnie (Nicole
|
171
|
+
Sullivan) also visit Ed and Henry from time to time\"--Wikipedia WWW site,
|
172
|
+
viewed June 6, 2014.</abstract>\n <note type=\"statement of responsibility\"
|
173
|
+
altRepGroup=\"00\">directed by James Burrows ; written by David Kohan, Max
|
174
|
+
Mutchnick, Justin Halpern and Patrick Schumacker.</note>\n <note>Episode
|
175
|
+
no. 1.</note>\n <note>Production no. 2J5651.</note>\n <note>Sources used:
|
176
|
+
video container; Copyright catalog online; Copyright description; Wikipedia
|
177
|
+
WWW site, viewed June 6, 2014.</note>\n <note type=\"performers\">William
|
178
|
+
Shatner, Jonathan Sadowski, Will Sasso, Nocole Sullivan.</note>\n <classification
|
179
|
+
authority=\"lcc\">VAP 8689 (viewing copy)</classification>\n <identifier
|
180
|
+
type=\"lccn\">2014603689</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
181
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
182
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140606</recordCreationDate>\n
|
183
|
+
\ <recordChangeDate encoding=\"iso8601\">20140609081428.0</recordChangeDate>\n
|
184
|
+
\ <recordIdentifier>18179971</recordIdentifier>\n <recordOrigin>Converted
|
185
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
186
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>14</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
187
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
188
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
189
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>The better
|
190
|
+
father</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Better
|
191
|
+
father</title>\n </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
192
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>The
|
193
|
+
better father</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
194
|
+
\ <title>Shit my dad says</title>\n <partName>The better father</partName>\n
|
195
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
|
196
|
+
says</title>\n <partName>The better father</partName>\n </titleInfo>\n
|
197
|
+
\ <name type=\"corporate\">\n <namePart>Copyright Collection (Library of
|
198
|
+
Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
|
199
|
+
\ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
|
200
|
+
comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
|
201
|
+
television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
|
202
|
+
type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2011-01-13</dateIssued>\n
|
203
|
+
\ <dateIssued encoding=\"marc\">2011</dateIssued>\n <dateCaptured encoding=\"iso8601\">20110113</dateCaptured>\n
|
204
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
205
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
206
|
+
\ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
207
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
208
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
209
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"When Bonnie and Vince
|
210
|
+
find out the Reverend who married them was a fake, they decide to throw another
|
211
|
+
wedding. Bonnie invites her father, Terry (Ed Begley, Jr.), who failed to
|
212
|
+
show up at her last wedding because of a gambling problem. When he says he
|
213
|
+
has changed his life, Ed finds him gambling away the money for food for the
|
214
|
+
wedding. Meanwhile, Vince is having problems finding a tuxedo for his wedding.
|
215
|
+
Then when Ed helps Bonnie's father win the money back, Bonnie's father finds
|
216
|
+
another gambling chip and fails to show up at his daughter's wedding again.
|
217
|
+
The episode ends with Ed walking Bonnie down the aisle\"--Wikipedia WWW site,
|
218
|
+
viewed June 9, 2014.</abstract>\n <note type=\"statement of responsibility\"
|
219
|
+
altRepGroup=\"00\">directed by Peter Bonerz ; written by Jeff Astrof.</note>\n
|
220
|
+
\ <note>Episode no. 13.</note>\n <note>Production no. 2J5663.</note>\n <note>Sources
|
221
|
+
used: video container; Copyright catalog online; Copyright description; Wikipedia
|
222
|
+
WWW site, viewed June 9, 2014.</note>\n <note type=\"performers\">William
|
223
|
+
Shatner.</note>\n <note type=\"performers\">Guest star: Ed Begley, Jr.</note>\n
|
224
|
+
\ <classification authority=\"lcc\">VAQ 1397 (viewing copy)</classification>\n
|
225
|
+
\ <identifier type=\"lccn\">2014603997</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
226
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
227
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
|
228
|
+
\ <recordChangeDate encoding=\"iso8601\">20140609083946.0</recordChangeDate>\n
|
229
|
+
\ <recordIdentifier>18181125</recordIdentifier>\n <recordOrigin>Converted
|
230
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
231
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>15</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
232
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
233
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
234
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>The manly
|
235
|
+
thing to do</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
236
|
+
\ <title>Manly thing to do</title>\n </titleInfo>\n <titleInfo type=\"alternative\"
|
237
|
+
displayLabel=\"Copyright application title:\">\n <title>S#*! my dad says</title>\n
|
238
|
+
\ <partName>The manly thing to do</partName>\n </titleInfo>\n <titleInfo
|
239
|
+
type=\"alternative\">\n <title>Shit my dad says</title>\n <partName>The
|
240
|
+
manly thing to do</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
241
|
+
\ <title>Bleep my dad says</title>\n <partName>The manly thing to do</partName>\n
|
242
|
+
\ </titleInfo>\n <name type=\"corporate\">\n <namePart>Copyright Collection
|
243
|
+
(Library of Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
|
244
|
+
\ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
|
245
|
+
comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
|
246
|
+
television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
|
247
|
+
type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2010-11-11</dateIssued>\n
|
248
|
+
\ <dateIssued encoding=\"marc\">2010</dateIssued>\n <dateCaptured encoding=\"iso8601\">20101111</dateCaptured>\n
|
249
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
250
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
251
|
+
\ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
252
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
253
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
254
|
+
\ </physicalDescription>\n <note type=\"statement of responsibility\" altRepGroup=\"00\">directed
|
255
|
+
by Gail Mancuso ; written by Justin Halpern and Patrick Schumacker.</note>\n
|
256
|
+
\ <note>Production no. 2J5659.</note>\n <note>Sources used: video container;
|
257
|
+
Copyright catalog online; Copyright description; Wikipedia WWW site, viewed
|
258
|
+
June 4, 2014.</note>\n <note type=\"performers\">William Shatner, Jonathan
|
259
|
+
Sadowski, Will Sasso.</note>\n <classification authority=\"lcc\">VAQ 3025
|
260
|
+
(viewing copy)</classification>\n <identifier type=\"lccn\">2014604743</identifier>\n
|
261
|
+
\ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>amim</descriptionStandard>\n
|
262
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
263
|
+
\ <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n <recordChangeDate
|
264
|
+
encoding=\"iso8601\">20140605152553.0</recordChangeDate>\n <recordIdentifier>18176777</recordIdentifier>\n
|
265
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
266
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>16</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
267
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
268
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
269
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>The truth
|
270
|
+
about dads and moms</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
271
|
+
\ <title>Truth about dads and moms</title>\n </titleInfo>\n <titleInfo
|
272
|
+
type=\"alternative\" displayLabel=\"Copyright application title:\">\n <title>S#*!
|
273
|
+
my dad says</title>\n <partName>The truth about dads and moms</partName>\n
|
274
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit my dad
|
275
|
+
says</title>\n <partName>The truth about dads and moms</partName>\n </titleInfo>\n
|
276
|
+
\ <titleInfo type=\"alternative\">\n <title>Bleep my dad says</title>\n
|
277
|
+
\ <partName>The truth about dads and moms</partName>\n </titleInfo>\n <name
|
278
|
+
type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
|
279
|
+
\ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
280
|
+
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
281
|
+
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
282
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
283
|
+
\ </place>\n <dateIssued>2010-10-07</dateIssued>\n <dateIssued encoding=\"marc\">2010</dateIssued>\n
|
284
|
+
\ <dateCaptured encoding=\"iso8601\">20101007</dateCaptured>\n <issuance>monographic</issuance>\n
|
285
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
286
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
287
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
288
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
289
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"After Ed takes Henry
|
290
|
+
out to an early dinner one night, they bump into Tim (Tim Bagley), who was
|
291
|
+
fired for forging Ed's driver's test. Henry disagrees with Ed on what should
|
292
|
+
be done to fix it. Meanwhile Bonnie gets an expensive make-up job and is determined
|
293
|
+
to make it last to get her money out it. Also Vince tells Henry of what really
|
294
|
+
happened when they were younger\"--Wikipedia WWW site, viewed June 9, 2014.</abstract>\n
|
295
|
+
\ <note type=\"statement of responsibility\" altRepGroup=\"00\">directed by
|
296
|
+
\ Rob Schiller ; written by Erin Ehrlich.</note>\n <note>Episode no. 3.</note>\n
|
297
|
+
\ <note>Production no. 2J5633.</note>\n <note>Sources used: video container;
|
298
|
+
Copyright catalog online; Copyright description; Wikipedia WWW site, viewed
|
299
|
+
June 9, 2014.</note>\n <note type=\"performers\">William Shatner, Tim Bagley.</note>\n
|
300
|
+
\ <classification authority=\"lcc\">VAP 8696 (viewing copy)</classification>\n
|
301
|
+
\ <identifier type=\"lccn\">2014603696</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
302
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
303
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n
|
304
|
+
\ <recordChangeDate encoding=\"iso8601\">20140609105314.0</recordChangeDate>\n
|
305
|
+
\ <recordIdentifier>18181426</recordIdentifier>\n <recordOrigin>Converted
|
306
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
307
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>17</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
308
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
309
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
310
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Well suitored</partName>\n
|
311
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Well suitored</title>\n
|
312
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
313
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>Well
|
314
|
+
suitored</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
315
|
+
\ <title>Shit my dad says</title>\n <partName>Well suitored</partName>\n
|
316
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
|
317
|
+
says</title>\n <partName>Well suitored</partName>\n </titleInfo>\n <name
|
318
|
+
type=\"corporate\">\n <namePart>Copyright Collection (Library of Congress)</namePart>\n
|
319
|
+
\ </name>\n <typeOfResource>moving image</typeOfResource>\n <genre authority=\"marcgt\">motion
|
320
|
+
picture</genre>\n <genre authority=\"lcgft\">Situation comedies (Television
|
321
|
+
programs)</genre>\n <genre authority=\"lcgft\">Fiction television programs.</genre>\n
|
322
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n
|
323
|
+
\ </place>\n <dateIssued>2011-02-03</dateIssued>\n <dateIssued encoding=\"marc\">2011</dateIssued>\n
|
324
|
+
\ <dateCaptured encoding=\"iso8601\">20110203</dateCaptured>\n <issuance>monographic</issuance>\n
|
325
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
326
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
327
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
328
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
329
|
+
\ </physicalDescription>\n <note type=\"statement of responsibility\" altRepGroup=\"00\">directed
|
330
|
+
by Ted Wass ; written by Michael Lisbe and Nate Reger.</note>\n <note>Production
|
331
|
+
no. 2J5666.</note>\n <note>Sources used: video container; Copyright catalog
|
332
|
+
online; Copyright description; Wikipedia WWW site, viewed June 4, 2014.</note>\n
|
333
|
+
\ <note type=\"performers\">William Shatner, Jonathan Sadowski, Will Sasso.</note>\n
|
334
|
+
\ <classification authority=\"lcc\">VAQ 3027 (viewing copy)</classification>\n
|
335
|
+
\ <identifier type=\"lccn\">2014604745</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
336
|
+
\ <descriptionStandard>amim</descriptionStandard>\n <recordContentSource
|
337
|
+
authority=\"marcorg\">DLC</recordContentSource>\n <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n
|
338
|
+
\ <recordChangeDate encoding=\"iso8601\">20140605153100.0</recordChangeDate>\n
|
339
|
+
\ <recordIdentifier>18176801</recordIdentifier>\n <recordOrigin>Converted
|
340
|
+
from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
341
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>18</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
342
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
343
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
344
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Who's your
|
345
|
+
daddy?</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Who's
|
346
|
+
your daddy?</title>\n </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
347
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>Who's
|
348
|
+
your daddy?</partName>\n </titleInfo>\n <titleInfo type=\"alternative\">\n
|
349
|
+
\ <title>Shit my dad says</title>\n <partName>Who's your daddy?</partName>\n
|
350
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Bleep my dad
|
351
|
+
says</title>\n <partName>Who's your daddy?</partName>\n </titleInfo>\n
|
352
|
+
\ <name type=\"corporate\">\n <namePart>Copyright Collection (Library of
|
353
|
+
Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
|
354
|
+
\ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
|
355
|
+
comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
|
356
|
+
television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
|
357
|
+
type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2011-02-17</dateIssued>\n
|
358
|
+
\ <dateIssued encoding=\"marc\">2011</dateIssued>\n <dateCaptured encoding=\"iso8601\">20110217</dateCaptured>\n
|
359
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
360
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
361
|
+
\ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
362
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
363
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
364
|
+
\ </physicalDescription>\n <abstract type=\"Summary\">\"After meeting Henry's
|
365
|
+
new girlfriend, Ed realizes he has a strange connection with her\"--Wikipedia
|
366
|
+
WWW site, viewed June 9, 2014.</abstract>\n <note type=\"statement of responsibility\"
|
367
|
+
altRepGroup=\"00\">directed by Steve Zuckerman ; written by Steve Gabriel.</note>\n
|
368
|
+
\ <note>Episode no. 18.</note>\n <note>Production no. 2J5668.</note>\n <note>Sources
|
369
|
+
used: video container; Copyright catalog online; Copyright description; Wikipedia
|
370
|
+
WWW site, viewed June 9, 2014.</note>\n <note type=\"performers\">William
|
371
|
+
Shatner.</note>\n <note type=\"performers\">Guest stars: Riki Lindhome, Camille
|
372
|
+
Donatacci Grammer.</note>\n <classification authority=\"lcc\">VAQ 1400 (viewing
|
373
|
+
copy)</classification>\n <identifier type=\"lccn\">2014603989</identifier>\n
|
374
|
+
\ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>amim</descriptionStandard>\n
|
375
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
376
|
+
\ <recordCreationDate encoding=\"marc\">140609</recordCreationDate>\n <recordChangeDate
|
377
|
+
encoding=\"iso8601\">20140609104408.0</recordChangeDate>\n <recordIdentifier>18181381</recordIdentifier>\n
|
378
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
379
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>19</zs:recordPosition></zs:record><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
380
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
381
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
382
|
+
\ <titleInfo>\n <title>$#*! my dad says</title>\n <partName>Wi-fight</partName>\n
|
383
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Wi-fight</title>\n
|
384
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\" displayLabel=\"Copyright
|
385
|
+
application title:\">\n <title>S#*! my dad says</title>\n <partName>Wi-fight</partName>\n
|
386
|
+
\ </titleInfo>\n <titleInfo type=\"alternative\">\n <title>Shit my dad
|
387
|
+
says</title>\n <partName>Wi-fight</partName>\n </titleInfo>\n <titleInfo
|
388
|
+
type=\"alternative\">\n <title>Bleep my dad says</title>\n <partName>Wi-fight</partName>\n
|
389
|
+
\ </titleInfo>\n <name type=\"corporate\">\n <namePart>Copyright Collection
|
390
|
+
(Library of Congress)</namePart>\n </name>\n <typeOfResource>moving image</typeOfResource>\n
|
391
|
+
\ <genre authority=\"marcgt\">motion picture</genre>\n <genre authority=\"lcgft\">Situation
|
392
|
+
comedies (Television programs)</genre>\n <genre authority=\"lcgft\">Fiction
|
393
|
+
television programs.</genre>\n <originInfo>\n <place>\n <placeTerm
|
394
|
+
type=\"code\" authority=\"marccountry\">xxu</placeTerm>\n </place>\n <dateIssued>2010-09-30</dateIssued>\n
|
395
|
+
\ <dateIssued encoding=\"marc\">2010</dateIssued>\n <dateCaptured encoding=\"iso8601\">20100930</dateCaptured>\n
|
396
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
397
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
398
|
+
\ <physicalDescription>\n <form authority=\"marccategory\">videorecording</form>\n
|
399
|
+
\ <form authority=\"marcsmd\">videocassette</form>\n <extent>viewing
|
400
|
+
copy 1 videocassette of 1 (Betacam SP) (30 min.) : sd., col. ; 1/2 in.</extent>\n
|
401
|
+
\ </physicalDescription>\n <note type=\"statement of responsibility\" altRepGroup=\"00\">directed
|
402
|
+
by Gail Mancuso ; written by Jeff Astrof.</note>\n <note>Production no. 2J5652.</note>\n
|
403
|
+
\ <note>Sources used: video container; Copyright catalog online; Copyright
|
404
|
+
description; Wikipedia WWW site, viewed June 4, 2014.</note>\n <note type=\"performers\">William
|
405
|
+
Shatner, Jonathan Sadowski, Will Sasso.</note>\n <classification authority=\"lcc\">VAQ
|
406
|
+
3022 (viewing copy)</classification>\n <identifier type=\"lccn\">2014604740</identifier>\n
|
407
|
+
\ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <descriptionStandard>amim</descriptionStandard>\n
|
408
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
409
|
+
\ <recordCreationDate encoding=\"marc\">140604</recordCreationDate>\n <recordChangeDate
|
410
|
+
encoding=\"iso8601\">20140605151844.0</recordChangeDate>\n <recordIdentifier>18176724</recordIdentifier>\n
|
411
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
412
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>20</zs:recordPosition></zs:record></zs:records><zs:nextRecordPosition>21</zs:nextRecordPosition></zs:searchRetrieveResponse>\n"
|
413
|
+
http_version: '1.1'
|
414
|
+
recorded_at: Thu, 14 Aug 2014 13:17:13 GMT
|
415
|
+
recorded_with: VCR 2.9.2
|