exlibris-primo 0.1.1 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. data/README.rdoc +5 -2
  2. data/Rakefile +1 -5
  3. data/lib/exlibris/primo/eshelf.rb +4 -3
  4. data/lib/exlibris/primo/holding.rb +2 -10
  5. data/lib/exlibris/primo/record.rb +11 -6
  6. data/lib/exlibris/primo/searcher.rb +2 -4
  7. data/lib/exlibris/primo/version.rb +2 -2
  8. data/test/exlibris-primo_test.rb +3 -3
  9. data/test/test_helper.rb +33 -7
  10. data/test/unit/eshelf_test.rb +106 -87
  11. data/test/unit/record_test.rb +64 -45
  12. data/test/unit/searcher_benchmarks.rb +20 -28
  13. data/test/unit/searcher_test.rb +298 -273
  14. data/test/unit/web_service_benchmarks.rb +19 -21
  15. data/test/unit/web_service_test.rb +130 -102
  16. data/test/vcr_cassettes/eshelf_add_invalid_records.yml +107 -0
  17. data/test/vcr_cassettes/eshelf_add_same_record_twice.yml +159 -0
  18. data/test/vcr_cassettes/eshelf_add_to_empty_basket.yml +107 -0
  19. data/test/vcr_cassettes/eshelf_add_to_invalid_basket.yml +55 -0
  20. data/test/vcr_cassettes/eshelf_invalid_eshelf.yml +55 -0
  21. data/test/vcr_cassettes/eshelf_invalid_institution.yml +55 -0
  22. data/test/vcr_cassettes/eshelf_valid_eshelf.yml +2553 -0
  23. data/test/vcr_cassettes/eshelf_valid_eshelf_structure.yml +47 -0
  24. data/test/vcr_cassettes/record.yml +212 -0
  25. data/test/vcr_cassettes/record_invalid_record.yml +55 -0
  26. data/test/vcr_cassettes/record_sub_record.yml +212 -0
  27. data/test/vcr_cassettes/record_valid_record.yml +212 -0
  28. data/test/vcr_cassettes/searcher_base_holdings_by_id.yml +212 -0
  29. data/test/vcr_cassettes/searcher_dedupmrg_by_id.yml +347 -0
  30. data/test/vcr_cassettes/searcher_diacritics1_by_id.yml +207 -0
  31. data/test/vcr_cassettes/searcher_diacritics2_by_id.yml +232 -0
  32. data/test/vcr_cassettes/searcher_holdings_by_id.yml +212 -0
  33. data/test/vcr_cassettes/searcher_invalid_id.yml +55 -0
  34. data/test/vcr_cassettes/searcher_rsrcs_by_id.yml +270 -0
  35. data/test/vcr_cassettes/searcher_search_by_isbn.yml +278 -0
  36. data/test/vcr_cassettes/searcher_search_by_issn.yml +297 -0
  37. data/test/vcr_cassettes/searcher_search_by_title_author_genre.yml +671 -0
  38. data/test/vcr_cassettes/searcher_test_bug_1361.yml +224 -0
  39. data/test/vcr_cassettes/searcher_test_problem_by_id.yml +194 -0
  40. data/test/vcr_cassettes/searcher_tocs_by_id.yml +217 -0
  41. data/test/vcr_cassettes/web_service_author_search.yml +1269 -0
  42. data/test/vcr_cassettes/web_service_bogus_200.yml +392 -0
  43. data/test/vcr_cassettes/web_service_brief_search.yml +299 -0
  44. data/test/vcr_cassettes/web_service_get_eshelf.yml +11823 -0
  45. data/test/vcr_cassettes/web_service_get_eshelf_structure_search.yml +47 -0
  46. data/test/vcr_cassettes/web_service_invalid_document.yml +54 -0
  47. data/test/vcr_cassettes/web_service_isbn_search.yml +299 -0
  48. data/test/vcr_cassettes/web_service_issn_search.yml +293 -0
  49. data/test/vcr_cassettes/web_service_problem_document.yml +193 -0
  50. data/test/vcr_cassettes/web_service_single_document.yml +233 -0
  51. data/test/vcr_cassettes/web_service_title_author_genre_search.yml +719 -0
  52. data/test/vcr_cassettes/web_service_title_search.yml +1035 -0
  53. metadata +147 -77
  54. data/lib/tasks/exlibris-primo_tasks.rake +0 -4
  55. data/test/dummy/README.rdoc +0 -261
  56. data/test/dummy/Rakefile +0 -7
  57. data/test/dummy/app/assets/javascripts/application.js +0 -15
  58. data/test/dummy/app/assets/stylesheets/application.css +0 -13
  59. data/test/dummy/app/controllers/application_controller.rb +0 -3
  60. data/test/dummy/app/helpers/application_helper.rb +0 -2
  61. data/test/dummy/app/views/layouts/application.html.erb +0 -14
  62. data/test/dummy/config.ru +0 -4
  63. data/test/dummy/config/application.rb +0 -56
  64. data/test/dummy/config/boot.rb +0 -10
  65. data/test/dummy/config/database.yml +0 -25
  66. data/test/dummy/config/environment.rb +0 -5
  67. data/test/dummy/config/environments/development.rb +0 -37
  68. data/test/dummy/config/environments/production.rb +0 -67
  69. data/test/dummy/config/environments/test.rb +0 -37
  70. data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
  71. data/test/dummy/config/initializers/inflections.rb +0 -15
  72. data/test/dummy/config/initializers/mime_types.rb +0 -5
  73. data/test/dummy/config/initializers/secret_token.rb +0 -7
  74. data/test/dummy/config/initializers/session_store.rb +0 -8
  75. data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
  76. data/test/dummy/config/locales/en.yml +0 -5
  77. data/test/dummy/config/routes.rb +0 -58
  78. data/test/dummy/db/README +0 -0
  79. data/test/dummy/db/test.sqlite3 +0 -0
  80. data/test/dummy/log/test.log +0 -1704
  81. data/test/dummy/public/404.html +0 -26
  82. data/test/dummy/public/422.html +0 -26
  83. data/test/dummy/public/500.html +0 -25
  84. data/test/dummy/public/favicon.ico +0 -0
  85. data/test/dummy/script/rails +0 -6
