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,297 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://bobcat.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;isbn&lt;/IndexField&gt;&lt;PrecisionOperator&gt;exact&lt;/PrecisionOperator&gt;&lt;Value&gt;0002-8614&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
+ X-Powered-By:
34
+ - "Servlet 2.4; Tomcat-5.0.28/JBoss-4.0.1 (build: CVSTag=JBoss_4_0_1 date=200412230944)"
35
+ Content-Type:
36
+ - text/xml;charset=utf-8
37
+ Transfer-Encoding:
38
+ - chunked
39
+ Date:
40
+ - Fri, 12 Oct 2012 17:59:17 GMT
41
+ Server:
42
+ - Apache-Coyote/1.1
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;sear:SEGMENTS xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot; xmlns:sear=&quot;http://www.exlibrisgroup.com/xsd/jaguar/search&quot;&gt;
46
+ &lt;sear:JAGROOT&gt;
47
+ &lt;sear:RESULT&gt;
48
+ &lt;sear:QUERYTRANSFORMS/&gt;
49
+ &lt;sear:FACETLIST ACCURATE_COUNTERS=&quot;true&quot;&gt;
50
+ &lt;sear:FACET COUNT=&quot;3&quot; NAME=&quot;creator&quot;&gt;
51
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;American Geriatrics Society&quot;/&gt;
52
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;American Therapeutic Society&quot;/&gt;
53
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Texas Geriatrics Society&quot;/&gt;
54
+ &lt;/sear:FACET&gt;
55
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;lang&quot;&gt;
56
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;eng&quot;/&gt;
57
+ &lt;/sear:FACET&gt;
58
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;rtype&quot;&gt;
59
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;journals&quot;/&gt;
60
+ &lt;/sear:FACET&gt;
61
+ &lt;sear:FACET COUNT=&quot;2&quot; NAME=&quot;topic&quot;&gt;
62
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Health sciences&quot;/&gt;
63
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Geriatrics&quot;/&gt;
64
+ &lt;/sear:FACET&gt;
65
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;tlevel&quot;&gt;
66
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;available&quot;/&gt;
67
+ &lt;/sear:FACET&gt;
68
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;pfilter&quot;&gt;
69
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;journals&quot;/&gt;
70
+ &lt;/sear:FACET&gt;
71
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;creationdate&quot;&gt;
72
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;1953&quot;/&gt;
73
+ &lt;/sear:FACET&gt;
74
+ &lt;sear:FACET COUNT=&quot;2&quot; NAME=&quot;domain&quot;&gt;
75
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;BOBST&quot;/&gt;
76
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;NSFO&quot;/&gt;
77
+ &lt;/sear:FACET&gt;
78
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;genre&quot;&gt;
79
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Electronic journals&quot;/&gt;
80
+ &lt;/sear:FACET&gt;
81
+ &lt;sear:FACET COUNT=&quot;2&quot; NAME=&quot;library&quot;&gt;
82
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;BOBST&quot;/&gt;
83
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;NSFO&quot;/&gt;
84
+ &lt;/sear:FACET&gt;
85
+ &lt;sear:FACET COUNT=&quot;3&quot; NAME=&quot;local1&quot;&gt;
86
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Main Collection&quot;/&gt;
87
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Periodicals&quot;/&gt;
88
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Internet Resources&quot;/&gt;
89
+ &lt;/sear:FACET&gt;
90
+ &lt;/sear:FACETLIST&gt;
91
+ &lt;sear:DOCSET IS_LOCAL=&quot;true&quot; TOTAL_TIME=&quot;17&quot; LASTHIT=&quot;1&quot; FIRSTHIT=&quot;1&quot; TOTALHITS=&quot;1&quot; HIT_TIME=&quot;2&quot;&gt;
92
+ &lt;sear:DOC SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; NO=&quot;1&quot; RANK=&quot;1.0&quot; ID=&quot;3629224&quot;&gt;
93
+ &lt;PrimoNMBib&gt;
94
+ &lt;record&gt;
95
+ &lt;control&gt;
96
+ &lt;sourcerecordid&gt;002890269&lt;/sourcerecordid&gt;
97
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
98
+ &lt;recordid&gt;nyu_aleph002890269&lt;/recordid&gt;
99
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
100
+ &lt;ilsapiid&gt;NYU01002890269&lt;/ilsapiid&gt;
101
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
102
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
103
+ &lt;/control&gt;
104
+ &lt;display&gt;
105
+ &lt;type&gt;journal&lt;/type&gt;
106
+ &lt;title&gt;Journal of the American Geriatrics Society.&lt;/title&gt;
107
+ &lt;contributor&gt;Texas Geriatrics Society.; American Therapeutic Society.; American Geriatrics Society.&lt;/contributor&gt;
108
+ &lt;publisher&gt;New York, etc., Elsevier Science Pub. Co. for the American Geriatrics Society, etc.&lt;/publisher&gt;
109
+ &lt;creationdate&gt;1953&lt;/creationdate&gt;
110
+ &lt;format&gt;v. : ill. ; 26 cm.&lt;/format&gt;
111
+ &lt;identifier&gt;$$Cissn$$V0002-8614&lt;/identifier&gt;
112
+ &lt;subject&gt;Geriatrics -- Periodicals; Health sciences; Health sciences; Electronic journals&lt;/subject&gt;
113
+ &lt;language&gt;eng&lt;/language&gt;
114
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
115
+ &lt;availlibrary&gt;$$INYU$$LBOBST$$1Main Collection$$2(RC952 .A16n )$$Scheck_holdings$$5Y$$XNYU50$$YBOBST$$ZMAIN&lt;/availlibrary&gt;
116
+ &lt;availlibrary&gt;$$INS$$LNSFO$$1Periodicals$$2(Non-circulating )$$Scheck_holdings$$5Y$$XNYU50$$YTNSFO$$ZPERIO&lt;/availlibrary&gt;
117
+ &lt;availlibrary&gt;$$INYU$$LBWEB$$1Internet Resources$$2(RC952 .A16n Electronic Access )$$Scheck_holdings$$XNYU50$$YBWEB$$ZBNYUI&lt;/availlibrary&gt;
118
+ &lt;lds02&gt;nyu_aleph002890269&lt;/lds02&gt;
119
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
120
+ &lt;lds01&gt;NS&lt;/lds01&gt;
121
+ &lt;availinstitution&gt;$$INS$$Scheck_holdings&lt;/availinstitution&gt;
122
+ &lt;availinstitution&gt;$$INYU$$Scheck_holdings&lt;/availinstitution&gt;
123
+ &lt;availpnx&gt;available&lt;/availpnx&gt;
124
+ &lt;/display&gt;
125
+ &lt;links&gt;
126
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
127
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
128
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
129
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
130
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
131
+ &lt;/links&gt;
132
+ &lt;search&gt;
133
+ &lt;creatorcontrib&gt;Texas Geriatrics Society.&lt;/creatorcontrib&gt;
134
+ &lt;creatorcontrib&gt;American Therapeutic Society.&lt;/creatorcontrib&gt;
135
+ &lt;creatorcontrib&gt;American Geriatrics Society.&lt;/creatorcontrib&gt;
136
+ &lt;creatorcontrib&gt;Wiley InterScience (Online service)&lt;/creatorcontrib&gt;
137
+ &lt;creatorcontrib&gt;Mellon Project.&lt;/creatorcontrib&gt;
138
+ &lt;title&gt;Journal of the American Geriatrics Society.&lt;/title&gt;
139
+ &lt;subject&gt;Geriatrics Periodicals&lt;/subject&gt;
140
+ &lt;subject&gt;Health sciences&lt;/subject&gt;
141
+ &lt;subject&gt;Electronic journals&lt;/subject&gt;
142
+ &lt;general&gt;Elsevier Science Pub. Co. for the American Geriatrics Society, etc.]&lt;/general&gt;
143
+ &lt;general&gt;Imprint varies.&lt;/general&gt;
144
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
145
+ &lt;recordid&gt;nyu_aleph002890269&lt;/recordid&gt;
146
+ &lt;isbn&gt;0002-8614&lt;/isbn&gt;
147
+ &lt;rsrctype&gt;journal&lt;/rsrctype&gt;
148
+ &lt;creationdate&gt;1953&lt;/creationdate&gt;
149
+ &lt;creationdate&gt;9999&lt;/creationdate&gt;
150
+ &lt;addtitle&gt;Journal of the American Geriatrics Society (Online)&lt;/addtitle&gt;
151
+ &lt;addtitle&gt;Transactions of the American Therapeutic Society&lt;/addtitle&gt;
152
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
153
+ &lt;searchscope&gt;BOBST Main Collection&lt;/searchscope&gt;
154
+ &lt;searchscope&gt;TNSFO&lt;/searchscope&gt;
155
+ &lt;searchscope&gt;TNSFO Periodicals&lt;/searchscope&gt;
156
+ &lt;searchscope&gt;BWEB&lt;/searchscope&gt;
157
+ &lt;searchscope&gt;BWEB Internet Resources&lt;/searchscope&gt;
158
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
159
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
160
+ &lt;searchscope&gt;NS&lt;/searchscope&gt;
161
+ &lt;searchscope&gt;NSFO&lt;/searchscope&gt;
162
+ &lt;scope&gt;BOBST&lt;/scope&gt;
163
+ &lt;scope&gt;BOBST Main Collection&lt;/scope&gt;
164
+ &lt;scope&gt;TNSFO&lt;/scope&gt;
165
+ &lt;scope&gt;TNSFO Periodicals&lt;/scope&gt;
166
+ &lt;scope&gt;BWEB&lt;/scope&gt;
167
+ &lt;scope&gt;BWEB Internet Resources&lt;/scope&gt;
168
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
169
+ &lt;scope&gt;NYU&lt;/scope&gt;
170
+ &lt;scope&gt;NS&lt;/scope&gt;
171
+ &lt;scope&gt;NSFO&lt;/scope&gt;
172
+ &lt;alttitle&gt;J. Am. Geriatr. Soc.&lt;/alttitle&gt;
173
+ &lt;lsr02&gt;Elsevier Science Pub. Co. for the American Geriatrics Society, etc.]&lt;/lsr02&gt;
174
+ &lt;/search&gt;
175
+ &lt;sort&gt;
176
+ &lt;title&gt;Journal of the American Geriatrics Society.&lt;/title&gt;
177
+ &lt;creationdate&gt;1953&lt;/creationdate&gt;
178
+ &lt;author&gt;Texas Geriatrics Society.&lt;/author&gt;
179
+ &lt;lso01&gt;1953&lt;/lso01&gt;
180
+ &lt;/sort&gt;
181
+ &lt;facets&gt;
182
+ &lt;language&gt;eng&lt;/language&gt;
183
+ &lt;creationdate&gt;1953&lt;/creationdate&gt;
184
+ &lt;topic&gt;Geriatrics&#x2013;Periodicals&lt;/topic&gt;
185
+ &lt;topic&gt;Health sciences&lt;/topic&gt;
186
+ &lt;collection&gt;BOBST&lt;/collection&gt;
187
+ &lt;collection&gt;NSFO&lt;/collection&gt;
188
+ &lt;toplevel&gt;available&lt;/toplevel&gt;
189
+ &lt;prefilter&gt;journals&lt;/prefilter&gt;
190
+ &lt;rsrctype&gt;journals&lt;/rsrctype&gt;
191
+ &lt;creatorcontrib&gt;Texas Geriatrics Society&lt;/creatorcontrib&gt;
192
+ &lt;creatorcontrib&gt;American Therapeutic Society&lt;/creatorcontrib&gt;
193
+ &lt;creatorcontrib&gt;American Geriatrics Society&lt;/creatorcontrib&gt;
194
+ &lt;genre&gt;Electronic journals&lt;/genre&gt;
195
+ &lt;library&gt;BOBST&lt;/library&gt;
196
+ &lt;library&gt;NSFO&lt;/library&gt;
197
+ &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
198
+ &lt;lfc01&gt;Periodicals&lt;/lfc01&gt;
199
+ &lt;lfc01&gt;Internet Resources&lt;/lfc01&gt;
200
+ &lt;frbrgroupid&gt;65074435&lt;/frbrgroupid&gt;
201
+ &lt;frbrtype&gt;6&lt;/frbrtype&gt;
202
+ &lt;/facets&gt;
203
+ &lt;dedup&gt;
204
+ &lt;t&gt;2&lt;/t&gt;
205
+ &lt;c1&gt;sn78000666&lt;/c1&gt;
206
+ &lt;c2&gt;0002-8614&lt;/c2&gt;
207
+ &lt;c3&gt;journaloftheamericanicssociety&lt;/c3&gt;
208
+ &lt;c4&gt;new&lt;/c4&gt;
209
+ &lt;f1&gt;sn78000666&lt;/f1&gt;
210
+ &lt;f3&gt;00028614&lt;/f3&gt;
211
+ &lt;f6&gt;1953&lt;/f6&gt;
212
+ &lt;f7&gt;journal of the american geriatrics society&lt;/f7&gt;
213
+ &lt;f8&gt;journal of the american geriatrics society&lt;/f8&gt;
214
+ &lt;f9&gt;nyu&lt;/f9&gt;
215
+ &lt;f10&gt;new&lt;/f10&gt;
216
+ &lt;/dedup&gt;
217
+ &lt;frbr&gt;
218
+ &lt;t&gt;1&lt;/t&gt;
219
+ &lt;k1&gt;$$Ktexas geriatrics society$$AA&lt;/k1&gt;
220
+ &lt;k1&gt;$$Kamerican therapeutic society$$AA&lt;/k1&gt;
221
+ &lt;k1&gt;$$Kamerican geriatrics society$$AA&lt;/k1&gt;
222
+ &lt;k3&gt;$$Kjournal of the american geriatrics society$$AT&lt;/k3&gt;
223
+ &lt;/frbr&gt;
224
+ &lt;delivery&gt;
225
+ &lt;institution&gt;NYU&lt;/institution&gt;
226
+ &lt;institution&gt;NS&lt;/institution&gt;
227
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
228
+ &lt;/delivery&gt;
229
+ &lt;ranking&gt;
230
+ &lt;booster1&gt;1&lt;/booster1&gt;
231
+ &lt;booster2&gt;1&lt;/booster2&gt;
232
+ &lt;/ranking&gt;
233
+ &lt;addata&gt;
234
+ &lt;addau&gt;Texas Geriatrics Society&lt;/addau&gt;
235
+ &lt;addau&gt;American Therapeutic Society&lt;/addau&gt;
236
+ &lt;addau&gt;American Geriatrics Society&lt;/addau&gt;
237
+ &lt;jtitle&gt;Journal of the American Geriatrics Society.&lt;/jtitle&gt;
238
+ &lt;stitle&gt;J. Am. Geriatr. Soc.&lt;/stitle&gt;
239
+ &lt;date&gt;1953&lt;/date&gt;
240
+ &lt;risdate&gt;1953&lt;/risdate&gt;
241
+ &lt;issn&gt;0002-8614&lt;/issn&gt;
242
+ &lt;coden&gt;JAGSAF&lt;/coden&gt;
243
+ &lt;format&gt;journal&lt;/format&gt;
244
+ &lt;genre&gt;journal&lt;/genre&gt;
245
+ &lt;ristype&gt;JOUR&lt;/ristype&gt;
246
+ &lt;cop&gt;New York, etc.&lt;/cop&gt;
247
+ &lt;pub&gt;Elsevier Science Pub. Co. for the American Geriatrics Society, etc.]&lt;/pub&gt;
248
+ &lt;lccn&gt;sn 78000666&lt;/lccn&gt;
249
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
250
+ &lt;/addata&gt;
251
+ &lt;/record&gt;
252
+ &lt;/PrimoNMBib&gt;
253
+ &lt;sear:GETIT GetIt2=&quot;https://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=2012-10-12T13%3A59%3A17IST&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_aleph002890269&amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;amp;rft.genre=journal&amp;amp;rft.jtitle=Journal%20of%20the%20American%20Geriatrics%20Society.&amp;amp;rft.btitle=&amp;amp;rft.aulast=&amp;amp;rft.aufirst=&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=Elsevier%20Science%20Pub.%20Co.%20for%20the%20American%20Geriatrics%20Society%2C%20etc.]&amp;amp;rft.place=New%20York%2C%20etc.&amp;amp;rft.issn=0002-8614&amp;amp;rft.eissn=&amp;amp;rft.isbn=&amp;amp;rft.sici=&amp;amp;rft.coden=JAGSAF&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph002890269&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;002890269&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot; GetIt1=&quot;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002890269&quot; deliveryCategory=&quot;Physical Item&quot;/&gt;
254
+ &lt;sear:LIBRARIES&gt;
255
+ &lt;sear:LIBRARY&gt;
256
+ &lt;sear:institution&gt;NYU&lt;/sear:institution&gt;
257
+ &lt;sear:library&gt;BOBST&lt;/sear:library&gt;
258
+ &lt;sear:status&gt;check_holdings&lt;/sear:status&gt;
259
+ &lt;sear:collection&gt;Main Collection&lt;/sear:collection&gt;
260
+ &lt;sear:callNumber&gt;(RC952 .A16n )&lt;/sear:callNumber&gt;
261
+ &lt;sear:url&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002890269&lt;/sear:url&gt;
262
+ &lt;/sear:LIBRARY&gt;
263
+ &lt;sear:LIBRARY&gt;
264
+ &lt;sear:institution&gt;NS&lt;/sear:institution&gt;
265
+ &lt;sear:library&gt;NSFO&lt;/sear:library&gt;
266
+ &lt;sear:status&gt;check_holdings&lt;/sear:status&gt;
267
+ &lt;sear:collection&gt;Periodicals&lt;/sear:collection&gt;
268
+ &lt;sear:callNumber&gt;(Non-circulating )&lt;/sear:callNumber&gt;
269
+ &lt;sear:url&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002890269&lt;/sear:url&gt;
270
+ &lt;/sear:LIBRARY&gt;
271
+ &lt;sear:LIBRARY&gt;
272
+ &lt;sear:institution&gt;NYU&lt;/sear:institution&gt;
273
+ &lt;sear:library&gt;BWEB&lt;/sear:library&gt;
274
+ &lt;sear:status&gt;check_holdings&lt;/sear:status&gt;
275
+ &lt;sear:collection&gt;Internet Resources&lt;/sear:collection&gt;
276
+ &lt;sear:callNumber&gt;(RC952 .A16n Electronic Access )&lt;/sear:callNumber&gt;
277
+ &lt;sear:url&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002890269&lt;/sear:url&gt;
278
+ &lt;/sear:LIBRARY&gt;
279
+ &lt;/sear:LIBRARIES&gt;
280
+ &lt;sear:LINKS&gt;
281
+ &lt;sear:openurl&gt;&lt;![CDATA[https://getit.library.nyu.edu/resolve?umlaut.institution=NS&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T13%3A59%3A17IST&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_aleph002890269&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;rft.genre=journal&amp;rft.jtitle=Journal%20of%20the%20American%20Geriatrics%20Society.&amp;rft.btitle=&amp;rft.aulast=&amp;rft.aufirst=&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=Elsevier%20Science%20Pub.%20Co.%20for%20the%20American%20Geriatrics%20Society%2C%20etc.]&amp;rft.place=New%20York%2C%20etc.&amp;rft.issn=0002-8614&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=JAGSAF&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph002890269&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;002890269&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/sear:openurl&gt;
282
+ &lt;sear:backlink&gt;http://aleph.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002890269&lt;/sear:backlink&gt;
283
+ &lt;sear:thumbnail/&gt;
284
+ &lt;sear:openurlfulltext&gt;&lt;![CDATA[https://getit.library.nyu.edu/resolve?umlaut.institution=NS&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-12T13%3A59%3A17IST&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_aleph002890269&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;rft.genre=journal&amp;rft.jtitle=Journal%20of%20the%20American%20Geriatrics%20Society.&amp;rft.btitle=&amp;rft.aulast=&amp;rft.aufirst=&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=Elsevier%20Science%20Pub.%20Co.%20for%20the%20American%20Geriatrics%20Society%2C%20etc.]&amp;rft.place=New%20York%2C%20etc.&amp;rft.issn=0002-8614&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=JAGSAF&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;002890269&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/sear:openurlfulltext&gt;
285
+ &lt;sear:linktoholdings&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002890269&lt;/sear:linktoholdings&gt;
286
+ &lt;sear:linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph002890269?institution=NYU&amp;amp;persistent&lt;/sear:linktoreview&gt;
287
+ &lt;/sear:LINKS&gt;
288
+ &lt;/sear:DOC&gt;
289
+ &lt;/sear:DOCSET&gt;
290
+ &lt;/sear:RESULT&gt;
291
+ &lt;sear:searchToken&gt;0&lt;/sear:searchToken&gt;
292
+ &lt;/sear:JAGROOT&gt;
293
+ &lt;/sear:SEGMENTS&gt;
294
+ </searchBriefReturn></ns1:searchBriefResponse></soapenv:Body></soapenv:Envelope>
295
+ http_version:
296
+ recorded_at: Fri, 12 Oct 2012 17:59:17 GMT
297
+ recorded_with: VCR 2.2.5
@@ -0,0 +1,671 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://bobcat.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;QueryTerm&gt;&lt;IndexField&gt;creator&lt;/IndexField&gt;&lt;PrecisionOperator&gt;contains&lt;/PrecisionOperator&gt;&lt;Value&gt;Graham Greene&lt;/Value&gt;&lt;/QueryTerm&gt;&lt;QueryTerm&gt;&lt;IndexField&gt;any&lt;/IndexField&gt;&lt;PrecisionOperator&gt;exact&lt;/PrecisionOperator&gt;&lt;Value&gt;Book&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
+ X-Powered-By:
34
+ - "Servlet 2.4; Tomcat-5.0.28/JBoss-4.0.1 (build: CVSTag=JBoss_4_0_1 date=200412230944)"
35
+ Content-Type:
36
+ - text/xml;charset=utf-8
37
+ Transfer-Encoding:
38
+ - chunked
39
+ Date:
40
+ - Fri, 12 Oct 2012 17:59:17 GMT
41
+ Server:
42
+ - Apache-Coyote/1.1
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;sear:SEGMENTS xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot; xmlns:sear=&quot;http://www.exlibrisgroup.com/xsd/jaguar/search&quot;&gt;
46
+ &lt;sear:JAGROOT&gt;
47
+ &lt;sear:RESULT&gt;
48
+ &lt;sear:QUERYTRANSFORMS/&gt;
49
+ &lt;sear:FACETLIST ACCURATE_COUNTERS=&quot;true&quot;&gt;
50
+ &lt;sear:FACET COUNT=&quot;5&quot; NAME=&quot;creator&quot;&gt;
51
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Allethaire Press&quot;/&gt;
52
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Grenfell Press&quot;/&gt;
53
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Firsts &amp;amp; Company&quot;/&gt;
54
+ &lt;sear:FACET_VALUES VALUE=&quot;3&quot; KEY=&quot;Greene, G&quot;/&gt;
55
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Cohen, C&quot;/&gt;
56
+ &lt;/sear:FACET&gt;
57
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;lcc&quot;&gt;
58
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;P - Language and literature.&quot;/&gt;
59
+ &lt;/sear:FACET&gt;
60
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;lang&quot;&gt;
61
+ &lt;sear:FACET_VALUES VALUE=&quot;3&quot; KEY=&quot;eng&quot;/&gt;
62
+ &lt;/sear:FACET&gt;
63
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;rtype&quot;&gt;
64
+ &lt;sear:FACET_VALUES VALUE=&quot;3&quot; KEY=&quot;books&quot;/&gt;
65
+ &lt;/sear:FACET&gt;
66
+ &lt;sear:FACET COUNT=&quot;7&quot; NAME=&quot;topic&quot;&gt;
67
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;Travelers&quot;/&gt;
68
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;Retirees&quot;/&gt;
69
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;Aunts&quot;/&gt;
70
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;British&quot;/&gt;
71
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Greene, Graham, 1904-1991. Travels with my aunt&quot;/&gt;
72
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;Older women&quot;/&gt;
73
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;Women travelers&quot;/&gt;
74
+ &lt;/sear:FACET&gt;
75
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;tlevel&quot;&gt;
76
+ &lt;sear:FACET_VALUES VALUE=&quot;3&quot; KEY=&quot;available&quot;/&gt;
77
+ &lt;/sear:FACET&gt;
78
+ &lt;sear:FACET COUNT=&quot;1&quot; NAME=&quot;pfilter&quot;&gt;
79
+ &lt;sear:FACET_VALUES VALUE=&quot;3&quot; KEY=&quot;books&quot;/&gt;
80
+ &lt;/sear:FACET&gt;
81
+ &lt;sear:FACET COUNT=&quot;5&quot; NAME=&quot;creationdate&quot;&gt;
82
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;1970&quot;/&gt;
83
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;1981&quot;/&gt;
84
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;2004&quot;/&gt;
85
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;1969&quot;/&gt;
86
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;1989&quot;/&gt;
87
+ &lt;/sear:FACET&gt;
88
+ &lt;sear:FACET COUNT=&quot;2&quot; NAME=&quot;domain&quot;&gt;
89
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;CU&quot;/&gt;
90
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;BOBST&quot;/&gt;
91
+ &lt;/sear:FACET&gt;
92
+ &lt;sear:FACET COUNT=&quot;3&quot; NAME=&quot;genre&quot;&gt;
93
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;Humorous fiction&quot;/&gt;
94
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;Fiction&quot;/&gt;
95
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;Humorous stories&quot;/&gt;
96
+ &lt;/sear:FACET&gt;
97
+ &lt;sear:FACET COUNT=&quot;2&quot; NAME=&quot;library&quot;&gt;
98
+ &lt;sear:FACET_VALUES VALUE=&quot;3&quot; KEY=&quot;BOBST&quot;/&gt;
99
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;BFALE&quot;/&gt;
100
+ &lt;/sear:FACET&gt;
101
+ &lt;sear:FACET COUNT=&quot;2&quot; NAME=&quot;local1&quot;&gt;
102
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;Main Collection&quot;/&gt;
103
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;Fales&quot;/&gt;
104
+ &lt;/sear:FACET&gt;
105
+ &lt;sear:FACET COUNT=&quot;2&quot; NAME=&quot;local4&quot;&gt;
106
+ &lt;sear:FACET_VALUES VALUE=&quot;1&quot; KEY=&quot;United States&quot;/&gt;
107
+ &lt;sear:FACET_VALUES VALUE=&quot;2&quot; KEY=&quot;New York&quot;/&gt;
108
+ &lt;/sear:FACET&gt;
109
+ &lt;/sear:FACETLIST&gt;
110
+ &lt;sear:DOCSET IS_LOCAL=&quot;true&quot; TOTAL_TIME=&quot;38&quot; LASTHIT=&quot;3&quot; FIRSTHIT=&quot;1&quot; TOTALHITS=&quot;3&quot; HIT_TIME=&quot;10&quot;&gt;
111
+ &lt;sear:DOC SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; NO=&quot;1&quot; RANK=&quot;9.45108E-4&quot; ID=&quot;3584838&quot;&gt;
112
+ &lt;PrimoNMBib&gt;
113
+ &lt;record&gt;
114
+ &lt;control&gt;
115
+ &lt;sourcerecordid&gt;002212958&lt;/sourcerecordid&gt;
116
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
117
+ &lt;recordid&gt;nyu_aleph002212958&lt;/recordid&gt;
118
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
119
+ &lt;ilsapiid&gt;NYU01002212958&lt;/ilsapiid&gt;
120
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
121
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
122
+ &lt;/control&gt;
123
+ &lt;display&gt;
124
+ &lt;type&gt;book&lt;/type&gt;
125
+ &lt;title&gt;Travels with my aunt : a novel&lt;/title&gt;
126
+ &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
127
+ &lt;publisher&gt;New York : Viking Press&lt;/publisher&gt;
128
+ &lt;creationdate&gt;1970, c1969&lt;/creationdate&gt;
129
+ &lt;format&gt;244 p. ; 23 cm.&lt;/format&gt;
130
+ &lt;subject&gt;British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous stories&lt;/subject&gt;
131
+ &lt;language&gt;eng&lt;/language&gt;
132
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
133
+ &lt;availlibrary&gt;$$INYU$$LBFALE$$1Fales$$2(Brit Non-circulating )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBFALE$$ZFALEF&lt;/availlibrary&gt;
134
+ &lt;availlibrary&gt;$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 1970 )$$Savailable$$31$$40$$5N$$62$$XNYU50$$YBOBST$$ZMAIN&lt;/availlibrary&gt;
135
+ &lt;availlibrary&gt;$$ICU$$LCU$$1Main Collection$$2(PR6013.R44 T7 1970 )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YCU$$ZMAIN&lt;/availlibrary&gt;
136
+ &lt;lds02&gt;nyu_aleph002212958&lt;/lds02&gt;
137
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
138
+ &lt;lds01&gt;CU&lt;/lds01&gt;
139
+ &lt;availinstitution&gt;$$ICU$$Savailable&lt;/availinstitution&gt;
140
+ &lt;availinstitution&gt;$$INYU$$Savailable&lt;/availinstitution&gt;
141
+ &lt;availpnx&gt;available&lt;/availpnx&gt;
142
+ &lt;version&gt;2&lt;/version&gt;
143
+ &lt;/display&gt;
144
+ &lt;links&gt;
145
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
146
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
147
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
148
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
149
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
150
+ &lt;/links&gt;
151
+ &lt;search&gt;
152
+ &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
153
+ &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
154
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
155
+ &lt;creatorcontrib&gt;by Graham Greene.&lt;/creatorcontrib&gt;
156
+ &lt;title&gt;Travels with my aunt : a novel /&lt;/title&gt;
157
+ &lt;subject&gt;British Foreign countries Fiction&lt;/subject&gt;
158
+ &lt;subject&gt;Women travelers Fiction&lt;/subject&gt;
159
+ &lt;subject&gt;Older women Fiction&lt;/subject&gt;
160
+ &lt;subject&gt;Travelers Fiction&lt;/subject&gt;
161
+ &lt;subject&gt;Retirees Fiction&lt;/subject&gt;
162
+ &lt;subject&gt;Aunts Fiction&lt;/subject&gt;
163
+ &lt;subject&gt;Humorous stories&lt;/subject&gt;
164
+ &lt;general&gt;Viking Press,&lt;/general&gt;
165
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
166
+ &lt;recordid&gt;nyu_aleph002212958&lt;/recordid&gt;
167
+ &lt;rsrctype&gt;book&lt;/rsrctype&gt;
168
+ &lt;creationdate&gt;1970&lt;/creationdate&gt;
169
+ &lt;creationdate&gt;1969&lt;/creationdate&gt;
170
+ &lt;searchscope&gt;BFALE&lt;/searchscope&gt;
171
+ &lt;searchscope&gt;BFALE Fales&lt;/searchscope&gt;
172
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
173
+ &lt;searchscope&gt;BOBST Main Collection&lt;/searchscope&gt;
174
+ &lt;searchscope&gt;CU&lt;/searchscope&gt;
175
+ &lt;searchscope&gt;CU Main Collection&lt;/searchscope&gt;
176
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
177
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
178
+ &lt;scope&gt;BFALE&lt;/scope&gt;
179
+ &lt;scope&gt;BFALE Fales&lt;/scope&gt;
180
+ &lt;scope&gt;BOBST&lt;/scope&gt;
181
+ &lt;scope&gt;BOBST Main Collection&lt;/scope&gt;
182
+ &lt;scope&gt;CU&lt;/scope&gt;
183
+ &lt;scope&gt;CU Main Collection&lt;/scope&gt;
184
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
185
+ &lt;scope&gt;NYU&lt;/scope&gt;
186
+ &lt;lsr02&gt;Viking Press,&lt;/lsr02&gt;
187
+ &lt;/search&gt;
188
+ &lt;sort&gt;
189
+ &lt;title&gt;Travels with my aunt : a novel /&lt;/title&gt;
190
+ &lt;creationdate&gt;1970&lt;/creationdate&gt;
191
+ &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
192
+ &lt;lso01&gt;1970&lt;/lso01&gt;
193
+ &lt;/sort&gt;
194
+ &lt;facets&gt;
195
+ &lt;language&gt;eng&lt;/language&gt;
196
+ &lt;creationdate&gt;1970&lt;/creationdate&gt;
197
+ &lt;topic&gt;British&#x2013;Foreign countries&#x2013;Fiction&lt;/topic&gt;
198
+ &lt;topic&gt;Women travelers&#x2013;Fiction&lt;/topic&gt;
199
+ &lt;topic&gt;Older women&#x2013;Fiction&lt;/topic&gt;
200
+ &lt;topic&gt;Travelers&#x2013;Fiction&lt;/topic&gt;
201
+ &lt;topic&gt;Retirees&#x2013;Fiction&lt;/topic&gt;
202
+ &lt;topic&gt;Aunts&#x2013;Fiction&lt;/topic&gt;
203
+ &lt;collection&gt;BOBST&lt;/collection&gt;
204
+ &lt;collection&gt;CU&lt;/collection&gt;
205
+ &lt;toplevel&gt;available&lt;/toplevel&gt;
206
+ &lt;prefilter&gt;books&lt;/prefilter&gt;
207
+ &lt;rsrctype&gt;books&lt;/rsrctype&gt;
208
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
209
+ &lt;genre&gt;Fiction&lt;/genre&gt;
210
+ &lt;genre&gt;Humorous stories&lt;/genre&gt;
211
+ &lt;library&gt;BFALE&lt;/library&gt;
212
+ &lt;library&gt;BOBST&lt;/library&gt;
213
+ &lt;lfc01&gt;Fales&lt;/lfc01&gt;
214
+ &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
215
+ &lt;frbrgroupid&gt;60602273&lt;/frbrgroupid&gt;
216
+ &lt;frbrtype&gt;5&lt;/frbrtype&gt;
217
+ &lt;/facets&gt;
218
+ &lt;dedup&gt;
219
+ &lt;t&gt;99&lt;/t&gt;
220
+ &lt;c1&gt;72094848&lt;/c1&gt;
221
+ &lt;c3&gt;travelswithmyauntanovel&lt;/c3&gt;
222
+ &lt;c4&gt;1970&lt;/c4&gt;
223
+ &lt;f1&gt;72094848&lt;/f1&gt;
224
+ &lt;f5&gt;travelswithmyauntanovel&lt;/f5&gt;
225
+ &lt;f6&gt;1970&lt;/f6&gt;
226
+ &lt;f7&gt;travels with my aunt a novel&lt;/f7&gt;
227
+ &lt;f8&gt;nyu&lt;/f8&gt;
228
+ &lt;f9&gt;244 p. ;&lt;/f9&gt;
229
+ &lt;f10&gt;viking press&lt;/f10&gt;
230
+ &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
231
+ &lt;/dedup&gt;
232
+ &lt;frbr&gt;
233
+ &lt;t&gt;1&lt;/t&gt;
234
+ &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
235
+ &lt;k3&gt;$$Kbooktravels with my aunt a novel$$AT&lt;/k3&gt;
236
+ &lt;/frbr&gt;
237
+ &lt;delivery&gt;
238
+ &lt;institution&gt;NYU&lt;/institution&gt;
239
+ &lt;institution&gt;CU&lt;/institution&gt;
240
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
241
+ &lt;/delivery&gt;
242
+ &lt;enrichment&gt;
243
+ &lt;classificationlcc&gt;PZ3.G8319&lt;/classificationlcc&gt;
244
+ &lt;classificationlcc&gt;PR6013.R44&lt;/classificationlcc&gt;
245
+ &lt;/enrichment&gt;
246
+ &lt;ranking&gt;
247
+ &lt;booster1&gt;1&lt;/booster1&gt;
248
+ &lt;booster2&gt;1&lt;/booster2&gt;
249
+ &lt;/ranking&gt;
250
+ &lt;addata&gt;
251
+ &lt;aulast&gt;Greene&lt;/aulast&gt;
252
+ &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
253
+ &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
254
+ &lt;btitle&gt;Travels with my aunt : a novel&lt;/btitle&gt;
255
+ &lt;date&gt;1970&lt;/date&gt;
256
+ &lt;risdate&gt;1970, c1969.&lt;/risdate&gt;
257
+ &lt;format&gt;book&lt;/format&gt;
258
+ &lt;genre&gt;book&lt;/genre&gt;
259
+ &lt;ristype&gt;BOOK&lt;/ristype&gt;
260
+ &lt;cop&gt;New York&lt;/cop&gt;
261
+ &lt;pub&gt;Viking Press&lt;/pub&gt;
262
+ &lt;lccn&gt;72094848&lt;/lccn&gt;
263
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
264
+ &lt;/addata&gt;
265
+ &lt;/record&gt;
266
+ &lt;/PrimoNMBib&gt;
267
+ &lt;sear:GETIT GetIt2=&quot;https://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=2012-10-12T13%3A59%3A17IST&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_aleph002212958&amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;amp;rft.genre=book&amp;amp;rft.jtitle=&amp;amp;rft.btitle=Travels%20with%20my%20aunt%20:%20a%20novel&amp;amp;rft.aulast=Greene&amp;amp;rft.aufirst=Graham%2C&amp;amp;rft.auinit=&amp;amp;rft.auinit1=&amp;amp;rft.auinitm=&amp;amp;rft.ausuffix=&amp;amp;rft.au=Greene%2C%20Graham%2C%201904-1991&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=Viking%20Press&amp;amp;rft.place=New%20York&amp;amp;rft.issn=&amp;amp;rft.eissn=&amp;amp;rft.isbn=&amp;amp;rft.sici=&amp;amp;rft.coden=&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph002212958&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;002212958&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot; GetIt1=&quot;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&quot; deliveryCategory=&quot;Physical Item&quot;/&gt;
268
+ &lt;sear:LIBRARIES&gt;
269
+ &lt;sear:LIBRARY&gt;
270
+ &lt;sear:institution&gt;NYU&lt;/sear:institution&gt;
271
+ &lt;sear:library&gt;BFALE&lt;/sear:library&gt;
272
+ &lt;sear:status&gt;available&lt;/sear:status&gt;
273
+ &lt;sear:collection&gt;Fales&lt;/sear:collection&gt;
274
+ &lt;sear:callNumber&gt;(Brit Non-circulating )&lt;/sear:callNumber&gt;
275
+ &lt;sear:url&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&lt;/sear:url&gt;
276
+ &lt;/sear:LIBRARY&gt;
277
+ &lt;sear:LIBRARY&gt;
278
+ &lt;sear:institution&gt;NYU&lt;/sear:institution&gt;
279
+ &lt;sear:library&gt;BOBST&lt;/sear:library&gt;
280
+ &lt;sear:status&gt;available&lt;/sear:status&gt;
281
+ &lt;sear:collection&gt;Main Collection&lt;/sear:collection&gt;
282
+ &lt;sear:callNumber&gt;(PR6013.R44 T7 1970 )&lt;/sear:callNumber&gt;
283
+ &lt;sear:url&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&lt;/sear:url&gt;
284
+ &lt;/sear:LIBRARY&gt;
285
+ &lt;sear:LIBRARY&gt;
286
+ &lt;sear:institution&gt;CU&lt;/sear:institution&gt;
287
+ &lt;sear:library&gt;CU&lt;/sear:library&gt;
288
+ &lt;sear:status&gt;available&lt;/sear:status&gt;
289
+ &lt;sear:collection&gt;Main Collection&lt;/sear:collection&gt;
290
+ &lt;sear:callNumber&gt;(PR6013.R44 T7 1970 )&lt;/sear:callNumber&gt;
291
+ &lt;sear:url&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&lt;/sear:url&gt;
292
+ &lt;/sear:LIBRARY&gt;
293
+ &lt;/sear:LIBRARIES&gt;
294
+ &lt;sear:LINKS&gt;
295
+ &lt;sear:openurl&gt;&lt;![CDATA[https://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=2012-10-12T13%3A59%3A17IST&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;/sear:openurl&gt;
296
+ &lt;sear:backlink&gt;http://aleph.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&lt;/sear:backlink&gt;
297
+ &lt;sear:thumbnail/&gt;
298
+ &lt;sear:openurlfulltext&gt;&lt;![CDATA[https://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=2012-10-12T13%3A59%3A17IST&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;/sear:openurlfulltext&gt;
299
+ &lt;sear:linktoholdings&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&lt;/sear:linktoholdings&gt;
300
+ &lt;sear:linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph002212958?institution=NYU&amp;amp;persistent&lt;/sear:linktoreview&gt;
301
+ &lt;/sear:LINKS&gt;
302
+ &lt;/sear:DOC&gt;
303
+ &lt;sear:DOC SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; NO=&quot;2&quot; RANK=&quot;9.45108E-4&quot; ID=&quot;3673795&quot;&gt;
304
+ &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
305
+ &lt;record&gt;
306
+ &lt;control&gt;
307
+ &lt;sourcerecordid&gt;003443700&lt;/sourcerecordid&gt;
308
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
309
+ &lt;recordid&gt;nyu_aleph003443700&lt;/recordid&gt;
310
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
311
+ &lt;ilsapiid&gt;NYU01003443700&lt;/ilsapiid&gt;
312
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
313
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
314
+ &lt;/control&gt;
315
+ &lt;display&gt;
316
+ &lt;type&gt;book&lt;/type&gt;
317
+ &lt;title&gt;Travels with my aunt&lt;/title&gt;
318
+ &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
319
+ &lt;publisher&gt;New York : The Viking Press&lt;/publisher&gt;
320
+ &lt;creationdate&gt;1981?], c1969&lt;/creationdate&gt;
321
+ &lt;format&gt;318 p. ; 20 cm.&lt;/format&gt;
322
+ &lt;identifier&gt;$$Cisbn$$V0670725242; $$Cisbn$$V9780670725243&lt;/identifier&gt;
323
+ &lt;subject&gt;British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous fiction&lt;/subject&gt;
324
+ &lt;language&gt;eng&lt;/language&gt;
325
+ &lt;relation&gt;$$Cseries $$VGreene, Graham, 1904-1991. Works. 1981.&lt;/relation&gt;
326
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
327
+ &lt;availlibrary&gt;$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 1981 )$$Savailable$$31$$40$$5N$$62$$XNYU50$$YBOBST$$ZMAIN&lt;/availlibrary&gt;
328
+ &lt;lds02&gt;nyu_aleph003443700&lt;/lds02&gt;
329
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
330
+ &lt;availinstitution&gt;$$INYU$$Savailable&lt;/availinstitution&gt;
331
+ &lt;availpnx&gt;available&lt;/availpnx&gt;
332
+ &lt;version&gt;2&lt;/version&gt;
333
+ &lt;/display&gt;
334
+ &lt;links&gt;
335
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
336
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
337
+ &lt;thumbnail&gt;$$Tamazon_thumb&lt;/thumbnail&gt;
338
+ &lt;linktotoc&gt;$$Tamazon_toc$$DCheck for Amazon Search Inside&lt;/linktotoc&gt;
339
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
340
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
341
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
342
+ &lt;linktouc&gt;$$Tamazon_uc$$DCheck Amazon&lt;/linktouc&gt;
343
+ &lt;linktouc&gt;$$Tworldcat_isbn$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
344
+ &lt;linktoexcerpt&gt;$$Tsyndetics_excerpt$$DExcerpt from item&lt;/linktoexcerpt&gt;
345
+ &lt;/links&gt;
346
+ &lt;search&gt;
347
+ &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
348
+ &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
349
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
350
+ &lt;creatorcontrib&gt;by Graham Greene.&lt;/creatorcontrib&gt;
351
+ &lt;title&gt;Travels with my aunt /&lt;/title&gt;
352
+ &lt;subject&gt;British Foreign countries Fiction&lt;/subject&gt;
353
+ &lt;subject&gt;Women travelers Fiction&lt;/subject&gt;
354
+ &lt;subject&gt;Older women Fiction&lt;/subject&gt;
355
+ &lt;subject&gt;Travelers Fiction&lt;/subject&gt;
356
+ &lt;subject&gt;Retirees Fiction&lt;/subject&gt;
357
+ &lt;subject&gt;Aunts Fiction&lt;/subject&gt;
358
+ &lt;subject&gt;Humorous fiction&lt;/subject&gt;
359
+ &lt;general&gt;The Viking Press,&lt;/general&gt;
360
+ &lt;general&gt;&quot;Published in 1970 ...&quot;--T.p. verso.&lt;/general&gt;
361
+ &lt;general&gt;Series statement from dust jacket; part of the collected works reissued in 1981.&lt;/general&gt;
362
+ &lt;general&gt;United States New York New York.&lt;/general&gt;
363
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
364
+ &lt;recordid&gt;nyu_aleph003443700&lt;/recordid&gt;
365
+ &lt;isbn&gt;0670725242&lt;/isbn&gt;
366
+ &lt;isbn&gt;9780670725243&lt;/isbn&gt;
367
+ &lt;rsrctype&gt;book&lt;/rsrctype&gt;
368
+ &lt;creationdate&gt;1981&lt;/creationdate&gt;
369
+ &lt;creationdate&gt;1969&lt;/creationdate&gt;
370
+ &lt;addtitle&gt;Works. 1981.&lt;/addtitle&gt;
371
+ &lt;addtitle&gt;The collected edition&lt;/addtitle&gt;
372
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
373
+ &lt;searchscope&gt;BOBST Main Collection&lt;/searchscope&gt;
374
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
375
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
376
+ &lt;scope&gt;BOBST&lt;/scope&gt;
377
+ &lt;scope&gt;BOBST Main Collection&lt;/scope&gt;
378
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
379
+ &lt;scope&gt;NYU&lt;/scope&gt;
380
+ &lt;lsr02&gt;The Viking Press,&lt;/lsr02&gt;
381
+ &lt;/search&gt;
382
+ &lt;sort&gt;
383
+ &lt;title&gt;Travels with my aunt /&lt;/title&gt;
384
+ &lt;creationdate&gt;1981&lt;/creationdate&gt;
385
+ &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
386
+ &lt;lso01&gt;1981&lt;/lso01&gt;
387
+ &lt;/sort&gt;
388
+ &lt;facets&gt;
389
+ &lt;language&gt;eng&lt;/language&gt;
390
+ &lt;creationdate&gt;1981&lt;/creationdate&gt;
391
+ &lt;topic&gt;British&#x2013;Foreign countries&#x2013;Fiction&lt;/topic&gt;
392
+ &lt;topic&gt;Women travelers&#x2013;Fiction&lt;/topic&gt;
393
+ &lt;topic&gt;Older women&#x2013;Fiction&lt;/topic&gt;
394
+ &lt;topic&gt;Travelers&#x2013;Fiction&lt;/topic&gt;
395
+ &lt;topic&gt;Retirees&#x2013;Fiction&lt;/topic&gt;
396
+ &lt;topic&gt;Aunts&#x2013;Fiction&lt;/topic&gt;
397
+ &lt;collection&gt;BOBST&lt;/collection&gt;
398
+ &lt;toplevel&gt;available&lt;/toplevel&gt;
399
+ &lt;prefilter&gt;books&lt;/prefilter&gt;
400
+ &lt;rsrctype&gt;books&lt;/rsrctype&gt;
401
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
402
+ &lt;genre&gt;Fiction&lt;/genre&gt;
403
+ &lt;genre&gt;Humorous fiction&lt;/genre&gt;
404
+ &lt;library&gt;BOBST&lt;/library&gt;
405
+ &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
406
+ &lt;lfc04&gt;United States&lt;/lfc04&gt;
407
+ &lt;lfc04&gt;New York&lt;/lfc04&gt;
408
+ &lt;lfc04&gt;New York.&lt;/lfc04&gt;
409
+ &lt;classificationlcc&gt;P - Language and literature.&#x2013;Fiction and juvenile belles lettres&#x2013;Fiction in English&lt;/classificationlcc&gt;
410
+ &lt;classificationlcc&gt;P - Language and literature.&#x2013;English literature&lt;/classificationlcc&gt;
411
+ &lt;frbrgroupid&gt;44552541&lt;/frbrgroupid&gt;
412
+ &lt;frbrtype&gt;5&lt;/frbrtype&gt;
413
+ &lt;/facets&gt;
414
+ &lt;dedup&gt;
415
+ &lt;t&gt;1&lt;/t&gt;
416
+ &lt;c1&gt;72094848&lt;/c1&gt;
417
+ &lt;c2&gt;0670725242;9780670725243&lt;/c2&gt;
418
+ &lt;c3&gt;travelswithmyaunt&lt;/c3&gt;
419
+ &lt;c4&gt;1981&lt;/c4&gt;
420
+ &lt;f1&gt;72094848&lt;/f1&gt;
421
+ &lt;f3&gt;0670725242;9780670725243&lt;/f3&gt;
422
+ &lt;f5&gt;travelswithmyaunt&lt;/f5&gt;
423
+ &lt;f6&gt;1981&lt;/f6&gt;
424
+ &lt;f7&gt;travels with my aunt&lt;/f7&gt;
425
+ &lt;f8&gt;nyu&lt;/f8&gt;
426
+ &lt;f9&gt;318 p. ;&lt;/f9&gt;
427
+ &lt;f10&gt;the viking press&lt;/f10&gt;
428
+ &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
429
+ &lt;/dedup&gt;
430
+ &lt;frbr&gt;
431
+ &lt;t&gt;1&lt;/t&gt;
432
+ &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
433
+ &lt;k3&gt;$$Kbooktravels with my aunt$$AT&lt;/k3&gt;
434
+ &lt;/frbr&gt;
435
+ &lt;delivery&gt;
436
+ &lt;institution&gt;NYU&lt;/institution&gt;
437
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
438
+ &lt;/delivery&gt;
439
+ &lt;enrichment&gt;
440
+ &lt;classificationlcc&gt;PZ3.G8319&lt;/classificationlcc&gt;
441
+ &lt;classificationlcc&gt;PR6013.R44&lt;/classificationlcc&gt;
442
+ &lt;/enrichment&gt;
443
+ &lt;ranking&gt;
444
+ &lt;booster1&gt;1&lt;/booster1&gt;
445
+ &lt;booster2&gt;1&lt;/booster2&gt;
446
+ &lt;/ranking&gt;
447
+ &lt;addata&gt;
448
+ &lt;aulast&gt;Greene&lt;/aulast&gt;
449
+ &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
450
+ &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
451
+ &lt;seriesau&gt;Greene, Graham, 1904-1991&lt;/seriesau&gt;
452
+ &lt;btitle&gt;Travels with my aunt&lt;/btitle&gt;
453
+ &lt;seriestitle&gt;Greene, Graham, 1904-1991. Works. 1981&lt;/seriestitle&gt;
454
+ &lt;date&gt;1981&lt;/date&gt;
455
+ &lt;risdate&gt;[1981?], c1969.&lt;/risdate&gt;
456
+ &lt;isbn&gt;0670725242&lt;/isbn&gt;
457
+ &lt;isbn&gt;9780670725243&lt;/isbn&gt;
458
+ &lt;format&gt;book&lt;/format&gt;
459
+ &lt;genre&gt;book&lt;/genre&gt;
460
+ &lt;ristype&gt;BOOK&lt;/ristype&gt;
461
+ &lt;cop&gt;New York&lt;/cop&gt;
462
+ &lt;pub&gt;The Viking Press&lt;/pub&gt;
463
+ &lt;oclcid&gt;7871629&lt;/oclcid&gt;
464
+ &lt;lccn&gt;72094848&lt;/lccn&gt;
465
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
466
+ &lt;/addata&gt;
467
+ &lt;/record&gt;
468
+ &lt;/PrimoNMBib&gt;
469
+ &lt;sear:GETIT GetIt2=&quot;https://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=2012-10-12T13%3A59%3A17IST&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_aleph002212958&amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;amp;rft.genre=book&amp;amp;rft.jtitle=&amp;amp;rft.btitle=Travels%20with%20my%20aunt%20:%20a%20novel&amp;amp;rft.aulast=Greene&amp;amp;rft.aufirst=Graham%2C&amp;amp;rft.auinit=&amp;amp;rft.auinit1=&amp;amp;rft.auinitm=&amp;amp;rft.ausuffix=&amp;amp;rft.au=Greene%2C%20Graham%2C%201904-1991&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=Viking%20Press&amp;amp;rft.place=New%20York&amp;amp;rft.issn=&amp;amp;rft.eissn=&amp;amp;rft.isbn=&amp;amp;rft.sici=&amp;amp;rft.coden=&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph002212958&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;002212958&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot; GetIt1=&quot;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&quot; deliveryCategory=&quot;Physical Item&quot;/&gt;
470
+ &lt;sear:LIBRARIES&gt;
471
+ &lt;sear:LIBRARY&gt;
472
+ &lt;sear:institution&gt;NYU&lt;/sear:institution&gt;
473
+ &lt;sear:library&gt;BOBST&lt;/sear:library&gt;
474
+ &lt;sear:status&gt;available&lt;/sear:status&gt;
475
+ &lt;sear:collection&gt;Main Collection&lt;/sear:collection&gt;
476
+ &lt;sear:callNumber&gt;(PR6013.R44 T7 1981 )&lt;/sear:callNumber&gt;
477
+ &lt;sear:url&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003443700&lt;/sear:url&gt;
478
+ &lt;/sear:LIBRARY&gt;
479
+ &lt;/sear:LIBRARIES&gt;
480
+ &lt;sear:LINKS&gt;
481
+ &lt;sear:openurl&gt;&lt;![CDATA[https://getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T13%3A59%3A17IST&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;/sear:openurl&gt;
482
+ &lt;sear:backlink&gt;http://aleph.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003443700&lt;/sear:backlink&gt;
483
+ &lt;sear:thumbnail&gt;http://images.amazon.com/images/P/0670725242.01._SSTHUM_.jpg&lt;/sear:thumbnail&gt;
484
+ &lt;sear:linktotoc&gt;http://www.amazon.com/gp/reader/0670725242&lt;/sear:linktotoc&gt;
485
+ &lt;sear:openurlfulltext&gt;&lt;![CDATA[https://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=2012-10-12T13%3A59%3A17IST&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;/sear:openurlfulltext&gt;
486
+ &lt;sear:linktoholdings&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003443700&lt;/sear:linktoholdings&gt;
487
+ &lt;sear:linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph003443700?institution=NYU&amp;amp;persistent&lt;/sear:linktoreview&gt;
488
+ &lt;sear:linktouc&gt;http://www.amazon.com/gp/product/0670725242&lt;/sear:linktouc&gt;
489
+ &lt;sear:linktouc&gt;http://www.worldcat.org/search?q=isbn%3A0670725242&lt;/sear:linktouc&gt;
490
+ &lt;/sear:LINKS&gt;
491
+ &lt;/sear:DOC&gt;
492
+ &lt;sear:DOC SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; NO=&quot;3&quot; RANK=&quot;9.2987006E-4&quot; ID=&quot;2592871&quot;&gt;
493
+ &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
494
+ &lt;record&gt;
495
+ &lt;control&gt;
496
+ &lt;sourcerecordid&gt;003445127&lt;/sourcerecordid&gt;
497
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
498
+ &lt;recordid&gt;nyu_aleph003445127&lt;/recordid&gt;
499
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
500
+ &lt;ilsapiid&gt;NYU01003445127&lt;/ilsapiid&gt;
501
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
502
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
503
+ &lt;/control&gt;
504
+ &lt;display&gt;
505
+ &lt;type&gt;book&lt;/type&gt;
506
+ &lt;title&gt;Reflections on Travels with my aunt&lt;/title&gt;
507
+ &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
508
+ &lt;contributor&gt;Claudia Cohen 1953- binder.; Firsts &amp;amp; Company, publisher.; Allethaire Press printer.; Grenfell Press, printer.&lt;/contributor&gt;
509
+ &lt;publisher&gt;New York : Firsts &amp;amp; Company&lt;/publisher&gt;
510
+ &lt;creationdate&gt;1989&lt;/creationdate&gt;
511
+ &lt;format&gt;[20] p. : port., facsims. ; 26 cm.&lt;/format&gt;
512
+ &lt;subject&gt;Greene, Graham, 1904-1991. Travels with my aunt&lt;/subject&gt;
513
+ &lt;language&gt;eng&lt;/language&gt;
514
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
515
+ &lt;availlibrary&gt;$$INYU$$LBFALE$$1Fales$$2(Brit Non-circulating )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YBFALE$$ZFALEF&lt;/availlibrary&gt;
516
+ &lt;lds02&gt;nyu_aleph003445127&lt;/lds02&gt;
517
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
518
+ &lt;availinstitution&gt;$$INYU$$Savailable&lt;/availinstitution&gt;
519
+ &lt;availpnx&gt;available&lt;/availpnx&gt;
520
+ &lt;/display&gt;
521
+ &lt;links&gt;
522
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
523
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
524
+ &lt;openurlfulltext&gt;$$Topenurlfull_journal&lt;/openurlfulltext&gt;
525
+ &lt;linktoholdings&gt;$$Taleph_holdings&lt;/linktoholdings&gt;
526
+ &lt;linktoreview&gt;$$TpersistentUrl$$DCopy item link&lt;/linktoreview&gt;
527
+ &lt;linktouc&gt;$$Tworldcat_oclc$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
528
+ &lt;/links&gt;
529
+ &lt;search&gt;
530
+ &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
531
+ &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
532
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
533
+ &lt;creatorcontrib&gt;Graham Greene.&lt;/creatorcontrib&gt;
534
+ &lt;creatorcontrib&gt;Claudia, Cohen 1953- binder.&lt;/creatorcontrib&gt;
535
+ &lt;creatorcontrib&gt;Cohen, C&lt;/creatorcontrib&gt;
536
+ &lt;creatorcontrib&gt;Firsts &amp;amp; Company, publisher.&lt;/creatorcontrib&gt;
537
+ &lt;creatorcontrib&gt;Allethaire Press printer.&lt;/creatorcontrib&gt;
538
+ &lt;creatorcontrib&gt;Grenfell Press, printer.&lt;/creatorcontrib&gt;
539
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
540
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
541
+ &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
542
+ &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
543
+ &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
544
+ &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
545
+ &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
546
+ &lt;creatorcontrib&gt;Cohen, Claudia, of Easthampton, Mass&lt;/creatorcontrib&gt;
547
+ &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
548
+ &lt;title&gt;Reflections on Travels with my aunt /&lt;/title&gt;
549
+ &lt;subject&gt;Greene, Graham, 1904-1991. Travels with my aunt&lt;/subject&gt;
550
+ &lt;general&gt;Firsts &amp;amp; Company,&lt;/general&gt;
551
+ &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;
552
+ &lt;general&gt;Facsimile of a portion of Greene's manuscript is printed on p. [13-16].&lt;/general&gt;
553
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
554
+ &lt;recordid&gt;nyu_aleph003445127&lt;/recordid&gt;
555
+ &lt;rsrctype&gt;book&lt;/rsrctype&gt;
556
+ &lt;creationdate&gt;1989&lt;/creationdate&gt;
557
+ &lt;addtitle&gt;Travels with my aunt.&lt;/addtitle&gt;
558
+ &lt;searchscope&gt;BFALE&lt;/searchscope&gt;
559
+ &lt;searchscope&gt;BFALE Fales&lt;/searchscope&gt;
560
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
561
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
562
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
563
+ &lt;scope&gt;BFALE&lt;/scope&gt;
564
+ &lt;scope&gt;BFALE Fales&lt;/scope&gt;
565
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
566
+ &lt;scope&gt;NYU&lt;/scope&gt;
567
+ &lt;scope&gt;BOBST&lt;/scope&gt;
568
+ &lt;lsr01&gt;Brit&lt;/lsr01&gt;
569
+ &lt;lsr02&gt;Firsts &amp;amp; Company,&lt;/lsr02&gt;
570
+ &lt;/search&gt;
571
+ &lt;sort&gt;
572
+ &lt;title&gt;Reflections on Travels with my aunt /&lt;/title&gt;
573
+ &lt;creationdate&gt;1989&lt;/creationdate&gt;
574
+ &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
575
+ &lt;lso01&gt;1989&lt;/lso01&gt;
576
+ &lt;/sort&gt;
577
+ &lt;facets&gt;
578
+ &lt;language&gt;eng&lt;/language&gt;
579
+ &lt;creationdate&gt;1989&lt;/creationdate&gt;
580
+ &lt;topic&gt;Greene, Graham, 1904-1991. Travels with my aunt&lt;/topic&gt;
581
+ &lt;toplevel&gt;available&lt;/toplevel&gt;
582
+ &lt;prefilter&gt;books&lt;/prefilter&gt;
583
+ &lt;rsrctype&gt;books&lt;/rsrctype&gt;
584
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
585
+ &lt;creatorcontrib&gt;Cohen, C&lt;/creatorcontrib&gt;
586
+ &lt;creatorcontrib&gt;Firsts &amp;amp; Company&lt;/creatorcontrib&gt;
587
+ &lt;creatorcontrib&gt;Allethaire Press&lt;/creatorcontrib&gt;
588
+ &lt;creatorcontrib&gt;Grenfell Press&lt;/creatorcontrib&gt;
589
+ &lt;library&gt;BFALE&lt;/library&gt;
590
+ &lt;library&gt;BOBST&lt;/library&gt;
591
+ &lt;lfc01&gt;Fales&lt;/lfc01&gt;
592
+ &lt;frbrgroupid&gt;65318262&lt;/frbrgroupid&gt;
593
+ &lt;frbrtype&gt;6&lt;/frbrtype&gt;
594
+ &lt;/facets&gt;
595
+ &lt;dedup&gt;
596
+ &lt;t&gt;99&lt;/t&gt;
597
+ &lt;c3&gt;reflectionsontravelswithmyaunt&lt;/c3&gt;
598
+ &lt;c4&gt;1989&lt;/c4&gt;
599
+ &lt;f5&gt;reflectionsontravelswithmyaunt&lt;/f5&gt;
600
+ &lt;f6&gt;1989&lt;/f6&gt;
601
+ &lt;f7&gt;reflections on travels with my aunt&lt;/f7&gt;
602
+ &lt;f8&gt;nyu&lt;/f8&gt;
603
+ &lt;f9&gt;[20] p. :&lt;/f9&gt;
604
+ &lt;f10&gt;firsts company&lt;/f10&gt;
605
+ &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
606
+ &lt;/dedup&gt;
607
+ &lt;frbr&gt;
608
+ &lt;t&gt;1&lt;/t&gt;
609
+ &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
610
+ &lt;k3&gt;$$Kbookreflections on travels with my aunt$$AT&lt;/k3&gt;
611
+ &lt;/frbr&gt;
612
+ &lt;delivery&gt;
613
+ &lt;institution&gt;NYU&lt;/institution&gt;
614
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
615
+ &lt;/delivery&gt;
616
+ &lt;ranking&gt;
617
+ &lt;booster1&gt;1&lt;/booster1&gt;
618
+ &lt;booster2&gt;1&lt;/booster2&gt;
619
+ &lt;/ranking&gt;
620
+ &lt;addata&gt;
621
+ &lt;aulast&gt;Greene&lt;/aulast&gt;
622
+ &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
623
+ &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
624
+ &lt;addau&gt;Cohen, Claudia, 1953- binder&lt;/addau&gt;
625
+ &lt;addau&gt;Firsts &amp;amp; Company, publisher&lt;/addau&gt;
626
+ &lt;addau&gt;Allethaire Press printer&lt;/addau&gt;
627
+ &lt;addau&gt;Grenfell Press, printer&lt;/addau&gt;
628
+ &lt;btitle&gt;Reflections on Travels with my aunt&lt;/btitle&gt;
629
+ &lt;date&gt;1989&lt;/date&gt;
630
+ &lt;risdate&gt;1989.&lt;/risdate&gt;
631
+ &lt;format&gt;book&lt;/format&gt;
632
+ &lt;genre&gt;book&lt;/genre&gt;
633
+ &lt;ristype&gt;BOOK&lt;/ristype&gt;
634
+ &lt;cop&gt;New York&lt;/cop&gt;
635
+ &lt;pub&gt;Firsts &amp;amp; Company&lt;/pub&gt;
636
+ &lt;oclcid&gt;20905242&lt;/oclcid&gt;
637
+ &lt;lad01&gt;BFALE&lt;/lad01&gt;
638
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
639
+ &lt;/addata&gt;
640
+ &lt;/record&gt;
641
+ &lt;/PrimoNMBib&gt;
642
+ &lt;sear:GETIT GetIt2=&quot;https://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=2012-10-12T13%3A59%3A17IST&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_aleph002212958&amp;amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;amp;rft.genre=book&amp;amp;rft.jtitle=&amp;amp;rft.btitle=Travels%20with%20my%20aunt%20:%20a%20novel&amp;amp;rft.aulast=Greene&amp;amp;rft.aufirst=Graham%2C&amp;amp;rft.auinit=&amp;amp;rft.auinit1=&amp;amp;rft.auinitm=&amp;amp;rft.ausuffix=&amp;amp;rft.au=Greene%2C%20Graham%2C%201904-1991&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=Viking%20Press&amp;amp;rft.place=New%20York&amp;amp;rft.issn=&amp;amp;rft.eissn=&amp;amp;rft.isbn=&amp;amp;rft.sici=&amp;amp;rft.coden=&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph002212958&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;002212958&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot; GetIt1=&quot;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=002212958&quot; deliveryCategory=&quot;Physical Item&quot;/&gt;
643
+ &lt;sear:LIBRARIES&gt;
644
+ &lt;sear:LIBRARY&gt;
645
+ &lt;sear:institution&gt;NYU&lt;/sear:institution&gt;
646
+ &lt;sear:library&gt;BFALE&lt;/sear:library&gt;
647
+ &lt;sear:status&gt;available&lt;/sear:status&gt;
648
+ &lt;sear:collection&gt;Fales&lt;/sear:collection&gt;
649
+ &lt;sear:callNumber&gt;(Brit Non-circulating )&lt;/sear:callNumber&gt;
650
+ &lt;sear:url&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003445127&lt;/sear:url&gt;
651
+ &lt;/sear:LIBRARY&gt;
652
+ &lt;/sear:LIBRARIES&gt;
653
+ &lt;sear:LINKS&gt;
654
+ &lt;sear:openurl&gt;&lt;![CDATA[https://getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-10-12T13%3A59%3A17IST&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;/sear:openurl&gt;
655
+ &lt;sear:backlink&gt;http://aleph.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003445127&lt;/sear:backlink&gt;
656
+ &lt;sear:thumbnail/&gt;
657
+ &lt;sear:openurlfulltext&gt;&lt;![CDATA[https://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=2012-10-12T13%3A59%3A17IST&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;/sear:openurlfulltext&gt;
658
+ &lt;sear:linktoholdings&gt;http://aleph.library.nyu.edu/F?func=item-global&amp;amp;doc_library=NYU01&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=003445127&lt;/sear:linktoholdings&gt;
659
+ &lt;sear:linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph003445127?institution=NYU&amp;amp;persistent&lt;/sear:linktoreview&gt;
660
+ &lt;sear:linktouc&gt;http://www.worldcat.org/search?q=no%3A20905242&lt;/sear:linktouc&gt;
661
+ &lt;/sear:LINKS&gt;
662
+ &lt;/sear:DOC&gt;
663
+ &lt;/sear:DOCSET&gt;
664
+ &lt;/sear:RESULT&gt;
665
+ &lt;sear:searchToken&gt;0&lt;/sear:searchToken&gt;
666
+ &lt;/sear:JAGROOT&gt;
667
+ &lt;/sear:SEGMENTS&gt;
668
+ </searchBriefReturn></ns1:searchBriefResponse></soapenv:Body></soapenv:Envelope>
669
+ http_version:
670
+ recorded_at: Fri, 12 Oct 2012 17:59:17 GMT
671
+ recorded_with: VCR 2.2.5