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,111 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&query=bath.lccn=2007012024&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
|
+
- '6909'
|
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>Everything is miscellaneous</title>\n <subTitle>the
|
33
|
+
power of the new digital disorder</subTitle>\n </titleInfo>\n <name type=\"personal\"
|
34
|
+
usage=\"primary\">\n <namePart>Weinberger, David</namePart>\n <namePart
|
35
|
+
type=\"date\">1950-</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n
|
36
|
+
\ <genre authority=\"marcgt\">bibliography</genre>\n <originInfo>\n <place>\n
|
37
|
+
\ <placeTerm type=\"code\" authority=\"marccountry\">nyu</placeTerm>\n
|
38
|
+
\ </place>\n <place>\n <placeTerm type=\"text\">New York</placeTerm>\n
|
39
|
+
\ </place>\n <publisher>Times Books</publisher>\n <dateIssued>2007</dateIssued>\n
|
40
|
+
\ <edition>1st ed.</edition>\n <issuance>monographic</issuance>\n </originInfo>\n
|
41
|
+
\ <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
42
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
|
43
|
+
\ <extent>277 p. : ill. ; 25 cm.</extent>\n </physicalDescription>\n <abstract
|
44
|
+
type=\"Summary\">Philosopher Weinberger shows how the digital revolution is
|
45
|
+
radically changing the way we make sense of our lives. Human beings constantly
|
46
|
+
collect, label, and organize data--but today, the shift from the physical
|
47
|
+
to the digital is mixing, burning, and ripping our lives apart. In the past,
|
48
|
+
everything had its one place--the physical world demanded it--but now everything
|
49
|
+
has its places: multiple categories, multiple shelves. Everything is suddenly
|
50
|
+
miscellaneous. Weinberger charts the new principles of digital order that
|
51
|
+
are remaking business, education, politics, science, and culture. He examines
|
52
|
+
how Rand McNally decides what information not to include in a physical map
|
53
|
+
(and why Google Earth is winning that battle), how Staples stores emulate
|
54
|
+
online shopping to increase sales, why your children's teachers will stop
|
55
|
+
having them memorize facts, and how the shift to digital music stands as the
|
56
|
+
model for the future.--From publisher description.</abstract>\n <abstract
|
57
|
+
type=\"Summary\">From A to Z, Everything Is Miscellaneous will completely
|
58
|
+
reshape the way you think - and what you know - about the world. Includes
|
59
|
+
information on alphabetical order, Amaxon.com, animals, Aristotle, authority,
|
60
|
+
Bettmann Archive, blogs (weblogs), books, broadcasting, British Broadcasting
|
61
|
+
Corporation (BBC), business, card catalog, categories and categorization,
|
62
|
+
clusters, companies, Colon Classification, conversation, Melvil Dewey, Dewey
|
63
|
+
Decimal Classification system, Encyclopaedia Britannica, encyclopedia, essentialism,
|
64
|
+
experts, faceted classification system, first order of order, Flickr.com,
|
65
|
+
Google, Great Books of the Western World, ancient Greeks, health and medical
|
66
|
+
information, identifiers, index, inventory tracking, knowledge, labels, leaf
|
67
|
+
and leaves, libraries, Library of Congress, links, Carolus Linnaeus, lumping
|
68
|
+
and splitting, maps and mapping, marketing, meaning, metadata, multiple listing
|
69
|
+
services (MLS), names of people, neutrality or neutral point of view, New
|
70
|
+
York Public Library, Online Computer Library Center (OCLC), order and organization,
|
71
|
+
people, physical space, everything having place, Plato, race, S.R. Ranganathan,
|
72
|
+
Eleanor Rosch, Joshua Schacter, science, second order of order, simplicity,
|
73
|
+
social constructivism, social knowledge, social networks, sorting, species,
|
74
|
+
standardization, tags, taxonomies, third order of roder, topical categorization,
|
75
|
+
tree, Uniform Product Code (UPC), users, Jimmy Wales, web, Wikipedia, etc.</abstract>\n
|
76
|
+
\ <tableOfContents>The new order of order -- Alphabetization and its discontents
|
77
|
+
-- The geography of knowledge -- Lumps and splits -- The laws of the jungle
|
78
|
+
-- Smart leaves -- Social knowing -- What nothing says -- Messiness as a virtue
|
79
|
+
-- The work of knowledge.</tableOfContents>\n <note type=\"statement of responsibility\"
|
80
|
+
altRepGroup=\"00\">David Weinberger.</note>\n <note type=\"bibliography\">Includes
|
81
|
+
bibliographical references (p. [235]-257) and index.</note>\n <subject authority=\"lcsh\">\n
|
82
|
+
\ <topic>Knowledge management</topic>\n </subject>\n <subject authority=\"lcsh\">\n
|
83
|
+
\ <topic>Information technology</topic>\n <topic>Management</topic>\n
|
84
|
+
\ </subject>\n <subject authority=\"lcsh\">\n <topic>Information technology</topic>\n
|
85
|
+
\ <topic>Social aspects</topic>\n </subject>\n <subject authority=\"lcsh\">\n
|
86
|
+
\ <topic>Personal information management</topic>\n </subject>\n <subject
|
87
|
+
authority=\"lcsh\">\n <topic>Information resources management</topic>\n
|
88
|
+
\ </subject>\n <subject authority=\"lcsh\">\n <topic>Order</topic>\n </subject>\n
|
89
|
+
\ <classification authority=\"lcc\">HD30.2 .W4516 2007</classification>\n
|
90
|
+
\ <classification authority=\"ddc\" edition=\"22\">303.48/33</classification>\n
|
91
|
+
\ <location>\n <url displayLabel=\"Table of contents only\" usage=\"primary
|
92
|
+
display\">http://www.loc.gov/catdir/toc/ecip0714/2007012024.html</url>\n </location>\n
|
93
|
+
\ <location>\n <url displayLabel=\"Contributor biographical information\">http://www.loc.gov/catdir/enhancements/fy0801/2007012024-b.html</url>\n
|
94
|
+
\ </location>\n <location>\n <url displayLabel=\"Sample text\">http://www.loc.gov/catdir/enhancements/fy0801/2007012024-s.html</url>\n
|
95
|
+
\ </location>\n <location>\n <url displayLabel=\"Publisher description\">http://www.loc.gov/catdir/enhancements/fy0801/2007012024-d.html</url>\n
|
96
|
+
\ </location>\n <identifier type=\"isbn\">9780805080438</identifier>\n <identifier
|
97
|
+
type=\"isbn\">0805080430</identifier>\n <identifier type=\"lccn\">2007012024</identifier>\n
|
98
|
+
\ <identifier type=\"oclc\">ocn122291427</identifier>\n <identifier type=\"oclc\">122291427</identifier>\n
|
99
|
+
\ <relatedItem>\n <location>\n <url displayLabel=\"Contributor biographical
|
100
|
+
information\">http://www.loc.gov/catdir/enhancements/fy0801/2007012024-b.html</url>\n
|
101
|
+
\ </location>\n </relatedItem>\n <relatedItem>\n <location>\n <url
|
102
|
+
displayLabel=\"Publisher description\">http://www.loc.gov/catdir/enhancements/fy0801/2007012024-d.html</url>\n
|
103
|
+
\ </location>\n </relatedItem>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
104
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
105
|
+
\ <recordCreationDate encoding=\"marc\">070323</recordCreationDate>\n <recordChangeDate
|
106
|
+
encoding=\"iso8601\">20071005142314.0</recordChangeDate>\n <recordIdentifier>14780655</recordIdentifier>\n
|
107
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
108
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records></zs:searchRetrieveResponse>\n"
|
109
|
+
http_version: '1.1'
|
110
|
+
recorded_at: Fri, 15 Aug 2014 14:24:22 GMT
|
111
|
+
recorded_with: VCR 2.9.2
|
@@ -0,0 +1,113 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&query=bath.lccn=2007012024&version=1.1&operation=searchRetrieve
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
accept-encoding:
|
11
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
12
|
+
accept:
|
13
|
+
- "*/*"
|
14
|
+
user-agent:
|
15
|
+
- Ruby
|
16
|
+
response:
|
17
|
+
status:
|
18
|
+
code: 200
|
19
|
+
message: OK
|
20
|
+
headers:
|
21
|
+
content-length:
|
22
|
+
- '6909'
|
23
|
+
server:
|
24
|
+
- Metaproxy/1.5.3
|
25
|
+
connection:
|
26
|
+
- Keep-Alive
|
27
|
+
content-type:
|
28
|
+
- text/xml
|
29
|
+
body:
|
30
|
+
encoding: UTF-8
|
31
|
+
string: "<?xml version=\"1.0\"?>\n<zs:searchRetrieveResponse xmlns:zs=\"http://www.loc.gov/zing/srw/\"><zs:version>1.1</zs:version><zs:numberOfRecords>1</zs:numberOfRecords><zs:records><zs:record><zs:recordSchema>mods</zs:recordSchema><zs:recordPacking>xml</zs:recordPacking><zs:recordData><mods
|
32
|
+
xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"http://www.loc.gov/mods/v3\"
|
33
|
+
version=\"3.4\" xsi:schemaLocation=\"http://www.loc.gov/mods/v3 http://www.loc.gov/standards/mods/v3/mods-3-4.xsd\">\n
|
34
|
+
\ <titleInfo>\n <title>Everything is miscellaneous</title>\n <subTitle>the
|
35
|
+
power of the new digital disorder</subTitle>\n </titleInfo>\n <name type=\"personal\"
|
36
|
+
usage=\"primary\">\n <namePart>Weinberger, David</namePart>\n <namePart
|
37
|
+
type=\"date\">1950-</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n
|
38
|
+
\ <genre authority=\"marcgt\">bibliography</genre>\n <originInfo>\n <place>\n
|
39
|
+
\ <placeTerm type=\"code\" authority=\"marccountry\">nyu</placeTerm>\n
|
40
|
+
\ </place>\n <place>\n <placeTerm type=\"text\">New York</placeTerm>\n
|
41
|
+
\ </place>\n <publisher>Times Books</publisher>\n <dateIssued>2007</dateIssued>\n
|
42
|
+
\ <edition>1st ed.</edition>\n <issuance>monographic</issuance>\n </originInfo>\n
|
43
|
+
\ <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
44
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
|
45
|
+
\ <extent>277 p. : ill. ; 25 cm.</extent>\n </physicalDescription>\n <abstract
|
46
|
+
type=\"Summary\">Philosopher Weinberger shows how the digital revolution is
|
47
|
+
radically changing the way we make sense of our lives. Human beings constantly
|
48
|
+
collect, label, and organize data--but today, the shift from the physical
|
49
|
+
to the digital is mixing, burning, and ripping our lives apart. In the past,
|
50
|
+
everything had its one place--the physical world demanded it--but now everything
|
51
|
+
has its places: multiple categories, multiple shelves. Everything is suddenly
|
52
|
+
miscellaneous. Weinberger charts the new principles of digital order that
|
53
|
+
are remaking business, education, politics, science, and culture. He examines
|
54
|
+
how Rand McNally decides what information not to include in a physical map
|
55
|
+
(and why Google Earth is winning that battle), how Staples stores emulate
|
56
|
+
online shopping to increase sales, why your children's teachers will stop
|
57
|
+
having them memorize facts, and how the shift to digital music stands as the
|
58
|
+
model for the future.--From publisher description.</abstract>\n <abstract
|
59
|
+
type=\"Summary\">From A to Z, Everything Is Miscellaneous will completely
|
60
|
+
reshape the way you think - and what you know - about the world. Includes
|
61
|
+
information on alphabetical order, Amaxon.com, animals, Aristotle, authority,
|
62
|
+
Bettmann Archive, blogs (weblogs), books, broadcasting, British Broadcasting
|
63
|
+
Corporation (BBC), business, card catalog, categories and categorization,
|
64
|
+
clusters, companies, Colon Classification, conversation, Melvil Dewey, Dewey
|
65
|
+
Decimal Classification system, Encyclopaedia Britannica, encyclopedia, essentialism,
|
66
|
+
experts, faceted classification system, first order of order, Flickr.com,
|
67
|
+
Google, Great Books of the Western World, ancient Greeks, health and medical
|
68
|
+
information, identifiers, index, inventory tracking, knowledge, labels, leaf
|
69
|
+
and leaves, libraries, Library of Congress, links, Carolus Linnaeus, lumping
|
70
|
+
and splitting, maps and mapping, marketing, meaning, metadata, multiple listing
|
71
|
+
services (MLS), names of people, neutrality or neutral point of view, New
|
72
|
+
York Public Library, Online Computer Library Center (OCLC), order and organization,
|
73
|
+
people, physical space, everything having place, Plato, race, S.R. Ranganathan,
|
74
|
+
Eleanor Rosch, Joshua Schacter, science, second order of order, simplicity,
|
75
|
+
social constructivism, social knowledge, social networks, sorting, species,
|
76
|
+
standardization, tags, taxonomies, third order of roder, topical categorization,
|
77
|
+
tree, Uniform Product Code (UPC), users, Jimmy Wales, web, Wikipedia, etc.</abstract>\n
|
78
|
+
\ <tableOfContents>The new order of order -- Alphabetization and its discontents
|
79
|
+
-- The geography of knowledge -- Lumps and splits -- The laws of the jungle
|
80
|
+
-- Smart leaves -- Social knowing -- What nothing says -- Messiness as a virtue
|
81
|
+
-- The work of knowledge.</tableOfContents>\n <note type=\"statement of responsibility\"
|
82
|
+
altRepGroup=\"00\">David Weinberger.</note>\n <note type=\"bibliography\">Includes
|
83
|
+
bibliographical references (p. [235]-257) and index.</note>\n <subject authority=\"lcsh\">\n
|
84
|
+
\ <topic>Knowledge management</topic>\n </subject>\n <subject authority=\"lcsh\">\n
|
85
|
+
\ <topic>Information technology</topic>\n <topic>Management</topic>\n
|
86
|
+
\ </subject>\n <subject authority=\"lcsh\">\n <topic>Information technology</topic>\n
|
87
|
+
\ <topic>Social aspects</topic>\n </subject>\n <subject authority=\"lcsh\">\n
|
88
|
+
\ <topic>Personal information management</topic>\n </subject>\n <subject
|
89
|
+
authority=\"lcsh\">\n <topic>Information resources management</topic>\n
|
90
|
+
\ </subject>\n <subject authority=\"lcsh\">\n <topic>Order</topic>\n </subject>\n
|
91
|
+
\ <classification authority=\"lcc\">HD30.2 .W4516 2007</classification>\n
|
92
|
+
\ <classification authority=\"ddc\" edition=\"22\">303.48/33</classification>\n
|
93
|
+
\ <location>\n <url displayLabel=\"Table of contents only\" usage=\"primary
|
94
|
+
display\">http://www.loc.gov/catdir/toc/ecip0714/2007012024.html</url>\n </location>\n
|
95
|
+
\ <location>\n <url displayLabel=\"Contributor biographical information\">http://www.loc.gov/catdir/enhancements/fy0801/2007012024-b.html</url>\n
|
96
|
+
\ </location>\n <location>\n <url displayLabel=\"Sample text\">http://www.loc.gov/catdir/enhancements/fy0801/2007012024-s.html</url>\n
|
97
|
+
\ </location>\n <location>\n <url displayLabel=\"Publisher description\">http://www.loc.gov/catdir/enhancements/fy0801/2007012024-d.html</url>\n
|
98
|
+
\ </location>\n <identifier type=\"isbn\">9780805080438</identifier>\n <identifier
|
99
|
+
type=\"isbn\">0805080430</identifier>\n <identifier type=\"lccn\">2007012024</identifier>\n
|
100
|
+
\ <identifier type=\"oclc\">ocn122291427</identifier>\n <identifier type=\"oclc\">122291427</identifier>\n
|
101
|
+
\ <relatedItem>\n <location>\n <url displayLabel=\"Contributor biographical
|
102
|
+
information\">http://www.loc.gov/catdir/enhancements/fy0801/2007012024-b.html</url>\n
|
103
|
+
\ </location>\n </relatedItem>\n <relatedItem>\n <location>\n <url
|
104
|
+
displayLabel=\"Publisher description\">http://www.loc.gov/catdir/enhancements/fy0801/2007012024-d.html</url>\n
|
105
|
+
\ </location>\n </relatedItem>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
106
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
107
|
+
\ <recordCreationDate encoding=\"marc\">070323</recordCreationDate>\n <recordChangeDate
|
108
|
+
encoding=\"iso8601\">20071005142314.0</recordChangeDate>\n <recordIdentifier>14780655</recordIdentifier>\n
|
109
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
110
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records></zs:searchRetrieveResponse>\n"
|
111
|
+
http_version: '1.1'
|
112
|
+
recorded_at: Sat, 09 Aug 2014 07:04:31 GMT
|
113
|
+
recorded_with: VCR 2.9.2
|
data/spec/cassette_library/LocSearch/_import_from_sru_response/should_create_lcsh_subjects_only.yml
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&query=bath.lccn=2011281911&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
|
+
- '3199'
|
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>RSpec book</title>\n
|
33
|
+
\ <subTitle>behaviour-driven development with RSpec, Cucumber, and Friends</subTitle>\n
|
34
|
+
\ </titleInfo>\n <name type=\"personal\">\n <namePart>Chelimsky, David.</namePart>\n
|
35
|
+
\ </name>\n <typeOfResource>text</typeOfResource>\n <genre authority=\"marcgt\">bibliography</genre>\n
|
36
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">txu</placeTerm>\n
|
37
|
+
\ </place>\n <place>\n <placeTerm type=\"text\">Lewisville, Tex</placeTerm>\n
|
38
|
+
\ </place>\n <publisher>Pragmatic</publisher>\n <dateIssued>2010</dateIssued>\n
|
39
|
+
\ <issuance>monographic</issuance>\n </originInfo>\n <language>\n <languageTerm
|
40
|
+
authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n </language>\n
|
41
|
+
\ <physicalDescription>\n <form authority=\"marcform\">print</form>\n <extent>xxiii,
|
42
|
+
420 p. : ill. ; 23 cm.</extent>\n </physicalDescription>\n <abstract type=\"Summary\">Provides
|
43
|
+
information on developing Rails 3 applications using RSpec and Cucumber.</abstract>\n
|
44
|
+
\ <note type=\"statement of responsibility\" altRepGroup=\"00\">by David Chelimsky
|
45
|
+
... [et al.].</note>\n <note type=\"bibliography\">Includes bibliographical
|
46
|
+
references (p. [399]-400) and index.</note>\n <subject authority=\"sears\">\n
|
47
|
+
\ <titleInfo>\n <title>Ruby on rails (Electronic resource)</title>\n
|
48
|
+
\ </titleInfo>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Computer
|
49
|
+
software</topic>\n <topic>Development</topic>\n </subject>\n <subject
|
50
|
+
authority=\"lcsh\">\n <topic>Ruby (Computer program language)</topic>\n
|
51
|
+
\ </subject>\n <subject authority=\"sears\">\n <topic>Computer software</topic>\n
|
52
|
+
\ <topic>Design</topic>\n </subject>\n <subject authority=\"sears\">\n
|
53
|
+
\ <topic>Ruby (Computer language)</topic>\n </subject>\n <classification
|
54
|
+
authority=\"lcc\">TK5105.8885.R83 C44 2010</classification>\n <classification
|
55
|
+
authority=\"ddc\" edition=\"22\">005.117</classification>\n <identifier type=\"isbn\">9781934356371
|
56
|
+
(pbk.)</identifier>\n <identifier type=\"isbn\">1934356379 (pbk.)</identifier>\n
|
57
|
+
\ <identifier type=\"lccn\">2011281911</identifier>\n <identifier type=\"oclc\">ocn551430947</identifier>\n
|
58
|
+
\ <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n <recordContentSource
|
59
|
+
authority=\"marcorg\">UKM</recordContentSource>\n <recordCreationDate encoding=\"marc\">110516</recordCreationDate>\n
|
60
|
+
\ <recordChangeDate encoding=\"iso8601\">20110914124355.0</recordChangeDate>\n
|
61
|
+
\ <recordIdentifier>16781422</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>1</zs:recordPosition></zs:record></zs:records></zs:searchRetrieveResponse>\n"
|
64
|
+
http_version: '1.1'
|
65
|
+
recorded_at: Wed, 13 Aug 2014 07:35:43 GMT
|
66
|
+
recorded_with: VCR 2.9.2
|
@@ -0,0 +1,69 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&query=bath.lccn=2012471967&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
|
+
- '3440'
|
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>Rails view</title>\n
|
33
|
+
\ <subTitle>creating a beautiful and maintainable user experience</subTitle>\n
|
34
|
+
\ </titleInfo>\n <name type=\"personal\" usage=\"primary\">\n <namePart>Athayde,
|
35
|
+
John.</namePart>\n </name>\n <name type=\"personal\">\n <namePart>Williams,
|
36
|
+
Bruce.</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n <genre
|
37
|
+
authority=\"marcgt\">bibliography</genre>\n <originInfo>\n <place>\n <placeTerm
|
38
|
+
type=\"code\" authority=\"marccountry\">txu</placeTerm>\n </place>\n <place>\n
|
39
|
+
\ <placeTerm type=\"text\">Dallas, Tx</placeTerm>\n </place>\n <publisher>Pragmatic
|
40
|
+
Bookshelf</publisher>\n <dateIssued>2012</dateIssued>\n <issuance>monographic</issuance>\n
|
41
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
42
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
|
43
|
+
\ <extent>xiv, 245 p. : ill. ; 23 cm.</extent>\n </physicalDescription>\n
|
44
|
+
\ <abstract type=\"Summary\">\"Break free from tangles of logic and markup
|
45
|
+
in your views, and implement your user interface in Rails cleanly and maintainably.
|
46
|
+
Build up solid, sustainable layouts with HTML5. Then learn to manage your
|
47
|
+
forms and keep your markup clean. Learn when (and when not) to use Presenters,
|
48
|
+
and how to tame HTML emails. Master the asset pipeline introduced in Rails
|
49
|
+
3.1 as you use Sass and CoffeeScript to create easy-to-manage code for enjoyable
|
50
|
+
user interfaces\"--P. [4] of cover.</abstract>\n <note type=\"statement of
|
51
|
+
responsibility\" altRepGroup=\"00\">John Athayde, Bruce Williams.</note>\n
|
52
|
+
\ <note type=\"bibliography\">Includes bibliographical references (p. [235])
|
53
|
+
and index.</note>\n <subject authority=\"lcsh\">\n <titleInfo>\n <title>Ruby
|
54
|
+
on rails (Electronic resource)</title>\n </titleInfo>\n </subject>\n <subject
|
55
|
+
authority=\"lcsh\">\n <topic>Web site development</topic>\n <genre>Handbooks,
|
56
|
+
manuals, etc</genre>\n </subject>\n <relatedItem type=\"series\">\n <titleInfo>\n
|
57
|
+
\ <title>Pragmatic programmers</title>\n </titleInfo>\n </relatedItem>\n
|
58
|
+
\ <relatedItem type=\"series\">\n <titleInfo>\n <title>Facets of Ruby
|
59
|
+
series</title>\n </titleInfo>\n </relatedItem>\n <identifier type=\"isbn\">9781934356876
|
60
|
+
(pbk.)</identifier>\n <identifier type=\"isbn\">1934356875 (pbk.)</identifier>\n
|
61
|
+
\ <identifier type=\"lccn\">2012471967</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
62
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
63
|
+
\ <recordCreationDate encoding=\"marc\">121102</recordCreationDate>\n <recordChangeDate
|
64
|
+
encoding=\"iso8601\">20121102161644.0</recordChangeDate>\n <recordIdentifier>17516814</recordIdentifier>\n
|
65
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
66
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records></zs:searchRetrieveResponse>\n"
|
67
|
+
http_version: '1.1'
|
68
|
+
recorded_at: Tue, 12 Aug 2014 16:53:44 GMT
|
69
|
+
recorded_with: VCR 2.9.2
|
@@ -0,0 +1,67 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&query=bath.lccn=2008273186&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
|
+
- '3417'
|
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>Flexible Rails</title>\n <subTitle>Flex 3 on
|
33
|
+
Rails 2</subTitle>\n </titleInfo>\n <name type=\"personal\" usage=\"primary\">\n
|
34
|
+
\ <namePart>Armstrong, Peter.</namePart>\n </name>\n <typeOfResource>text</typeOfResource>\n
|
35
|
+
\ <originInfo>\n <place>\n <placeTerm type=\"code\" authority=\"marccountry\">ctu</placeTerm>\n
|
36
|
+
\ </place>\n <place>\n <placeTerm type=\"text\">Greenwich, CT</placeTerm>\n
|
37
|
+
\ </place>\n <publisher>Manning Publishing</publisher>\n <dateIssued>c2007</dateIssued>\n
|
38
|
+
\ <dateIssued encoding=\"marc\">2007</dateIssued>\n <issuance>monographic</issuance>\n
|
39
|
+
\ </originInfo>\n <language>\n <languageTerm authority=\"iso639-2b\" type=\"code\">eng</languageTerm>\n
|
40
|
+
\ </language>\n <physicalDescription>\n <form authority=\"marcform\">print</form>\n
|
41
|
+
\ <extent>xxxi, 557 p. : ill. ; 24 cm.</extent>\n </physicalDescription>\n
|
42
|
+
\ <abstract type=\"Summary\">Presents a guide to using Flex3 with Rails 2
|
43
|
+
to create a variety of Web applications.</abstract>\n <note type=\"statement
|
44
|
+
of responsibility\" altRepGroup=\"00\">Peter Armstrong.</note>\n <note>Includes
|
45
|
+
index.</note>\n <subject authority=\"lcsh\">\n <titleInfo>\n <title>Flex
|
46
|
+
(Computer file)</title>\n </titleInfo>\n </subject>\n <subject authority=\"lcsh\">\n
|
47
|
+
\ <titleInfo>\n <title>Ruby on rails (Electronic resource)</title>\n
|
48
|
+
\ </titleInfo>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Internet
|
49
|
+
programming</topic>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Application
|
50
|
+
software</topic>\n <topic>Development</topic>\n </subject>\n <subject
|
51
|
+
authority=\"lcsh\">\n <topic>Web site development</topic>\n <topic>Computer
|
52
|
+
programs</topic>\n </subject>\n <classification authority=\"lcc\">QA76.625
|
53
|
+
.A745 2007</classification>\n <classification authority=\"ddc\" edition=\"22\">006.7/6</classification>\n
|
54
|
+
\ <identifier type=\"isbn\">1933988509</identifier>\n <identifier type=\"isbn\">9781933988504</identifier>\n
|
55
|
+
\ <identifier type=\"lccn\">2008273186</identifier>\n <relatedItem>\n <location>\n
|
56
|
+
\ <url displayLabel=\"Contributor biographical information\">http://www.loc.gov/catdir/enhancements/fy0913/2008273186-b.html</url>\n
|
57
|
+
\ </location>\n </relatedItem>\n <relatedItem>\n <location>\n <url
|
58
|
+
displayLabel=\"Publisher description\">http://www.loc.gov/catdir/enhancements/fy0915/2008273186-d.html</url>\n
|
59
|
+
\ </location>\n </relatedItem>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
60
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
61
|
+
\ <recordCreationDate encoding=\"marc\">080415</recordCreationDate>\n <recordChangeDate
|
62
|
+
encoding=\"iso8601\">20090811090147.0</recordChangeDate>\n <recordIdentifier>15262217</recordIdentifier>\n
|
63
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
64
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records></zs:searchRetrieveResponse>\n"
|
65
|
+
http_version: '1.1'
|
66
|
+
recorded_at: Tue, 12 Aug 2014 15:35:19 GMT
|
67
|
+
recorded_with: VCR 2.9.2
|
@@ -0,0 +1,81 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://lx2.loc.gov:210/LCDB?maximumRecords=10&recordSchema=mods&query=bath.lccn=2014381788&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
|
+
- '4334'
|
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>Harry Potter and the sorcerer's stone</title>\n
|
33
|
+
\ </titleInfo>\n <titleInfo type=\"uniform\" nameTitleGroup=\"1\">\n <title>Harry
|
34
|
+
Potter and the philosopher's stone</title>\n </titleInfo>\n <name type=\"personal\"
|
35
|
+
usage=\"primary\" nameTitleGroup=\"1\">\n <namePart>Rowling, J. K.</namePart>\n
|
36
|
+
\ </name>\n <name type=\"personal\">\n <namePart>GrandPré, Mary</namePart>\n
|
37
|
+
\ <role>\n <roleTerm type=\"text\">ill.</roleTerm>\n </role>\n </name>\n
|
38
|
+
\ <typeOfResource>text</typeOfResource>\n <originInfo>\n <place>\n <placeTerm
|
39
|
+
type=\"code\" authority=\"marccountry\">nyu</placeTerm>\n </place>\n <place>\n
|
40
|
+
\ <placeTerm type=\"text\">New York</placeTerm>\n </place>\n <publisher>Scholastic</publisher>\n
|
41
|
+
\ <dateIssued>[2013]</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>309
|
45
|
+
p. : ill. ; 21 cm.</extent>\n </physicalDescription>\n <abstract type=\"Summary\">Rescued
|
46
|
+
from the outrageous neglect of his aunt and uncle, a young boy with a great
|
47
|
+
destiny proves his worth while attending Hogwarts School for Witchcraft and
|
48
|
+
Wizardry.</abstract>\n <targetAudience authority=\"marctarget\">juvenile</targetAudience>\n
|
49
|
+
\ <note type=\"statement of responsibility\" altRepGroup=\"00\">by J.K. Rowling
|
50
|
+
; illustrations by Mary GrandPré.</note>\n <note>\"Year 1\"--Spine.</note>\n
|
51
|
+
\ <note>Sequel: Harry Potter and the Chamber of Secrets.</note>\n <subject
|
52
|
+
authority=\"lcsh\">\n <topic>Potter, Harry (Fictitious character)</topic>\n
|
53
|
+
\ <genre>Juvenile fiction</genre>\n </subject>\n <subject authority=\"lcsh\">\n
|
54
|
+
\ <topic>Granger, Hermione (Fictitious character)</topic>\n <genre>Juvenile
|
55
|
+
fiction</genre>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Weasley,
|
56
|
+
Ron (Fictitious character)</topic>\n <genre>Juvenile fiction</genre>\n
|
57
|
+
\ </subject>\n <subject authority=\"lcsh\">\n <topic>Hogwarts School of
|
58
|
+
Witchcraft and Wizardry (Imaginary organization)</topic>\n <genre>Juvenile
|
59
|
+
fiction</genre>\n </subject>\n <subject authority=\"lcsh\">\n <topic>Wizards</topic>\n
|
60
|
+
\ <genre>Juvenile fiction</genre>\n </subject>\n <subject authority=\"lcsh\">\n
|
61
|
+
\ <topic>Magic</topic>\n <genre>Juvenile fiction</genre>\n </subject>\n
|
62
|
+
\ <subject authority=\"lcsh\">\n <topic>Schools</topic>\n <genre>Juvenile
|
63
|
+
fiction</genre>\n </subject>\n <subject authority=\"lcshac\">\n <topic>Wizards</topic>\n
|
64
|
+
\ <genre>Fiction</genre>\n </subject>\n <subject authority=\"lcshac\">\n
|
65
|
+
\ <topic>Magic</topic>\n <genre>Fiction</genre>\n </subject>\n <subject
|
66
|
+
authority=\"lcshac\">\n <topic>Schools</topic>\n <genre>Fiction</genre>\n
|
67
|
+
\ </subject>\n <subject authority=\"lcsh\">\n <geographic>England</geographic>\n
|
68
|
+
\ <genre>Juvenile fiction</genre>\n </subject>\n <subject authority=\"lcshac\">\n
|
69
|
+
\ <geographic>England</geographic>\n <genre>Fiction</genre>\n </subject>\n
|
70
|
+
\ <classification authority=\"lcc\">PZ7.R79835 Har 2013</classification>\n
|
71
|
+
\ <classification authority=\"ddc\" edition=\"23\">[Fic]</classification>\n
|
72
|
+
\ <identifier type=\"isbn\">9780545582889 (pbk.)</identifier>\n <identifier
|
73
|
+
type=\"lccn\">2014381788</identifier>\n <recordInfo>\n <descriptionStandard>aacr</descriptionStandard>\n
|
74
|
+
\ <recordContentSource authority=\"marcorg\">DLC</recordContentSource>\n
|
75
|
+
\ <recordCreationDate encoding=\"marc\">140603</recordCreationDate>\n <recordChangeDate
|
76
|
+
encoding=\"iso8601\">20140612114144.0</recordChangeDate>\n <recordIdentifier>18174426</recordIdentifier>\n
|
77
|
+
\ <recordOrigin>Converted from MARCXML to MODS version 3.4 using MARC21slim2MODS3-4.xsl\n\t\t\t\t(Revision
|
78
|
+
1.94 2014/02/21)</recordOrigin>\n </recordInfo>\n</mods></zs:recordData><zs:recordPosition>1</zs:recordPosition></zs:record></zs:records></zs:searchRetrieveResponse>\n"
|
79
|
+
http_version: '1.1'
|
80
|
+
recorded_at: Sat, 16 Aug 2014 01:39:35 GMT
|
81
|
+
recorded_with: VCR 2.9.2
|