exlibris-primo 1.1.9 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,174 +0,0 @@
1
- require 'test_helper'
2
-
3
- class WebServiceTest < Test::Unit::TestCase
4
- PNX_NS = {'pnx' => 'http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib'}
5
- SEARCH_NS = {'search' => 'http://www.exlibrisgroup.com/xsd/jaguar/search'}
6
- SEAR_NS = {'sear' => 'http://www.exlibrisgroup.com/xsd/jaguar/search'}
7
- PRIM_NS = {'prim' => 'http://www.exlibris.com/primo/xsd/primoeshelffolder'}
8
-
9
- def setup
10
- @primo_definition = YAML.load( %{
11
- type: PrimoService
12
- priority: 2 # After SFX, to get SFX metadata enhancement
13
- status: active
14
- base_url: http://bobcatdev.library.nyu.edu
15
- vid: NYU
16
- institution: NYU
17
- holding_search_institution: NYU
18
- holding_search_text: Search for this title in BobCat.
19
- suppress_holdings: [ !ruby/regexp '/\$\$LBWEB/', !ruby/regexp '/\$\$LNWEB/', !ruby/regexp '/\$\$LTWEB/', !ruby/regexp '/\$\$LWEB/', !ruby/regexp '/\$\$1Restricted Internet Resources/' ]
20
- ez_proxy: !ruby/regexp '/https\:\/\/ezproxy\.library\.nyu\.edu\/login\?url=/'
21
- service_types:
22
- - primo_source
23
- - holding_search
24
- - fulltext
25
- - table_of_contents
26
- - referent_enhance
27
- - cover_image })
28
- @valid_user_id = "N18158418"
29
- @invalid_user_id = "INVALID_USER"
30
- @default_institution = "NYU"
31
- @base_url = @primo_definition["base_url"]
32
- @bogus_404_url = "http://library.nyu.edu/bogus"
33
- @bogus_200_url = "http://library.nyu.edu"
34
- @primo_test_doc_id = "nyu_aleph000062856"
35
- @primo_invalid_doc_id = "thisIsNotAValidDocId"
36
- @primo_test_problem_doc_id = "nyu_aleph000509288"
37
- @isbn_search_params = {:isbn => "0143039008"}
38
- @issn_search_params = {:issn => "0090-5720"}
39
- @title_search_params = {:title => "Travels with My Aunt"}
40
- @author_search_params = {:author => "Graham Greene"}
41
- @title_author_genre_search_params = {:title => "Travels with My Aunt", :author => "Graham Greene", :genre => "Book"}
42
- end
43
-
44
- def testbogus_response
45
- VCR.turned_off do
46
- assert_raise(SOAP::HTTPStreamError) {
47
- ws = Exlibris::Primo::WebService::GetRecord.new(@primo_test_doc_id, @bogus_404_url)
48
- }
49
- end
50
- VCR.use_cassette('web service bogus 200') do
51
- assert_raise(SOAP::HTTPStreamError) {
52
- ws = Exlibris::Primo::WebService::GetRecord.new(@primo_test_doc_id, @bogus_200_url)
53
- }
54
- end
55
- end
56
-
57
- # Test GetRecord for a single Primo document.
58
- def testget_record
59
- VCR.use_cassette('web service single document') do
60
- ws = Exlibris::Primo::WebService::GetRecord.new(@primo_test_doc_id, @base_url, {:institution => "NYU"})
61
- assert_not_nil(ws, "#{ws.class} returned nil when instantiated.")
62
- assert_instance_of( Nokogiri::XML::Document, ws.response, "#{ws.class} response is an unexpected object: #{ws.response.class}")
63
- assert_equal([], ws.error, "#{ws.class} encountered errors: #{ws.error}")
64
- assert_equal(@primo_test_doc_id, ws.response.at("//pnx:control/pnx:recordid", PNX_NS).inner_text,
65
- "#{ws.class} returned an unexpected record: #{ws.response.to_xml(:indent => 5, :encoding => 'UTF-8')}")
66
- end
67
- end
68
-
69
- def testget_record_count
70
- VCR.use_cassette('web service single document') do
71
- ws = Exlibris::Primo::WebService::GetRecord.new(@primo_test_doc_id, @base_url, {:institution => "NYU"})
72
- assert_equal("1", ws.response.at("//search:DOCSET", SEARCH_NS)["TOTALHITS"])
73
- end
74
- end
75
-
76
- def testsearch_brief_count
77
- VCR.use_cassette('web service brief search') do
78
- ws = Exlibris::Primo::WebService::SearchBrief.new(@isbn_search_params, @base_url, {:institution => "NYU"})
79
- assert_equal("1", ws.response.at("//search:DOCSET", SEARCH_NS)["TOTALHITS"])
80
- end
81
- end
82
-
83
- def testget_genre_discrepancy
84
- VCR.use_cassette('web service problem document') do
85
- ws = Exlibris::Primo::WebService::GetRecord.new(@primo_test_problem_doc_id, @base_url, {:institution => "NYU"})
86
- assert_not_nil(ws, "#{ws.class} returned nil when instantiated.")
87
- assert_instance_of( Nokogiri::XML::Document, ws.response, "#{ws.class} response is an unexpected object: #{ws.response.class}")
88
- assert_equal([], ws.error, "#{ws.class} encountered errors: #{ws.error}")
89
- assert_equal(@primo_test_problem_doc_id, ws.response.at("//pnx:control/pnx:recordid", PNX_NS).inner_text,
90
- "#{ws.class} returned an unexpected record: #{ws.response.to_xml(:indent => 5, :encoding => 'UTF-8')}")
91
- assert_not_nil(ws.response.at("//pnx:display/pnx:availlibrary", PNX_NS).inner_text,
92
- "#{ws.class} returned an unexpected record: #{ws.response.to_xml(:indent => 5, :encoding => 'UTF-8')}")
93
- end
94
- end
95
-
96
- # Test GetRecord with invalid Primo doc id.
97
- def testget_bogus_record
98
- VCR.use_cassette('web service invalid document') do
99
- assert_raise(RuntimeError) {
100
- ws = Exlibris::Primo::WebService::GetRecord.new(@primo_invalid_doc_id, @base_url, {:institution => "NYU"})
101
- }
102
- end
103
- end
104
-
105
- # Test SearchBrief by isbn.
106
- def testisbn_search
107
- VCR.use_cassette('web service isbn search') do
108
- ws = Exlibris::Primo::WebService::SearchBrief.new(@isbn_search_params, @base_url, {:institution => "NYU"})
109
- assert_not_nil(ws, "#{ws.class} returned nil when instantiated.")
110
- assert_instance_of( Nokogiri::XML::Document, ws.response, "#{ws.class} response is an unexpected object: #{ws.response.class}")
111
- assert_equal([], ws.error, "#{ws.class} encountered errors: #{ws.error}")
112
- end
113
- end
114
-
115
- # Test SearchBrief by issn.
116
- def testissn_search
117
- VCR.use_cassette('web service issn search') do
118
- ws = Exlibris::Primo::WebService::SearchBrief.new(@issn_search_params, @base_url, {:institution => "NYU"})
119
- assert_not_nil(ws, "#{ws.class} returned nil when instantiated.")
120
- assert_instance_of( Nokogiri::XML::Document, ws.response, "#{ws.class} response is an unexpected object: #{ws.response.class}")
121
- assert_equal([], ws.error, "#{ws.class} encountered errors: #{ws.error}")
122
- end
123
- end
124
-
125
- # Test SearchBrief by title.
126
- def testtitle_search
127
- VCR.use_cassette('web service title search') do
128
- ws = Exlibris::Primo::WebService::SearchBrief.new(@title_search_params, @base_url, {:institution => "NYU"})
129
- assert_not_nil(ws, "#{ws.class} returned nil when instantiated.")
130
- assert_instance_of( Nokogiri::XML::Document, ws.response, "#{ws.class} response is an unexpected object: #{ws.response.class}")
131
- assert_equal([], ws.error, "#{ws.class} encountered errors: #{ws.error}")
132
- end
133
- end
134
-
135
- # Test SearchBrief by author.
136
- def testauthor_search
137
- VCR.use_cassette('web service author search') do
138
- ws = Exlibris::Primo::WebService::SearchBrief.new(@author_search_params, @base_url, {:institution => "NYU"})
139
- assert_not_nil(ws, "#{ws.class} returned nil when instantiated.")
140
- assert_instance_of( Nokogiri::XML::Document, ws.response, "#{ws.class} response is an unexpected object: #{ws.response.class}")
141
- assert_equal([], ws.error, "#{ws.class} encountered errors: #{ws.error}")
142
- end
143
- end
144
-
145
- # Test SearchBrief by title/author/genre.
146
- def testtitle_author_genre_search
147
- VCR.use_cassette('web service title author genre search') do
148
- ws = Exlibris::Primo::WebService::SearchBrief.new(@title_author_genre_search_params, @base_url, {:institution => "NYU"})
149
- assert_not_nil(ws, "#{ws.class} returned nil when instantiated.")
150
- assert_instance_of( Nokogiri::XML::Document, ws.response, "#{ws.class} response is an unexpected object: #{ws.response.class}")
151
- assert_equal([], ws.error, "#{ws.class} encountered errors: #{ws.error}")
152
- end
153
- end
154
-
155
- def testget_new_eshelf
156
- VCR.use_cassette('web service get eshelf') do
157
- ws = Exlibris::Primo::WebService::GetEShelf.new(@valid_user_id, @default_institution, @base_url, {:institution => "NYU"})
158
- assert_not_nil(ws, "#{ws.class} returned nil when instantiated.")
159
- assert_instance_of( Nokogiri::XML::Document, ws.response, "#{ws.class} response is an unexpected object: #{ws.response.class}")
160
- assert_equal([], ws.error, "#{ws.class} encountered errors: #{ws.error}")
161
- assert_not_nil(ws.response.at("//sear:DOC", SEAR_NS), "#{ws.class} response returned a nil document")
162
- end
163
- end
164
-
165
- def testget_new_eshelf_structure
166
- VCR.use_cassette('web service get eshelf structure search') do
167
- ws = Exlibris::Primo::WebService::GetEShelfStructure.new(@valid_user_id, @default_institution, @base_url, {:institution => "NYU"})
168
- assert_not_nil(ws, "#{ws.class} returned nil when instantiated.")
169
- assert_instance_of( Nokogiri::XML::Document, ws.response, "#{ws.class} response is an unexpected object: #{ws.response.class}")
170
- assert_equal([], ws.error, "#{ws.class} encountered errors: #{ws.error}")
171
- assert_not_nil(ws.response.at("//prim:eshelf_folders", PRIM_NS), "#{ws.class} response returned a nil document")
172
- end
173
- end
174
- end
@@ -1,945 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: post
5
- uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher
6
- body:
7
- encoding: US-ASCII
8
- string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher" xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><wsdl: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>creator</IndexField><PrecisionOperator>exact</PrecisionOperator><Value>Graham Greene</Value></QueryTerm><QueryTerm><IndexField>title</IndexField><PrecisionOperator>exact</PrecisionOperator><Value>Travels with My Aunt</Value></QueryTerm></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled></PrimoSearchRequest><institution>NYU</institution></searchRequest>]]></request></wsdl:searchBrief></env:Body></env:Envelope>
9
- headers:
10
- Soapaction:
11
- - '"searchBrief"'
12
- Content-Type:
13
- - text/xml;charset=UTF-8
14
- Content-Length:
15
- - '1072'
16
- Accept:
17
- - '*/*'
18
- User-Agent:
19
- - Ruby
20
- response:
21
- status:
22
- code: 200
23
- message: OK
24
- headers:
25
- Server:
26
- - Apache-Coyote/1.1
27
- X-Powered-By:
28
- - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
29
- Content-Type:
30
- - text/xml;charset=utf-8
31
- Transfer-Encoding:
32
- - chunked
33
- Date:
34
- - Wed, 25 Sep 2013 14:52:07 GMT
35
- body:
36
- encoding: US-ASCII
37
- string: |-
38
- <?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><ns1:searchBriefResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://bobcatdev.library.nyu.edu/PrimoWebServices/services/searcher"><searchBriefReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">&lt;SEGMENTS xmlns=&quot;http://www.exlibrisgroup.com/xsd/jaguar/search&quot;&gt;
39
- &lt;JAGROOT&gt;
40
- &lt;RESULT&gt;
41
- &lt;QUERYTRANSFORMS/&gt;
42
- &lt;FACETLIST ACCURATE_COUNTERS=&quot;true&quot;&gt;
43
- &lt;FACET NAME=&quot;creator&quot; COUNT=&quot;11&quot;&gt;
44
- &lt;FACET_VALUES KEY=&quot;Gossett, L&quot; VALUE=&quot;1&quot;/&gt;
45
- &lt;FACET_VALUES KEY=&quot;Allethaire Press&quot; VALUE=&quot;1&quot;/&gt;
46
- &lt;FACET_VALUES KEY=&quot;Cukor, G&quot; VALUE=&quot;1&quot;/&gt;
47
- &lt;FACET_VALUES KEY=&quot;Grenfell Press&quot; VALUE=&quot;1&quot;/&gt;
48
- &lt;FACET_VALUES KEY=&quot;Firsts &amp;amp;amp; Company&quot; VALUE=&quot;1&quot;/&gt;
49
- &lt;FACET_VALUES KEY=&quot;Greene, G&quot; VALUE=&quot;4&quot;/&gt;
50
- &lt;FACET_VALUES KEY=&quot;McCowen, A&quot; VALUE=&quot;1&quot;/&gt;
51
- &lt;FACET_VALUES KEY=&quot;MGM/UA Home Video (Firm)&quot; VALUE=&quot;1&quot;/&gt;
52
- &lt;FACET_VALUES KEY=&quot;Smith, M&quot; VALUE=&quot;1&quot;/&gt;
53
- &lt;FACET_VALUES KEY=&quot;Cohen, C&quot; VALUE=&quot;1&quot;/&gt;
54
- &lt;FACET_VALUES KEY=&quot;Metro-Goldwyn-Mayer&quot; VALUE=&quot;1&quot;/&gt;
55
- &lt;/FACET&gt;
56
- &lt;FACET NAME=&quot;lcc&quot; COUNT=&quot;1&quot;&gt;
57
- &lt;FACET_VALUES KEY=&quot;P - Language and literature.&quot; VALUE=&quot;3&quot;/&gt;
58
- &lt;/FACET&gt;
59
- &lt;FACET NAME=&quot;lang&quot; COUNT=&quot;1&quot;&gt;
60
- &lt;FACET_VALUES KEY=&quot;eng&quot; VALUE=&quot;4&quot;/&gt;
61
- &lt;/FACET&gt;
62
- &lt;FACET NAME=&quot;rtype&quot; COUNT=&quot;2&quot;&gt;
63
- &lt;FACET_VALUES KEY=&quot;books&quot; VALUE=&quot;3&quot;/&gt;
64
- &lt;FACET_VALUES KEY=&quot;video&quot; VALUE=&quot;1&quot;/&gt;
65
- &lt;/FACET&gt;
66
- &lt;FACET NAME=&quot;topic&quot; COUNT=&quot;7&quot;&gt;
67
- &lt;FACET_VALUES KEY=&quot;Travelers&quot; VALUE=&quot;2&quot;/&gt;
68
- &lt;FACET_VALUES KEY=&quot;Retirees&quot; VALUE=&quot;2&quot;/&gt;
69
- &lt;FACET_VALUES KEY=&quot;Aunts&quot; VALUE=&quot;2&quot;/&gt;
70
- &lt;FACET_VALUES KEY=&quot;British&quot; VALUE=&quot;2&quot;/&gt;
71
- &lt;FACET_VALUES KEY=&quot;Greene, Graham, 1904-1991. Travels with my aunt&quot; VALUE=&quot;1&quot;/&gt;
72
- &lt;FACET_VALUES KEY=&quot;Older women&quot; VALUE=&quot;2&quot;/&gt;
73
- &lt;FACET_VALUES KEY=&quot;Women travelers&quot; VALUE=&quot;2&quot;/&gt;
74
- &lt;/FACET&gt;
75
- &lt;FACET NAME=&quot;tlevel&quot; COUNT=&quot;1&quot;&gt;
76
- &lt;FACET_VALUES KEY=&quot;available&quot; VALUE=&quot;3&quot;/&gt;
77
- &lt;/FACET&gt;
78
- &lt;FACET NAME=&quot;pfilter&quot; COUNT=&quot;2&quot;&gt;
79
- &lt;FACET_VALUES KEY=&quot;books&quot; VALUE=&quot;3&quot;/&gt;
80
- &lt;FACET_VALUES KEY=&quot;video&quot; VALUE=&quot;1&quot;/&gt;
81
- &lt;/FACET&gt;
82
- &lt;FACET NAME=&quot;creationdate&quot; COUNT=&quot;6&quot;&gt;
83
- &lt;FACET_VALUES KEY=&quot;1995&quot; VALUE=&quot;1&quot;/&gt;
84
- &lt;FACET_VALUES KEY=&quot;1970&quot; VALUE=&quot;1&quot;/&gt;
85
- &lt;FACET_VALUES KEY=&quot;1981&quot; VALUE=&quot;1&quot;/&gt;
86
- &lt;FACET_VALUES KEY=&quot;2004&quot; VALUE=&quot;1&quot;/&gt;
87
- &lt;FACET_VALUES KEY=&quot;1969&quot; VALUE=&quot;1&quot;/&gt;
88
- &lt;FACET_VALUES KEY=&quot;1989&quot; VALUE=&quot;1&quot;/&gt;
89
- &lt;/FACET&gt;
90
- &lt;FACET NAME=&quot;domain&quot; COUNT=&quot;3&quot;&gt;
91
- &lt;FACET_VALUES KEY=&quot;CU&quot; VALUE=&quot;1&quot;/&gt;
92
- &lt;FACET_VALUES KEY=&quot;BAFC&quot; VALUE=&quot;1&quot;/&gt;
93
- &lt;FACET_VALUES KEY=&quot;BOBST&quot; VALUE=&quot;2&quot;/&gt;
94
- &lt;/FACET&gt;
95
- &lt;FACET NAME=&quot;genre&quot; COUNT=&quot;5&quot;&gt;
96
- &lt;FACET_VALUES KEY=&quot;Humorous fiction&quot; VALUE=&quot;1&quot;/&gt;
97
- &lt;FACET_VALUES KEY=&quot;Fiction&quot; VALUE=&quot;2&quot;/&gt;
98
- &lt;FACET_VALUES KEY=&quot;Humorous stories&quot; VALUE=&quot;2&quot;/&gt;
99
- &lt;FACET_VALUES KEY=&quot;Feature films&quot; VALUE=&quot;1&quot;/&gt;
100
- &lt;FACET_VALUES KEY=&quot;Films for the hearing impaired&quot; VALUE=&quot;1&quot;/&gt;
101
- &lt;/FACET&gt;
102
- &lt;FACET NAME=&quot;library&quot; COUNT=&quot;3&quot;&gt;
103
- &lt;FACET_VALUES KEY=&quot;BOBST&quot; VALUE=&quot;4&quot;/&gt;
104
- &lt;FACET_VALUES KEY=&quot;CGEN&quot; VALUE=&quot;1&quot;/&gt;
105
- &lt;FACET_VALUES KEY=&quot;BFALE&quot; VALUE=&quot;2&quot;/&gt;
106
- &lt;/FACET&gt;
107
- &lt;FACET NAME=&quot;local1&quot; COUNT=&quot;2&quot;&gt;
108
- &lt;FACET_VALUES KEY=&quot;Main Collection&quot; VALUE=&quot;3&quot;/&gt;
109
- &lt;FACET_VALUES KEY=&quot;Fales&quot; VALUE=&quot;2&quot;/&gt;
110
- &lt;/FACET&gt;
111
- &lt;FACET NAME=&quot;local4&quot; COUNT=&quot;2&quot;&gt;
112
- &lt;FACET_VALUES KEY=&quot;United States&quot; VALUE=&quot;1&quot;/&gt;
113
- &lt;FACET_VALUES KEY=&quot;New York&quot; VALUE=&quot;2&quot;/&gt;
114
- &lt;/FACET&gt;
115
- &lt;/FACETLIST&gt;
116
- &lt;DOCSET HIT_TIME=&quot;317&quot; TOTALHITS=&quot;4&quot; FIRSTHIT=&quot;1&quot; LASTHIT=&quot;4&quot; TOTAL_TIME=&quot;452&quot; IS_LOCAL=&quot;true&quot;&gt;
117
- &lt;DOC ID=&quot;1672778&quot; RANK=&quot;1.0&quot; NO=&quot;1&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
118
- &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
119
- &lt;record&gt;
120
- &lt;control&gt;
121
- &lt;sourcerecordid&gt;000570570&lt;/sourcerecordid&gt;
122
- &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
123
- &lt;recordid&gt;nyu_aleph000570570&lt;/recordid&gt;
124
- &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
125
- &lt;ilsapiid&gt;NYU01000570570&lt;/ilsapiid&gt;
126
- &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
127
- &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
128
- &lt;/control&gt;
129
- &lt;display&gt;
130
- &lt;type&gt;video&lt;/type&gt;
131
- &lt;title&gt;Travels with my aunt [videorecording]&lt;/title&gt;
132
- &lt;contributor&gt;George Cukor 1899-1983.; Maggie Smith 1934-; Alec McCowen; Louis Gossett 1936-; Graham Greene 1904-1991.; Metro-Goldwyn-Mayer.; MGM/UA Home Video (Firm)&lt;/contributor&gt;
133
- &lt;edition&gt;Deluxe letter-box ed.&lt;/edition&gt;
134
- &lt;publisher&gt;Santa Monica, CA : MGM/UA Home Video&lt;/publisher&gt;
135
- &lt;creationdate&gt;1995&lt;/creationdate&gt;
136
- &lt;format&gt;1 videocassette (ca. 109 min.) : sd., col. ; 1/2 in.&lt;/format&gt;
137
- &lt;identifier&gt;$$Cisbn$$V079282783X; $$Cisbn$$V9780792827832; $$Cmuspub$$VM202851 MGM/UA Home Video&lt;/identifier&gt;
138
- &lt;subject&gt;Feature films; Films for the hearing impaired&lt;/subject&gt;
139
- &lt;description&gt;$$Csummary$$VAunt Augusta, a spirited woman of indeterminate years, sets off on a series of European adventures with her stodgy, middle-aged nephew Henry. The once shy Henry is transformed into a virile, vibrant man while his aunt shows him the stylish, graceful lifestyle of her swindling, smuggling and hustling schemes.&lt;/description&gt;
140
- &lt;description&gt;$$Ccredits$$VDirector of photography, Douglas Slocombe ; film editor, John Bloom ; music, Terry Hatch.&lt;/description&gt;
141
- &lt;description&gt;$$Ccredits$$VMaggie Smith, Alec McCowen, Lou Gossett, Robert Stephens, Cindy Williams, Robert Fleming, Jos&#xE9; Luis L&#xF3;pez V&#xE1;zquez.&lt;/description&gt;
142
- &lt;language&gt;eng&lt;/language&gt;
143
- &lt;relation&gt;Greene, Graham, 1904-1991. Travels with my aunt.&lt;/relation&gt;
144
- &lt;source&gt;nyu_aleph&lt;/source&gt;
145
- &lt;availlibrary&gt;$$INYU$$LBAFC$$1Main Collection$$Sunavailable$$31$$41$$5N$$60$$XNYU50$$YBAFC$$ZAFC&lt;/availlibrary&gt;
146
- &lt;lds02&gt;nyu_aleph000570570&lt;/lds02&gt;
147
- &lt;lds01&gt;NYU&lt;/lds01&gt;
148
- &lt;availinstitution&gt;$$INYU$$Sunavailable&lt;/availinstitution&gt;
149
- &lt;availpnx&gt;unavailable&lt;/availpnx&gt;
150
- &lt;/display&gt;
151
- &lt;links&gt;
152
- &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
153
- &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
154
- &lt;thumbnail&gt;$$Tamazon_thumb&lt;/thumbnail&gt;
155
- &lt;linktotoc&gt;$$Tamazon_toc$$DCheck for Amazon Search Inside&lt;/linktotoc&gt;
156
- &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
157
- &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
158
- &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
159
- &lt;linktouc&gt;$$Tamazon_uc$$DCheck Amazon&lt;/linktouc&gt;
160
- &lt;linktouc&gt;$$Tworldcat_isbn$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
161
- &lt;linktoexcerpt&gt;$$Tsyndetics_excerpt$$DExcerpt from item&lt;/linktoexcerpt&gt;
162
- &lt;/links&gt;
163
- &lt;search&gt;
164
- &lt;creatorcontrib&gt;Metro Goldwyn Mayer ; a George Cukor-Robert Fryer and James Cresson production ; screenplay by Jay Presson Allen and Hugh Wheeler ; produced by Robert Fryer and James Cresson ; directed by George Cukor.&lt;/creatorcontrib&gt;
165
- &lt;creatorcontrib&gt;Director of photography, Douglas Slocombe ; film editor, John Bloom ; music, Terry Hatch.&lt;/creatorcontrib&gt;
166
- &lt;creatorcontrib&gt;Maggie Smith, Alec McCowen, Lou Gossett, Robert Stephens, Cindy Williams, Robert Fleming, Jos&#xE9; Luis L&#xF3;pez V&#xE1;zquez.&lt;/creatorcontrib&gt;
167
- &lt;creatorcontrib&gt;George, Cukor 1899-1983.&lt;/creatorcontrib&gt;
168
- &lt;creatorcontrib&gt;Maggie, Smith 1934-&lt;/creatorcontrib&gt;
169
- &lt;creatorcontrib&gt;Alec McCowen&lt;/creatorcontrib&gt;
170
- &lt;creatorcontrib&gt;Louis, Gossett 1936-&lt;/creatorcontrib&gt;
171
- &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
172
- &lt;creatorcontrib&gt;Cukor, G&lt;/creatorcontrib&gt;
173
- &lt;creatorcontrib&gt;Smith, M&lt;/creatorcontrib&gt;
174
- &lt;creatorcontrib&gt;McCowen, A&lt;/creatorcontrib&gt;
175
- &lt;creatorcontrib&gt;Gossett, L&lt;/creatorcontrib&gt;
176
- &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
177
- &lt;creatorcontrib&gt;Metro-Goldwyn-Mayer.&lt;/creatorcontrib&gt;
178
- &lt;creatorcontrib&gt;MGM/UA Home Video (Firm)&lt;/creatorcontrib&gt;
179
- &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
180
- &lt;creatorcontrib&gt;McCowen, Alex&lt;/creatorcontrib&gt;
181
- &lt;creatorcontrib&gt;Gossett, Lou, 1936-&lt;/creatorcontrib&gt;
182
- &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
183
- &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
184
- &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
185
- &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
186
- &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
187
- &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
188
- &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
189
- &lt;creatorcontrib&gt;Smith, Margaret Natalie, 1934-&lt;/creatorcontrib&gt;
190
- &lt;title&gt;Travels with my aunt&lt;/title&gt;
191
- &lt;description&gt;Aunt Augusta, a spirited woman of indeterminate years, sets off on a series of European adventures with her stodgy, middle-aged nephew Henry. The once shy Henry is transformed into a virile, vibrant man while his aunt shows him the stylish, graceful lifestyle of her swindling, smuggling and hustling schemes.&lt;/description&gt;
192
- &lt;subject&gt;Feature films&lt;/subject&gt;
193
- &lt;subject&gt;Films for the hearing impaired&lt;/subject&gt;
194
- &lt;general&gt;MGM/UA Home Video,&lt;/general&gt;
195
- &lt;general&gt;Closed captioned for the hearing impaired.&lt;/general&gt;
196
- &lt;general&gt;Originally produced as a motion picture in 1972.&lt;/general&gt;
197
- &lt;general&gt;Based upon the novel by Graham Greene.&lt;/general&gt;
198
- &lt;general&gt;&quot;M202851&quot;--Cassette label.&lt;/general&gt;
199
- &lt;general&gt;Director of photography, Douglas Slocombe ; film editor, John Bloom ; music, Terry Hatch.&lt;/general&gt;
200
- &lt;general&gt;Rated PG.&lt;/general&gt;
201
- &lt;general&gt;M202851&lt;/general&gt;
202
- &lt;general&gt;[videorecording] /&lt;/general&gt;
203
- &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
204
- &lt;recordid&gt;nyu_aleph000570570&lt;/recordid&gt;
205
- &lt;isbn&gt;079282783X&lt;/isbn&gt;
206
- &lt;isbn&gt;9780792827832&lt;/isbn&gt;
207
- &lt;rsrctype&gt;video&lt;/rsrctype&gt;
208
- &lt;creationdate&gt;1995&lt;/creationdate&gt;
209
- &lt;creationdate&gt;1972&lt;/creationdate&gt;
210
- &lt;addtitle&gt;Travels with my aunt.&lt;/addtitle&gt;
211
- &lt;searchscope&gt;BAFC&lt;/searchscope&gt;
212
- &lt;searchscope&gt;BAFC Main Collection&lt;/searchscope&gt;
213
- &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
214
- &lt;searchscope&gt;NYU&lt;/searchscope&gt;
215
- &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
216
- &lt;scope&gt;BAFC&lt;/scope&gt;
217
- &lt;scope&gt;BAFC Main Collection&lt;/scope&gt;
218
- &lt;scope&gt;nyu_aleph&lt;/scope&gt;
219
- &lt;scope&gt;NYU&lt;/scope&gt;
220
- &lt;scope&gt;BOBST&lt;/scope&gt;
221
- &lt;lsr02&gt;MGM/UA Home Video,&lt;/lsr02&gt;
222
- &lt;/search&gt;
223
- &lt;sort&gt;
224
- &lt;title&gt;Travels with my aunt&lt;/title&gt;
225
- &lt;creationdate&gt;1995&lt;/creationdate&gt;
226
- &lt;author&gt;Cukor, George, 1899-1983.&lt;/author&gt;
227
- &lt;lso01&gt;1995&lt;/lso01&gt;
228
- &lt;/sort&gt;
229
- &lt;facets&gt;
230
- &lt;language&gt;eng&lt;/language&gt;
231
- &lt;creationdate&gt;1995&lt;/creationdate&gt;
232
- &lt;collection&gt;BAFC&lt;/collection&gt;
233
- &lt;prefilter&gt;video&lt;/prefilter&gt;
234
- &lt;rsrctype&gt;video&lt;/rsrctype&gt;
235
- &lt;creatorcontrib&gt;Cukor, G&lt;/creatorcontrib&gt;
236
- &lt;creatorcontrib&gt;Smith, M&lt;/creatorcontrib&gt;
237
- &lt;creatorcontrib&gt;McCowen, A&lt;/creatorcontrib&gt;
238
- &lt;creatorcontrib&gt;Gossett, L&lt;/creatorcontrib&gt;
239
- &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
240
- &lt;creatorcontrib&gt;Metro-Goldwyn-Mayer&lt;/creatorcontrib&gt;
241
- &lt;creatorcontrib&gt;MGM/UA Home Video (Firm)&lt;/creatorcontrib&gt;
242
- &lt;genre&gt;Feature films&lt;/genre&gt;
243
- &lt;genre&gt;Films for the hearing impaired&lt;/genre&gt;
244
- &lt;library&gt;BOBST&lt;/library&gt;
245
- &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
246
- &lt;classificationlcc&gt;P - Language and literature.&#x2013;English literature&lt;/classificationlcc&gt;
247
- &lt;frbrgroupid&gt;49548430&lt;/frbrgroupid&gt;
248
- &lt;frbrtype&gt;6&lt;/frbrtype&gt;
249
- &lt;/facets&gt;
250
- &lt;dedup&gt;
251
- &lt;t&gt;1&lt;/t&gt;
252
- &lt;c2&gt;079282783X;9780792827832&lt;/c2&gt;
253
- &lt;c3&gt;travelswithmyaunt&lt;/c3&gt;
254
- &lt;c4&gt;1995&lt;/c4&gt;
255
- &lt;f1&gt;M202851&lt;/f1&gt;
256
- &lt;f3&gt;079282783X;9780792827832&lt;/f3&gt;
257
- &lt;f5&gt;travelswithmyaunt&lt;/f5&gt;
258
- &lt;f6&gt;1995&lt;/f6&gt;
259
- &lt;f7&gt;travels with my aunt&lt;/f7&gt;
260
- &lt;f8&gt;cau&lt;/f8&gt;
261
- &lt;f9&gt;1 videocassette (ca. 109 min.) :&lt;/f9&gt;
262
- &lt;f10&gt;mgm ua home video&lt;/f10&gt;
263
- &lt;/dedup&gt;
264
- &lt;frbr&gt;
265
- &lt;t&gt;1&lt;/t&gt;
266
- &lt;k1&gt;$$Kcukor george 1899 1983$$AA&lt;/k1&gt;
267
- &lt;k1&gt;$$Ksmith maggie 1934$$AA&lt;/k1&gt;
268
- &lt;k1&gt;$$Kmccowen alec$$AA&lt;/k1&gt;
269
- &lt;k1&gt;$$Kgossett louis 1936$$AA&lt;/k1&gt;
270
- &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
271
- &lt;k1&gt;$$Kmetro goldwyn mayer$$AA&lt;/k1&gt;
272
- &lt;k1&gt;$$Kmgm ua home video firm$$AA&lt;/k1&gt;
273
- &lt;k3&gt;$$Kvideotravels with my aunt$$AT&lt;/k3&gt;
274
- &lt;/frbr&gt;
275
- &lt;delivery&gt;
276
- &lt;institution&gt;NYU&lt;/institution&gt;
277
- &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
278
- &lt;/delivery&gt;
279
- &lt;enrichment&gt;
280
- &lt;classificationlcc&gt;PR6013.R44&lt;/classificationlcc&gt;
281
- &lt;/enrichment&gt;
282
- &lt;ranking&gt;
283
- &lt;booster1&gt;1&lt;/booster1&gt;
284
- &lt;booster2&gt;1&lt;/booster2&gt;
285
- &lt;/ranking&gt;
286
- &lt;addata&gt;
287
- &lt;aulast&gt;Cukor&lt;/aulast&gt;
288
- &lt;aufirst&gt;George,&lt;/aufirst&gt;
289
- &lt;addau&gt;Cukor, George, 1899-1983&lt;/addau&gt;
290
- &lt;addau&gt;Smith, Maggie, 1934-&lt;/addau&gt;
291
- &lt;addau&gt;McCowen, Alec&lt;/addau&gt;
292
- &lt;addau&gt;Gossett, Louis, 1936-&lt;/addau&gt;
293
- &lt;addau&gt;Greene, Graham, 1904-1991&lt;/addau&gt;
294
- &lt;addau&gt;Metro-Goldwyn-Mayer&lt;/addau&gt;
295
- &lt;addau&gt;MGM/UA Home Video (Firm)&lt;/addau&gt;
296
- &lt;btitle&gt;Travels with my aunt [videorecording]&lt;/btitle&gt;
297
- &lt;date&gt;1995&lt;/date&gt;
298
- &lt;risdate&gt;[1995]&lt;/risdate&gt;
299
- &lt;isbn&gt;079282783X&lt;/isbn&gt;
300
- &lt;isbn&gt;9780792827832&lt;/isbn&gt;
301
- &lt;format&gt;video&lt;/format&gt;
302
- &lt;genre&gt;video&lt;/genre&gt;
303
- &lt;ristype&gt;VIDEO&lt;/ristype&gt;
304
- &lt;abstract&gt;Aunt Augusta, a spirited woman of indeterminate years, sets off on a series of European adventures with her stodgy, middle-aged nephew Henry. The once shy Henry is transformed into a virile, vibrant man while his aunt shows him the stylish, graceful lifestyle of her swindling, smuggling and hustling schemes.&lt;/abstract&gt;
305
- &lt;cop&gt;Santa Monica, CA&lt;/cop&gt;
306
- &lt;pub&gt;MGM/UA Home Video&lt;/pub&gt;
307
- &lt;oclcid&gt;35619373&lt;/oclcid&gt;
308
- &lt;lad01&gt;BAFC&lt;/lad01&gt;
309
- &lt;lad01&gt;Physical Item&lt;/lad01&gt;
310
- &lt;/addata&gt;
311
- &lt;/record&gt;
312
- &lt;/PrimoNMBib&gt;
313
- &lt;GETIT deliveryCategory=&quot;Physical Item&quot; GetIt1=&quot;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000570570&quot; GetIt2=&quot;https://dev.getit.library.nyu.edu/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2013-09-25T10%3A52%3A07IST&amp;amp;url_ver=Z39.88-2004&amp;amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000570570&amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:video&amp;amp;rft.genre=video&amp;amp;rft.jtitle=&amp;amp;rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&amp;amp;rft.aulast=Cukor&amp;amp;rft.aufirst=George%2C&amp;amp;rft.auinit=&amp;amp;rft.auinit1=&amp;amp;rft.auinitm=&amp;amp;rft.ausuffix=&amp;amp;rft.au=&amp;amp;rft.aucorp=&amp;amp;rft.volume=&amp;amp;rft.issue=&amp;amp;rft.part=&amp;amp;rft.quarter=&amp;amp;rft.ssn=&amp;amp;rft.spage=&amp;amp;rft.epage=&amp;amp;rft.pages=&amp;amp;rft.artnum=&amp;amp;rft.pub=MGM/UA%20Home%20Video&amp;amp;rft.place=Santa%20Monica%2C%20CA&amp;amp;rft.issn=&amp;amp;rft.eissn=&amp;amp;rft.isbn=079282783X&amp;amp;rft.sici=&amp;amp;rft.coden=&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph000570570&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;000570570&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot;/&gt;
314
- &lt;LIBRARIES&gt;
315
- &lt;LIBRARY&gt;
316
- &lt;institution&gt;NYU&lt;/institution&gt;
317
- &lt;library&gt;BAFC&lt;/library&gt;
318
- &lt;status&gt;unavailable&lt;/status&gt;
319
- &lt;collection&gt;Main Collection&lt;/collection&gt;
320
- &lt;callNumber/&gt;
321
- &lt;url&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000570570&lt;/url&gt;
322
- &lt;/LIBRARY&gt;
323
- &lt;/LIBRARIES&gt;
324
- &lt;LINKS&gt;
325
- &lt;openurl&gt;&lt;![CDATA[https://dev.getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph000570570&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:video&amp;rft.genre=video&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&amp;rft.aulast=Cukor&amp;rft.aufirst=George%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&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=MGM/UA%20Home%20Video&amp;rft.place=Santa%20Monica%2C%20CA&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=079282783X&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000570570&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;000570570&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurl&gt;
326
- &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000570570&lt;/backlink&gt;
327
- &lt;thumbnail&gt;http://images.amazon.com/images/P/079282783X.01._SSTHUM_.jpg&lt;/thumbnail&gt;
328
- &lt;linktotoc&gt;http://www.amazon.com/gp/reader/079282783X&lt;/linktotoc&gt;
329
- &lt;openurlfulltext&gt;&lt;![CDATA[https://dev.getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph000570570&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:video&amp;rft.genre=video&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&amp;rft.aulast=Cukor&amp;rft.aufirst=George%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&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=MGM/UA%20Home%20Video&amp;rft.place=Santa%20Monica%2C%20CA&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=079282783X&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;000570570&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurlfulltext&gt;
330
- &lt;linktoholdings&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000570570&lt;/linktoholdings&gt;
331
- &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph000570570?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
332
- &lt;linktouc&gt;http://www.amazon.com/s/?search-alias=aps&amp;amp;field-keywords=079282783X&lt;/linktouc&gt;
333
- &lt;linktouc&gt;http://www.worldcat.org/search?q=isbn%3A079282783X&lt;/linktouc&gt;
334
- &lt;/LINKS&gt;
335
- &lt;/DOC&gt;
336
- &lt;DOC ID=&quot;3893101&quot; RANK=&quot;0.66670746&quot; NO=&quot;2&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
337
- &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
338
- &lt;record&gt;
339
- &lt;control&gt;
340
- &lt;sourcerecordid&gt;003443700&lt;/sourcerecordid&gt;
341
- &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
342
- &lt;recordid&gt;nyu_aleph003443700&lt;/recordid&gt;
343
- &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
344
- &lt;ilsapiid&gt;NYU01003443700&lt;/ilsapiid&gt;
345
- &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
346
- &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
347
- &lt;/control&gt;
348
- &lt;display&gt;
349
- &lt;type&gt;book&lt;/type&gt;
350
- &lt;title&gt;Travels with my aunt&lt;/title&gt;
351
- &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
352
- &lt;publisher&gt;New York : The Viking Press&lt;/publisher&gt;
353
- &lt;creationdate&gt;1981?], c1969&lt;/creationdate&gt;
354
- &lt;format&gt;318 p. ; 20 cm.&lt;/format&gt;
355
- &lt;identifier&gt;$$Cisbn$$V0670725242; $$Cisbn$$V9780670725243&lt;/identifier&gt;
356
- &lt;subject&gt;British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous fiction&lt;/subject&gt;
357
- &lt;language&gt;eng&lt;/language&gt;
358
- &lt;relation&gt;$$Cseries $$VGreene, Graham, 1904-1991. Works. 1981.&lt;/relation&gt;
359
- &lt;source&gt;nyu_aleph&lt;/source&gt;
360
- &lt;availlibrary&gt;$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 1981 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBOBST$$ZMAIN&lt;/availlibrary&gt;
361
- &lt;lds02&gt;nyu_aleph003443700&lt;/lds02&gt;
362
- &lt;lds01&gt;NYU&lt;/lds01&gt;
363
- &lt;availinstitution&gt;$$INYU$$Savailable&lt;/availinstitution&gt;
364
- &lt;availpnx&gt;available&lt;/availpnx&gt;
365
- &lt;version&gt;2&lt;/version&gt;
366
- &lt;/display&gt;
367
- &lt;links&gt;
368
- &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
369
- &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
370
- &lt;thumbnail&gt;$$Tamazon_thumb&lt;/thumbnail&gt;
371
- &lt;linktotoc&gt;$$Tamazon_toc$$DCheck for Amazon Search Inside&lt;/linktotoc&gt;
372
- &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
373
- &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
374
- &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
375
- &lt;linktouc&gt;$$Tamazon_uc$$DCheck Amazon&lt;/linktouc&gt;
376
- &lt;linktouc&gt;$$Tworldcat_isbn$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
377
- &lt;linktoexcerpt&gt;$$Tsyndetics_excerpt$$DExcerpt from item&lt;/linktoexcerpt&gt;
378
- &lt;/links&gt;
379
- &lt;search&gt;
380
- &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
381
- &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
382
- &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
383
- &lt;creatorcontrib&gt;by Graham Greene.&lt;/creatorcontrib&gt;
384
- &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
385
- &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
386
- &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
387
- &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
388
- &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
389
- &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
390
- &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
391
- &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
392
- &lt;title&gt;Travels with my aunt /&lt;/title&gt;
393
- &lt;subject&gt;British Foreign countries Fiction&lt;/subject&gt;
394
- &lt;subject&gt;Women travelers Fiction&lt;/subject&gt;
395
- &lt;subject&gt;Older women Fiction&lt;/subject&gt;
396
- &lt;subject&gt;Travelers Fiction&lt;/subject&gt;
397
- &lt;subject&gt;Retirees Fiction&lt;/subject&gt;
398
- &lt;subject&gt;Aunts Fiction&lt;/subject&gt;
399
- &lt;subject&gt;Humorous fiction&lt;/subject&gt;
400
- &lt;subject&gt;Britishers&lt;/subject&gt;
401
- &lt;subject&gt;British people&lt;/subject&gt;
402
- &lt;subject&gt;Britons (British)&lt;/subject&gt;
403
- &lt;subject&gt;Brits&lt;/subject&gt;
404
- &lt;subject&gt;Travelers, Women&lt;/subject&gt;
405
- &lt;subject&gt;Aged women&lt;/subject&gt;
406
- &lt;subject&gt;People, Retired&lt;/subject&gt;
407
- &lt;subject&gt;Retired persons&lt;/subject&gt;
408
- &lt;subject&gt;Retired people&lt;/subject&gt;
409
- &lt;general&gt;The Viking Press,&lt;/general&gt;
410
- &lt;general&gt;&quot;Published in 1970 ...&quot;--T.p. verso.&lt;/general&gt;
411
- &lt;general&gt;Series statement from dust jacket; part of the collected works reissued in 1981.&lt;/general&gt;
412
- &lt;general&gt;United States New York New York.&lt;/general&gt;
413
- &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
414
- &lt;recordid&gt;nyu_aleph003443700&lt;/recordid&gt;
415
- &lt;isbn&gt;0670725242&lt;/isbn&gt;
416
- &lt;isbn&gt;9780670725243&lt;/isbn&gt;
417
- &lt;rsrctype&gt;book&lt;/rsrctype&gt;
418
- &lt;creationdate&gt;1981&lt;/creationdate&gt;
419
- &lt;creationdate&gt;1969&lt;/creationdate&gt;
420
- &lt;addtitle&gt;Works. 1981.&lt;/addtitle&gt;
421
- &lt;addtitle&gt;The collected edition&lt;/addtitle&gt;
422
- &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
423
- &lt;searchscope&gt;BOBST Main Collection&lt;/searchscope&gt;
424
- &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
425
- &lt;searchscope&gt;NYU&lt;/searchscope&gt;
426
- &lt;scope&gt;BOBST&lt;/scope&gt;
427
- &lt;scope&gt;BOBST Main Collection&lt;/scope&gt;
428
- &lt;scope&gt;nyu_aleph&lt;/scope&gt;
429
- &lt;scope&gt;NYU&lt;/scope&gt;
430
- &lt;lsr01&gt;PR6013.R44 T7 1981&lt;/lsr01&gt;
431
- &lt;lsr01&gt;PR6013 .R44 T7 1981&lt;/lsr01&gt;
432
- &lt;lsr02&gt;The Viking Press,&lt;/lsr02&gt;
433
- &lt;/search&gt;
434
- &lt;sort&gt;
435
- &lt;title&gt;Travels with my aunt /&lt;/title&gt;
436
- &lt;creationdate&gt;1981&lt;/creationdate&gt;
437
- &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
438
- &lt;lso01&gt;1981&lt;/lso01&gt;
439
- &lt;/sort&gt;
440
- &lt;facets&gt;
441
- &lt;language&gt;eng&lt;/language&gt;
442
- &lt;creationdate&gt;1981&lt;/creationdate&gt;
443
- &lt;topic&gt;British&#x2013;Foreign countries&#x2013;Fiction&lt;/topic&gt;
444
- &lt;topic&gt;Women travelers&#x2013;Fiction&lt;/topic&gt;
445
- &lt;topic&gt;Older women&#x2013;Fiction&lt;/topic&gt;
446
- &lt;topic&gt;Travelers&#x2013;Fiction&lt;/topic&gt;
447
- &lt;topic&gt;Retirees&#x2013;Fiction&lt;/topic&gt;
448
- &lt;topic&gt;Aunts&#x2013;Fiction&lt;/topic&gt;
449
- &lt;collection&gt;BOBST&lt;/collection&gt;
450
- &lt;toplevel&gt;available&lt;/toplevel&gt;
451
- &lt;prefilter&gt;books&lt;/prefilter&gt;
452
- &lt;rsrctype&gt;books&lt;/rsrctype&gt;
453
- &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
454
- &lt;genre&gt;Fiction&lt;/genre&gt;
455
- &lt;genre&gt;Humorous fiction&lt;/genre&gt;
456
- &lt;library&gt;BOBST&lt;/library&gt;
457
- &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
458
- &lt;lfc04&gt;United States&lt;/lfc04&gt;
459
- &lt;lfc04&gt;New York&lt;/lfc04&gt;
460
- &lt;lfc04&gt;New York.&lt;/lfc04&gt;
461
- &lt;classificationlcc&gt;P - Language and literature.&#x2013;Fiction and juvenile belles lettres&#x2013;Fiction in English&lt;/classificationlcc&gt;
462
- &lt;classificationlcc&gt;P - Language and literature.&#x2013;English literature&lt;/classificationlcc&gt;
463
- &lt;frbrgroupid&gt;49340863&lt;/frbrgroupid&gt;
464
- &lt;frbrtype&gt;5&lt;/frbrtype&gt;
465
- &lt;/facets&gt;
466
- &lt;dedup&gt;
467
- &lt;t&gt;1&lt;/t&gt;
468
- &lt;c1&gt;72094848&lt;/c1&gt;
469
- &lt;c2&gt;0670725242;9780670725243&lt;/c2&gt;
470
- &lt;c3&gt;travelswithmyaunt&lt;/c3&gt;
471
- &lt;c4&gt;1981&lt;/c4&gt;
472
- &lt;f1&gt;72094848&lt;/f1&gt;
473
- &lt;f3&gt;0670725242;9780670725243&lt;/f3&gt;
474
- &lt;f5&gt;travelswithmyaunt&lt;/f5&gt;
475
- &lt;f6&gt;1981&lt;/f6&gt;
476
- &lt;f7&gt;travels with my aunt&lt;/f7&gt;
477
- &lt;f8&gt;nyu&lt;/f8&gt;
478
- &lt;f9&gt;318 p. ;&lt;/f9&gt;
479
- &lt;f10&gt;the viking press&lt;/f10&gt;
480
- &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
481
- &lt;/dedup&gt;
482
- &lt;frbr&gt;
483
- &lt;t&gt;1&lt;/t&gt;
484
- &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
485
- &lt;k3&gt;$$Kbooktravels with my aunt$$AT&lt;/k3&gt;
486
- &lt;/frbr&gt;
487
- &lt;delivery&gt;
488
- &lt;institution&gt;NYU&lt;/institution&gt;
489
- &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
490
- &lt;/delivery&gt;
491
- &lt;enrichment&gt;
492
- &lt;classificationlcc&gt;PZ3.G8319&lt;/classificationlcc&gt;
493
- &lt;classificationlcc&gt;PR6013.R44&lt;/classificationlcc&gt;
494
- &lt;/enrichment&gt;
495
- &lt;ranking&gt;
496
- &lt;booster1&gt;1&lt;/booster1&gt;
497
- &lt;booster2&gt;1&lt;/booster2&gt;
498
- &lt;/ranking&gt;
499
- &lt;addata&gt;
500
- &lt;aulast&gt;Greene&lt;/aulast&gt;
501
- &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
502
- &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
503
- &lt;seriesau&gt;Greene, Graham, 1904-1991&lt;/seriesau&gt;
504
- &lt;btitle&gt;Travels with my aunt&lt;/btitle&gt;
505
- &lt;seriestitle&gt;Greene, Graham, 1904-1991. Works. 1981&lt;/seriestitle&gt;
506
- &lt;date&gt;1981&lt;/date&gt;
507
- &lt;risdate&gt;[1981?], c1969.&lt;/risdate&gt;
508
- &lt;isbn&gt;0670725242&lt;/isbn&gt;
509
- &lt;isbn&gt;9780670725243&lt;/isbn&gt;
510
- &lt;format&gt;book&lt;/format&gt;
511
- &lt;genre&gt;book&lt;/genre&gt;
512
- &lt;ristype&gt;BOOK&lt;/ristype&gt;
513
- &lt;cop&gt;New York&lt;/cop&gt;
514
- &lt;pub&gt;The Viking Press&lt;/pub&gt;
515
- &lt;oclcid&gt;7871629&lt;/oclcid&gt;
516
- &lt;lad01&gt;BOBST&lt;/lad01&gt;
517
- &lt;lad01&gt;Physical Item&lt;/lad01&gt;
518
- &lt;lccn&gt;72094848&lt;/lccn&gt;
519
- &lt;/addata&gt;
520
- &lt;/record&gt;
521
- &lt;/PrimoNMBib&gt;
522
- &lt;GETIT deliveryCategory=&quot;Physical Item&quot; GetIt1=&quot;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000570570&quot; GetIt2=&quot;https://dev.getit.library.nyu.edu/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2013-09-25T10%3A52%3A07IST&amp;amp;url_ver=Z39.88-2004&amp;amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000570570&amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:video&amp;amp;rft.genre=video&amp;amp;rft.jtitle=&amp;amp;rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&amp;amp;rft.aulast=Cukor&amp;amp;rft.aufirst=George%2C&amp;amp;rft.auinit=&amp;amp;rft.auinit1=&amp;amp;rft.auinitm=&amp;amp;rft.ausuffix=&amp;amp;rft.au=&amp;amp;rft.aucorp=&amp;amp;rft.volume=&amp;amp;rft.issue=&amp;amp;rft.part=&amp;amp;rft.quarter=&amp;amp;rft.ssn=&amp;amp;rft.spage=&amp;amp;rft.epage=&amp;amp;rft.pages=&amp;amp;rft.artnum=&amp;amp;rft.pub=MGM/UA%20Home%20Video&amp;amp;rft.place=Santa%20Monica%2C%20CA&amp;amp;rft.issn=&amp;amp;rft.eissn=&amp;amp;rft.isbn=079282783X&amp;amp;rft.sici=&amp;amp;rft.coden=&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph000570570&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;000570570&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot;/&gt;
523
- &lt;LIBRARIES&gt;
524
- &lt;LIBRARY&gt;
525
- &lt;institution&gt;NYU&lt;/institution&gt;
526
- &lt;library&gt;BOBST&lt;/library&gt;
527
- &lt;status&gt;available&lt;/status&gt;
528
- &lt;collection&gt;Main Collection&lt;/collection&gt;
529
- &lt;callNumber&gt;(PR6013.R44 T7 1981 )&lt;/callNumber&gt;
530
- &lt;url&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003443700&lt;/url&gt;
531
- &lt;/LIBRARY&gt;
532
- &lt;/LIBRARIES&gt;
533
- &lt;LINKS&gt;
534
- &lt;openurl&gt;&lt;![CDATA[https://dev.getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph003443700&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=The%20Viking%20Press&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0670725242&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph003443700&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;003443700&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurl&gt;
535
- &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003443700&lt;/backlink&gt;
536
- &lt;thumbnail&gt;http://images.amazon.com/images/P/0670725242.01._SSTHUM_.jpg&lt;/thumbnail&gt;
537
- &lt;linktotoc&gt;http://www.amazon.com/gp/reader/0670725242&lt;/linktotoc&gt;
538
- &lt;openurlfulltext&gt;&lt;![CDATA[https://dev.getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph003443700&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=The%20Viking%20Press&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0670725242&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;003443700&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurlfulltext&gt;
539
- &lt;linktoholdings&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003443700&lt;/linktoholdings&gt;
540
- &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph003443700?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
541
- &lt;linktouc&gt;http://www.amazon.com/s/?search-alias=aps&amp;amp;field-keywords=0670725242&lt;/linktouc&gt;
542
- &lt;linktouc&gt;http://www.worldcat.org/search?q=isbn%3A0670725242&lt;/linktouc&gt;
543
- &lt;/LINKS&gt;
544
- &lt;/DOC&gt;
545
- &lt;DOC ID=&quot;2970199&quot; RANK=&quot;4.498112E-4&quot; NO=&quot;3&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
546
- &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
547
- &lt;record&gt;
548
- &lt;control&gt;
549
- &lt;sourcerecordid&gt;003445127&lt;/sourcerecordid&gt;
550
- &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
551
- &lt;recordid&gt;nyu_aleph003445127&lt;/recordid&gt;
552
- &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
553
- &lt;ilsapiid&gt;NYU01003445127&lt;/ilsapiid&gt;
554
- &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
555
- &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
556
- &lt;/control&gt;
557
- &lt;display&gt;
558
- &lt;type&gt;book&lt;/type&gt;
559
- &lt;title&gt;Reflections on Travels with my aunt&lt;/title&gt;
560
- &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
561
- &lt;contributor&gt;Claudia Cohen 1953- binder.; Firsts &amp;amp;amp; Company, publisher.; Allethaire Press printer.; Grenfell Press, printer.&lt;/contributor&gt;
562
- &lt;publisher&gt;New York : Firsts &amp;amp;amp; Company&lt;/publisher&gt;
563
- &lt;creationdate&gt;1989&lt;/creationdate&gt;
564
- &lt;format&gt;[20] p. : port., facsims. ; 26 cm.&lt;/format&gt;
565
- &lt;subject&gt;Greene, Graham, 1904-1991. Travels with my aunt&lt;/subject&gt;
566
- &lt;language&gt;eng&lt;/language&gt;
567
- &lt;source&gt;nyu_aleph&lt;/source&gt;
568
- &lt;availlibrary&gt;$$INYU$$LBFALE$$1Fales$$2(Brit Non-circulating )$$Savailable$$31$$40$$5Y$$60$$XNYU50$$YBFALE$$ZFALEF&lt;/availlibrary&gt;
569
- &lt;lds02&gt;nyu_aleph003445127&lt;/lds02&gt;
570
- &lt;lds01&gt;NYU&lt;/lds01&gt;
571
- &lt;availinstitution&gt;$$INYU$$Savailable&lt;/availinstitution&gt;
572
- &lt;availpnx&gt;available&lt;/availpnx&gt;
573
- &lt;/display&gt;
574
- &lt;links&gt;
575
- &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
576
- &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
577
- &lt;thumbnail&gt;$$Tgoogle_thumbnail&lt;/thumbnail&gt;
578
- &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
579
- &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
580
- &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
581
- &lt;linktouc&gt;$$Tworldcat_oclc$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
582
- &lt;/links&gt;
583
- &lt;search&gt;
584
- &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
585
- &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
586
- &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
587
- &lt;creatorcontrib&gt;Graham Greene.&lt;/creatorcontrib&gt;
588
- &lt;creatorcontrib&gt;Claudia, Cohen 1953- binder.&lt;/creatorcontrib&gt;
589
- &lt;creatorcontrib&gt;Cohen, C&lt;/creatorcontrib&gt;
590
- &lt;creatorcontrib&gt;Firsts &amp;amp;amp; Company, publisher.&lt;/creatorcontrib&gt;
591
- &lt;creatorcontrib&gt;Allethaire Press printer.&lt;/creatorcontrib&gt;
592
- &lt;creatorcontrib&gt;Grenfell Press, printer.&lt;/creatorcontrib&gt;
593
- &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
594
- &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
595
- &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
596
- &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
597
- &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
598
- &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
599
- &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
600
- &lt;creatorcontrib&gt;Cohen, Claudia, of Easthampton, Mass.&lt;/creatorcontrib&gt;
601
- &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
602
- &lt;title&gt;Reflections on Travels with my aunt /&lt;/title&gt;
603
- &lt;subject&gt;Greene, Graham, 1904-1991. Travels with my aunt&lt;/subject&gt;
604
- &lt;general&gt;Firsts &amp;amp;amp; Company,&lt;/general&gt;
605
- &lt;general&gt;&quot;Reflections on Travels With My Aunt has been published by Firsts &amp;amp;amp; Company in the spring of 1989 in an edition of 250. The book was printed by Allethaire Press and The Grenfell Press on T.H. Saunders paper and bound by hand in Sage Reynolds' painted papers by Claudia Cohen. All copies have been signed by the author.&quot;--Colophon.&lt;/general&gt;
606
- &lt;general&gt;Facsimile of a portion of Greene's manuscript is printed on p. [13-16].&lt;/general&gt;
607
- &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
608
- &lt;recordid&gt;nyu_aleph003445127&lt;/recordid&gt;
609
- &lt;rsrctype&gt;book&lt;/rsrctype&gt;
610
- &lt;creationdate&gt;1989&lt;/creationdate&gt;
611
- &lt;addtitle&gt;Travels with my aunt.&lt;/addtitle&gt;
612
- &lt;searchscope&gt;BFALE&lt;/searchscope&gt;
613
- &lt;searchscope&gt;BFALE Fales&lt;/searchscope&gt;
614
- &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
615
- &lt;searchscope&gt;NYU&lt;/searchscope&gt;
616
- &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
617
- &lt;scope&gt;BFALE&lt;/scope&gt;
618
- &lt;scope&gt;BFALE Fales&lt;/scope&gt;
619
- &lt;scope&gt;nyu_aleph&lt;/scope&gt;
620
- &lt;scope&gt;NYU&lt;/scope&gt;
621
- &lt;scope&gt;BOBST&lt;/scope&gt;
622
- &lt;lsr01&gt;Brit&lt;/lsr01&gt;
623
- &lt;lsr02&gt;Firsts &amp;amp;amp; Company,&lt;/lsr02&gt;
624
- &lt;/search&gt;
625
- &lt;sort&gt;
626
- &lt;title&gt;Reflections on Travels with my aunt /&lt;/title&gt;
627
- &lt;creationdate&gt;1989&lt;/creationdate&gt;
628
- &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
629
- &lt;lso01&gt;1989&lt;/lso01&gt;
630
- &lt;/sort&gt;
631
- &lt;facets&gt;
632
- &lt;language&gt;eng&lt;/language&gt;
633
- &lt;creationdate&gt;1989&lt;/creationdate&gt;
634
- &lt;topic&gt;Greene, Graham, 1904-1991. Travels with my aunt&lt;/topic&gt;
635
- &lt;toplevel&gt;available&lt;/toplevel&gt;
636
- &lt;prefilter&gt;books&lt;/prefilter&gt;
637
- &lt;rsrctype&gt;books&lt;/rsrctype&gt;
638
- &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
639
- &lt;creatorcontrib&gt;Cohen, C&lt;/creatorcontrib&gt;
640
- &lt;creatorcontrib&gt;Firsts &amp;amp;amp; Company&lt;/creatorcontrib&gt;
641
- &lt;creatorcontrib&gt;Allethaire Press&lt;/creatorcontrib&gt;
642
- &lt;creatorcontrib&gt;Grenfell Press&lt;/creatorcontrib&gt;
643
- &lt;library&gt;BFALE&lt;/library&gt;
644
- &lt;library&gt;BOBST&lt;/library&gt;
645
- &lt;lfc01&gt;Fales&lt;/lfc01&gt;
646
- &lt;frbrgroupid&gt;52487517&lt;/frbrgroupid&gt;
647
- &lt;frbrtype&gt;6&lt;/frbrtype&gt;
648
- &lt;/facets&gt;
649
- &lt;dedup&gt;
650
- &lt;t&gt;99&lt;/t&gt;
651
- &lt;c3&gt;reflectionsontravelswithmyaunt&lt;/c3&gt;
652
- &lt;c4&gt;1989&lt;/c4&gt;
653
- &lt;f5&gt;reflectionsontravelswithmyaunt&lt;/f5&gt;
654
- &lt;f6&gt;1989&lt;/f6&gt;
655
- &lt;f7&gt;reflections on travels with my aunt&lt;/f7&gt;
656
- &lt;f8&gt;nyu&lt;/f8&gt;
657
- &lt;f9&gt;[20] p. :&lt;/f9&gt;
658
- &lt;f10&gt;firsts company&lt;/f10&gt;
659
- &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
660
- &lt;/dedup&gt;
661
- &lt;frbr&gt;
662
- &lt;t&gt;1&lt;/t&gt;
663
- &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
664
- &lt;k3&gt;$$Kbookreflections on travels with my aunt$$AT&lt;/k3&gt;
665
- &lt;/frbr&gt;
666
- &lt;delivery&gt;
667
- &lt;institution&gt;NYU&lt;/institution&gt;
668
- &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
669
- &lt;/delivery&gt;
670
- &lt;ranking&gt;
671
- &lt;booster1&gt;1&lt;/booster1&gt;
672
- &lt;booster2&gt;1&lt;/booster2&gt;
673
- &lt;/ranking&gt;
674
- &lt;addata&gt;
675
- &lt;aulast&gt;Greene&lt;/aulast&gt;
676
- &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
677
- &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
678
- &lt;addau&gt;Cohen, Claudia, 1953- binder&lt;/addau&gt;
679
- &lt;addau&gt;Firsts &amp;amp;amp; Company, publisher&lt;/addau&gt;
680
- &lt;addau&gt;Allethaire Press printer&lt;/addau&gt;
681
- &lt;addau&gt;Grenfell Press, printer&lt;/addau&gt;
682
- &lt;btitle&gt;Reflections on Travels with my aunt&lt;/btitle&gt;
683
- &lt;date&gt;1989&lt;/date&gt;
684
- &lt;risdate&gt;1989.&lt;/risdate&gt;
685
- &lt;format&gt;book&lt;/format&gt;
686
- &lt;genre&gt;book&lt;/genre&gt;
687
- &lt;ristype&gt;BOOK&lt;/ristype&gt;
688
- &lt;cop&gt;New York&lt;/cop&gt;
689
- &lt;pub&gt;Firsts &amp;amp;amp; Company&lt;/pub&gt;
690
- &lt;oclcid&gt;20905242&lt;/oclcid&gt;
691
- &lt;lad01&gt;BFALE&lt;/lad01&gt;
692
- &lt;lad01&gt;Physical Item&lt;/lad01&gt;
693
- &lt;/addata&gt;
694
- &lt;/record&gt;
695
- &lt;/PrimoNMBib&gt;
696
- &lt;GETIT deliveryCategory=&quot;Physical Item&quot; GetIt1=&quot;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000570570&quot; GetIt2=&quot;https://dev.getit.library.nyu.edu/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2013-09-25T10%3A52%3A07IST&amp;amp;url_ver=Z39.88-2004&amp;amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000570570&amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:video&amp;amp;rft.genre=video&amp;amp;rft.jtitle=&amp;amp;rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&amp;amp;rft.aulast=Cukor&amp;amp;rft.aufirst=George%2C&amp;amp;rft.auinit=&amp;amp;rft.auinit1=&amp;amp;rft.auinitm=&amp;amp;rft.ausuffix=&amp;amp;rft.au=&amp;amp;rft.aucorp=&amp;amp;rft.volume=&amp;amp;rft.issue=&amp;amp;rft.part=&amp;amp;rft.quarter=&amp;amp;rft.ssn=&amp;amp;rft.spage=&amp;amp;rft.epage=&amp;amp;rft.pages=&amp;amp;rft.artnum=&amp;amp;rft.pub=MGM/UA%20Home%20Video&amp;amp;rft.place=Santa%20Monica%2C%20CA&amp;amp;rft.issn=&amp;amp;rft.eissn=&amp;amp;rft.isbn=079282783X&amp;amp;rft.sici=&amp;amp;rft.coden=&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph000570570&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;000570570&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot;/&gt;
697
- &lt;LIBRARIES&gt;
698
- &lt;LIBRARY&gt;
699
- &lt;institution&gt;NYU&lt;/institution&gt;
700
- &lt;library&gt;BFALE&lt;/library&gt;
701
- &lt;status&gt;available&lt;/status&gt;
702
- &lt;collection&gt;Fales&lt;/collection&gt;
703
- &lt;callNumber&gt;(Brit Non-circulating )&lt;/callNumber&gt;
704
- &lt;url&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003445127&lt;/url&gt;
705
- &lt;/LIBRARY&gt;
706
- &lt;/LIBRARIES&gt;
707
- &lt;LINKS&gt;
708
- &lt;openurl&gt;&lt;![CDATA[https://dev.getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph003445127&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Reflections%20on%20Travels%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=Firsts%20%26%20Company&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph003445127&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;003445127&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurl&gt;
709
- &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003445127&lt;/backlink&gt;
710
- &lt;thumbnail&gt;http://images.amazon.com/images/P/.01._SSTHUM_.jpg&lt;/thumbnail&gt;
711
- &lt;openurlfulltext&gt;&lt;![CDATA[https://dev.getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph003445127&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Reflections%20on%20Travels%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=Firsts%20%26%20Company&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;003445127&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurlfulltext&gt;
712
- &lt;linktoholdings&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003445127&lt;/linktoholdings&gt;
713
- &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph003445127?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
714
- &lt;linktouc&gt;http://www.worldcat.org/search?q=no%3A20905242&lt;/linktouc&gt;
715
- &lt;/LINKS&gt;
716
- &lt;/DOC&gt;
717
- &lt;DOC ID=&quot;2130847&quot; RANK=&quot;3.859733E-4&quot; NO=&quot;4&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
718
- &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
719
- &lt;record&gt;
720
- &lt;control&gt;
721
- &lt;sourcerecordid&gt;002212958&lt;/sourcerecordid&gt;
722
- &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
723
- &lt;recordid&gt;nyu_aleph002212958&lt;/recordid&gt;
724
- &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
725
- &lt;ilsapiid&gt;NYU01002212958&lt;/ilsapiid&gt;
726
- &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
727
- &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
728
- &lt;/control&gt;
729
- &lt;display&gt;
730
- &lt;type&gt;book&lt;/type&gt;
731
- &lt;title&gt;Travels with my aunt : a novel&lt;/title&gt;
732
- &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
733
- &lt;publisher&gt;New York : Viking Press&lt;/publisher&gt;
734
- &lt;creationdate&gt;1970, c1969&lt;/creationdate&gt;
735
- &lt;format&gt;244 p. ; 23 cm.&lt;/format&gt;
736
- &lt;subject&gt;British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous stories&lt;/subject&gt;
737
- &lt;language&gt;eng&lt;/language&gt;
738
- &lt;source&gt;nyu_aleph&lt;/source&gt;
739
- &lt;availlibrary&gt;$$INYU$$LBFALE$$1Fales$$2(Brit Non-circulating )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBFALE$$ZFALEF&lt;/availlibrary&gt;
740
- &lt;availlibrary&gt;$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 1970 )$$Sunavailable$$31$$41$$5N$$61$$XNYU50$$YBOBST$$ZMAIN&lt;/availlibrary&gt;
741
- &lt;availlibrary&gt;$$ICU$$LCU$$1Main Collection$$2(PR6013.R44 T7 1970 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YCU$$ZMAIN&lt;/availlibrary&gt;
742
- &lt;lds02&gt;nyu_aleph002212958&lt;/lds02&gt;
743
- &lt;lds01&gt;NYU&lt;/lds01&gt;
744
- &lt;lds01&gt;CU&lt;/lds01&gt;
745
- &lt;availinstitution&gt;$$ICU$$Savailable&lt;/availinstitution&gt;
746
- &lt;availinstitution&gt;$$INYU$$Savailable&lt;/availinstitution&gt;
747
- &lt;availpnx&gt;available&lt;/availpnx&gt;
748
- &lt;version&gt;2&lt;/version&gt;
749
- &lt;/display&gt;
750
- &lt;links&gt;
751
- &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
752
- &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
753
- &lt;thumbnail&gt;$$Tgoogle_thumbnail&lt;/thumbnail&gt;
754
- &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
755
- &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
756
- &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
757
- &lt;/links&gt;
758
- &lt;search&gt;
759
- &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
760
- &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
761
- &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
762
- &lt;creatorcontrib&gt;by Graham Greene.&lt;/creatorcontrib&gt;
763
- &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
764
- &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
765
- &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
766
- &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
767
- &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
768
- &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
769
- &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
770
- &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
771
- &lt;title&gt;Travels with my aunt : a novel /&lt;/title&gt;
772
- &lt;subject&gt;British Foreign countries Fiction&lt;/subject&gt;
773
- &lt;subject&gt;Women travelers Fiction&lt;/subject&gt;
774
- &lt;subject&gt;Older women Fiction&lt;/subject&gt;
775
- &lt;subject&gt;Travelers Fiction&lt;/subject&gt;
776
- &lt;subject&gt;Retirees Fiction&lt;/subject&gt;
777
- &lt;subject&gt;Aunts Fiction&lt;/subject&gt;
778
- &lt;subject&gt;Humorous stories&lt;/subject&gt;
779
- &lt;subject&gt;Britishers&lt;/subject&gt;
780
- &lt;subject&gt;British people&lt;/subject&gt;
781
- &lt;subject&gt;Britons (British)&lt;/subject&gt;
782
- &lt;subject&gt;Brits&lt;/subject&gt;
783
- &lt;subject&gt;Travelers, Women&lt;/subject&gt;
784
- &lt;subject&gt;Aged women&lt;/subject&gt;
785
- &lt;subject&gt;People, Retired&lt;/subject&gt;
786
- &lt;subject&gt;Retired persons&lt;/subject&gt;
787
- &lt;subject&gt;Retired people&lt;/subject&gt;
788
- &lt;general&gt;Viking Press,&lt;/general&gt;
789
- &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
790
- &lt;recordid&gt;nyu_aleph002212958&lt;/recordid&gt;
791
- &lt;rsrctype&gt;book&lt;/rsrctype&gt;
792
- &lt;creationdate&gt;1970&lt;/creationdate&gt;
793
- &lt;creationdate&gt;1969&lt;/creationdate&gt;
794
- &lt;searchscope&gt;BFALE&lt;/searchscope&gt;
795
- &lt;searchscope&gt;BFALE Fales&lt;/searchscope&gt;
796
- &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
797
- &lt;searchscope&gt;BOBST Main Collection&lt;/searchscope&gt;
798
- &lt;searchscope&gt;CU&lt;/searchscope&gt;
799
- &lt;searchscope&gt;CU Main Collection&lt;/searchscope&gt;
800
- &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
801
- &lt;searchscope&gt;NYU&lt;/searchscope&gt;
802
- &lt;searchscope&gt;CGEN&lt;/searchscope&gt;
803
- &lt;scope&gt;BFALE&lt;/scope&gt;
804
- &lt;scope&gt;BFALE Fales&lt;/scope&gt;
805
- &lt;scope&gt;BOBST&lt;/scope&gt;
806
- &lt;scope&gt;BOBST Main Collection&lt;/scope&gt;
807
- &lt;scope&gt;CU&lt;/scope&gt;
808
- &lt;scope&gt;CU Main Collection&lt;/scope&gt;
809
- &lt;scope&gt;nyu_aleph&lt;/scope&gt;
810
- &lt;scope&gt;NYU&lt;/scope&gt;
811
- &lt;scope&gt;CGEN&lt;/scope&gt;
812
- &lt;lsr01&gt;PR6013.R44 T7 1970&lt;/lsr01&gt;
813
- &lt;lsr01&gt;PR6013 .R44 T7 1970&lt;/lsr01&gt;
814
- &lt;lsr01&gt;Brit&lt;/lsr01&gt;
815
- &lt;lsr02&gt;Viking Press,&lt;/lsr02&gt;
816
- &lt;/search&gt;
817
- &lt;sort&gt;
818
- &lt;title&gt;Travels with my aunt : a novel /&lt;/title&gt;
819
- &lt;creationdate&gt;1970&lt;/creationdate&gt;
820
- &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
821
- &lt;lso01&gt;1970&lt;/lso01&gt;
822
- &lt;/sort&gt;
823
- &lt;facets&gt;
824
- &lt;language&gt;eng&lt;/language&gt;
825
- &lt;creationdate&gt;1970&lt;/creationdate&gt;
826
- &lt;topic&gt;British&#x2013;Foreign countries&#x2013;Fiction&lt;/topic&gt;
827
- &lt;topic&gt;Women travelers&#x2013;Fiction&lt;/topic&gt;
828
- &lt;topic&gt;Older women&#x2013;Fiction&lt;/topic&gt;
829
- &lt;topic&gt;Travelers&#x2013;Fiction&lt;/topic&gt;
830
- &lt;topic&gt;Retirees&#x2013;Fiction&lt;/topic&gt;
831
- &lt;topic&gt;Aunts&#x2013;Fiction&lt;/topic&gt;
832
- &lt;collection&gt;BOBST&lt;/collection&gt;
833
- &lt;collection&gt;CU&lt;/collection&gt;
834
- &lt;toplevel&gt;available&lt;/toplevel&gt;
835
- &lt;prefilter&gt;books&lt;/prefilter&gt;
836
- &lt;rsrctype&gt;books&lt;/rsrctype&gt;
837
- &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
838
- &lt;genre&gt;Fiction&lt;/genre&gt;
839
- &lt;genre&gt;Humorous stories&lt;/genre&gt;
840
- &lt;library&gt;BFALE&lt;/library&gt;
841
- &lt;library&gt;BOBST&lt;/library&gt;
842
- &lt;library&gt;CGEN&lt;/library&gt;
843
- &lt;lfc01&gt;Fales&lt;/lfc01&gt;
844
- &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
845
- &lt;classificationlcc&gt;P - Language and literature.&#x2013;Fiction and juvenile belles lettres&#x2013;Fiction in English&lt;/classificationlcc&gt;
846
- &lt;classificationlcc&gt;P - Language and literature.&#x2013;English literature&lt;/classificationlcc&gt;
847
- &lt;frbrgroupid&gt;50511627&lt;/frbrgroupid&gt;
848
- &lt;frbrtype&gt;5&lt;/frbrtype&gt;
849
- &lt;/facets&gt;
850
- &lt;dedup&gt;
851
- &lt;t&gt;99&lt;/t&gt;
852
- &lt;c1&gt;72094848&lt;/c1&gt;
853
- &lt;c3&gt;travelswithmyauntanovel&lt;/c3&gt;
854
- &lt;c4&gt;1970&lt;/c4&gt;
855
- &lt;f1&gt;72094848&lt;/f1&gt;
856
- &lt;f5&gt;travelswithmyauntanovel&lt;/f5&gt;
857
- &lt;f6&gt;1970&lt;/f6&gt;
858
- &lt;f7&gt;travels with my aunt a novel&lt;/f7&gt;
859
- &lt;f8&gt;nyu&lt;/f8&gt;
860
- &lt;f9&gt;244 p. ;&lt;/f9&gt;
861
- &lt;f10&gt;viking press&lt;/f10&gt;
862
- &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
863
- &lt;/dedup&gt;
864
- &lt;frbr&gt;
865
- &lt;t&gt;1&lt;/t&gt;
866
- &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
867
- &lt;k3&gt;$$Kbooktravels with my aunt a novel$$AT&lt;/k3&gt;
868
- &lt;/frbr&gt;
869
- &lt;delivery&gt;
870
- &lt;institution&gt;NYU&lt;/institution&gt;
871
- &lt;institution&gt;CU&lt;/institution&gt;
872
- &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
873
- &lt;/delivery&gt;
874
- &lt;enrichment&gt;
875
- &lt;classificationlcc&gt;PZ3.G8319&lt;/classificationlcc&gt;
876
- &lt;classificationlcc&gt;PR6013.R44&lt;/classificationlcc&gt;
877
- &lt;/enrichment&gt;
878
- &lt;ranking&gt;
879
- &lt;booster1&gt;1&lt;/booster1&gt;
880
- &lt;booster2&gt;1&lt;/booster2&gt;
881
- &lt;/ranking&gt;
882
- &lt;addata&gt;
883
- &lt;aulast&gt;Greene&lt;/aulast&gt;
884
- &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
885
- &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
886
- &lt;btitle&gt;Travels with my aunt : a novel&lt;/btitle&gt;
887
- &lt;date&gt;1970&lt;/date&gt;
888
- &lt;risdate&gt;1970, c1969.&lt;/risdate&gt;
889
- &lt;format&gt;book&lt;/format&gt;
890
- &lt;genre&gt;book&lt;/genre&gt;
891
- &lt;ristype&gt;BOOK&lt;/ristype&gt;
892
- &lt;cop&gt;New York&lt;/cop&gt;
893
- &lt;pub&gt;Viking Press&lt;/pub&gt;
894
- &lt;lad01&gt;BOBSTCUBFALE&lt;/lad01&gt;
895
- &lt;lad01&gt;Physical Item&lt;/lad01&gt;
896
- &lt;lccn&gt;72094848&lt;/lccn&gt;
897
- &lt;/addata&gt;
898
- &lt;/record&gt;
899
- &lt;/PrimoNMBib&gt;
900
- &lt;GETIT deliveryCategory=&quot;Physical Item&quot; GetIt1=&quot;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000570570&quot; GetIt2=&quot;https://dev.getit.library.nyu.edu/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2013-09-25T10%3A52%3A07IST&amp;amp;url_ver=Z39.88-2004&amp;amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000570570&amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:video&amp;amp;rft.genre=video&amp;amp;rft.jtitle=&amp;amp;rft.btitle=Travels%20with%20my%20aunt%20[videorecording]&amp;amp;rft.aulast=Cukor&amp;amp;rft.aufirst=George%2C&amp;amp;rft.auinit=&amp;amp;rft.auinit1=&amp;amp;rft.auinitm=&amp;amp;rft.ausuffix=&amp;amp;rft.au=&amp;amp;rft.aucorp=&amp;amp;rft.volume=&amp;amp;rft.issue=&amp;amp;rft.part=&amp;amp;rft.quarter=&amp;amp;rft.ssn=&amp;amp;rft.spage=&amp;amp;rft.epage=&amp;amp;rft.pages=&amp;amp;rft.artnum=&amp;amp;rft.pub=MGM/UA%20Home%20Video&amp;amp;rft.place=Santa%20Monica%2C%20CA&amp;amp;rft.issn=&amp;amp;rft.eissn=&amp;amp;rft.isbn=079282783X&amp;amp;rft.sici=&amp;amp;rft.coden=&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph000570570&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;000570570&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot;/&gt;
901
- &lt;LIBRARIES&gt;
902
- &lt;LIBRARY&gt;
903
- &lt;institution&gt;NYU&lt;/institution&gt;
904
- &lt;library&gt;BOBST&lt;/library&gt;
905
- &lt;status&gt;unavailable&lt;/status&gt;
906
- &lt;collection&gt;Main Collection&lt;/collection&gt;
907
- &lt;callNumber&gt;(PR6013.R44 T7 1970 )&lt;/callNumber&gt;
908
- &lt;url&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&lt;/url&gt;
909
- &lt;/LIBRARY&gt;
910
- &lt;/LIBRARIES&gt;
911
- &lt;LIBRARIES&gt;
912
- &lt;LIBRARY&gt;
913
- &lt;institution&gt;NYU&lt;/institution&gt;
914
- &lt;library&gt;BFALE&lt;/library&gt;
915
- &lt;status&gt;available&lt;/status&gt;
916
- &lt;collection&gt;Fales&lt;/collection&gt;
917
- &lt;callNumber&gt;(Brit Non-circulating )&lt;/callNumber&gt;
918
- &lt;url&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&lt;/url&gt;
919
- &lt;/LIBRARY&gt;
920
- &lt;LIBRARY&gt;
921
- &lt;institution&gt;CU&lt;/institution&gt;
922
- &lt;library&gt;CU&lt;/library&gt;
923
- &lt;status&gt;available&lt;/status&gt;
924
- &lt;collection&gt;Main Collection&lt;/collection&gt;
925
- &lt;callNumber&gt;(PR6013.R44 T7 1970 )&lt;/callNumber&gt;
926
- &lt;url&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&lt;/url&gt;
927
- &lt;/LIBRARY&gt;
928
- &lt;/LIBRARIES&gt;
929
- &lt;LINKS&gt;
930
- &lt;openurl&gt;&lt;![CDATA[https://qa.getit.library.nyu.edu/resolve?umlaut.institution=CU&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph002212958&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt%20:%20a%20novel&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=Viking%20Press&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph002212958&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;002212958&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurl&gt;
931
- &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&lt;/backlink&gt;
932
- &lt;thumbnail&gt;http://images.amazon.com/images/P/.01._SSTHUM_.jpg&lt;/thumbnail&gt;
933
- &lt;openurlfulltext&gt;&lt;![CDATA[https://qa.getit.library.nyu.edu/resolve?umlaut.institution=CU&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-09-25T10%3A52%3A07IST&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_aleph002212958&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt%20:%20a%20novel&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=Viking%20Press&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;002212958&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurlfulltext&gt;
934
- &lt;linktoholdings&gt;http://alephstage.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&lt;/linktoholdings&gt;
935
- &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph002212958?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
936
- &lt;/LINKS&gt;
937
- &lt;/DOC&gt;
938
- &lt;/DOCSET&gt;
939
- &lt;/RESULT&gt;
940
- &lt;searchToken&gt;0&lt;/searchToken&gt;
941
- &lt;/JAGROOT&gt;
942
- &lt;/SEGMENTS&gt;</searchBriefReturn></ns1:searchBriefResponse></soapenv:Body></soapenv:Envelope>
943
- http_version:
944
- recorded_at: Wed, 25 Sep 2013 14:52:07 GMT
945
- recorded_with: VCR 2.5.0