@@ -0,0 +1,1035 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://bobcatdev.library.nyu.edu/PrimoWebServices/services/primo/searcher
6
+ body:
7
+ string: |-
8
+ <?xml version="1.0" encoding="utf-8" ?>
9
+ <env:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
10
+ xmlns:xsd="http://www.w3.org/2001/XMLSchema"
11
+ xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
12
+ <env:Body>
13
+ <n1:searchBrief env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
14
+ xmlns:n1="http://www.exlibris.com/primo/xsd/wsRequest">
15
+ <searchBriefRequest xsi:type="xsd:string">&lt;searchRequest xmlns=&apos;http://www.exlibris.com/primo/xsd/wsRequest&apos;&gt;&lt;PrimoSearchRequest xmlns=&apos;http://www.exlibris.com/primo/xsd/search/request&apos;&gt;&lt;QueryTerms&gt;&lt;BoolOpeator&gt;AND&lt;/BoolOpeator&gt;&lt;QueryTerm&gt;&lt;IndexField&gt;title&lt;/IndexField&gt;&lt;PrecisionOperator&gt;contains&lt;/PrecisionOperator&gt;&lt;Value&gt;Travels with My Aunt&lt;/Value&gt;&lt;/QueryTerm&gt;&lt;/QueryTerms&gt;&lt;StartIndex&gt;1&lt;/StartIndex&gt;&lt;BulkSize&gt;5&lt;/BulkSize&gt;&lt;DidUMeanEnabled&gt;false&lt;/DidUMeanEnabled&gt;&lt;HighlightingEnabled&gt;false&lt;/HighlightingEnabled&gt;&lt;/PrimoSearchRequest&gt;&lt;institution&gt;NYU&lt;/institution&gt;&lt;/searchRequest&gt;</searchBriefRequest>
16
+ </n1:searchBrief>
17
+ </env:Body>
18
+ </env:Envelope>
19
+ headers:
20
+ Content-Type:
21
+ - text/xml; charset=utf-8
22
+ Soapaction:
23
+ - "\"\""
24
+ User-Agent:
25
+ - SOAP4R/1.6.1-SNAPSHOT
26
+ Accept:
27
+ - "*/*"
28
+ response:
29
+ status:
30
+ code: 200
31
+ message: OK
32
+ headers:
33
+ Server:
34
+ - Apache-Coyote/1.1
35
+ X-Powered-By:
36
+ - Servlet 2.5; JBoss-5.0/JBossWeb-2.1
37
+ Content-Type:
38
+ - text/xml;charset=utf-8
39
+ Transfer-Encoding:
40
+ - chunked
41
+ Date:
42
+ - Fri, 12 Oct 2012 18:00:32 GMT
43
+ body:
44
+ string: |-
45
+ <?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://www.exlibris.com/primo/xsd/wsRequest"><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;
46
+ &lt;JAGROOT&gt;
47
+ &lt;RESULT&gt;
48
+ &lt;QUERYTRANSFORMS/&gt;
49
+ &lt;FACETLIST ACCURATE_COUNTERS=&quot;true&quot;&gt;
50
+ &lt;FACET NAME=&quot;creator&quot; COUNT=&quot;13&quot;&gt;
51
+ &lt;FACET_VALUES KEY=&quot;Gossett, L&quot; VALUE=&quot;1&quot;/&gt;
52
+ &lt;FACET_VALUES KEY=&quot;Allethaire Press&quot; VALUE=&quot;1&quot;/&gt;
53
+ &lt;FACET_VALUES KEY=&quot;Cukor, G&quot; VALUE=&quot;1&quot;/&gt;
54
+ &lt;FACET_VALUES KEY=&quot;Cukor, George&quot; VALUE=&quot;1&quot;/&gt;
55
+ &lt;FACET_VALUES KEY=&quot;Llewellyn Smith, J&quot; VALUE=&quot;2&quot;/&gt;
56
+ &lt;FACET_VALUES KEY=&quot;Firsts &amp;amp; Company&quot; VALUE=&quot;1&quot;/&gt;
57
+ &lt;FACET_VALUES KEY=&quot;McCowen, A&quot; VALUE=&quot;1&quot;/&gt;
58
+ &lt;FACET_VALUES KEY=&quot;Smith, M&quot; VALUE=&quot;1&quot;/&gt;
59
+ &lt;FACET_VALUES KEY=&quot;Cohen, C&quot; VALUE=&quot;1&quot;/&gt;
60
+ &lt;FACET_VALUES KEY=&quot;Metro-Goldwyn-Mayer&quot; VALUE=&quot;1&quot;/&gt;
61
+ &lt;FACET_VALUES KEY=&quot;Grenfell Press&quot; VALUE=&quot;1&quot;/&gt;
62
+ &lt;FACET_VALUES KEY=&quot;Greene, G&quot; VALUE=&quot;4&quot;/&gt;
63
+ &lt;FACET_VALUES KEY=&quot;MGM/UA Home Video (Firm)&quot; VALUE=&quot;1&quot;/&gt;
64
+ &lt;/FACET&gt;
65
+ &lt;FACET NAME=&quot;lcc&quot; COUNT=&quot;1&quot;&gt;
66
+ &lt;FACET_VALUES KEY=&quot;P - Language and literature.&quot; VALUE=&quot;5&quot;/&gt;
67
+ &lt;/FACET&gt;
68
+ &lt;FACET NAME=&quot;lang&quot; COUNT=&quot;1&quot;&gt;
69
+ &lt;FACET_VALUES KEY=&quot;eng&quot; VALUE=&quot;7&quot;/&gt;
70
+ &lt;/FACET&gt;
71
+ &lt;FACET NAME=&quot;rtype&quot; COUNT=&quot;2&quot;&gt;
72
+ &lt;FACET_VALUES KEY=&quot;books&quot; VALUE=&quot;5&quot;/&gt;
73
+ &lt;FACET_VALUES KEY=&quot;video&quot; VALUE=&quot;2&quot;/&gt;
74
+ &lt;/FACET&gt;
75
+ &lt;FACET NAME=&quot;topic&quot; COUNT=&quot;11&quot;&gt;
76
+ &lt;FACET_VALUES KEY=&quot;Travelers&quot; VALUE=&quot;2&quot;/&gt;
77
+ &lt;FACET_VALUES KEY=&quot;Voyages and travels&quot; VALUE=&quot;1&quot;/&gt;
78
+ &lt;FACET_VALUES KEY=&quot;Retirees&quot; VALUE=&quot;2&quot;/&gt;
79
+ &lt;FACET_VALUES KEY=&quot;Aunts&quot; VALUE=&quot;2&quot;/&gt;
80
+ &lt;FACET_VALUES KEY=&quot;Novelists, English&quot; VALUE=&quot;2&quot;/&gt;
81
+ &lt;FACET_VALUES KEY=&quot;British&quot; VALUE=&quot;4&quot;/&gt;
82
+ &lt;FACET_VALUES KEY=&quot;Greene, Graham, 1904-1991. Travels with my aunt&quot; VALUE=&quot;1&quot;/&gt;
83
+ &lt;FACET_VALUES KEY=&quot;Older women&quot; VALUE=&quot;2&quot;/&gt;
84
+ &lt;FACET_VALUES KEY=&quot;Llewellyn Smith, Julia&quot; VALUE=&quot;2&quot;/&gt;
85
+ &lt;FACET_VALUES KEY=&quot;Women travelers&quot; VALUE=&quot;2&quot;/&gt;
86
+ &lt;FACET_VALUES KEY=&quot;Greene, Graham, 1904-1991&quot; VALUE=&quot;2&quot;/&gt;
87
+ &lt;/FACET&gt;
88
+ &lt;FACET NAME=&quot;tlevel&quot; COUNT=&quot;1&quot;&gt;
89
+ &lt;FACET_VALUES KEY=&quot;available&quot; VALUE=&quot;3&quot;/&gt;
90
+ &lt;/FACET&gt;
91
+ &lt;FACET NAME=&quot;pfilter&quot; COUNT=&quot;2&quot;&gt;
92
+ &lt;FACET_VALUES KEY=&quot;books&quot; VALUE=&quot;5&quot;/&gt;
93
+ &lt;FACET_VALUES KEY=&quot;video&quot; VALUE=&quot;2&quot;/&gt;
94
+ &lt;/FACET&gt;
95
+ &lt;FACET NAME=&quot;creationdate&quot; COUNT=&quot;9&quot;&gt;
96
+ &lt;FACET_VALUES KEY=&quot;1995&quot; VALUE=&quot;1&quot;/&gt;
97
+ &lt;FACET_VALUES KEY=&quot;1970&quot; VALUE=&quot;1&quot;/&gt;
98
+ &lt;FACET_VALUES KEY=&quot;1981&quot; VALUE=&quot;1&quot;/&gt;
99
+ &lt;FACET_VALUES KEY=&quot;2004&quot; VALUE=&quot;1&quot;/&gt;
100
+ &lt;FACET_VALUES KEY=&quot;1969&quot; VALUE=&quot;1&quot;/&gt;
101
+ &lt;FACET_VALUES KEY=&quot;2011&quot; VALUE=&quot;1&quot;/&gt;
102
+ &lt;FACET_VALUES KEY=&quot;1989&quot; VALUE=&quot;1&quot;/&gt;
103
+ &lt;FACET_VALUES KEY=&quot;2001&quot; VALUE=&quot;1&quot;/&gt;
104
+ &lt;FACET_VALUES KEY=&quot;2000&quot; VALUE=&quot;1&quot;/&gt;
105
+ &lt;/FACET&gt;
106
+ &lt;FACET NAME=&quot;domain&quot; COUNT=&quot;3&quot;&gt;
107
+ &lt;FACET_VALUES KEY=&quot;BAFC&quot; VALUE=&quot;2&quot;/&gt;
108
+ &lt;FACET_VALUES KEY=&quot;BOBST&quot; VALUE=&quot;4&quot;/&gt;
109
+ &lt;FACET_VALUES KEY=&quot;NLAPI&quot; VALUE=&quot;1&quot;/&gt;
110
+ &lt;/FACET&gt;
111
+ &lt;FACET NAME=&quot;genre&quot; COUNT=&quot;5&quot;&gt;
112
+ &lt;FACET_VALUES KEY=&quot;Humorous fiction&quot; VALUE=&quot;1&quot;/&gt;
113
+ &lt;FACET_VALUES KEY=&quot;Fiction&quot; VALUE=&quot;2&quot;/&gt;
114
+ &lt;FACET_VALUES KEY=&quot;Feature films&quot; VALUE=&quot;1&quot;/&gt;
115
+ &lt;FACET_VALUES KEY=&quot;Films for the hearing impaired&quot; VALUE=&quot;1&quot;/&gt;
116
+ &lt;FACET_VALUES KEY=&quot;Biography&quot; VALUE=&quot;2&quot;/&gt;
117
+ &lt;/FACET&gt;
118
+ &lt;FACET NAME=&quot;library&quot; COUNT=&quot;3&quot;&gt;
119
+ &lt;FACET_VALUES KEY=&quot;LAPI&quot; VALUE=&quot;1&quot;/&gt;
120
+ &lt;FACET_VALUES KEY=&quot;BOBST&quot; VALUE=&quot;7&quot;/&gt;
121
+ &lt;FACET_VALUES KEY=&quot;BFALE&quot; VALUE=&quot;2&quot;/&gt;
122
+ &lt;/FACET&gt;
123
+ &lt;FACET NAME=&quot;local1&quot; COUNT=&quot;2&quot;&gt;
124
+ &lt;FACET_VALUES KEY=&quot;Main Collection&quot; VALUE=&quot;6&quot;/&gt;
125
+ &lt;FACET_VALUES KEY=&quot;Fales&quot; VALUE=&quot;2&quot;/&gt;
126
+ &lt;/FACET&gt;
127
+ &lt;FACET NAME=&quot;local4&quot; COUNT=&quot;2&quot;&gt;
128
+ &lt;FACET_VALUES KEY=&quot;United States&quot; VALUE=&quot;1&quot;/&gt;
129
+ &lt;FACET_VALUES KEY=&quot;New York&quot; VALUE=&quot;2&quot;/&gt;
130
+ &lt;/FACET&gt;
131
+ &lt;/FACETLIST&gt;
132
+ &lt;DOCSET HIT_TIME=&quot;123&quot; TOTALHITS=&quot;7&quot; FIRSTHIT=&quot;1&quot; LASTHIT=&quot;5&quot; TOTAL_TIME=&quot;174&quot; IS_LOCAL=&quot;true&quot;&gt;
133
+ &lt;DOC ID=&quot;2619955&quot; RANK=&quot;0.99999994&quot; NO=&quot;1&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
134
+ &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
135
+ &lt;record&gt;
136
+ &lt;control&gt;
137
+ &lt;sourcerecordid&gt;000570570&lt;/sourcerecordid&gt;
138
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
139
+ &lt;recordid&gt;nyu_aleph000570570&lt;/recordid&gt;
140
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
141
+ &lt;ilsapiid&gt;NYU01000570570&lt;/ilsapiid&gt;
142
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
143
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
144
+ &lt;/control&gt;
145
+ &lt;display&gt;
146
+ &lt;type&gt;video&lt;/type&gt;
147
+ &lt;title&gt;Travels with my aunt [videorecording]&lt;/title&gt;
148
+ &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;
149
+ &lt;edition&gt;Deluxe letter-box ed.&lt;/edition&gt;
150
+ &lt;publisher&gt;Santa Monica, CA : MGM/UA Home Video&lt;/publisher&gt;
151
+ &lt;creationdate&gt;1995&lt;/creationdate&gt;
152
+ &lt;format&gt;1 videocassette (ca. 109 min.) : sd., col. ; 1/2 in.&lt;/format&gt;
153
+ &lt;identifier&gt;$$Cisbn$$V079282783X; $$Cisbn$$V9780792827832; $$Cmuspub$$VM202851 MGM/UA Home Video&lt;/identifier&gt;
154
+ &lt;subject&gt;Feature films; Films for the hearing impaired&lt;/subject&gt;
155
+ &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;
156
+ &lt;description&gt;$$Ccredits$$VDirector of photography, Douglas Slocombe ; film editor, John Bloom ; music, Terry Hatch.&lt;/description&gt;
157
+ &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;
158
+ &lt;language&gt;eng&lt;/language&gt;
159
+ &lt;relation&gt;Greene, Graham, 1904-1991. Travels with my aunt.&lt;/relation&gt;
160
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
161
+ &lt;availlibrary&gt;$$INYU$$LBAFC$$1Main Collection$$Sunavailable$$31$$41$$5N$$60$$XNYU50$$YBAFC$$ZAFC&lt;/availlibrary&gt;
162
+ &lt;lds02&gt;nyu_aleph000570570&lt;/lds02&gt;
163
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
164
+ &lt;availinstitution&gt;$$INYU$$Sunavailable&lt;/availinstitution&gt;
165
+ &lt;availpnx&gt;unavailable&lt;/availpnx&gt;
166
+ &lt;/display&gt;
167
+ &lt;links&gt;
168
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
169
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
170
+ &lt;thumbnail&gt;$$Tamazon_thumb&lt;/thumbnail&gt;
171
+ &lt;linktotoc&gt;$$Tamazon_toc$$DCheck for Amazon Search Inside&lt;/linktotoc&gt;
172
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
173
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
174
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
175
+ &lt;linktouc&gt;$$Tamazon_uc$$DCheck Amazon&lt;/linktouc&gt;
176
+ &lt;linktouc&gt;$$Tworldcat_isbn$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
177
+ &lt;linktoexcerpt&gt;$$Tsyndetics_excerpt$$DExcerpt from item&lt;/linktoexcerpt&gt;
178
+ &lt;/links&gt;
179
+ &lt;search&gt;
180
+ &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;
181
+ &lt;creatorcontrib&gt;Director of photography, Douglas Slocombe ; film editor, John Bloom ; music, Terry Hatch.&lt;/creatorcontrib&gt;
182
+ &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;
183
+ &lt;creatorcontrib&gt;George, Cukor 1899-1983.&lt;/creatorcontrib&gt;
184
+ &lt;creatorcontrib&gt;Maggie, Smith 1934-&lt;/creatorcontrib&gt;
185
+ &lt;creatorcontrib&gt;Alec McCowen&lt;/creatorcontrib&gt;
186
+ &lt;creatorcontrib&gt;Louis, Gossett 1936-&lt;/creatorcontrib&gt;
187
+ &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
188
+ &lt;creatorcontrib&gt;Cukor, G&lt;/creatorcontrib&gt;
189
+ &lt;creatorcontrib&gt;Smith, M&lt;/creatorcontrib&gt;
190
+ &lt;creatorcontrib&gt;McCowen, A&lt;/creatorcontrib&gt;
191
+ &lt;creatorcontrib&gt;Gossett, L&lt;/creatorcontrib&gt;
192
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
193
+ &lt;creatorcontrib&gt;Metro-Goldwyn-Mayer.&lt;/creatorcontrib&gt;
194
+ &lt;creatorcontrib&gt;MGM/UA Home Video (Firm)&lt;/creatorcontrib&gt;
195
+ &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
196
+ &lt;creatorcontrib&gt;McCowen, Alex&lt;/creatorcontrib&gt;
197
+ &lt;creatorcontrib&gt;Gossett, Lou, 1936-&lt;/creatorcontrib&gt;
198
+ &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
199
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
200
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
201
+ &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
202
+ &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
203
+ &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
204
+ &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
205
+ &lt;creatorcontrib&gt;Smith, Margaret Natalie, 1934-&lt;/creatorcontrib&gt;
206
+ &lt;title&gt;Travels with my aunt&lt;/title&gt;
207
+ &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;
208
+ &lt;subject&gt;Feature films&lt;/subject&gt;
209
+ &lt;subject&gt;Films for the hearing impaired&lt;/subject&gt;
210
+ &lt;general&gt;MGM/UA Home Video,&lt;/general&gt;
211
+ &lt;general&gt;Closed captioned for the hearing impaired.&lt;/general&gt;
212
+ &lt;general&gt;Originally produced as a motion picture in 1972.&lt;/general&gt;
213
+ &lt;general&gt;Based upon the novel by Graham Greene.&lt;/general&gt;
214
+ &lt;general&gt;&quot;M202851&quot;--Cassette label.&lt;/general&gt;
215
+ &lt;general&gt;Director of photography, Douglas Slocombe ; film editor, John Bloom ; music, Terry Hatch.&lt;/general&gt;
216
+ &lt;general&gt;Rated PG.&lt;/general&gt;
217
+ &lt;general&gt;M202851&lt;/general&gt;
218
+ &lt;general&gt;[videorecording] /&lt;/general&gt;
219
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
220
+ &lt;recordid&gt;nyu_aleph000570570&lt;/recordid&gt;
221
+ &lt;isbn&gt;079282783X&lt;/isbn&gt;
222
+ &lt;isbn&gt;9780792827832&lt;/isbn&gt;
223
+ &lt;rsrctype&gt;video&lt;/rsrctype&gt;
224
+ &lt;creationdate&gt;1995&lt;/creationdate&gt;
225
+ &lt;creationdate&gt;1972&lt;/creationdate&gt;
226
+ &lt;addtitle&gt;Travels with my aunt.&lt;/addtitle&gt;
227
+ &lt;searchscope&gt;BAFC&lt;/searchscope&gt;
228
+ &lt;searchscope&gt;BAFC Main Collection&lt;/searchscope&gt;
229
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
230
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
231
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
232
+ &lt;scope&gt;BAFC&lt;/scope&gt;
233
+ &lt;scope&gt;BAFC Main Collection&lt;/scope&gt;
234
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
235
+ &lt;scope&gt;NYU&lt;/scope&gt;
236
+ &lt;scope&gt;BOBST&lt;/scope&gt;
237
+ &lt;lsr02&gt;MGM/UA Home Video,&lt;/lsr02&gt;
238
+ &lt;/search&gt;
239
+ &lt;sort&gt;
240
+ &lt;title&gt;Travels with my aunt&lt;/title&gt;
241
+ &lt;creationdate&gt;1995&lt;/creationdate&gt;
242
+ &lt;author&gt;Cukor, George, 1899-1983.&lt;/author&gt;
243
+ &lt;lso01&gt;1995&lt;/lso01&gt;
244
+ &lt;/sort&gt;
245
+ &lt;facets&gt;
246
+ &lt;language&gt;eng&lt;/language&gt;
247
+ &lt;creationdate&gt;1995&lt;/creationdate&gt;
248
+ &lt;collection&gt;BAFC&lt;/collection&gt;
249
+ &lt;prefilter&gt;video&lt;/prefilter&gt;
250
+ &lt;rsrctype&gt;video&lt;/rsrctype&gt;
251
+ &lt;creatorcontrib&gt;Cukor, G&lt;/creatorcontrib&gt;
252
+ &lt;creatorcontrib&gt;Smith, M&lt;/creatorcontrib&gt;
253
+ &lt;creatorcontrib&gt;McCowen, A&lt;/creatorcontrib&gt;
254
+ &lt;creatorcontrib&gt;Gossett, L&lt;/creatorcontrib&gt;
255
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
256
+ &lt;creatorcontrib&gt;Metro-Goldwyn-Mayer&lt;/creatorcontrib&gt;
257
+ &lt;creatorcontrib&gt;MGM/UA Home Video (Firm)&lt;/creatorcontrib&gt;
258
+ &lt;genre&gt;Feature films&lt;/genre&gt;
259
+ &lt;genre&gt;Films for the hearing impaired&lt;/genre&gt;
260
+ &lt;library&gt;BOBST&lt;/library&gt;
261
+ &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
262
+ &lt;classificationlcc&gt;P - Language and literature.&#x2013;English literature&lt;/classificationlcc&gt;
263
+ &lt;frbrgroupid&gt;49548430&lt;/frbrgroupid&gt;
264
+ &lt;frbrtype&gt;6&lt;/frbrtype&gt;
265
+ &lt;/facets&gt;
266
+ &lt;dedup&gt;
267
+ &lt;t&gt;1&lt;/t&gt;
268
+ &lt;c2&gt;079282783X;9780792827832&lt;/c2&gt;
269
+ &lt;c3&gt;travelswithmyaunt&lt;/c3&gt;
270
+ &lt;c4&gt;1995&lt;/c4&gt;
271
+ &lt;f3&gt;079282783X;9780792827832&lt;/f3&gt;
272
+ &lt;f5&gt;travelswithmyaunt&lt;/f5&gt;
273
+ &lt;f6&gt;1995&lt;/f6&gt;
274
+ &lt;f7&gt;travels with my aunt&lt;/f7&gt;
275
+ &lt;f8&gt;cau&lt;/f8&gt;
276
+ &lt;f9&gt;1 videocassette (ca. 109 min.) :&lt;/f9&gt;
277
+ &lt;f10&gt;mgm ua home video&lt;/f10&gt;
278
+ &lt;/dedup&gt;
279
+ &lt;frbr&gt;
280
+ &lt;t&gt;1&lt;/t&gt;
281
+ &lt;k1&gt;$$Kcukor george 1899 1983$$AA&lt;/k1&gt;
282
+ &lt;k1&gt;$$Ksmith maggie 1934$$AA&lt;/k1&gt;
283
+ &lt;k1&gt;$$Kmccowen alec$$AA&lt;/k1&gt;
284
+ &lt;k1&gt;$$Kgossett louis 1936$$AA&lt;/k1&gt;
285
+ &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
286
+ &lt;k1&gt;$$Kmetro goldwyn mayer$$AA&lt;/k1&gt;
287
+ &lt;k1&gt;$$Kmgm ua home video firm$$AA&lt;/k1&gt;
288
+ &lt;k3&gt;$$Kvideotravels with my aunt$$AT&lt;/k3&gt;
289
+ &lt;/frbr&gt;
290
+ &lt;delivery&gt;
291
+ &lt;institution&gt;NYU&lt;/institution&gt;
292
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
293
+ &lt;/delivery&gt;
294
+ &lt;enrichment&gt;
295
+ &lt;classificationlcc&gt;PR6013.R44&lt;/classificationlcc&gt;
296
+ &lt;/enrichment&gt;
297
+ &lt;ranking&gt;
298
+ &lt;booster1&gt;1&lt;/booster1&gt;
299
+ &lt;booster2&gt;1&lt;/booster2&gt;
300
+ &lt;/ranking&gt;
301
+ &lt;addata&gt;
302
+ &lt;aulast&gt;Cukor&lt;/aulast&gt;
303
+ &lt;aufirst&gt;George,&lt;/aufirst&gt;
304
+ &lt;addau&gt;Cukor, George, 1899-1983&lt;/addau&gt;
305
+ &lt;addau&gt;Smith, Maggie, 1934-&lt;/addau&gt;
306
+ &lt;addau&gt;McCowen, Alec&lt;/addau&gt;
307
+ &lt;addau&gt;Gossett, Louis, 1936-&lt;/addau&gt;
308
+ &lt;addau&gt;Greene, Graham, 1904-1991&lt;/addau&gt;
309
+ &lt;addau&gt;Metro-Goldwyn-Mayer&lt;/addau&gt;
310
+ &lt;addau&gt;MGM/UA Home Video (Firm)&lt;/addau&gt;
311
+ &lt;btitle&gt;Travels with my aunt [videorecording]&lt;/btitle&gt;
312
+ &lt;date&gt;1995&lt;/date&gt;
313
+ &lt;risdate&gt;[1995]&lt;/risdate&gt;
314
+ &lt;isbn&gt;079282783X&lt;/isbn&gt;
315
+ &lt;isbn&gt;9780792827832&lt;/isbn&gt;
316
+ &lt;format&gt;video&lt;/format&gt;
317
+ &lt;genre&gt;video&lt;/genre&gt;
318
+ &lt;ristype&gt;VIDEO&lt;/ristype&gt;
319
+ &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;
320
+ &lt;cop&gt;Santa Monica, CA&lt;/cop&gt;
321
+ &lt;pub&gt;MGM/UA Home Video&lt;/pub&gt;
322
+ &lt;oclcid&gt;35619373&lt;/oclcid&gt;
323
+ &lt;lad01&gt;BAFC&lt;/lad01&gt;
324
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
325
+ &lt;/addata&gt;
326
+ &lt;/record&gt;
327
+ &lt;/PrimoNMBib&gt;
328
+ &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://webdev1.library.nyu.edu/getit/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
329
+ &lt;LIBRARIES&gt;
330
+ &lt;LIBRARY&gt;
331
+ &lt;institution&gt;NYU&lt;/institution&gt;
332
+ &lt;library&gt;BAFC&lt;/library&gt;
333
+ &lt;status&gt;unavailable&lt;/status&gt;
334
+ &lt;collection&gt;Main Collection&lt;/collection&gt;
335
+ &lt;callNumber/&gt;
336
+ &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;
337
+ &lt;/LIBRARY&gt;
338
+ &lt;/LIBRARIES&gt;
339
+ &lt;LINKS&gt;
340
+ &lt;openurl&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
341
+ &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000570570&lt;/backlink&gt;
342
+ &lt;thumbnail&gt;http://images.amazon.com/images/P/079282783X.01._SSTHUM_.jpg&lt;/thumbnail&gt;
343
+ &lt;linktotoc&gt;http://www.amazon.com/gp/reader/079282783X&lt;/linktotoc&gt;
344
+ &lt;openurlfulltext&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
345
+ &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;
346
+ &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph000570570?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
347
+ &lt;linktouc&gt;http://www.amazon.com/s/?search-alias=aps&amp;amp;field-keywords=079282783X&lt;/linktouc&gt;
348
+ &lt;linktouc&gt;http://www.worldcat.org/search?q=isbn%3A079282783X&lt;/linktouc&gt;
349
+ &lt;/LINKS&gt;
350
+ &lt;/DOC&gt;
351
+ &lt;DOC ID=&quot;3018820&quot; RANK=&quot;0.6666404&quot; NO=&quot;2&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
352
+ &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
353
+ &lt;record&gt;
354
+ &lt;control&gt;
355
+ &lt;sourcerecordid&gt;003443700&lt;/sourcerecordid&gt;
356
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
357
+ &lt;recordid&gt;nyu_aleph003443700&lt;/recordid&gt;
358
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
359
+ &lt;ilsapiid&gt;NYU01003443700&lt;/ilsapiid&gt;
360
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
361
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
362
+ &lt;/control&gt;
363
+ &lt;display&gt;
364
+ &lt;type&gt;book&lt;/type&gt;
365
+ &lt;title&gt;Travels with my aunt&lt;/title&gt;
366
+ &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
367
+ &lt;publisher&gt;New York : The Viking Press&lt;/publisher&gt;
368
+ &lt;creationdate&gt;1981?], c1969&lt;/creationdate&gt;
369
+ &lt;format&gt;318 p. ; 20 cm.&lt;/format&gt;
370
+ &lt;identifier&gt;$$Cisbn$$V0670725242; $$Cisbn$$V9780670725243&lt;/identifier&gt;
371
+ &lt;subject&gt;British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous fiction&lt;/subject&gt;
372
+ &lt;language&gt;eng&lt;/language&gt;
373
+ &lt;relation&gt;$$Cseries $$VGreene, Graham, 1904-1991. Works. 1981.&lt;/relation&gt;
374
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
375
+ &lt;availlibrary&gt;$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 1981 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBOBST$$ZMAIN&lt;/availlibrary&gt;
376
+ &lt;lds02&gt;nyu_aleph003443700&lt;/lds02&gt;
377
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
378
+ &lt;availinstitution&gt;$$INYU$$Savailable&lt;/availinstitution&gt;
379
+ &lt;availpnx&gt;available&lt;/availpnx&gt;
380
+ &lt;version&gt;2&lt;/version&gt;
381
+ &lt;/display&gt;
382
+ &lt;links&gt;
383
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
384
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
385
+ &lt;thumbnail&gt;$$Tamazon_thumb&lt;/thumbnail&gt;
386
+ &lt;linktotoc&gt;$$Tamazon_toc$$DCheck for Amazon Search Inside&lt;/linktotoc&gt;
387
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
388
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
389
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
390
+ &lt;linktouc&gt;$$Tamazon_uc$$DCheck Amazon&lt;/linktouc&gt;
391
+ &lt;linktouc&gt;$$Tworldcat_isbn$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
392
+ &lt;linktoexcerpt&gt;$$Tsyndetics_excerpt$$DExcerpt from item&lt;/linktoexcerpt&gt;
393
+ &lt;/links&gt;
394
+ &lt;search&gt;
395
+ &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
396
+ &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
397
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
398
+ &lt;creatorcontrib&gt;by Graham Greene.&lt;/creatorcontrib&gt;
399
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
400
+ &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
401
+ &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
402
+ &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
403
+ &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
404
+ &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
405
+ &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
406
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
407
+ &lt;title&gt;Travels with my aunt /&lt;/title&gt;
408
+ &lt;subject&gt;British Foreign countries Fiction&lt;/subject&gt;
409
+ &lt;subject&gt;Women travelers Fiction&lt;/subject&gt;
410
+ &lt;subject&gt;Older women Fiction&lt;/subject&gt;
411
+ &lt;subject&gt;Travelers Fiction&lt;/subject&gt;
412
+ &lt;subject&gt;Retirees Fiction&lt;/subject&gt;
413
+ &lt;subject&gt;Aunts Fiction&lt;/subject&gt;
414
+ &lt;subject&gt;Humorous fiction&lt;/subject&gt;
415
+ &lt;subject&gt;Britishers&lt;/subject&gt;
416
+ &lt;subject&gt;British people&lt;/subject&gt;
417
+ &lt;subject&gt;Britons (British)&lt;/subject&gt;
418
+ &lt;subject&gt;Brits&lt;/subject&gt;
419
+ &lt;subject&gt;Travelers, Women&lt;/subject&gt;
420
+ &lt;subject&gt;Aged women&lt;/subject&gt;
421
+ &lt;subject&gt;People, Retired&lt;/subject&gt;
422
+ &lt;subject&gt;Retired persons&lt;/subject&gt;
423
+ &lt;subject&gt;Retired people&lt;/subject&gt;
424
+ &lt;general&gt;The Viking Press,&lt;/general&gt;
425
+ &lt;general&gt;&quot;Published in 1970 ...&quot;--T.p. verso.&lt;/general&gt;
426
+ &lt;general&gt;Series statement from dust jacket; part of the collected works reissued in 1981.&lt;/general&gt;
427
+ &lt;general&gt;United States New York New York.&lt;/general&gt;
428
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
429
+ &lt;recordid&gt;nyu_aleph003443700&lt;/recordid&gt;
430
+ &lt;isbn&gt;0670725242&lt;/isbn&gt;
431
+ &lt;isbn&gt;9780670725243&lt;/isbn&gt;
432
+ &lt;rsrctype&gt;book&lt;/rsrctype&gt;
433
+ &lt;creationdate&gt;1981&lt;/creationdate&gt;
434
+ &lt;creationdate&gt;1969&lt;/creationdate&gt;
435
+ &lt;addtitle&gt;Works. 1981.&lt;/addtitle&gt;
436
+ &lt;addtitle&gt;The collected edition&lt;/addtitle&gt;
437
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
438
+ &lt;searchscope&gt;BOBST Main Collection&lt;/searchscope&gt;
439
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
440
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
441
+ &lt;scope&gt;BOBST&lt;/scope&gt;
442
+ &lt;scope&gt;BOBST Main Collection&lt;/scope&gt;
443
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
444
+ &lt;scope&gt;NYU&lt;/scope&gt;
445
+ &lt;lsr01&gt;PR6013.R44 T7 1981&lt;/lsr01&gt;
446
+ &lt;lsr01&gt;PR6013 .R44 T7 1981&lt;/lsr01&gt;
447
+ &lt;lsr02&gt;The Viking Press,&lt;/lsr02&gt;
448
+ &lt;/search&gt;
449
+ &lt;sort&gt;
450
+ &lt;title&gt;Travels with my aunt /&lt;/title&gt;
451
+ &lt;creationdate&gt;1981&lt;/creationdate&gt;
452
+ &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
453
+ &lt;lso01&gt;1981&lt;/lso01&gt;
454
+ &lt;/sort&gt;
455
+ &lt;facets&gt;
456
+ &lt;language&gt;eng&lt;/language&gt;
457
+ &lt;creationdate&gt;1981&lt;/creationdate&gt;
458
+ &lt;topic&gt;British&#x2013;Foreign countries&#x2013;Fiction&lt;/topic&gt;
459
+ &lt;topic&gt;Women travelers&#x2013;Fiction&lt;/topic&gt;
460
+ &lt;topic&gt;Older women&#x2013;Fiction&lt;/topic&gt;
461
+ &lt;topic&gt;Travelers&#x2013;Fiction&lt;/topic&gt;
462
+ &lt;topic&gt;Retirees&#x2013;Fiction&lt;/topic&gt;
463
+ &lt;topic&gt;Aunts&#x2013;Fiction&lt;/topic&gt;
464
+ &lt;collection&gt;BOBST&lt;/collection&gt;
465
+ &lt;toplevel&gt;available&lt;/toplevel&gt;
466
+ &lt;prefilter&gt;books&lt;/prefilter&gt;
467
+ &lt;rsrctype&gt;books&lt;/rsrctype&gt;
468
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
469
+ &lt;genre&gt;Fiction&lt;/genre&gt;
470
+ &lt;genre&gt;Humorous fiction&lt;/genre&gt;
471
+ &lt;library&gt;BOBST&lt;/library&gt;
472
+ &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
473
+ &lt;lfc04&gt;United States&lt;/lfc04&gt;
474
+ &lt;lfc04&gt;New York&lt;/lfc04&gt;
475
+ &lt;lfc04&gt;New York.&lt;/lfc04&gt;
476
+ &lt;classificationlcc&gt;P - Language and literature.&#x2013;Fiction and juvenile belles lettres&#x2013;Fiction in English&lt;/classificationlcc&gt;
477
+ &lt;classificationlcc&gt;P - Language and literature.&#x2013;English literature&lt;/classificationlcc&gt;
478
+ &lt;frbrgroupid&gt;49340863&lt;/frbrgroupid&gt;
479
+ &lt;frbrtype&gt;5&lt;/frbrtype&gt;
480
+ &lt;/facets&gt;
481
+ &lt;dedup&gt;
482
+ &lt;t&gt;1&lt;/t&gt;
483
+ &lt;c1&gt;72094848&lt;/c1&gt;
484
+ &lt;c2&gt;0670725242;9780670725243&lt;/c2&gt;
485
+ &lt;c3&gt;travelswithmyaunt&lt;/c3&gt;
486
+ &lt;c4&gt;1981&lt;/c4&gt;
487
+ &lt;f1&gt;72094848&lt;/f1&gt;
488
+ &lt;f3&gt;0670725242;9780670725243&lt;/f3&gt;
489
+ &lt;f5&gt;travelswithmyaunt&lt;/f5&gt;
490
+ &lt;f6&gt;1981&lt;/f6&gt;
491
+ &lt;f7&gt;travels with my aunt&lt;/f7&gt;
492
+ &lt;f8&gt;nyu&lt;/f8&gt;
493
+ &lt;f9&gt;318 p. ;&lt;/f9&gt;
494
+ &lt;f10&gt;the viking press&lt;/f10&gt;
495
+ &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
496
+ &lt;/dedup&gt;
497
+ &lt;frbr&gt;
498
+ &lt;t&gt;1&lt;/t&gt;
499
+ &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
500
+ &lt;k3&gt;$$Kbooktravels with my aunt$$AT&lt;/k3&gt;
501
+ &lt;/frbr&gt;
502
+ &lt;delivery&gt;
503
+ &lt;institution&gt;NYU&lt;/institution&gt;
504
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
505
+ &lt;/delivery&gt;
506
+ &lt;enrichment&gt;
507
+ &lt;classificationlcc&gt;PZ3.G8319&lt;/classificationlcc&gt;
508
+ &lt;classificationlcc&gt;PR6013.R44&lt;/classificationlcc&gt;
509
+ &lt;/enrichment&gt;
510
+ &lt;ranking&gt;
511
+ &lt;booster1&gt;1&lt;/booster1&gt;
512
+ &lt;booster2&gt;1&lt;/booster2&gt;
513
+ &lt;/ranking&gt;
514
+ &lt;addata&gt;
515
+ &lt;aulast&gt;Greene&lt;/aulast&gt;
516
+ &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
517
+ &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
518
+ &lt;seriesau&gt;Greene, Graham, 1904-1991&lt;/seriesau&gt;
519
+ &lt;btitle&gt;Travels with my aunt&lt;/btitle&gt;
520
+ &lt;seriestitle&gt;Greene, Graham, 1904-1991. Works. 1981&lt;/seriestitle&gt;
521
+ &lt;date&gt;1981&lt;/date&gt;
522
+ &lt;risdate&gt;[1981?], c1969.&lt;/risdate&gt;
523
+ &lt;isbn&gt;0670725242&lt;/isbn&gt;
524
+ &lt;isbn&gt;9780670725243&lt;/isbn&gt;
525
+ &lt;format&gt;book&lt;/format&gt;
526
+ &lt;genre&gt;book&lt;/genre&gt;
527
+ &lt;ristype&gt;BOOK&lt;/ristype&gt;
528
+ &lt;cop&gt;New York&lt;/cop&gt;
529
+ &lt;pub&gt;The Viking Press&lt;/pub&gt;
530
+ &lt;oclcid&gt;7871629&lt;/oclcid&gt;
531
+ &lt;lccn&gt;72094848&lt;/lccn&gt;
532
+ &lt;lad01&gt;BOBST&lt;/lad01&gt;
533
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
534
+ &lt;/addata&gt;
535
+ &lt;/record&gt;
536
+ &lt;/PrimoNMBib&gt;
537
+ &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://webdev1.library.nyu.edu/getit/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
538
+ &lt;LIBRARIES&gt;
539
+ &lt;LIBRARY&gt;
540
+ &lt;institution&gt;NYU&lt;/institution&gt;
541
+ &lt;library&gt;BOBST&lt;/library&gt;
542
+ &lt;status&gt;available&lt;/status&gt;
543
+ &lt;collection&gt;Main Collection&lt;/collection&gt;
544
+ &lt;callNumber&gt;(PR6013.R44 T7 1981 )&lt;/callNumber&gt;
545
+ &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;
546
+ &lt;/LIBRARY&gt;
547
+ &lt;/LIBRARIES&gt;
548
+ &lt;LINKS&gt;
549
+ &lt;openurl&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
550
+ &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003443700&lt;/backlink&gt;
551
+ &lt;thumbnail&gt;http://images.amazon.com/images/P/0670725242.01._SSTHUM_.jpg&lt;/thumbnail&gt;
552
+ &lt;linktotoc&gt;http://www.amazon.com/gp/reader/0670725242&lt;/linktotoc&gt;
553
+ &lt;openurlfulltext&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
554
+ &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;
555
+ &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph003443700?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
556
+ &lt;linktouc&gt;http://www.amazon.com/s/?search-alias=aps&amp;amp;field-keywords=0670725242&lt;/linktouc&gt;
557
+ &lt;linktouc&gt;http://www.worldcat.org/search?q=isbn%3A0670725242&lt;/linktouc&gt;
558
+ &lt;/LINKS&gt;
559
+ &lt;/DOC&gt;
560
+ &lt;DOC ID=&quot;1947596&quot; RANK=&quot;0.019430775&quot; NO=&quot;3&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
561
+ &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
562
+ &lt;record&gt;
563
+ &lt;control&gt;
564
+ &lt;sourcerecordid&gt;003445127&lt;/sourcerecordid&gt;
565
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
566
+ &lt;recordid&gt;nyu_aleph003445127&lt;/recordid&gt;
567
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
568
+ &lt;ilsapiid&gt;NYU01003445127&lt;/ilsapiid&gt;
569
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
570
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
571
+ &lt;/control&gt;
572
+ &lt;display&gt;
573
+ &lt;type&gt;book&lt;/type&gt;
574
+ &lt;title&gt;Reflections on Travels with my aunt&lt;/title&gt;
575
+ &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
576
+ &lt;contributor&gt;Claudia Cohen 1953- binder.; Firsts &amp;amp; Company, publisher.; Allethaire Press printer.; Grenfell Press, printer.&lt;/contributor&gt;
577
+ &lt;publisher&gt;New York : Firsts &amp;amp; Company&lt;/publisher&gt;
578
+ &lt;creationdate&gt;1989&lt;/creationdate&gt;
579
+ &lt;format&gt;[20] p. : port., facsims. ; 26 cm.&lt;/format&gt;
580
+ &lt;subject&gt;Greene, Graham, 1904-1991. Travels with my aunt&lt;/subject&gt;
581
+ &lt;language&gt;eng&lt;/language&gt;
582
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
583
+ &lt;availlibrary&gt;$$INYU$$LBFALE$$1Fales$$2(Brit Non-circulating )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBFALE$$ZFALEF&lt;/availlibrary&gt;
584
+ &lt;lds02&gt;nyu_aleph003445127&lt;/lds02&gt;
585
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
586
+ &lt;availinstitution&gt;$$INYU$$Savailable&lt;/availinstitution&gt;
587
+ &lt;availpnx&gt;available&lt;/availpnx&gt;
588
+ &lt;/display&gt;
589
+ &lt;links&gt;
590
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
591
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
592
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
593
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
594
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
595
+ &lt;linktouc&gt;$$Tworldcat_oclc$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
596
+ &lt;/links&gt;
597
+ &lt;search&gt;
598
+ &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
599
+ &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
600
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
601
+ &lt;creatorcontrib&gt;Graham Greene.&lt;/creatorcontrib&gt;
602
+ &lt;creatorcontrib&gt;Claudia, Cohen 1953- binder.&lt;/creatorcontrib&gt;
603
+ &lt;creatorcontrib&gt;Cohen, C&lt;/creatorcontrib&gt;
604
+ &lt;creatorcontrib&gt;Firsts &amp;amp; Company, publisher.&lt;/creatorcontrib&gt;
605
+ &lt;creatorcontrib&gt;Allethaire Press printer.&lt;/creatorcontrib&gt;
606
+ &lt;creatorcontrib&gt;Grenfell Press, printer.&lt;/creatorcontrib&gt;
607
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
608
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
609
+ &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
610
+ &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
611
+ &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
612
+ &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
613
+ &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
614
+ &lt;creatorcontrib&gt;Cohen, Claudia, of Easthampton, Mass&lt;/creatorcontrib&gt;
615
+ &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
616
+ &lt;title&gt;Reflections on Travels with my aunt /&lt;/title&gt;
617
+ &lt;subject&gt;Greene, Graham, 1904-1991. Travels with my aunt&lt;/subject&gt;
618
+ &lt;general&gt;Firsts &amp;amp; Company,&lt;/general&gt;
619
+ &lt;general&gt;&quot;Reflections on Travels With My Aunt has been published by Firsts &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;
620
+ &lt;general&gt;Facsimile of a portion of Greene's manuscript is printed on p. [13-16].&lt;/general&gt;
621
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
622
+ &lt;recordid&gt;nyu_aleph003445127&lt;/recordid&gt;
623
+ &lt;rsrctype&gt;book&lt;/rsrctype&gt;
624
+ &lt;creationdate&gt;1989&lt;/creationdate&gt;
625
+ &lt;addtitle&gt;Travels with my aunt.&lt;/addtitle&gt;
626
+ &lt;searchscope&gt;BFALE&lt;/searchscope&gt;
627
+ &lt;searchscope&gt;BFALE Fales&lt;/searchscope&gt;
628
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
629
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
630
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
631
+ &lt;scope&gt;BFALE&lt;/scope&gt;
632
+ &lt;scope&gt;BFALE Fales&lt;/scope&gt;
633
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
634
+ &lt;scope&gt;NYU&lt;/scope&gt;
635
+ &lt;scope&gt;BOBST&lt;/scope&gt;
636
+ &lt;lsr01&gt;Brit&lt;/lsr01&gt;
637
+ &lt;lsr02&gt;Firsts &amp;amp; Company,&lt;/lsr02&gt;
638
+ &lt;/search&gt;
639
+ &lt;sort&gt;
640
+ &lt;title&gt;Reflections on Travels with my aunt /&lt;/title&gt;
641
+ &lt;creationdate&gt;1989&lt;/creationdate&gt;
642
+ &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
643
+ &lt;lso01&gt;1989&lt;/lso01&gt;
644
+ &lt;/sort&gt;
645
+ &lt;facets&gt;
646
+ &lt;language&gt;eng&lt;/language&gt;
647
+ &lt;creationdate&gt;1989&lt;/creationdate&gt;
648
+ &lt;topic&gt;Greene, Graham, 1904-1991. Travels with my aunt&lt;/topic&gt;
649
+ &lt;toplevel&gt;available&lt;/toplevel&gt;
650
+ &lt;prefilter&gt;books&lt;/prefilter&gt;
651
+ &lt;rsrctype&gt;books&lt;/rsrctype&gt;
652
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
653
+ &lt;creatorcontrib&gt;Cohen, C&lt;/creatorcontrib&gt;
654
+ &lt;creatorcontrib&gt;Firsts &amp;amp; Company&lt;/creatorcontrib&gt;
655
+ &lt;creatorcontrib&gt;Allethaire Press&lt;/creatorcontrib&gt;
656
+ &lt;creatorcontrib&gt;Grenfell Press&lt;/creatorcontrib&gt;
657
+ &lt;library&gt;BFALE&lt;/library&gt;
658
+ &lt;library&gt;BOBST&lt;/library&gt;
659
+ &lt;lfc01&gt;Fales&lt;/lfc01&gt;
660
+ &lt;frbrgroupid&gt;52487517&lt;/frbrgroupid&gt;
661
+ &lt;frbrtype&gt;6&lt;/frbrtype&gt;
662
+ &lt;/facets&gt;
663
+ &lt;dedup&gt;
664
+ &lt;t&gt;99&lt;/t&gt;
665
+ &lt;c3&gt;reflectionsontravelswithmyaunt&lt;/c3&gt;
666
+ &lt;c4&gt;1989&lt;/c4&gt;
667
+ &lt;f5&gt;reflectionsontravelswithmyaunt&lt;/f5&gt;
668
+ &lt;f6&gt;1989&lt;/f6&gt;
669
+ &lt;f7&gt;reflections on travels with my aunt&lt;/f7&gt;
670
+ &lt;f8&gt;nyu&lt;/f8&gt;
671
+ &lt;f9&gt;[20] p. :&lt;/f9&gt;
672
+ &lt;f10&gt;firsts company&lt;/f10&gt;
673
+ &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
674
+ &lt;/dedup&gt;
675
+ &lt;frbr&gt;
676
+ &lt;t&gt;1&lt;/t&gt;
677
+ &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
678
+ &lt;k3&gt;$$Kbookreflections on travels with my aunt$$AT&lt;/k3&gt;
679
+ &lt;/frbr&gt;
680
+ &lt;delivery&gt;
681
+ &lt;institution&gt;NYU&lt;/institution&gt;
682
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
683
+ &lt;/delivery&gt;
684
+ &lt;ranking&gt;
685
+ &lt;booster1&gt;1&lt;/booster1&gt;
686
+ &lt;booster2&gt;1&lt;/booster2&gt;
687
+ &lt;/ranking&gt;
688
+ &lt;addata&gt;
689
+ &lt;aulast&gt;Greene&lt;/aulast&gt;
690
+ &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
691
+ &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
692
+ &lt;addau&gt;Cohen, Claudia, 1953- binder&lt;/addau&gt;
693
+ &lt;addau&gt;Firsts &amp;amp; Company, publisher&lt;/addau&gt;
694
+ &lt;addau&gt;Allethaire Press printer&lt;/addau&gt;
695
+ &lt;addau&gt;Grenfell Press, printer&lt;/addau&gt;
696
+ &lt;btitle&gt;Reflections on Travels with my aunt&lt;/btitle&gt;
697
+ &lt;date&gt;1989&lt;/date&gt;
698
+ &lt;risdate&gt;1989.&lt;/risdate&gt;
699
+ &lt;format&gt;book&lt;/format&gt;
700
+ &lt;genre&gt;book&lt;/genre&gt;
701
+ &lt;ristype&gt;BOOK&lt;/ristype&gt;
702
+ &lt;cop&gt;New York&lt;/cop&gt;
703
+ &lt;pub&gt;Firsts &amp;amp; Company&lt;/pub&gt;
704
+ &lt;oclcid&gt;20905242&lt;/oclcid&gt;
705
+ &lt;lad01&gt;BFALE&lt;/lad01&gt;
706
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
707
+ &lt;/addata&gt;
708
+ &lt;/record&gt;
709
+ &lt;/PrimoNMBib&gt;
710
+ &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://webdev1.library.nyu.edu/getit/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
711
+ &lt;LIBRARIES&gt;
712
+ &lt;LIBRARY&gt;
713
+ &lt;institution&gt;NYU&lt;/institution&gt;
714
+ &lt;library&gt;BFALE&lt;/library&gt;
715
+ &lt;status&gt;available&lt;/status&gt;
716
+ &lt;collection&gt;Fales&lt;/collection&gt;
717
+ &lt;callNumber&gt;(Brit Non-circulating )&lt;/callNumber&gt;
718
+ &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;
719
+ &lt;/LIBRARY&gt;
720
+ &lt;/LIBRARIES&gt;
721
+ &lt;LINKS&gt;
722
+ &lt;openurl&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
723
+ &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003445127&lt;/backlink&gt;
724
+ &lt;thumbnail/&gt;
725
+ &lt;openurlfulltext&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
726
+ &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;
727
+ &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph003445127?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
728
+ &lt;linktouc&gt;http://www.worldcat.org/search?q=no%3A20905242&lt;/linktouc&gt;
729
+ &lt;/LINKS&gt;
730
+ &lt;/DOC&gt;
731
+ &lt;DOC ID=&quot;550726&quot; RANK=&quot;0.015513157&quot; NO=&quot;4&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
732
+ &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
733
+ &lt;record&gt;
734
+ &lt;control&gt;
735
+ &lt;sourcerecordid&gt;001492350&lt;/sourcerecordid&gt;
736
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
737
+ &lt;recordid&gt;nyu_aleph001492350&lt;/recordid&gt;
738
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
739
+ &lt;ilsapiid&gt;NYU01001492350&lt;/ilsapiid&gt;
740
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
741
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
742
+ &lt;/control&gt;
743
+ &lt;display&gt;
744
+ &lt;type&gt;book&lt;/type&gt;
745
+ &lt;title&gt;Travels with my aunt: a novel.&lt;/title&gt;
746
+ &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
747
+ &lt;publisher&gt;London, Bodley Head&lt;/publisher&gt;
748
+ &lt;creationdate&gt;1969&lt;/creationdate&gt;
749
+ &lt;format&gt;319 p. 21 cm.&lt;/format&gt;
750
+ &lt;identifier&gt;$$Cisbn$$V0370014227; $$Cisbn$$V9780370014227&lt;/identifier&gt;
751
+ &lt;subject&gt;Aunts -- Travel -- Europe -- Fiction&lt;/subject&gt;
752
+ &lt;language&gt;eng&lt;/language&gt;
753
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
754
+ &lt;availlibrary&gt;$$INYU$$LLAPI$$1Main Collection$$2(2117 Non-circulating )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YNLAPI$$ZMAIN&lt;/availlibrary&gt;
755
+ &lt;lds02&gt;nyu_aleph001492350&lt;/lds02&gt;
756
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
757
+ &lt;availinstitution&gt;$$INYU$$Savailable&lt;/availinstitution&gt;
758
+ &lt;availpnx&gt;available&lt;/availpnx&gt;
759
+ &lt;version&gt;2&lt;/version&gt;
760
+ &lt;/display&gt;
761
+ &lt;links&gt;
762
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
763
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
764
+ &lt;thumbnail&gt;$$Tamazon_thumb&lt;/thumbnail&gt;
765
+ &lt;linktotoc&gt;$$Tamazon_toc$$DCheck for Amazon Search Inside&lt;/linktotoc&gt;
766
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
767
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
768
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
769
+ &lt;linktouc&gt;$$Tamazon_uc$$DCheck Amazon&lt;/linktouc&gt;
770
+ &lt;linktouc&gt;$$Tworldcat_isbn$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
771
+ &lt;linktoexcerpt&gt;$$Tsyndetics_excerpt$$DExcerpt from item&lt;/linktoexcerpt&gt;
772
+ &lt;/links&gt;
773
+ &lt;search&gt;
774
+ &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
775
+ &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
776
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
777
+ &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
778
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
779
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
780
+ &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
781
+ &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
782
+ &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
783
+ &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
784
+ &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
785
+ &lt;title&gt;Travels with my aunt: a novel.&lt;/title&gt;
786
+ &lt;subject&gt;Aunts Travel Europe Fiction&lt;/subject&gt;
787
+ &lt;general&gt;Bodley Head,&lt;/general&gt;
788
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
789
+ &lt;recordid&gt;nyu_aleph001492350&lt;/recordid&gt;
790
+ &lt;isbn&gt;0370014227&lt;/isbn&gt;
791
+ &lt;isbn&gt;9780370014227&lt;/isbn&gt;
792
+ &lt;rsrctype&gt;book&lt;/rsrctype&gt;
793
+ &lt;creationdate&gt;1969&lt;/creationdate&gt;
794
+ &lt;searchscope&gt;NLAPI&lt;/searchscope&gt;
795
+ &lt;searchscope&gt;NLAPI Main Collection&lt;/searchscope&gt;
796
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
797
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
798
+ &lt;searchscope&gt;LAPI&lt;/searchscope&gt;
799
+ &lt;scope&gt;NLAPI&lt;/scope&gt;
800
+ &lt;scope&gt;NLAPI Main Collection&lt;/scope&gt;
801
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
802
+ &lt;scope&gt;NYU&lt;/scope&gt;
803
+ &lt;scope&gt;LAPI&lt;/scope&gt;
804
+ &lt;lsr01&gt;2117&lt;/lsr01&gt;
805
+ &lt;lsr02&gt;Bodley Head,&lt;/lsr02&gt;
806
+ &lt;/search&gt;
807
+ &lt;sort&gt;
808
+ &lt;title&gt;Travels with my aunt: a novel.&lt;/title&gt;
809
+ &lt;creationdate&gt;1969&lt;/creationdate&gt;
810
+ &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
811
+ &lt;lso01&gt;1969&lt;/lso01&gt;
812
+ &lt;/sort&gt;
813
+ &lt;facets&gt;
814
+ &lt;language&gt;eng&lt;/language&gt;
815
+ &lt;creationdate&gt;1969&lt;/creationdate&gt;
816
+ &lt;topic&gt;Aunts&#x2013;Travel&#x2013;Europe&#x2013;Fiction&lt;/topic&gt;
817
+ &lt;collection&gt;NLAPI&lt;/collection&gt;
818
+ &lt;toplevel&gt;available&lt;/toplevel&gt;
819
+ &lt;prefilter&gt;books&lt;/prefilter&gt;
820
+ &lt;rsrctype&gt;books&lt;/rsrctype&gt;
821
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
822
+ &lt;genre&gt;Fiction&lt;/genre&gt;
823
+ &lt;library&gt;LAPI&lt;/library&gt;
824
+ &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
825
+ &lt;classificationlcc&gt;P - Language and literature.&#x2013;English literature&lt;/classificationlcc&gt;
826
+ &lt;frbrgroupid&gt;50511627&lt;/frbrgroupid&gt;
827
+ &lt;frbrtype&gt;5&lt;/frbrtype&gt;
828
+ &lt;/facets&gt;
829
+ &lt;dedup&gt;
830
+ &lt;t&gt;1&lt;/t&gt;
831
+ &lt;c1&gt;79456621&lt;/c1&gt;
832
+ &lt;c2&gt;0370014227;9780370014227&lt;/c2&gt;
833
+ &lt;c3&gt;travelswithmyauntanovel&lt;/c3&gt;
834
+ &lt;c4&gt;1969&lt;/c4&gt;
835
+ &lt;f1&gt;79456621&lt;/f1&gt;
836
+ &lt;f3&gt;0370014227;9780370014227&lt;/f3&gt;
837
+ &lt;f5&gt;travelswithmyauntanovel&lt;/f5&gt;
838
+ &lt;f6&gt;1969&lt;/f6&gt;
839
+ &lt;f7&gt;travels with my aunt a novel&lt;/f7&gt;
840
+ &lt;f8&gt;enk&lt;/f8&gt;
841
+ &lt;f9&gt;319 p.&lt;/f9&gt;
842
+ &lt;f10&gt;bodley head&lt;/f10&gt;
843
+ &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
844
+ &lt;/dedup&gt;
845
+ &lt;frbr&gt;
846
+ &lt;t&gt;1&lt;/t&gt;
847
+ &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
848
+ &lt;k3&gt;$$Kbooktravels with my aunt a novel$$AT&lt;/k3&gt;
849
+ &lt;/frbr&gt;
850
+ &lt;delivery&gt;
851
+ &lt;institution&gt;NYU&lt;/institution&gt;
852
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
853
+ &lt;/delivery&gt;
854
+ &lt;enrichment&gt;
855
+ &lt;classificationlcc&gt;PR6013.R44&lt;/classificationlcc&gt;
856
+ &lt;/enrichment&gt;
857
+ &lt;ranking&gt;
858
+ &lt;booster1&gt;1&lt;/booster1&gt;
859
+ &lt;booster2&gt;1&lt;/booster2&gt;
860
+ &lt;/ranking&gt;
861
+ &lt;addata&gt;
862
+ &lt;aulast&gt;Greene&lt;/aulast&gt;
863
+ &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
864
+ &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
865
+ &lt;btitle&gt;Travels with my aunt: a novel.&lt;/btitle&gt;
866
+ &lt;date&gt;1969&lt;/date&gt;
867
+ &lt;risdate&gt;1969.&lt;/risdate&gt;
868
+ &lt;isbn&gt;0370014227&lt;/isbn&gt;
869
+ &lt;isbn&gt;9780370014227&lt;/isbn&gt;
870
+ &lt;format&gt;book&lt;/format&gt;
871
+ &lt;genre&gt;book&lt;/genre&gt;
872
+ &lt;ristype&gt;BOOK&lt;/ristype&gt;
873
+ &lt;cop&gt;London&lt;/cop&gt;
874
+ &lt;pub&gt;Bodley Head&lt;/pub&gt;
875
+ &lt;lccn&gt;79456621&lt;/lccn&gt;
876
+ &lt;lad01&gt;NLAPI&lt;/lad01&gt;
877
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
878
+ &lt;/addata&gt;
879
+ &lt;/record&gt;
880
+ &lt;/PrimoNMBib&gt;
881
+ &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://webdev1.library.nyu.edu/getit/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
882
+ &lt;LIBRARIES&gt;
883
+ &lt;LIBRARY&gt;
884
+ &lt;institution&gt;NYU&lt;/institution&gt;
885
+ &lt;library&gt;LAPI&lt;/library&gt;
886
+ &lt;status&gt;available&lt;/status&gt;
887
+ &lt;collection&gt;Main Collection&lt;/collection&gt;
888
+ &lt;callNumber&gt;(2117 Non-circulating )&lt;/callNumber&gt;
889
+ &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=001492350&lt;/url&gt;
890
+ &lt;/LIBRARY&gt;
891
+ &lt;/LIBRARIES&gt;
892
+ &lt;LINKS&gt;
893
+ &lt;openurl&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A33IST&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_aleph001492350&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt:%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=Bodley%20Head&amp;rft.place=London&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0370014227&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph001492350&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;001492350&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurl&gt;
894
+ &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=001492350&lt;/backlink&gt;
895
+ &lt;thumbnail&gt;http://images.amazon.com/images/P/0370014227.01._SSTHUM_.jpg&lt;/thumbnail&gt;
896
+ &lt;linktotoc&gt;http://www.amazon.com/gp/reader/0370014227&lt;/linktotoc&gt;
897
+ &lt;openurlfulltext&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A33IST&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_aleph001492350&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt:%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=Bodley%20Head&amp;rft.place=London&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0370014227&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;001492350&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurlfulltext&gt;
898
+ &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=001492350&lt;/linktoholdings&gt;
899
+ &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph001492350?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
900
+ &lt;linktouc&gt;http://www.amazon.com/s/?search-alias=aps&amp;amp;field-keywords=0370014227&lt;/linktouc&gt;
901
+ &lt;linktouc&gt;http://www.worldcat.org/search?q=isbn%3A0370014227&lt;/linktouc&gt;
902
+ &lt;/LINKS&gt;
903
+ &lt;/DOC&gt;
904
+ &lt;DOC ID=&quot;2045868&quot; RANK=&quot;0.009695724&quot; NO=&quot;5&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
905
+ &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
906
+ &lt;record&gt;
907
+ &lt;control&gt;
908
+ &lt;sourcerecordid&gt;003518434&lt;/sourcerecordid&gt;
909
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
910
+ &lt;recordid&gt;nyu_aleph003518434&lt;/recordid&gt;
911
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
912
+ &lt;ilsapiid&gt;NYU01003518434&lt;/ilsapiid&gt;
913
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
914
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
915
+ &lt;/control&gt;
916
+ &lt;display&gt;
917
+ &lt;type&gt;video&lt;/type&gt;
918
+ &lt;title&gt;Travels With My Aunt (DVD) Remastered Edition&lt;/title&gt;
919
+ &lt;creator&gt;Cukor, George&lt;/creator&gt;
920
+ &lt;publisher&gt;Warner Archives&lt;/publisher&gt;
921
+ &lt;creationdate&gt;2011&lt;/creationdate&gt;
922
+ &lt;language&gt;eng&lt;/language&gt;
923
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
924
+ &lt;availlibrary&gt;$$INYU$$LBAFC$$1Main Collection$$Sunavailable$$31$$41$$5N$$60$$XNYU50$$YBAFC$$ZAFC&lt;/availlibrary&gt;
925
+ &lt;lds02&gt;nyu_aleph003518434&lt;/lds02&gt;
926
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
927
+ &lt;availinstitution&gt;$$INYU$$Sunavailable&lt;/availinstitution&gt;
928
+ &lt;availpnx&gt;unavailable&lt;/availpnx&gt;
929
+ &lt;/display&gt;
930
+ &lt;links&gt;
931
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
932
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
933
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
934
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
935
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
936
+ &lt;/links&gt;
937
+ &lt;search&gt;
938
+ &lt;creatorcontrib&gt;Cukor, George&lt;/creatorcontrib&gt;
939
+ &lt;title&gt;Travels With My Aunt (DVD) Remastered Edition&lt;/title&gt;
940
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
941
+ &lt;recordid&gt;nyu_aleph003518434&lt;/recordid&gt;
942
+ &lt;rsrctype&gt;video&lt;/rsrctype&gt;
943
+ &lt;creationdate&gt;2011&lt;/creationdate&gt;
944
+ &lt;searchscope&gt;BAFC&lt;/searchscope&gt;
945
+ &lt;searchscope&gt;BAFC Main Collection&lt;/searchscope&gt;
946
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
947
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
948
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
949
+ &lt;scope&gt;BAFC&lt;/scope&gt;
950
+ &lt;scope&gt;BAFC Main Collection&lt;/scope&gt;
951
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
952
+ &lt;scope&gt;NYU&lt;/scope&gt;
953
+ &lt;scope&gt;BOBST&lt;/scope&gt;
954
+ &lt;/search&gt;
955
+ &lt;sort&gt;
956
+ &lt;title&gt;Travels With My Aunt (DVD) Remastered Edition&lt;/title&gt;
957
+ &lt;creationdate&gt;2011&lt;/creationdate&gt;
958
+ &lt;author&gt;Cukor, George&lt;/author&gt;
959
+ &lt;lso01&gt;2011&lt;/lso01&gt;
960
+ &lt;/sort&gt;
961
+ &lt;facets&gt;
962
+ &lt;language&gt;eng&lt;/language&gt;
963
+ &lt;creationdate&gt;2011&lt;/creationdate&gt;
964
+ &lt;collection&gt;BAFC&lt;/collection&gt;
965
+ &lt;prefilter&gt;video&lt;/prefilter&gt;
966
+ &lt;rsrctype&gt;video&lt;/rsrctype&gt;
967
+ &lt;creatorcontrib&gt;Cukor, George&lt;/creatorcontrib&gt;
968
+ &lt;library&gt;BOBST&lt;/library&gt;
969
+ &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
970
+ &lt;frbrgroupid&gt;52508465&lt;/frbrgroupid&gt;
971
+ &lt;frbrtype&gt;6&lt;/frbrtype&gt;
972
+ &lt;/facets&gt;
973
+ &lt;dedup&gt;
974
+ &lt;t&gt;1&lt;/t&gt;
975
+ &lt;c3&gt;travelswithmyauntdvdrededition&lt;/c3&gt;
976
+ &lt;c4&gt;2011&lt;/c4&gt;
977
+ &lt;f5&gt;travelswithmyauntdvdrededition&lt;/f5&gt;
978
+ &lt;f6&gt;2011&lt;/f6&gt;
979
+ &lt;f7&gt;travels with my aunt dvd remastered edition&lt;/f7&gt;
980
+ &lt;f11&gt;cukor george&lt;/f11&gt;
981
+ &lt;/dedup&gt;
982
+ &lt;frbr&gt;
983
+ &lt;t&gt;1&lt;/t&gt;
984
+ &lt;k1&gt;$$Kcukor george$$AA&lt;/k1&gt;
985
+ &lt;k3&gt;$$Kvideotravels with my aunt dvd remastered edition$$AT&lt;/k3&gt;
986
+ &lt;/frbr&gt;
987
+ &lt;delivery&gt;
988
+ &lt;institution&gt;NYU&lt;/institution&gt;
989
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
990
+ &lt;/delivery&gt;
991
+ &lt;ranking&gt;
992
+ &lt;booster1&gt;1&lt;/booster1&gt;
993
+ &lt;booster2&gt;1&lt;/booster2&gt;
994
+ &lt;/ranking&gt;
995
+ &lt;addata&gt;
996
+ &lt;au&gt;Cukor, George&lt;/au&gt;
997
+ &lt;btitle&gt;Travels With My Aunt (DVD) Remastered Edition&lt;/btitle&gt;
998
+ &lt;date&gt;2011&lt;/date&gt;
999
+ &lt;risdate&gt;2011&lt;/risdate&gt;
1000
+ &lt;format&gt;video&lt;/format&gt;
1001
+ &lt;genre&gt;video&lt;/genre&gt;
1002
+ &lt;ristype&gt;VIDEO&lt;/ristype&gt;
1003
+ &lt;cop&gt;Warner Archives&lt;/cop&gt;
1004
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
1005
+ &lt;/addata&gt;
1006
+ &lt;/record&gt;
1007
+ &lt;/PrimoNMBib&gt;
1008
+ &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://webdev1.library.nyu.edu/getit/resolve?&amp;amp;ctx_ver=Z39.88-2004&amp;amp;ctx_enc=info:ofi/enc:UTF-8&amp;amp;ctx_tim=2012-10-12T14%3A00%3A32IST&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;
1009
+ &lt;LIBRARIES&gt;
1010
+ &lt;LIBRARY&gt;
1011
+ &lt;institution&gt;NYU&lt;/institution&gt;
1012
+ &lt;library&gt;BAFC&lt;/library&gt;
1013
+ &lt;status&gt;unavailable&lt;/status&gt;
1014
+ &lt;collection&gt;Main Collection&lt;/collection&gt;
1015
+ &lt;callNumber/&gt;
1016
+ &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=003518434&lt;/url&gt;
1017
+ &lt;/LIBRARY&gt;
1018
+ &lt;/LIBRARIES&gt;
1019
+ &lt;LINKS&gt;
1020
+ &lt;openurl&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A33IST&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_aleph003518434&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(DVD)%20Remastered%20Edition&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Cukor%2C%20George&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=&amp;rft.place=Warner%20Archives&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_aleph003518434&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;003518434&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurl&gt;
1021
+ &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003518434&lt;/backlink&gt;
1022
+ &lt;thumbnail/&gt;
1023
+ &lt;openurlfulltext&gt;&lt;![CDATA[https://webdev1.library.nyu.edu/getit/resolve?&amp;ctx_ver=Z39.88-2004&amp;sfx.ignore_date_threshold=1&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T14%3A00%3A33IST&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_aleph003518434&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(DVD)%20Remastered%20Edition&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Cukor%2C%20George&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=&amp;rft.place=Warner%20Archives&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;003518434&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurlfulltext&gt;
1024
+ &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=003518434&lt;/linktoholdings&gt;
1025
+ &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph003518434?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
1026
+ &lt;/LINKS&gt;
1027
+ &lt;/DOC&gt;
1028
+ &lt;/DOCSET&gt;
1029
+ &lt;/RESULT&gt;
1030
+ &lt;searchToken&gt;0&lt;/searchToken&gt;
1031
+ &lt;/JAGROOT&gt;
1032
+ &lt;/SEGMENTS&gt;</searchBriefReturn></ns1:searchBriefResponse></soapenv:Body></soapenv:Envelope>
1033
+ http_version:
1034
+ recorded_at: Fri, 12 Oct 2012 18:00:32 GMT
1035
+ recorded_with: VCR 2.2.5