exlibris-primo 0.1.5 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/MIT-LICENSE +1 -1
- data/README.md +111 -0
- data/Rakefile +2 -1
- data/lib/exlibris-primo.rb +4 -14
- data/lib/exlibris/primo.rb +13 -0
- data/lib/exlibris/primo/abstract.rb +28 -0
- data/lib/exlibris/primo/chain_gang/README.md +9 -0
- data/lib/exlibris/primo/chain_gang/base.rb +121 -0
- data/lib/exlibris/primo/chain_gang/record.rb +18 -0
- data/lib/exlibris/primo/chain_gang/search.rb +319 -0
- data/lib/exlibris/primo/chain_gang/user.rb +18 -0
- data/lib/exlibris/primo/config.rb +69 -0
- data/lib/exlibris/primo/eshelf.rb +115 -62
- data/lib/exlibris/primo/facet.rb +40 -0
- data/lib/exlibris/primo/facet_value.rb +40 -0
- data/lib/exlibris/primo/holding.rb +81 -152
- data/lib/exlibris/primo/link.rb +32 -0
- data/lib/exlibris/primo/namespaces.rb +44 -0
- data/lib/exlibris/primo/pnx/dedup_mgr.rb +91 -0
- data/lib/exlibris/primo/pnx/elements.rb +79 -0
- data/lib/exlibris/primo/pnx/frbr.rb +24 -0
- data/lib/exlibris/primo/pnx/holdings.rb +36 -0
- data/lib/exlibris/primo/pnx/links.rb +54 -0
- data/lib/exlibris/primo/pnx/openurl.rb +24 -0
- data/lib/exlibris/primo/pnx/subfields.rb +18 -0
- data/lib/exlibris/primo/record.rb +20 -106
- data/lib/exlibris/primo/request_attributes.rb +28 -0
- data/lib/exlibris/primo/review.rb +46 -0
- data/lib/exlibris/primo/reviews.rb +81 -0
- data/lib/exlibris/primo/search.rb +82 -0
- data/lib/exlibris/primo/source/aleph.rb +77 -31
- data/lib/exlibris/primo/tag.rb +34 -0
- data/lib/exlibris/primo/tags.rb +103 -0
- data/lib/exlibris/primo/version.rb +1 -1
- data/lib/exlibris/primo/web_service/client/base.rb +30 -0
- data/lib/exlibris/primo/web_service/client/base/endpoint.rb +29 -0
- data/lib/exlibris/primo/web_service/client/base/savon_client.rb +24 -0
- data/lib/exlibris/primo/web_service/client/base/savon_config.rb +19 -0
- data/lib/exlibris/primo/web_service/client/base/soap_actions.rb +55 -0
- data/lib/exlibris/primo/web_service/client/base/wsdl.rb +14 -0
- data/lib/exlibris/primo/web_service/client/eshelf.rb +22 -0
- data/lib/exlibris/primo/web_service/client/reviews.rb +15 -0
- data/lib/exlibris/primo/web_service/client/search.rb +15 -0
- data/lib/exlibris/primo/web_service/client/tags.rb +14 -0
- data/lib/exlibris/primo/web_service/request/base.rb +77 -0
- data/lib/exlibris/primo/web_service/request/base/base_elements.rb +71 -0
- data/lib/exlibris/primo/web_service/request/base/call.rb +19 -0
- data/lib/exlibris/primo/web_service/request/base/client.rb +45 -0
- data/lib/exlibris/primo/web_service/request/base/soap_action.rb +29 -0
- data/lib/exlibris/primo/web_service/request/eshelf.rb +71 -0
- data/lib/exlibris/primo/web_service/request/reviews.rb +57 -0
- data/lib/exlibris/primo/web_service/request/search.rb +49 -0
- data/lib/exlibris/primo/web_service/request/search/display_fields.rb +30 -0
- data/lib/exlibris/primo/web_service/request/search/languages.rb +32 -0
- data/lib/exlibris/primo/web_service/request/search/location.rb +15 -0
- data/lib/exlibris/primo/web_service/request/search/locations.rb +33 -0
- data/lib/exlibris/primo/web_service/request/search/query_term.rb +43 -0
- data/lib/exlibris/primo/web_service/request/search/query_terms.rb +40 -0
- data/lib/exlibris/primo/web_service/request/search/search_elements.rb +97 -0
- data/lib/exlibris/primo/web_service/request/search/sort_bys.rb +32 -0
- data/lib/exlibris/primo/web_service/request/tags.rb +56 -0
- data/lib/exlibris/primo/web_service/response/base.rb +28 -0
- data/lib/exlibris/primo/web_service/response/base/error.rb +25 -0
- data/lib/exlibris/primo/web_service/response/base/util.rb +19 -0
- data/lib/exlibris/primo/web_service/response/did_u_mean.rb +17 -0
- data/lib/exlibris/primo/web_service/response/eshelf.rb +68 -0
- data/lib/exlibris/primo/web_service/response/facets.rb +21 -0
- data/lib/exlibris/primo/web_service/response/records.rb +17 -0
- data/lib/exlibris/primo/web_service/response/reviews.rb +49 -0
- data/lib/exlibris/primo/web_service/response/search.rb +36 -0
- data/lib/exlibris/primo/web_service/response/search_stats.rb +48 -0
- data/lib/exlibris/primo/web_service/response/tags.rb +54 -0
- data/lib/exlibris/primo/write_attributes.rb +38 -0
- data/lib/exlibris/primo/xml_util.rb +63 -0
- data/test/{unit/eshelf_test.rb → bak/eshelf_test.rb.bak} +0 -0
- data/test/{unit/record_test.rb → bak/record_test.rb.bak} +0 -0
- data/test/{unit/searcher_test.rb → bak/searcher_test.rb.bak} +0 -0
- data/test/{unit/web_service_test.rb → bak/web_service_test.rb.bak} +0 -0
- data/test/config_test.rb +72 -0
- data/test/eshelf_test.rb +66 -0
- data/test/exlibris-primo_test.rb +0 -1
- data/test/facet_test.rb +27 -0
- data/test/facet_value_test.rb +62 -0
- data/test/holding_test.rb +26 -0
- data/test/link_test.rb +42 -0
- data/test/pnx/dedup_mgr_test.rb +16 -0
- data/test/pnx/elements_test.rb +16 -0
- data/test/pnx/frbr_test.rb +12 -0
- data/test/pnx/holdings_test.rb +53 -0
- data/test/pnx/links_test.rb +44 -0
- data/test/pnx/openurl_test.rb +10 -0
- data/test/record_test.rb +11 -0
- data/test/review_test.rb +15 -0
- data/test/reviews_test.rb +50 -0
- data/test/search_test.rb +328 -0
- data/test/source/aleph_test.rb +52 -0
- data/test/support/config.yml +35 -0
- data/test/tag_test.rb +12 -0
- data/test/tags_test.rb +65 -0
- data/test/test_helper.rb +536 -4
- data/test/vcr_cassettes/client_action_no_arguments.yml +38 -0
- data/test/vcr_cassettes/client_get_all_my_reviews.yml +49 -0
- data/test/vcr_cassettes/client_get_all_my_tags.yml +49 -0
- data/test/vcr_cassettes/client_get_eshelf.yml +13812 -0
- data/test/vcr_cassettes/client_get_record.yml +222 -0
- data/test/vcr_cassettes/client_get_reviews.yml +39 -0
- data/test/vcr_cassettes/client_get_tags.yml +42 -0
- data/test/vcr_cassettes/client_search_brief_isbn.yml +288 -0
- data/test/vcr_cassettes/client_search_brief_issn.yml +282 -0
- data/test/vcr_cassettes/client_too_many_arguments.yml +38 -0
- data/test/vcr_cassettes/eshelf.yml +13845 -0
- data/test/vcr_cassettes/eshelf_add_folder.yml +109 -0
- data/test/vcr_cassettes/eshelf_add_record.yml +14237 -0
- data/test/vcr_cassettes/eshelf_add_records.yml +14156 -0
- data/test/vcr_cassettes/eshelf_basket_id.yml +36 -0
- data/test/vcr_cassettes/eshelf_records.yml +13460 -0
- data/test/vcr_cassettes/eshelf_remove_folder.yml +76 -0
- data/test/vcr_cassettes/eshelf_remove_record.yml +13500 -0
- data/test/vcr_cassettes/eshelf_remove_records.yml +13741 -0
- data/test/vcr_cassettes/{web_service_single_document.yml → remote_record_call.yml} +12 -23
- data/test/vcr_cassettes/{searcher_dedupmrg_by_id.yml → remote_record_dedupmgr.yml} +19 -31
- data/test/vcr_cassettes/request_add_folder_to_eshelf.yml +43 -0
- data/test/vcr_cassettes/request_add_to_eshelf.yml +43 -0
- data/test/vcr_cassettes/request_did_u_mean_enabled.yml +48 -0
- data/test/vcr_cassettes/request_full_view.yml +222 -0
- data/test/vcr_cassettes/request_get_eshelf.yml +13812 -0
- data/test/vcr_cassettes/request_get_eshelf_structure.yml +36 -0
- data/test/vcr_cassettes/request_get_reviews.yml +39 -0
- data/test/vcr_cassettes/request_get_tags.yml +42 -0
- data/test/vcr_cassettes/request_remove_folder_from_eshelf.yml +43 -0
- data/test/vcr_cassettes/request_remove_from_eshelf.yml +43 -0
- data/test/vcr_cassettes/request_search_author.yml +1258 -0
- data/test/vcr_cassettes/request_search_did_u_mean.yml +48 -0
- data/test/vcr_cassettes/request_search_genre.yml +1321 -0
- data/test/vcr_cassettes/request_search_isbn.yml +288 -0
- data/test/vcr_cassettes/request_search_issn.yml +282 -0
- data/test/vcr_cassettes/request_search_locations.yml +288 -0
- data/test/vcr_cassettes/request_search_title.yml +1024 -0
- data/test/vcr_cassettes/request_search_title_author_genre.yml +708 -0
- data/test/vcr_cassettes/response_add_folder_to_eshelf.yml +43 -0
- data/test/vcr_cassettes/response_add_review.yml +39 -0
- data/test/vcr_cassettes/response_add_tag.yml +39 -0
- data/test/vcr_cassettes/response_add_to_eshelf.yml +43 -0
- data/test/vcr_cassettes/response_did_u_mean_disabled.yml +46 -0
- data/test/vcr_cassettes/response_did_u_mean_enabled.yml +48 -0
- data/test/vcr_cassettes/response_full_view.yml +222 -0
- data/test/vcr_cassettes/response_get_all_my_reviews.yml +49 -0
- data/test/vcr_cassettes/response_get_all_my_tags.yml +49 -0
- data/test/vcr_cassettes/response_get_eshelf.yml +13633 -0
- data/test/vcr_cassettes/response_get_eshelf_structure.yml +36 -0
- data/test/vcr_cassettes/response_get_reviews.yml +39 -0
- data/test/vcr_cassettes/response_get_reviews_by_rating.yml +49 -0
- data/test/vcr_cassettes/response_get_reviews_for_record.yml +39 -0
- data/test/vcr_cassettes/response_get_tags.yml +42 -0
- data/test/vcr_cassettes/response_get_tags_for_record.yml +42 -0
- data/test/vcr_cassettes/response_remove_folder_from_eshelf.yml +43 -0
- data/test/vcr_cassettes/response_remove_from_eshelf.yml +43 -0
- data/test/vcr_cassettes/response_remove_review.yml +39 -0
- data/test/vcr_cassettes/response_remove_tag.yml +39 -0
- data/test/vcr_cassettes/response_remove_user_tags.yml +39 -0
- data/test/vcr_cassettes/response_search.yml +288 -0
- data/test/vcr_cassettes/response_search_did_u_mean.yml +48 -0
- data/test/vcr_cassettes/reviews.yml +49 -0
- data/test/vcr_cassettes/reviews_add_review.yml +39 -0
- data/test/vcr_cassettes/reviews_check_empty_reviews_first.yml +39 -0
- data/test/vcr_cassettes/reviews_check_empty_reviews_last.yml +39 -0
- data/test/vcr_cassettes/reviews_rating.yml +168 -0
- data/test/vcr_cassettes/reviews_record.yml +49 -0
- data/test/vcr_cassettes/reviews_remove_review.yml +39 -0
- data/test/vcr_cassettes/reviews_reviews.yml +49 -0
- data/test/vcr_cassettes/reviews_user.yml +58 -0
- data/test/vcr_cassettes/search_chaining_author_title.yml +938 -0
- data/test/vcr_cassettes/search_chaining_contains_any.yml +1453 -0
- data/test/vcr_cassettes/search_chaining_contains_author_starts_with_title.yml +1055 -0
- data/test/vcr_cassettes/search_chaining_isbn.yml +288 -0
- data/test/vcr_cassettes/search_chaining_page_size_author.yml +5933 -0
- data/test/vcr_cassettes/search_did_u_mean.yml +48 -0
- data/test/vcr_cassettes/search_enable_highlighting.yml +1337 -0
- data/test/vcr_cassettes/search_isbn.yml +288 -0
- data/test/vcr_cassettes/search_languages.yml +1332 -0
- data/test/vcr_cassettes/search_locations.yml +1440 -0
- data/test/vcr_cassettes/search_record_id.yml +222 -0
- data/test/vcr_cassettes/search_record_id_chaining.yml +222 -0
- data/test/vcr_cassettes/search_sort_by.yml +1289 -0
- data/test/vcr_cassettes/search_sort_by_locations.yml +1387 -0
- data/test/vcr_cassettes/tags.yml +56 -0
- data/test/vcr_cassettes/tags_add_extra_tag.yml +39 -0
- data/test/vcr_cassettes/tags_add_tag.yml +39 -0
- data/test/vcr_cassettes/tags_add_tags.yml +111 -0
- data/test/vcr_cassettes/tags_check_1_tags.yml +56 -0
- data/test/vcr_cassettes/tags_check_2_tags.yml +68 -0
- data/test/vcr_cassettes/tags_check_empty_tags_first.yml +42 -0
- data/test/vcr_cassettes/tags_check_empty_tags_last.yml +42 -0
- data/test/vcr_cassettes/tags_remove_tag.yml +39 -0
- data/test/vcr_cassettes/tags_remove_tags.yml +111 -0
- data/test/vcr_cassettes/tags_remove_user_tags.yml +39 -0
- data/test/vcr_cassettes/tags_tags.yml +104 -0
- data/test/vcr_cassettes/tags_user.yml +73 -0
- data/test/web_service/client/abstract_test.rb +29 -0
- data/test/web_service/client/eshelf_test.rb +22 -0
- data/test/web_service/client/reviews_test.rb +31 -0
- data/test/web_service/client/savon_client_test.rb +17 -0
- data/test/web_service/client/search_benchmarks.rb +29 -0
- data/test/web_service/client/search_test.rb +44 -0
- data/test/web_service/client/soap_actions_test.rb +45 -0
- data/test/web_service/client/tags_test.rb +31 -0
- data/test/web_service/request/abstract_test.rb +68 -0
- data/test/web_service/request/base_elements_test.rb +231 -0
- data/test/web_service/request/build_xml_test.rb +23 -0
- data/test/web_service/request/client_test.rb +53 -0
- data/test/web_service/request/eshelf_test.rb +26 -0
- data/test/web_service/request/location_test.rb +25 -0
- data/test/web_service/request/query_term_test.rb +29 -0
- data/test/web_service/request/reviews_test.rb +27 -0
- data/test/web_service/request/search_test.rb +234 -0
- data/test/web_service/request/soap_action_test.rb +120 -0
- data/test/web_service/request/tags_test.rb +27 -0
- data/test/web_service/response/abstract_test.rb +200 -0
- data/test/web_service/response/did_u_mean_test.rb +44 -0
- data/test/web_service/response/error_test.rb +31 -0
- data/test/web_service/response/eshelf_test.rb +28 -0
- data/test/web_service/response/facets_test.rb +42 -0
- data/test/web_service/response/records_test.rb +56 -0
- data/test/web_service/response/reviews_test.rb +28 -0
- data/test/web_service/response/search_stats_test.rb +75 -0
- data/test/web_service/response/search_test.rb +40 -0
- data/test/web_service/response/tags_test.rb +28 -0
- data/test/xml_util_test.rb +23 -0
- metadata +456 -114
- data/README.rdoc +0 -68
- data/lib/exlibris/primo/related_link.rb +0 -20
- data/lib/exlibris/primo/rsrc.rb +0 -20
- data/lib/exlibris/primo/searcher.rb +0 -277
- data/lib/exlibris/primo/toc.rb +0 -20
- data/lib/exlibris/primo/web_service.rb +0 -203
- data/test/unit/searcher_benchmarks.rb +0 -74
- data/test/unit/web_service_benchmarks.rb +0 -58
- data/test/vcr_cassettes/eshelf_add_invalid_records.yml +0 -107
- data/test/vcr_cassettes/eshelf_add_same_record_twice.yml +0 -159
- data/test/vcr_cassettes/eshelf_add_to_empty_basket.yml +0 -107
- data/test/vcr_cassettes/eshelf_add_to_invalid_basket.yml +0 -55
- data/test/vcr_cassettes/eshelf_invalid_eshelf.yml +0 -55
- data/test/vcr_cassettes/eshelf_invalid_institution.yml +0 -55
- data/test/vcr_cassettes/eshelf_valid_eshelf.yml +0 -2553
- data/test/vcr_cassettes/eshelf_valid_eshelf_structure.yml +0 -47
- data/test/vcr_cassettes/record.yml +0 -212
- data/test/vcr_cassettes/record_invalid_record.yml +0 -55
- data/test/vcr_cassettes/record_sub_record.yml +0 -212
- data/test/vcr_cassettes/record_valid_record.yml +0 -212
- data/test/vcr_cassettes/searcher_base_holdings_by_id.yml +0 -212
- data/test/vcr_cassettes/searcher_diacritics1_by_id.yml +0 -207
- data/test/vcr_cassettes/searcher_diacritics2_by_id.yml +0 -232
- data/test/vcr_cassettes/searcher_holdings_by_id.yml +0 -212
- data/test/vcr_cassettes/searcher_invalid_id.yml +0 -55
- data/test/vcr_cassettes/searcher_rsrcs_by_id.yml +0 -270
- data/test/vcr_cassettes/searcher_search_by_isbn.yml +0 -278
- data/test/vcr_cassettes/searcher_search_by_issn.yml +0 -297
- data/test/vcr_cassettes/searcher_search_by_title_author_genre.yml +0 -671
- data/test/vcr_cassettes/searcher_test_bug_1361.yml +0 -224
- data/test/vcr_cassettes/searcher_test_problem_by_id.yml +0 -194
- data/test/vcr_cassettes/searcher_tocs_by_id.yml +0 -217
- data/test/vcr_cassettes/web_service_author_search.yml +0 -1269
- data/test/vcr_cassettes/web_service_bogus_200.yml +0 -392
- data/test/vcr_cassettes/web_service_brief_search.yml +0 -299
- data/test/vcr_cassettes/web_service_get_eshelf.yml +0 -11823
- data/test/vcr_cassettes/web_service_get_eshelf_structure_search.yml +0 -47
- data/test/vcr_cassettes/web_service_invalid_document.yml +0 -54
- data/test/vcr_cassettes/web_service_isbn_search.yml +0 -299
- data/test/vcr_cassettes/web_service_issn_search.yml +0 -293
- data/test/vcr_cassettes/web_service_problem_document.yml +0 -193
- data/test/vcr_cassettes/web_service_title_author_genre_search.yml +0 -719
- data/test/vcr_cassettes/web_service_title_search.yml +0 -1035
@@ -0,0 +1,222 @@
|
|
1
|
+
---
|
2
|
+
recorded_with: VCR 2.3.0
|
3
|
+
http_interactions:
|
4
|
+
- request:
|
5
|
+
method: post
|
6
|
+
uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher
|
7
|
+
body:
|
8
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:wsdl="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><getRecord><request><![CDATA[<fullViewRequest xmlns="http://www.exlibris.com/primo/xsd/wsRequest" xmlns:uic="http://www.exlibris.com/primo/xsd/primoview/uicomponents"><PrimoSearchRequest xmlns="http://www.exlibris.com/primo/xsd/search/request"><QueryTerms><BoolOpeator>AND</BoolOpeator></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled></PrimoSearchRequest><institution>NYU</institution><docId>nyu_aleph000062856</docId></fullViewRequest>]]></request></getRecord></env:Body></env:Envelope>
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- text/xml;charset=UTF-8
|
12
|
+
Soapaction:
|
13
|
+
- "\"getRecord\""
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
Content-Length:
|
17
|
+
- "836"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Date:
|
24
|
+
- Wed, 09 Jan 2013 19:00:25 GMT
|
25
|
+
Content-Type:
|
26
|
+
- text/xml;charset=utf-8
|
27
|
+
X-Powered-By:
|
28
|
+
- Servlet 2.5; JBoss-5.0/JBossWeb-2.1
|
29
|
+
Server:
|
30
|
+
- Apache-Coyote/1.1
|
31
|
+
Transfer-Encoding:
|
32
|
+
- chunked
|
33
|
+
body:
|
34
|
+
string: |-
|
35
|
+
<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><getRecordResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><getRecordReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><SEGMENTS xmlns="http://www.exlibrisgroup.com/xsd/jaguar/search">
|
36
|
+
<JAGROOT>
|
37
|
+
<RESULT>
|
38
|
+
<DOCSET TOTALHITS="1">
|
39
|
+
<DOC LOCAL="true">
|
40
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
41
|
+
<record>
|
42
|
+
<control>
|
43
|
+
<sourcerecordid>000062856</sourcerecordid>
|
44
|
+
<sourceid>nyu_aleph</sourceid>
|
45
|
+
<recordid>nyu_aleph000062856</recordid>
|
46
|
+
<originalsourceid>NYU01</originalsourceid>
|
47
|
+
<ilsapiid>NYU01000062856</ilsapiid>
|
48
|
+
<sourceformat>MARC21</sourceformat>
|
49
|
+
<sourcesystem>Aleph</sourcesystem>
|
50
|
+
</control>
|
51
|
+
<display>
|
52
|
+
<type>book</type>
|
53
|
+
<title>Travels with my aunt</title>
|
54
|
+
<creator>Graham Greene 1904-1991.</creator>
|
55
|
+
<edition>Deluxe ed.</edition>
|
56
|
+
<publisher>New York : Penguin Books</publisher>
|
57
|
+
<creationdate>2004</creationdate>
|
58
|
+
<format>xvi, 254 p. ; 22 cm.</format>
|
59
|
+
<identifier>$$Cisbn$$V0143039008; $$Cisbn$$V9780143039006</identifier>
|
60
|
+
<subject>British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous stories</subject>
|
61
|
+
<language>eng</language>
|
62
|
+
<relation>$$Cseries $$VPenguin classics</relation>
|
63
|
+
<source>nyu_aleph</source>
|
64
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 2004 )$$Sunavailable$$31$$41$$5N$$61$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
65
|
+
<lds02>nyu_aleph000062856</lds02>
|
66
|
+
<lds01>NYU</lds01>
|
67
|
+
<availinstitution>$$INYU$$Sunavailable</availinstitution>
|
68
|
+
<availpnx>unavailable</availpnx>
|
69
|
+
</display>
|
70
|
+
<links>
|
71
|
+
<openurl>$$Topenurl_journal</openurl>
|
72
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
73
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
74
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
75
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
76
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
77
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
78
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
79
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
80
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
81
|
+
</links>
|
82
|
+
<search>
|
83
|
+
<creatorcontrib>Graham, Greene 1904-1991.</creatorcontrib>
|
84
|
+
<creatorcontrib>Greene, Graham, 1904-1991.</creatorcontrib>
|
85
|
+
<creatorcontrib>Greene, G</creatorcontrib>
|
86
|
+
<creatorcontrib>Graham Greene ; introduction by Gloria Emerson.</creatorcontrib>
|
87
|
+
<creatorcontrib>Greene, Henry Graham, 1904-1991</creatorcontrib>
|
88
|
+
<creatorcontrib>Gŭrin, Gŭreŏm, 1904-1991</creatorcontrib>
|
89
|
+
<creatorcontrib>Grin, Greham, 1904-1991</creatorcontrib>
|
90
|
+
<creatorcontrib>Grīna, Grāhama, 1904-1991</creatorcontrib>
|
91
|
+
<creatorcontrib>Grin, Grėm, 1904-1991</creatorcontrib>
|
92
|
+
<creatorcontrib>格拉姆・葛林, 1904-1991</creatorcontrib>
|
93
|
+
<creatorcontrib>Grīns, Greiems, 1904-1991</creatorcontrib>
|
94
|
+
<creatorcontrib>Grīns, G. (Greiems), 1904-1991</creatorcontrib>
|
95
|
+
<title>Travels with my aunt /</title>
|
96
|
+
<subject>British Foreign countries Fiction</subject>
|
97
|
+
<subject>Women travelers Fiction</subject>
|
98
|
+
<subject>Older women Fiction</subject>
|
99
|
+
<subject>Travelers Fiction</subject>
|
100
|
+
<subject>Retirees Fiction</subject>
|
101
|
+
<subject>Aunts Fiction</subject>
|
102
|
+
<subject>Humorous stories</subject>
|
103
|
+
<subject>People, Retired</subject>
|
104
|
+
<subject>Retired persons</subject>
|
105
|
+
<subject>Retired people</subject>
|
106
|
+
<subject>Travelers, Women</subject>
|
107
|
+
<subject>Britishers</subject>
|
108
|
+
<subject>British people</subject>
|
109
|
+
<subject>Britons (British)</subject>
|
110
|
+
<subject>Brits</subject>
|
111
|
+
<subject>Aged women</subject>
|
112
|
+
<general>Penguin Books,</general>
|
113
|
+
<general>"Graham Greene centennial, 1904-2004"--Cover.</general>
|
114
|
+
<sourceid>nyu_aleph</sourceid>
|
115
|
+
<recordid>nyu_aleph000062856</recordid>
|
116
|
+
<isbn>0143039008</isbn>
|
117
|
+
<isbn>9780143039006</isbn>
|
118
|
+
<rsrctype>book</rsrctype>
|
119
|
+
<creationdate>2004</creationdate>
|
120
|
+
<creationdate>1969</creationdate>
|
121
|
+
<addtitle>Penguin classics</addtitle>
|
122
|
+
<searchscope>BOBST</searchscope>
|
123
|
+
<searchscope>BOBST Main Collection</searchscope>
|
124
|
+
<searchscope>nyu_aleph</searchscope>
|
125
|
+
<searchscope>NYU</searchscope>
|
126
|
+
<scope>BOBST</scope>
|
127
|
+
<scope>BOBST Main Collection</scope>
|
128
|
+
<scope>nyu_aleph</scope>
|
129
|
+
<scope>NYU</scope>
|
130
|
+
<lsr01>PR6013.R44 T7 2004</lsr01>
|
131
|
+
<lsr01>PR6013 .R44 T7 2004</lsr01>
|
132
|
+
<lsr02>Penguin Books,</lsr02>
|
133
|
+
</search>
|
134
|
+
<sort>
|
135
|
+
<title>Travels with my aunt /</title>
|
136
|
+
<creationdate>2004</creationdate>
|
137
|
+
<author>Greene, Graham, 1904-1991.</author>
|
138
|
+
<lso01>2004</lso01>
|
139
|
+
</sort>
|
140
|
+
<facets>
|
141
|
+
<language>eng</language>
|
142
|
+
<creationdate>2004</creationdate>
|
143
|
+
<topic>British–Foreign countries–Fiction</topic>
|
144
|
+
<topic>Women travelers–Fiction</topic>
|
145
|
+
<topic>Older women–Fiction</topic>
|
146
|
+
<topic>Travelers–Fiction</topic>
|
147
|
+
<topic>Retirees–Fiction</topic>
|
148
|
+
<topic>Aunts–Fiction</topic>
|
149
|
+
<collection>BOBST</collection>
|
150
|
+
<prefilter>books</prefilter>
|
151
|
+
<rsrctype>books</rsrctype>
|
152
|
+
<creatorcontrib>Greene, G</creatorcontrib>
|
153
|
+
<genre>Fiction</genre>
|
154
|
+
<genre>Humorous stories</genre>
|
155
|
+
<library>BOBST</library>
|
156
|
+
<lfc01>Main Collection</lfc01>
|
157
|
+
<classificationlcc>P - Language and literature.–English literature</classificationlcc>
|
158
|
+
<frbrgroupid>49340863</frbrgroupid>
|
159
|
+
<frbrtype>5</frbrtype>
|
160
|
+
</facets>
|
161
|
+
<dedup>
|
162
|
+
<t>1</t>
|
163
|
+
<c1>2004559272</c1>
|
164
|
+
<c2>0143039008;9780143039006</c2>
|
165
|
+
<c3>travelswithmyaunt</c3>
|
166
|
+
<c4>2004</c4>
|
167
|
+
<f1>2004559272</f1>
|
168
|
+
<f3>0143039008;9780143039006</f3>
|
169
|
+
<f5>travelswithmyaunt</f5>
|
170
|
+
<f6>2004</f6>
|
171
|
+
<f7>travels with my aunt</f7>
|
172
|
+
<f8>nyu</f8>
|
173
|
+
<f9>xvi, 254 p. ;</f9>
|
174
|
+
<f10>penguin books</f10>
|
175
|
+
<f11>greene graham 1904 1991</f11>
|
176
|
+
</dedup>
|
177
|
+
<frbr>
|
178
|
+
<t>1</t>
|
179
|
+
<k1>$$Kgreene graham 1904 1991$$AA</k1>
|
180
|
+
<k3>$$Kbooktravels with my aunt$$AT</k3>
|
181
|
+
</frbr>
|
182
|
+
<delivery>
|
183
|
+
<institution>NYU</institution>
|
184
|
+
<delcategory>Physical Item</delcategory>
|
185
|
+
</delivery>
|
186
|
+
<enrichment>
|
187
|
+
<classificationlcc>PR6013.R44</classificationlcc>
|
188
|
+
</enrichment>
|
189
|
+
<ranking>
|
190
|
+
<booster1>1</booster1>
|
191
|
+
<booster2>1</booster2>
|
192
|
+
</ranking>
|
193
|
+
<addata>
|
194
|
+
<aulast>Greene</aulast>
|
195
|
+
<aufirst>Graham,</aufirst>
|
196
|
+
<au>Greene, Graham, 1904-1991</au>
|
197
|
+
<btitle>Travels with my aunt</btitle>
|
198
|
+
<seriestitle>Penguin classics</seriestitle>
|
199
|
+
<date>2004</date>
|
200
|
+
<risdate>2004.</risdate>
|
201
|
+
<isbn>0143039008</isbn>
|
202
|
+
<isbn>9780143039006</isbn>
|
203
|
+
<format>book</format>
|
204
|
+
<genre>book</genre>
|
205
|
+
<ristype>BOOK</ristype>
|
206
|
+
<notes>Includes bibliographical references (p. xv-xvi).</notes>
|
207
|
+
<cop>New York</cop>
|
208
|
+
<pub>Penguin Books</pub>
|
209
|
+
<oclcid>56781200</oclcid>
|
210
|
+
<lccn>2004559272</lccn>
|
211
|
+
<lad01>BOBST</lad01>
|
212
|
+
<lad01>Physical Item</lad01>
|
213
|
+
</addata>
|
214
|
+
</record>
|
215
|
+
</PrimoNMBib>
|
216
|
+
</DOC>
|
217
|
+
</DOCSET>
|
218
|
+
</RESULT>
|
219
|
+
</JAGROOT>
|
220
|
+
</SEGMENTS></getRecordReturn></getRecordResponse></soapenv:Body></soapenv:Envelope>
|
221
|
+
http_version:
|
222
|
+
recorded_at: Wed, 09 Jan 2013 19:00:26 GMT
|
@@ -0,0 +1,39 @@
|
|
1
|
+
---
|
2
|
+
recorded_with: VCR 2.3.0
|
3
|
+
http_interactions:
|
4
|
+
- request:
|
5
|
+
method: post
|
6
|
+
uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/reviews
|
7
|
+
body:
|
8
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:wsdl="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/reviews" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><getReviews><request><![CDATA[<getReviewsRequest xmlns="http://www.exlibris.com/primo/xsd/wsRequest" xmlns:uic="http://www.exlibris.com/primo/xsd/primoview/uicomponents"><institution>NYU</institution><docId>nyu_aleph000062856</docId><userId>N12162279</userId></getReviewsRequest>]]></request></getReviews></env:Body></env:Envelope>
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- text/xml;charset=UTF-8
|
12
|
+
Soapaction:
|
13
|
+
- "\"getReviews\""
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
Content-Length:
|
17
|
+
- "626"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Date:
|
24
|
+
- Wed, 09 Jan 2013 19:00:25 GMT
|
25
|
+
Content-Type:
|
26
|
+
- text/xml;charset=utf-8
|
27
|
+
X-Powered-By:
|
28
|
+
- Servlet 2.5; JBoss-5.0/JBossWeb-2.1
|
29
|
+
Server:
|
30
|
+
- Apache-Coyote/1.1
|
31
|
+
Transfer-Encoding:
|
32
|
+
- chunked
|
33
|
+
body:
|
34
|
+
string: |-
|
35
|
+
<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><getReviewsResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><getReviewsReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><TagsAndReviews xmlns="http://com/exlibris/primo/xsd/tagsAndReview/config">
|
36
|
+
<Reviews/>
|
37
|
+
</TagsAndReviews></getReviewsReturn></getReviewsResponse></soapenv:Body></soapenv:Envelope>
|
38
|
+
http_version:
|
39
|
+
recorded_at: Wed, 09 Jan 2013 19:00:26 GMT
|
@@ -0,0 +1,42 @@
|
|
1
|
+
---
|
2
|
+
recorded_with: VCR 2.3.0
|
3
|
+
http_interactions:
|
4
|
+
- request:
|
5
|
+
method: post
|
6
|
+
uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/tags
|
7
|
+
body:
|
8
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:wsdl="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/tags" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><getTags><request><![CDATA[<getTagsRequest xmlns="http://www.exlibris.com/primo/xsd/wsRequest" xmlns:uic="http://www.exlibris.com/primo/xsd/primoview/uicomponents"><institution>NYU</institution><docId>nyu_aleph000062856</docId><userId>N12162279</userId></getTagsRequest>]]></request></getTags></env:Body></env:Envelope>
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- text/xml;charset=UTF-8
|
12
|
+
Soapaction:
|
13
|
+
- "\"getTags\""
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
Content-Length:
|
17
|
+
- "611"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Date:
|
24
|
+
- Wed, 09 Jan 2013 19:00:26 GMT
|
25
|
+
Content-Type:
|
26
|
+
- text/xml;charset=utf-8
|
27
|
+
X-Powered-By:
|
28
|
+
- Servlet 2.5; JBoss-5.0/JBossWeb-2.1
|
29
|
+
Server:
|
30
|
+
- Apache-Coyote/1.1
|
31
|
+
Transfer-Encoding:
|
32
|
+
- chunked
|
33
|
+
body:
|
34
|
+
string: |-
|
35
|
+
<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><getTagsResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><getTagsReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><TagsAndReviews xmlns="http://com/exlibris/primo/xsd/tagsAndReview/config">
|
36
|
+
<Tags>
|
37
|
+
<MyTags/>
|
38
|
+
<EverybodyTags/>
|
39
|
+
</Tags>
|
40
|
+
</TagsAndReviews></getTagsReturn></getTagsResponse></soapenv:Body></soapenv:Envelope>
|
41
|
+
http_version:
|
42
|
+
recorded_at: Wed, 09 Jan 2013 19:00:26 GMT
|
@@ -0,0 +1,288 @@
|
|
1
|
+
---
|
2
|
+
recorded_with: VCR 2.3.0
|
3
|
+
http_interactions:
|
4
|
+
- request:
|
5
|
+
method: post
|
6
|
+
uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher
|
7
|
+
body:
|
8
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:wsdl="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><searchBrief><request><![CDATA[<searchRequest xmlns="http://www.exlibris.com/primo/xsd/wsRequest" xmlns:uic="http://www.exlibris.com/primo/xsd/primoview/uicomponents"><PrimoSearchRequest xmlns="http://www.exlibris.com/primo/xsd/search/request"><QueryTerms><BoolOpeator>AND</BoolOpeator><QueryTerm><IndexField>isbn</IndexField><PrecisionOperator>exact</PrecisionOperator><Value>0143039008</Value></QueryTerm></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled></PrimoSearchRequest><institution>NYU</institution></searchRequest>]]></request></searchBrief></env:Body></env:Envelope>
|
9
|
+
headers:
|
10
|
+
Content-Type:
|
11
|
+
- text/xml;charset=UTF-8
|
12
|
+
Soapaction:
|
13
|
+
- "\"searchBrief\""
|
14
|
+
Accept:
|
15
|
+
- "*/*"
|
16
|
+
Content-Length:
|
17
|
+
- "924"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Date:
|
24
|
+
- Wed, 09 Jan 2013 19:00:25 GMT
|
25
|
+
Content-Type:
|
26
|
+
- text/xml;charset=utf-8
|
27
|
+
X-Powered-By:
|
28
|
+
- Servlet 2.5; JBoss-5.0/JBossWeb-2.1
|
29
|
+
Server:
|
30
|
+
- Apache-Coyote/1.1
|
31
|
+
Transfer-Encoding:
|
32
|
+
- chunked
|
33
|
+
body:
|
34
|
+
string: |-
|
35
|
+
<?xml version="1.0" encoding="UTF-8"?><soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><soapenv:Body><searchBriefResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"><searchBriefReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><SEGMENTS xmlns="http://www.exlibrisgroup.com/xsd/jaguar/search">
|
36
|
+
<JAGROOT>
|
37
|
+
<RESULT>
|
38
|
+
<QUERYTRANSFORMS/>
|
39
|
+
<FACETLIST ACCURATE_COUNTERS="true">
|
40
|
+
<FACET NAME="creator" COUNT="1">
|
41
|
+
<FACET_VALUES KEY="Greene, G" VALUE="1"/>
|
42
|
+
</FACET>
|
43
|
+
<FACET NAME="lcc" COUNT="1">
|
44
|
+
<FACET_VALUES KEY="P - Language and literature." VALUE="1"/>
|
45
|
+
</FACET>
|
46
|
+
<FACET NAME="lang" COUNT="1">
|
47
|
+
<FACET_VALUES KEY="eng" VALUE="1"/>
|
48
|
+
</FACET>
|
49
|
+
<FACET NAME="rtype" COUNT="1">
|
50
|
+
<FACET_VALUES KEY="books" VALUE="1"/>
|
51
|
+
</FACET>
|
52
|
+
<FACET NAME="topic" COUNT="6">
|
53
|
+
<FACET_VALUES KEY="Travelers" VALUE="1"/>
|
54
|
+
<FACET_VALUES KEY="Retirees" VALUE="1"/>
|
55
|
+
<FACET_VALUES KEY="Aunts" VALUE="1"/>
|
56
|
+
<FACET_VALUES KEY="British" VALUE="1"/>
|
57
|
+
<FACET_VALUES KEY="Older women" VALUE="1"/>
|
58
|
+
<FACET_VALUES KEY="Women travelers" VALUE="1"/>
|
59
|
+
</FACET>
|
60
|
+
<FACET NAME="pfilter" COUNT="1">
|
61
|
+
<FACET_VALUES KEY="books" VALUE="1"/>
|
62
|
+
</FACET>
|
63
|
+
<FACET NAME="creationdate" COUNT="1">
|
64
|
+
<FACET_VALUES KEY="2004" VALUE="1"/>
|
65
|
+
</FACET>
|
66
|
+
<FACET NAME="domain" COUNT="1">
|
67
|
+
<FACET_VALUES KEY="BOBST" VALUE="1"/>
|
68
|
+
</FACET>
|
69
|
+
<FACET NAME="genre" COUNT="2">
|
70
|
+
<FACET_VALUES KEY="Fiction" VALUE="1"/>
|
71
|
+
<FACET_VALUES KEY="Humorous stories" VALUE="1"/>
|
72
|
+
</FACET>
|
73
|
+
<FACET NAME="library" COUNT="1">
|
74
|
+
<FACET_VALUES KEY="BOBST" VALUE="1"/>
|
75
|
+
</FACET>
|
76
|
+
<FACET NAME="local1" COUNT="1">
|
77
|
+
<FACET_VALUES KEY="Main Collection" VALUE="1"/>
|
78
|
+
</FACET>
|
79
|
+
</FACETLIST>
|
80
|
+
<DOCSET HIT_TIME="20" TOTALHITS="1" FIRSTHIT="1" LASTHIT="1" TOTAL_TIME="62" IS_LOCAL="true">
|
81
|
+
<DOC ID="3583835" RANK="1.0" NO="1" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local Search Engine">
|
82
|
+
<PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">
|
83
|
+
<record>
|
84
|
+
<control>
|
85
|
+
<sourcerecordid>000062856</sourcerecordid>
|
86
|
+
<sourceid>nyu_aleph</sourceid>
|
87
|
+
<recordid>nyu_aleph000062856</recordid>
|
88
|
+
<originalsourceid>NYU01</originalsourceid>
|
89
|
+
<ilsapiid>NYU01000062856</ilsapiid>
|
90
|
+
<sourceformat>MARC21</sourceformat>
|
91
|
+
<sourcesystem>Aleph</sourcesystem>
|
92
|
+
</control>
|
93
|
+
<display>
|
94
|
+
<type>book</type>
|
95
|
+
<title>Travels with my aunt</title>
|
96
|
+
<creator>Graham Greene 1904-1991.</creator>
|
97
|
+
<edition>Deluxe ed.</edition>
|
98
|
+
<publisher>New York : Penguin Books</publisher>
|
99
|
+
<creationdate>2004</creationdate>
|
100
|
+
<format>xvi, 254 p. ; 22 cm.</format>
|
101
|
+
<identifier>$$Cisbn$$V0143039008; $$Cisbn$$V9780143039006</identifier>
|
102
|
+
<subject>British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous stories</subject>
|
103
|
+
<language>eng</language>
|
104
|
+
<relation>$$Cseries $$VPenguin classics</relation>
|
105
|
+
<source>nyu_aleph</source>
|
106
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 2004 )$$Sunavailable$$31$$41$$5N$$61$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
107
|
+
<lds02>nyu_aleph000062856</lds02>
|
108
|
+
<lds01>NYU</lds01>
|
109
|
+
<availinstitution>$$INYU$$Sunavailable</availinstitution>
|
110
|
+
<availpnx>unavailable</availpnx>
|
111
|
+
<version>2</version>
|
112
|
+
</display>
|
113
|
+
<links>
|
114
|
+
<openurl>$$Topenurl_journal</openurl>
|
115
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
116
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
117
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
118
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
119
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
120
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
121
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
122
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
123
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
124
|
+
</links>
|
125
|
+
<search>
|
126
|
+
<creatorcontrib>Graham, Greene 1904-1991.</creatorcontrib>
|
127
|
+
<creatorcontrib>Greene, Graham, 1904-1991.</creatorcontrib>
|
128
|
+
<creatorcontrib>Greene, G</creatorcontrib>
|
129
|
+
<creatorcontrib>Graham Greene ; introduction by Gloria Emerson.</creatorcontrib>
|
130
|
+
<creatorcontrib>Greene, Henry Graham, 1904-1991</creatorcontrib>
|
131
|
+
<creatorcontrib>Gŭrin, Gŭreŏm, 1904-1991</creatorcontrib>
|
132
|
+
<creatorcontrib>Grin, Greham, 1904-1991</creatorcontrib>
|
133
|
+
<creatorcontrib>Grīna, Grāhama, 1904-1991</creatorcontrib>
|
134
|
+
<creatorcontrib>Grin, Grėm, 1904-1991</creatorcontrib>
|
135
|
+
<creatorcontrib>格拉姆・葛林, 1904-1991</creatorcontrib>
|
136
|
+
<creatorcontrib>Grīns, Greiems, 1904-1991</creatorcontrib>
|
137
|
+
<creatorcontrib>Grīns, G. (Greiems), 1904-1991</creatorcontrib>
|
138
|
+
<title>Travels with my aunt /</title>
|
139
|
+
<subject>British Foreign countries Fiction</subject>
|
140
|
+
<subject>Women travelers Fiction</subject>
|
141
|
+
<subject>Older women Fiction</subject>
|
142
|
+
<subject>Travelers Fiction</subject>
|
143
|
+
<subject>Retirees Fiction</subject>
|
144
|
+
<subject>Aunts Fiction</subject>
|
145
|
+
<subject>Humorous stories</subject>
|
146
|
+
<subject>People, Retired</subject>
|
147
|
+
<subject>Retired persons</subject>
|
148
|
+
<subject>Retired people</subject>
|
149
|
+
<subject>Travelers, Women</subject>
|
150
|
+
<subject>Britishers</subject>
|
151
|
+
<subject>British people</subject>
|
152
|
+
<subject>Britons (British)</subject>
|
153
|
+
<subject>Brits</subject>
|
154
|
+
<subject>Aged women</subject>
|
155
|
+
<general>Penguin Books,</general>
|
156
|
+
<general>"Graham Greene centennial, 1904-2004"--Cover.</general>
|
157
|
+
<sourceid>nyu_aleph</sourceid>
|
158
|
+
<recordid>nyu_aleph000062856</recordid>
|
159
|
+
<isbn>0143039008</isbn>
|
160
|
+
<isbn>9780143039006</isbn>
|
161
|
+
<rsrctype>book</rsrctype>
|
162
|
+
<creationdate>2004</creationdate>
|
163
|
+
<creationdate>1969</creationdate>
|
164
|
+
<addtitle>Penguin classics</addtitle>
|
165
|
+
<searchscope>BOBST</searchscope>
|
166
|
+
<searchscope>BOBST Main Collection</searchscope>
|
167
|
+
<searchscope>nyu_aleph</searchscope>
|
168
|
+
<searchscope>NYU</searchscope>
|
169
|
+
<scope>BOBST</scope>
|
170
|
+
<scope>BOBST Main Collection</scope>
|
171
|
+
<scope>nyu_aleph</scope>
|
172
|
+
<scope>NYU</scope>
|
173
|
+
<lsr01>PR6013.R44 T7 2004</lsr01>
|
174
|
+
<lsr01>PR6013 .R44 T7 2004</lsr01>
|
175
|
+
<lsr02>Penguin Books,</lsr02>
|
176
|
+
</search>
|
177
|
+
<sort>
|
178
|
+
<title>Travels with my aunt /</title>
|
179
|
+
<creationdate>2004</creationdate>
|
180
|
+
<author>Greene, Graham, 1904-1991.</author>
|
181
|
+
<lso01>2004</lso01>
|
182
|
+
</sort>
|
183
|
+
<facets>
|
184
|
+
<language>eng</language>
|
185
|
+
<creationdate>2004</creationdate>
|
186
|
+
<topic>British–Foreign countries–Fiction</topic>
|
187
|
+
<topic>Women travelers–Fiction</topic>
|
188
|
+
<topic>Older women–Fiction</topic>
|
189
|
+
<topic>Travelers–Fiction</topic>
|
190
|
+
<topic>Retirees–Fiction</topic>
|
191
|
+
<topic>Aunts–Fiction</topic>
|
192
|
+
<collection>BOBST</collection>
|
193
|
+
<prefilter>books</prefilter>
|
194
|
+
<rsrctype>books</rsrctype>
|
195
|
+
<creatorcontrib>Greene, G</creatorcontrib>
|
196
|
+
<genre>Fiction</genre>
|
197
|
+
<genre>Humorous stories</genre>
|
198
|
+
<library>BOBST</library>
|
199
|
+
<lfc01>Main Collection</lfc01>
|
200
|
+
<classificationlcc>P - Language and literature.–English literature</classificationlcc>
|
201
|
+
<frbrgroupid>49340863</frbrgroupid>
|
202
|
+
<frbrtype>5</frbrtype>
|
203
|
+
</facets>
|
204
|
+
<dedup>
|
205
|
+
<t>1</t>
|
206
|
+
<c1>2004559272</c1>
|
207
|
+
<c2>0143039008;9780143039006</c2>
|
208
|
+
<c3>travelswithmyaunt</c3>
|
209
|
+
<c4>2004</c4>
|
210
|
+
<f1>2004559272</f1>
|
211
|
+
<f3>0143039008;9780143039006</f3>
|
212
|
+
<f5>travelswithmyaunt</f5>
|
213
|
+
<f6>2004</f6>
|
214
|
+
<f7>travels with my aunt</f7>
|
215
|
+
<f8>nyu</f8>
|
216
|
+
<f9>xvi, 254 p. ;</f9>
|
217
|
+
<f10>penguin books</f10>
|
218
|
+
<f11>greene graham 1904 1991</f11>
|
219
|
+
</dedup>
|
220
|
+
<frbr>
|
221
|
+
<t>1</t>
|
222
|
+
<k1>$$Kgreene graham 1904 1991$$AA</k1>
|
223
|
+
<k3>$$Kbooktravels with my aunt$$AT</k3>
|
224
|
+
</frbr>
|
225
|
+
<delivery>
|
226
|
+
<institution>NYU</institution>
|
227
|
+
<delcategory>Physical Item</delcategory>
|
228
|
+
</delivery>
|
229
|
+
<enrichment>
|
230
|
+
<classificationlcc>PR6013.R44</classificationlcc>
|
231
|
+
</enrichment>
|
232
|
+
<ranking>
|
233
|
+
<booster1>1</booster1>
|
234
|
+
<booster2>1</booster2>
|
235
|
+
</ranking>
|
236
|
+
<addata>
|
237
|
+
<aulast>Greene</aulast>
|
238
|
+
<aufirst>Graham,</aufirst>
|
239
|
+
<au>Greene, Graham, 1904-1991</au>
|
240
|
+
<btitle>Travels with my aunt</btitle>
|
241
|
+
<seriestitle>Penguin classics</seriestitle>
|
242
|
+
<date>2004</date>
|
243
|
+
<risdate>2004.</risdate>
|
244
|
+
<isbn>0143039008</isbn>
|
245
|
+
<isbn>9780143039006</isbn>
|
246
|
+
<format>book</format>
|
247
|
+
<genre>book</genre>
|
248
|
+
<ristype>BOOK</ristype>
|
249
|
+
<notes>Includes bibliographical references (p. xv-xvi).</notes>
|
250
|
+
<cop>New York</cop>
|
251
|
+
<pub>Penguin Books</pub>
|
252
|
+
<oclcid>56781200</oclcid>
|
253
|
+
<lccn>2004559272</lccn>
|
254
|
+
<lad01>BOBST</lad01>
|
255
|
+
<lad01>Physical Item</lad01>
|
256
|
+
</addata>
|
257
|
+
</record>
|
258
|
+
</PrimoNMBib>
|
259
|
+
<GETIT deliveryCategory="Physical Item" GetIt1="http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000062856" GetIt2="https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-01-09T14%3A00%3A26IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt&amp;rft.aulast=Greene&amp;rft.aufirst=Graham%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Greene%2C%20Graham%2C%201904-1991&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Penguin%20Books&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0143039008&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000062856&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>000062856&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>
|
260
|
+
<LIBRARIES>
|
261
|
+
<LIBRARY>
|
262
|
+
<institution>NYU</institution>
|
263
|
+
<library>BOBST</library>
|
264
|
+
<status>unavailable</status>
|
265
|
+
<collection>Main Collection</collection>
|
266
|
+
<callNumber>(PR6013.R44 T7 2004 )</callNumber>
|
267
|
+
<url>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000062856</url>
|
268
|
+
</LIBRARY>
|
269
|
+
</LIBRARIES>
|
270
|
+
<LINKS>
|
271
|
+
<openurl><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-09T14%3A00%3A26IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Travels%20with%20my%20aunt&rft.aulast=Greene&rft.aufirst=Graham%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Greene%2C%20Graham%2C%201904-1991&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Penguin%20Books&rft.place=New%20York&rft.issn=&rft.eissn=&rft.isbn=0143039008&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph000062856&rft.eisbn=&rft_dat=<nyu_aleph>000062856</nyu_aleph>&rft_id=info:oai/]]></openurl>
|
272
|
+
<backlink>http://alephstage.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=000062856</backlink>
|
273
|
+
<thumbnail>http://images.amazon.com/images/P/0143039008.01._SSTHUM_.jpg</thumbnail>
|
274
|
+
<linktotoc>http://www.amazon.com/gp/reader/0143039008</linktotoc>
|
275
|
+
<openurlfulltext><![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-01-09T14%3A00%3A26IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.jtitle=&rft.btitle=Travels%20with%20my%20aunt&rft.aulast=Greene&rft.aufirst=Graham%2C&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Greene%2C%20Graham%2C%201904-1991&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Penguin%20Books&rft.place=New%20York&rft.issn=&rft.eissn=&rft.isbn=0143039008&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<nyu_aleph>000062856</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>
|
276
|
+
<linktoholdings>http://alephstage.library.nyu.edu/F?func=item-global&amp;doc_library=NYU01&amp;local_base=PRIMOCOMMON&amp;doc_number=000062856</linktoholdings>
|
277
|
+
<linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph000062856?institution=NYU&amp;persistent</linktoreview>
|
278
|
+
<linktouc>http://www.amazon.com/s/?search-alias=aps&amp;field-keywords=0143039008</linktouc>
|
279
|
+
<linktouc>http://www.worldcat.org/search?q=isbn%3A0143039008</linktouc>
|
280
|
+
</LINKS>
|
281
|
+
</DOC>
|
282
|
+
</DOCSET>
|
283
|
+
</RESULT>
|
284
|
+
<searchToken>0</searchToken>
|
285
|
+
</JAGROOT>
|
286
|
+
</SEGMENTS></searchBriefReturn></searchBriefResponse></soapenv:Body></soapenv:Envelope>
|
287
|
+
http_version:
|
288
|
+
recorded_at: Wed, 09 Jan 2013 19:00:26 GMT
|