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,392 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: post
5
+ uri: http://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:getRecord env:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
14
+ xmlns:n1="http://www.exlibris.com/primo/xsd/wsRequest">
15
+ <getRecordRequest xsi:type="xsd:string">&lt;fullViewRequest 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;/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;docId&gt;nyu_aleph000062856&lt;/docId&gt;&lt;/fullViewRequest&gt;</getRecordRequest>
16
+ </n1:getRecord>
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: 404
31
+ message: Not Found
32
+ headers:
33
+ Date:
34
+ - Fri, 12 Oct 2012 17:59:19 GMT
35
+ Server:
36
+ - Apache
37
+ X-Powered-By:
38
+ - PHP/5.2.0
39
+ Transfer-Encoding:
40
+ - chunked
41
+ Content-Type:
42
+ - text/html
43
+ body:
44
+ string: |+
45
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
46
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
47
+ <head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
48
+ <title>
49
+ New York University | Division of Libraries: File Not Found </title>
50
+ <base href="https://library.nyu.edu/">
51
+ <meta http-equiv="Content-type" content="text/xhtml; charset=UTF-8" />
52
+ <meta name="DC.Title" content="Help: File Not Found" />
53
+ <meta name="DC.Contributor" content="" />
54
+ <meta name="DC.Subject" content="" />
55
+ <meta name="DC.Description" content="" />
56
+ <meta name="DC.Publisher" content="NYU Libraries" />
57
+ <meta name="DC.Contributor" content="" />
58
+ <meta name="DC.Type" content="Text" />
59
+ <meta name="DC.Format" content="Text/XHTML" />
60
+ <meta name="DC.Language" content="us-en" />
61
+ <meta name="DC.Rights" content="copyright NYU Libraries" />
62
+ <link rel="stylesheet" type="text/css" href="/css/main.css" />
63
+ </head>
64
+ <body id="help">
65
+ <div id="second" class="topback">
66
+ <script type="text/javascript" src="/scripts/common.js"></script>
67
+ <script type="text/javascript" src="/scripts/datepicker.js"></script>
68
+ <script type="text/javascript" src="/bobcat/scripts/BobCatSearch.js"></script>
69
+ <script type="text/javascript" src="/bobcat/scripts/EZBobcat.js"></script>
70
+ <script type="text/javascript" src="/scripts/bobcat_nyu.js"></script>
71
+ <script type="text/javascript" src="/scripts/ad_rotator.js"></script>
72
+ <!-- these tags are closed in footer.html -->
73
+ <div id="outercontainer">
74
+ <div id="container">
75
+ <!-- com.omniupdate.div label="search_header.html" path="/includes/search_header.html" -->
76
+ <script src="/scripts/search_utility.js" type="text/javascript">
77
+ </script>
78
+ <script type="text/javascript">// <![CDATA[
79
+ //var searchStr = '';
80
+ //addEvent(window, "load", cleanSearch, false);
81
+ //addEvent(window, "load", function() {enableDropdown('searchUtilities')}, false);
82
+ //addEvent(window, "load", function() {enableAccessibility('searchUtilities')}, false);
83
+ // ]]></script>
84
+ <style><!--
85
+ #searchUtilities form fieldset h2 {
86
+ float: left;
87
+ }
88
+ #searchUtilities form fieldset div.bobcat_beta_wrapper {
89
+ float: right;
90
+ color: #674739;
91
+ font-size: 12px;
92
+ }
93
+ #searchUtilities form fieldset div.bobcat_beta_wrapper > div {
94
+ margin-top: 5px;
95
+ }
96
+ #searchUtilities form fieldset div.bobcat_beta_wrapper > div a {
97
+ text-decoration: underline;
98
+ }
99
+ #searchUtilities form fieldset div.bobcat_beta_wrapper > div a:hover {
100
+ text-decoration: none;
101
+ }
102
+ --></style>
103
+ <div id="searchUtilities">
104
+ <form action="/quicksearch" method="post"><!-- onsubmit="javascript: search(this); return false;"-->
105
+ <fieldset>
106
+ <h2><span>Search</span></h2>
107
+ <div style="clear: both;"></div>
108
+ <ul>
109
+ <li id="searchSrc">
110
+ <label for="location">Search:</label>
111
+ <select name="location">
112
+ <optgroup label="NYU Library Catalogs">
113
+ <option value="bobcat:kw">
114
+ BobCat</option>
115
+ <option value="bobcat:standard">
116
+ BobCat Standard</option>
117
+ <option value="nyu:libraries:findingaids">
118
+ Archival Collections</option>
119
+ <!--option value="bobcat:reserves">Course Reserves</option-->
120
+ <option value="hslcat">
121
+ HSLCat (NYU Medical)</option>
122
+ <option value="julius">
123
+ Julius (NYU Law)</option>
124
+ </optgroup>
125
+ <option style="font-weight: bold; font-style: italic;" value="library">
126
+ Search This Site</option>
127
+ <optgroup label="Other Library Catalogs">
128
+ <option value="worldcat">
129
+ WorldCat</option>
130
+ <option value="catnyp">
131
+ CATNYP (NYPL)</option>
132
+ <option value="clio">
133
+ CLIO (Columbia University)</option>
134
+ </optgroup>
135
+ <optgroup label="Other">
136
+ <option value="googlebooks">
137
+ Google Books</option>
138
+ <option value="googlescholar">
139
+ Google Scholar</option>
140
+ <!-- option value="scientificcommons">Scientific Commons</option>
141
+ <option value="oaister">
142
+ OAIster</option -->
143
+ <option value="amazon">
144
+ Amazon.com</option>
145
+ </optgroup>
146
+ </select>
147
+ </li>
148
+ <li id="searchTerm">
149
+ <input id="query" name="query" size="20" type="text" />
150
+ </li>
151
+ <li id="searchGo">
152
+ <input id="submit" class="block" alt="Go" name="submit" src="http://library.nyu.edu/images/go2.gif" type="image" />
153
+ </li>
154
+ </ul>
155
+ </fieldset>
156
+ </form>
157
+ </div>
158
+
159
+ <!-- /com.omniupdate.div -->
160
+
161
+ <!-- com.omniupdate.div label="banner.html" path="/includes/banner.html" -->
162
+ <div id="banner">
163
+ <h1><img src="/images/banner2.gif" alt="New York University Libraries" /></h1>
164
+ </div>
165
+
166
+ <!-- /com.omniupdate.div -->
167
+
168
+ <!-- com.omniupdate.div label="top_nav.html" path="/includes/top_nav.html" -->
169
+ <script type="text/javascript">
170
+ <!--
171
+ addEvent(window, "load", function() {enableDropdown('divTopNav')}, false);
172
+ addEvent(window, "load", function() {enableAccessibility('divTopNav')}, false);
173
+ //-->
174
+ </script>
175
+ <div id="divTopNav">
176
+ <ul id="topNav">
177
+ <li id="homeTopNav" class="nav"><a href="/" class="nav" accesskey="h"><span>Home</span></a></li>
178
+ <li id="collectionsTopNav" class="nav"><a href="http://library.nyu.edu/collections" class="nav" accesskey="c"><span>Find Resources</span></a>
179
+ <!-- com.omniupdate.div label="collections_nav_list" path="/includes/collections_nav_list.html" group="everyone" break="break" button="556" -->
180
+ <!-- com.omniupdate.editor csspath="/z-omniupdate/edit/default-list.css" cssmenu="/z-omniupdate/edit/main.txt" width="300" div="#OUPreview" --><ul class="ulCollections">
181
+ <li><a href="http://bobcat.library.nyu.edu/">BobCat</a></li>
182
+ <li><a href="http://bobcatstandard.library.nyu.edu">BobCat Standard</a></li>
183
+ <li><a href="/collections/books.html">Books</a></li>
184
+ <li><a href="/collections/databases.html">Articles via Databases</a></li>
185
+ <li><a href="/collections/ejournals.html">E-Journals</a></li>
186
+ <li><a href="/afc/">Videos &amp; Music</a></li>
187
+ <li><a href="http://arch.library.nyu.edu/databases/subject/images">Images</a></li>
188
+ <li><a href="/collections/archives.html">Special Collections</a></li>
189
+ <li><a href="/services/reserves.html">Course Reserves</a></li>
190
+ <li><a href="/vbl">Virtual Business Library</a></li>
191
+ <li><a href="http://julius.law.nyu.edu/" onclick="pop_url_anchor(this); return false;">NYU Law</a></li>
192
+ <li><a href="http://hsl.med.nyu.edu/" onclick="pop_url_anchor(this); return false;">NYU Medical/Dental</a></li>
193
+ <li><a href="/collections/other_catalogs.html">Other Catalogs</a></li>
194
+ </ul>
195
+
196
+ <!-- /com.omniupdate.div -->
197
+ </li>
198
+ <li id="researchTopNav" class="nav"><a href="/research" class="nav" accesskey="r"><span>Research Assistance</span></a>
199
+ <!-- com.omniupdate.div label="research-nav-list-inc" path="/includes/research_nav_list.html" group="everyone" break="break" button="556" -->
200
+ <!-- com.omniupdate.editor csspath="/z-omniupdate/edit/default-list.css" cssmenu="/z-omniupdate/edit/main.txt" width="300" div="#OUPreview" -->
201
+ <ul class="ulResearch">
202
+ <li><a href="/ask/">Ask a Librarian</a></li>
203
+ <li><a href="/research/subjects/">Research Guides</a></li>
204
+ <li><a href="/research/lib_arc.html">Subject Librarians</a></li>
205
+ <li><a href="/research/vrs.html">QuickRef</a></li>
206
+ <li><a href="/research/tutorials/">Tutorials</a></li>
207
+ <li><a href="/forms/research/classes.html">Library Classes</a></li>
208
+ <li><a href="/tools/">Tools (RefWorks, etc.)</a></li>
209
+ <li><a href="/feeds">Feeds &amp; Blogs</a></li>
210
+ <li><a href="/dataservice/">Data Service Studio</a></li>
211
+ <li><a href="/forms/research/consultations.html">Make an appointment</a></li>
212
+ <li><a href="/digitalstudio">Digital Studio</a></li>
213
+ </ul>
214
+
215
+
216
+ <!-- /com.omniupdate.div -->
217
+ </li>
218
+ <li id="servicesTopNav" class="nav"><a href="/services" class="nav" accesskey="s"><span>Services</span></a>
219
+ <!-- com.omniupdate.div label="services-nav-list-inc" path="/includes/services_nav_list.html" group="everyone" break="break" button="556" -->
220
+ <!-- com.omniupdate.editor csspath="/z-omniupdate/edit/default-list.css" cssmenu="/z-omniupdate/edit/main.txt" width="300" div="#OUPreview" --><ul class="ulServices">
221
+ <li><a href="/services/borrow_renew.html">Borrow &amp; Renew</a></li>
222
+ <li><a href="/services/computer.html">Computers &amp; Laptops</a></li>
223
+ <li><a href="/services/deliveryservices.html">Delivery Services</a></li>
224
+ <li><a href="http://dlib.nyu.edu">Digital Library</a></li>
225
+ <li><a href="/digitalstudio">Digital Studio</a></li>
226
+ <li><a href="/services/disabilities.html">Disability Services</a></li>
227
+ <li><a href="/services/group_study.html">Group Study Rooms</a></li>
228
+ <li><a href="/services/ill.html">Interlibrary Loan</a></li>
229
+ <li><a href="/services/reserves.html">Course Reserves</a></li>
230
+ <li><a href="/services/for_faculty.html">Faculty Services</a></li>
231
+ <li><a href="/services/grads.html">Graduate Student Services</a></li>
232
+ <li><a href="/poly/">Polytechnic Institute of NYU</a></li>
233
+ <li><a href="/alumni/">Alumni &amp; Friends</a></li>
234
+ <li><a href="/forms/">Library Forms</a></li>
235
+ <li><a href="/researchcommons/">Research Commons</a></li>
236
+ <li><a href="http://nyu.libguides.com/global" target="_blank">Global Services</a></li>
237
+ <li><a href="/services/atoz.html">Services A-Z</a></li>
238
+ </ul>
239
+
240
+ <!-- /com.omniupdate.div -->
241
+ </li>
242
+ <li id="aboutTopNav" class="nav"><a href="/about" class="nav" accesskey="a"><span>About</span></a>
243
+ <!-- com.omniupdate.div label="about-nav-list-inc" path="/includes/about_nav_list.html" group="everyone" break="break" button="556" -->
244
+ <!-- com.omniupdate.editor csspath="/z-omniupdate/edit/default-list.css" cssmenu="/z-omniupdate/edit/main.txt" width="300" div="#OUPreview" --><ul class="ulAbout">
245
+ <li><a href="/about/locations.html">Libraries &amp; Maps</a></li>
246
+ <li><a href="/about/access.html">Hours &amp; Access</a></li>
247
+ <li><a href="/about/index.html#policy">Library Policies</a></li>
248
+ <li><a href="/about/department.html">Staff Directory</a></li>
249
+ <li><a href="/about/jobs.html">Career Opportunities</a></li>
250
+ <li><a href="/about/news.html">What's New</a></li>
251
+ <li><a href="/alumni/giving-to-nyu-libraries.html">Giving to the Libraries</a></li>
252
+ <li><a href="http://nyupress.org/" target="_blank">NYU Press</a></li>
253
+ <li><a href="/sustainability">Sustainability</a></li>
254
+ <li><a href="http://nyu.libguides.com/renovation" target="_blank">Renovation</a></li>
255
+ </ul>
256
+
257
+ <!-- /com.omniupdate.div -->
258
+ </li>
259
+ <li id="helpTopNav" class="nav"><a href="/help" class="nav" accesskey="l"><span>Help</span></a>
260
+ <!-- com.omniupdate.div label="help-nav-list-inc" path="/includes/help_nav_list.html" group="everyone" break="break" button="556" -->
261
+ <!-- com.omniupdate.editor csspath="/z-omniupdate/edit/default-list.css" cssmenu="/z-omniupdate/edit/main.txt" width="300" div="#OUPreview" -->
262
+ <ul class="ulHelp">
263
+ <li><a href="/ask/">Ask a Librarian</a></li>
264
+ <li><a href="/help/search.html">Search This Site</a></li>
265
+ <li><a href="/help/proxy.html">Connect From Home</a></li>
266
+ <li><a href="/help/faq.html?category=PRIORITY">FAQs</a></li>
267
+ <li><a href="/services/borrow_renew.html">Renew/Recall A Book</a></li>
268
+ <li><a href="/help/sitemap.html">Site Map</a></li>
269
+ <li><a href="/feedback">Comments</a></li>
270
+ </ul>
271
+
272
+ <!-- /com.omniupdate.div -->
273
+ </li>
274
+ </ul>
275
+ </div>
276
+
277
+ <!-- /com.omniupdate.div -->
278
+
279
+ <div id="divSideNav">
280
+ <ul id="sideNav">
281
+ <li id="helpSideNav" class="nav"><a href="/help/" class="nav"><span>Help</span></a>
282
+ <!-- com.omniupdate.div label="help-nav-list-inc" path="/includes/help_nav_list.html" -->
283
+ <!-- com.omniupdate.editor csspath="/z-omniupdate/edit/default-list.css" cssmenu="/z-omniupdate/edit/main.txt" width="300" div="#OUPreview" -->
284
+ <ul class="ulHelp">
285
+ <li><a href="/ask/">Ask a Librarian</a></li>
286
+ <li><a href="/help/search.html">Search This Site</a></li>
287
+ <li><a href="/help/proxy.html">Connect From Home</a></li>
288
+ <li><a href="/help/faq.html?category=PRIORITY">FAQs</a></li>
289
+ <li><a href="/services/borrow_renew.html">Renew/Recall A Book</a></li>
290
+ <li><a href="/help/sitemap.html">Site Map</a></li>
291
+ <li><a href="/feedback">Comments</a></li>
292
+ </ul>
293
+
294
+ <!-- /com.omniupdate.div -->
295
+ </li>
296
+ </ul>
297
+ </div>
298
+ <div id="maincontent">
299
+ <!-- com.omniupdate.div label="header" group="everyone" break="break" button="777" -->
300
+ <!-- com.omniupdate.editor csspath="/css/public/public.css" cssmenu="/css/public/public.txt" width="900" div="#OUPreview" -->
301
+ <h2>File Not Found</h2>
302
+ <!-- /com.omniupdate.div -->
303
+ <div class="section lastsection">
304
+ <!-- com.omniupdate.div label="main" group="everyone" break="break" button="557" --><!-- com.omniupdate.editor csspath="/css/public/public.css" cssmenu="/css/public/public.txt" width="900" div="#OUPreview" --><p>
305
+ The page you requested was not found on the NYU Library website.<br />
306
+ Search this site to locate your information, or <a href="http://library.nyu.edu/ask/">Ask a Librarian</a>.
307
+ </p>
308
+ <p>
309
+ If you feel you have reached this page in error, please report this mistake to our <a href="http://library.nyu.edu/forms/help/broken.html">webmaster</a>.
310
+ </p>
311
+ <form action="http://google.nyu.edu/search" id="gSearch" method="get">
312
+ <fieldset>
313
+ <input name="site" type="hidden" value="NYUWeb_Main" />
314
+ <input name="client" type="hidden" value="NYUWeb_Main" />
315
+ <input name="output" type="hidden" value="xml_no_dtd" />
316
+ <input name="proxyreload" type="hidden" value="1" />
317
+ <input name="proxystylesheet" type="hidden" value="lib_frontend" />
318
+ <input name="site" type="hidden" value="lib_collection" />
319
+ </fieldset>
320
+ <fieldset>
321
+ <label id="termLabel" for="gq">Enter terms below to search NYU Libraries' web pages:</label>
322
+
323
+ <ul>
324
+ <li id="gSearchTerm"><input id="gq" name="q" size="30" type="text" /></li>
325
+ <li id="gSearchGo"><label id="submitLabel" for="gSubmit">Submit Search</label><input id="gSubmit" src="/images/go.gif" type="image" value="Submit Search" /></li>
326
+ </ul>
327
+ </fieldset>
328
+ </form><!-- /com.omniupdate.div -->
329
+ </div>
330
+ <!-- com.omniupdate.ob --><a class="cmslink" href="http://cms.library.nyu.edu/oucampus/de.jsp?user=mainsite&amp;site=library.nyu.edu&amp;path=%2Ferrors%2Flibrary-nyu-edu%2F404.html"><img src="http://library.nyu.edu/images/transparent.gif" alt="Log In to OmniUpdate" width="20" height="20" /></a><!-- /com.omniupdate.ob -->
331
+
332
+ </div>
333
+ <div id="mainright" class="rightdiv">
334
+ <ul id="rightads">
335
+ <li id="news" class="nav"><a href="/news" class="nav"><span>News</span></a>
336
+ <ul class="newsitems">
337
+ <li class="newsitem"><a href="http://library.nyu.edu/about/news.html">Win a Kindle and Learn RefWorks Contest!</a></li>
338
+ <li class="newsitem"><a href="http://library.nyu.edu/about/news.html">New: Use the book drops to return ILL items</a></li>
339
+ <li class="newsitem"><a href="http://library.nyu.edu/about/news.html">BobCat, RefWorks, and EndNote classes available--sign up now!</a></li>
340
+ <li class="newsitem"><a href="http://library.nyu.edu/about/hours/fall.html">Bobst Library Fall Semester Hours</a></li>
341
+ <li class="newsitem"><a href="https://webapps.library.nyu.edu/classes/#spss-introduction">Need to brush up on statistics software for your research?</a></li>
342
+ <li class="newsbottom">
343
+ </ul>
344
+
345
+ </li>
346
+
347
+ </ul>
348
+ <script type="text/javascript">
349
+ adIndex = 0;
350
+ displayAd();
351
+ </script>
352
+ </div>
353
+
354
+ <div id="footer">
355
+
356
+ <div id="lastmodified">
357
+ Page last modified:
358
+
359
+ January, 2011
360
+ </div>
361
+ <div id="divFooterNav">
362
+ <ul class="footerNav">
363
+ <li id="privacyFooterNav"><a href="http://www.nyu.edu/footer/copyright-and-fair-use/important-notice.html">Privacy Policy</a>|</li>
364
+ <li><a href="/about/contact.html">Contact Us</a>|</li>
365
+ <li><a href="http://www.nyu.edu/library/resources/">Staff Resources</a>|</li>
366
+ <li><a href="/about/jobs.html">Career Opportunities</a></li>
367
+ </ul>
368
+ <ul class="footerNav">
369
+ <li><a href="/search">Search This Site</a>|</li>
370
+ <li><a href="/feeds/">RSS</a>|</li>
371
+ <li><a href="http://www.nyu.edu">NYU Website</a>|</li>
372
+ <li><a href="http://home.nyu.edu">NYU Home</a></li>
373
+ </ul>
374
+ <ul class="footerSocial" id="footerSocialNav">
375
+ <li>Follow us:</li>
376
+ <li><a id="footerSocialFacebook" href="http://www.facebook.com/NYULibraries" target="_blank">&nbsp;</a></li>
377
+ <li><a id="footerSocialTwitter" href="http://www.twitter.com/nyulibraries" target="_blank">&nbsp;</a></li>
378
+ </ul>
379
+ </div>
380
+
381
+ <div id="copyright">
382
+ &#169; Copyright October, 2012 New York University
383
+ </div>
384
+ </div>
385
+
386
+ </div>
387
+ <!-- com.omniupdate.button --><a class="cmslink" href="http://cms.library.nyu.edu/oucampus/de.jsp?user=mainsite&amp;site=library.nyu.edu&amp;path=%2Fcommon%2Ferror.php"><img src="http://library.nyu.edu/images/transparent.gif" alt="Log In to OmniUpdate" width="20" height="20" /></a><!-- /com.omniupdate.button --></body>
388
+ </html>
389
+
390
+ http_version:
391
+ recorded_at: Fri, 12 Oct 2012 17:59:19 GMT
392
+ recorded_with: VCR 2.2.5
@@ -0,0 +1,299 @@
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;isbn&lt;/IndexField&gt;&lt;PrecisionOperator&gt;exact&lt;/PrecisionOperator&gt;&lt;Value&gt;0143039008&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:31 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;1&quot;&gt;
51
+ &lt;FACET_VALUES KEY=&quot;Greene, G&quot; VALUE=&quot;1&quot;/&gt;
52
+ &lt;/FACET&gt;
53
+ &lt;FACET NAME=&quot;lcc&quot; COUNT=&quot;1&quot;&gt;
54
+ &lt;FACET_VALUES KEY=&quot;P - Language and literature.&quot; VALUE=&quot;1&quot;/&gt;
55
+ &lt;/FACET&gt;
56
+ &lt;FACET NAME=&quot;lang&quot; COUNT=&quot;1&quot;&gt;
57
+ &lt;FACET_VALUES KEY=&quot;eng&quot; VALUE=&quot;1&quot;/&gt;
58
+ &lt;/FACET&gt;
59
+ &lt;FACET NAME=&quot;rtype&quot; COUNT=&quot;1&quot;&gt;
60
+ &lt;FACET_VALUES KEY=&quot;books&quot; VALUE=&quot;1&quot;/&gt;
61
+ &lt;/FACET&gt;
62
+ &lt;FACET NAME=&quot;topic&quot; COUNT=&quot;6&quot;&gt;
63
+ &lt;FACET_VALUES KEY=&quot;Travelers&quot; VALUE=&quot;1&quot;/&gt;
64
+ &lt;FACET_VALUES KEY=&quot;Retirees&quot; VALUE=&quot;1&quot;/&gt;
65
+ &lt;FACET_VALUES KEY=&quot;Aunts&quot; VALUE=&quot;1&quot;/&gt;
66
+ &lt;FACET_VALUES KEY=&quot;British&quot; VALUE=&quot;1&quot;/&gt;
67
+ &lt;FACET_VALUES KEY=&quot;Older women&quot; VALUE=&quot;1&quot;/&gt;
68
+ &lt;FACET_VALUES KEY=&quot;Women travelers&quot; VALUE=&quot;1&quot;/&gt;
69
+ &lt;/FACET&gt;
70
+ &lt;FACET NAME=&quot;pfilter&quot; COUNT=&quot;1&quot;&gt;
71
+ &lt;FACET_VALUES KEY=&quot;books&quot; VALUE=&quot;1&quot;/&gt;
72
+ &lt;/FACET&gt;
73
+ &lt;FACET NAME=&quot;creationdate&quot; COUNT=&quot;1&quot;&gt;
74
+ &lt;FACET_VALUES KEY=&quot;2004&quot; VALUE=&quot;1&quot;/&gt;
75
+ &lt;/FACET&gt;
76
+ &lt;FACET NAME=&quot;domain&quot; COUNT=&quot;1&quot;&gt;
77
+ &lt;FACET_VALUES KEY=&quot;BOBST&quot; VALUE=&quot;1&quot;/&gt;
78
+ &lt;/FACET&gt;
79
+ &lt;FACET NAME=&quot;genre&quot; COUNT=&quot;2&quot;&gt;
80
+ &lt;FACET_VALUES KEY=&quot;Fiction&quot; VALUE=&quot;1&quot;/&gt;
81
+ &lt;FACET_VALUES KEY=&quot;Humorous stories&quot; VALUE=&quot;1&quot;/&gt;
82
+ &lt;/FACET&gt;
83
+ &lt;FACET NAME=&quot;library&quot; COUNT=&quot;1&quot;&gt;
84
+ &lt;FACET_VALUES KEY=&quot;BOBST&quot; VALUE=&quot;1&quot;/&gt;
85
+ &lt;/FACET&gt;
86
+ &lt;FACET NAME=&quot;local1&quot; COUNT=&quot;1&quot;&gt;
87
+ &lt;FACET_VALUES KEY=&quot;Main Collection&quot; VALUE=&quot;1&quot;/&gt;
88
+ &lt;/FACET&gt;
89
+ &lt;/FACETLIST&gt;
90
+ &lt;DOCSET HIT_TIME=&quot;16&quot; TOTALHITS=&quot;1&quot; FIRSTHIT=&quot;1&quot; LASTHIT=&quot;1&quot; TOTAL_TIME=&quot;64&quot; IS_LOCAL=&quot;true&quot;&gt;
91
+ &lt;DOC ID=&quot;2278588&quot; RANK=&quot;1.0&quot; NO=&quot;1&quot; SEARCH_ENGINE=&quot;Local Search Engine&quot; SEARCH_ENGINE_TYPE=&quot;Local Search Engine&quot;&gt;
92
+ &lt;PrimoNMBib xmlns=&quot;http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib&quot;&gt;
93
+ &lt;record&gt;
94
+ &lt;control&gt;
95
+ &lt;sourcerecordid&gt;000062856&lt;/sourcerecordid&gt;
96
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
97
+ &lt;recordid&gt;nyu_aleph000062856&lt;/recordid&gt;
98
+ &lt;originalsourceid&gt;NYU01&lt;/originalsourceid&gt;
99
+ &lt;ilsapiid&gt;NYU01000062856&lt;/ilsapiid&gt;
100
+ &lt;sourceformat&gt;MARC21&lt;/sourceformat&gt;
101
+ &lt;sourcesystem&gt;Aleph&lt;/sourcesystem&gt;
102
+ &lt;/control&gt;
103
+ &lt;display&gt;
104
+ &lt;type&gt;book&lt;/type&gt;
105
+ &lt;title&gt;Travels with my aunt&lt;/title&gt;
106
+ &lt;creator&gt;Graham Greene 1904-1991.&lt;/creator&gt;
107
+ &lt;edition&gt;Deluxe ed.&lt;/edition&gt;
108
+ &lt;publisher&gt;New York : Penguin Books&lt;/publisher&gt;
109
+ &lt;creationdate&gt;2004&lt;/creationdate&gt;
110
+ &lt;format&gt;xvi, 254 p. ; 22 cm.&lt;/format&gt;
111
+ &lt;identifier&gt;$$Cisbn$$V0143039008; $$Cisbn$$V9780143039006&lt;/identifier&gt;
112
+ &lt;subject&gt;British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous stories&lt;/subject&gt;
113
+ &lt;language&gt;eng&lt;/language&gt;
114
+ &lt;relation&gt;$$Cseries $$VPenguin classics&lt;/relation&gt;
115
+ &lt;source&gt;nyu_aleph&lt;/source&gt;
116
+ &lt;availlibrary&gt;$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 2004 )$$Sunavailable$$31$$41$$5N$$61$$XNYU50$$YBOBST$$ZMAIN&lt;/availlibrary&gt;
117
+ &lt;lds02&gt;nyu_aleph000062856&lt;/lds02&gt;
118
+ &lt;lds01&gt;NYU&lt;/lds01&gt;
119
+ &lt;availinstitution&gt;$$INYU$$Sunavailable&lt;/availinstitution&gt;
120
+ &lt;availpnx&gt;unavailable&lt;/availpnx&gt;
121
+ &lt;version&gt;2&lt;/version&gt;
122
+ &lt;/display&gt;
123
+ &lt;links&gt;
124
+ &lt;openurl&gt;$$Topenurl_journal&lt;/openurl&gt;
125
+ &lt;backlink&gt;$$Taleph_backlink$$DMore bibliographic information&lt;/backlink&gt;
126
+ &lt;thumbnail&gt;$$Tamazon_thumb&lt;/thumbnail&gt;
127
+ &lt;linktotoc&gt;$$Tamazon_toc$$DCheck for Amazon Search Inside&lt;/linktotoc&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;linktouc&gt;$$Tamazon_uc$$DCheck Amazon&lt;/linktouc&gt;
132
+ &lt;linktouc&gt;$$Tworldcat_isbn$$DCheck other libraries (WorldCat&#xAE;)&lt;/linktouc&gt;
133
+ &lt;linktoexcerpt&gt;$$Tsyndetics_excerpt$$DExcerpt from item&lt;/linktoexcerpt&gt;
134
+ &lt;/links&gt;
135
+ &lt;search&gt;
136
+ &lt;creatorcontrib&gt;Graham, Greene 1904-1991.&lt;/creatorcontrib&gt;
137
+ &lt;creatorcontrib&gt;Greene, Graham, 1904-1991.&lt;/creatorcontrib&gt;
138
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
139
+ &lt;creatorcontrib&gt;Graham Greene ; introduction by Gloria Emerson.&lt;/creatorcontrib&gt;
140
+ &lt;creatorcontrib&gt;Greene, Henry Graham, 1904-1991&lt;/creatorcontrib&gt;
141
+ &lt;creatorcontrib&gt;G&#x16D;rin, G&#x16D;re&#x14F;m, 1904-1991&lt;/creatorcontrib&gt;
142
+ &lt;creatorcontrib&gt;Grin, Greham, 1904-1991&lt;/creatorcontrib&gt;
143
+ &lt;creatorcontrib&gt;Gr&#x12B;na, Gr&#x101;hama, 1904-1991&lt;/creatorcontrib&gt;
144
+ &lt;creatorcontrib&gt;Grin, Gr&#x117;m, 1904-1991&lt;/creatorcontrib&gt;
145
+ &lt;creatorcontrib&gt;&#x683C;&#x62C9;&#x59C6;&#x30FB;&#x845B;&#x6797;, 1904-1991&lt;/creatorcontrib&gt;
146
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, Greiems, 1904-1991&lt;/creatorcontrib&gt;
147
+ &lt;creatorcontrib&gt;Gr&#x12B;ns, G. (Greiems), 1904-1991&lt;/creatorcontrib&gt;
148
+ &lt;title&gt;Travels with my aunt /&lt;/title&gt;
149
+ &lt;subject&gt;British Foreign countries Fiction&lt;/subject&gt;
150
+ &lt;subject&gt;Women travelers Fiction&lt;/subject&gt;
151
+ &lt;subject&gt;Older women Fiction&lt;/subject&gt;
152
+ &lt;subject&gt;Travelers Fiction&lt;/subject&gt;
153
+ &lt;subject&gt;Retirees Fiction&lt;/subject&gt;
154
+ &lt;subject&gt;Aunts Fiction&lt;/subject&gt;
155
+ &lt;subject&gt;Humorous stories&lt;/subject&gt;
156
+ &lt;subject&gt;People, Retired&lt;/subject&gt;
157
+ &lt;subject&gt;Retired persons&lt;/subject&gt;
158
+ &lt;subject&gt;Retired people&lt;/subject&gt;
159
+ &lt;subject&gt;Travelers, Women&lt;/subject&gt;
160
+ &lt;subject&gt;Britishers&lt;/subject&gt;
161
+ &lt;subject&gt;British people&lt;/subject&gt;
162
+ &lt;subject&gt;Britons (British)&lt;/subject&gt;
163
+ &lt;subject&gt;Brits&lt;/subject&gt;
164
+ &lt;subject&gt;Aged women&lt;/subject&gt;
165
+ &lt;general&gt;Penguin Books,&lt;/general&gt;
166
+ &lt;general&gt;&quot;Graham Greene centennial, 1904-2004&quot;--Cover.&lt;/general&gt;
167
+ &lt;sourceid&gt;nyu_aleph&lt;/sourceid&gt;
168
+ &lt;recordid&gt;nyu_aleph000062856&lt;/recordid&gt;
169
+ &lt;isbn&gt;0143039008&lt;/isbn&gt;
170
+ &lt;isbn&gt;9780143039006&lt;/isbn&gt;
171
+ &lt;rsrctype&gt;book&lt;/rsrctype&gt;
172
+ &lt;creationdate&gt;2004&lt;/creationdate&gt;
173
+ &lt;creationdate&gt;1969&lt;/creationdate&gt;
174
+ &lt;addtitle&gt;Penguin classics&lt;/addtitle&gt;
175
+ &lt;searchscope&gt;BOBST&lt;/searchscope&gt;
176
+ &lt;searchscope&gt;BOBST Main Collection&lt;/searchscope&gt;
177
+ &lt;searchscope&gt;nyu_aleph&lt;/searchscope&gt;
178
+ &lt;searchscope&gt;NYU&lt;/searchscope&gt;
179
+ &lt;scope&gt;BOBST&lt;/scope&gt;
180
+ &lt;scope&gt;BOBST Main Collection&lt;/scope&gt;
181
+ &lt;scope&gt;nyu_aleph&lt;/scope&gt;
182
+ &lt;scope&gt;NYU&lt;/scope&gt;
183
+ &lt;lsr01&gt;PR6013.R44 T7 2004&lt;/lsr01&gt;
184
+ &lt;lsr01&gt;PR6013 .R44 T7 2004&lt;/lsr01&gt;
185
+ &lt;lsr02&gt;Penguin Books,&lt;/lsr02&gt;
186
+ &lt;/search&gt;
187
+ &lt;sort&gt;
188
+ &lt;title&gt;Travels with my aunt /&lt;/title&gt;
189
+ &lt;creationdate&gt;2004&lt;/creationdate&gt;
190
+ &lt;author&gt;Greene, Graham, 1904-1991.&lt;/author&gt;
191
+ &lt;lso01&gt;2004&lt;/lso01&gt;
192
+ &lt;/sort&gt;
193
+ &lt;facets&gt;
194
+ &lt;language&gt;eng&lt;/language&gt;
195
+ &lt;creationdate&gt;2004&lt;/creationdate&gt;
196
+ &lt;topic&gt;British&#x2013;Foreign countries&#x2013;Fiction&lt;/topic&gt;
197
+ &lt;topic&gt;Women travelers&#x2013;Fiction&lt;/topic&gt;
198
+ &lt;topic&gt;Older women&#x2013;Fiction&lt;/topic&gt;
199
+ &lt;topic&gt;Travelers&#x2013;Fiction&lt;/topic&gt;
200
+ &lt;topic&gt;Retirees&#x2013;Fiction&lt;/topic&gt;
201
+ &lt;topic&gt;Aunts&#x2013;Fiction&lt;/topic&gt;
202
+ &lt;collection&gt;BOBST&lt;/collection&gt;
203
+ &lt;prefilter&gt;books&lt;/prefilter&gt;
204
+ &lt;rsrctype&gt;books&lt;/rsrctype&gt;
205
+ &lt;creatorcontrib&gt;Greene, G&lt;/creatorcontrib&gt;
206
+ &lt;genre&gt;Fiction&lt;/genre&gt;
207
+ &lt;genre&gt;Humorous stories&lt;/genre&gt;
208
+ &lt;library&gt;BOBST&lt;/library&gt;
209
+ &lt;lfc01&gt;Main Collection&lt;/lfc01&gt;
210
+ &lt;classificationlcc&gt;P - Language and literature.&#x2013;English literature&lt;/classificationlcc&gt;
211
+ &lt;frbrgroupid&gt;49340863&lt;/frbrgroupid&gt;
212
+ &lt;frbrtype&gt;5&lt;/frbrtype&gt;
213
+ &lt;/facets&gt;
214
+ &lt;dedup&gt;
215
+ &lt;t&gt;1&lt;/t&gt;
216
+ &lt;c1&gt;2004559272&lt;/c1&gt;
217
+ &lt;c2&gt;0143039008;9780143039006&lt;/c2&gt;
218
+ &lt;c3&gt;travelswithmyaunt&lt;/c3&gt;
219
+ &lt;c4&gt;2004&lt;/c4&gt;
220
+ &lt;f1&gt;2004559272&lt;/f1&gt;
221
+ &lt;f3&gt;0143039008;9780143039006&lt;/f3&gt;
222
+ &lt;f5&gt;travelswithmyaunt&lt;/f5&gt;
223
+ &lt;f6&gt;2004&lt;/f6&gt;
224
+ &lt;f7&gt;travels with my aunt&lt;/f7&gt;
225
+ &lt;f8&gt;nyu&lt;/f8&gt;
226
+ &lt;f9&gt;xvi, 254 p. ;&lt;/f9&gt;
227
+ &lt;f10&gt;penguin books&lt;/f10&gt;
228
+ &lt;f11&gt;greene graham 1904 1991&lt;/f11&gt;
229
+ &lt;/dedup&gt;
230
+ &lt;frbr&gt;
231
+ &lt;t&gt;1&lt;/t&gt;
232
+ &lt;k1&gt;$$Kgreene graham 1904 1991$$AA&lt;/k1&gt;
233
+ &lt;k3&gt;$$Kbooktravels with my aunt$$AT&lt;/k3&gt;
234
+ &lt;/frbr&gt;
235
+ &lt;delivery&gt;
236
+ &lt;institution&gt;NYU&lt;/institution&gt;
237
+ &lt;delcategory&gt;Physical Item&lt;/delcategory&gt;
238
+ &lt;/delivery&gt;
239
+ &lt;enrichment&gt;
240
+ &lt;classificationlcc&gt;PR6013.R44&lt;/classificationlcc&gt;
241
+ &lt;/enrichment&gt;
242
+ &lt;ranking&gt;
243
+ &lt;booster1&gt;1&lt;/booster1&gt;
244
+ &lt;booster2&gt;1&lt;/booster2&gt;
245
+ &lt;/ranking&gt;
246
+ &lt;addata&gt;
247
+ &lt;aulast&gt;Greene&lt;/aulast&gt;
248
+ &lt;aufirst&gt;Graham,&lt;/aufirst&gt;
249
+ &lt;au&gt;Greene, Graham, 1904-1991&lt;/au&gt;
250
+ &lt;btitle&gt;Travels with my aunt&lt;/btitle&gt;
251
+ &lt;seriestitle&gt;Penguin classics&lt;/seriestitle&gt;
252
+ &lt;date&gt;2004&lt;/date&gt;
253
+ &lt;risdate&gt;2004.&lt;/risdate&gt;
254
+ &lt;isbn&gt;0143039008&lt;/isbn&gt;
255
+ &lt;isbn&gt;9780143039006&lt;/isbn&gt;
256
+ &lt;format&gt;book&lt;/format&gt;
257
+ &lt;genre&gt;book&lt;/genre&gt;
258
+ &lt;ristype&gt;BOOK&lt;/ristype&gt;
259
+ &lt;notes&gt;Includes bibliographical references (p. xv-xvi).&lt;/notes&gt;
260
+ &lt;cop&gt;New York&lt;/cop&gt;
261
+ &lt;pub&gt;Penguin Books&lt;/pub&gt;
262
+ &lt;oclcid&gt;56781200&lt;/oclcid&gt;
263
+ &lt;lccn&gt;2004559272&lt;/lccn&gt;
264
+ &lt;lad01&gt;BOBST&lt;/lad01&gt;
265
+ &lt;lad01&gt;Physical Item&lt;/lad01&gt;
266
+ &lt;/addata&gt;
267
+ &lt;/record&gt;
268
+ &lt;/PrimoNMBib&gt;
269
+ &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=000062856&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%3A31IST&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_aleph000062856&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&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=Penguin%20Books&amp;amp;rft.place=New%20York&amp;amp;rft.issn=&amp;amp;rft.eissn=&amp;amp;rft.isbn=0143039008&amp;amp;rft.sici=&amp;amp;rft.coden=&amp;amp;rft_id=info:doi/&amp;amp;rft.object_id=&amp;amp;rft.primo=nyu_aleph000062856&amp;amp;rft.eisbn=&amp;amp;rft_dat=&amp;lt;nyu_aleph&gt;000062856&amp;lt;/nyu_aleph&gt;&amp;amp;rft_id=info:oai/&quot;/&gt;
270
+ &lt;LIBRARIES&gt;
271
+ &lt;LIBRARY&gt;
272
+ &lt;institution&gt;NYU&lt;/institution&gt;
273
+ &lt;library&gt;BOBST&lt;/library&gt;
274
+ &lt;status&gt;unavailable&lt;/status&gt;
275
+ &lt;collection&gt;Main Collection&lt;/collection&gt;
276
+ &lt;callNumber&gt;(PR6013.R44 T7 2004 )&lt;/callNumber&gt;
277
+ &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=000062856&lt;/url&gt;
278
+ &lt;/LIBRARY&gt;
279
+ &lt;/LIBRARIES&gt;
280
+ &lt;LINKS&gt;
281
+ &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%3A31IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt&amp;rft.aulast=Greene&amp;rft.aufirst=Graham%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Greene%2C%20Graham%2C%201904-1991&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Penguin%20Books&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0143039008&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph000062856&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;000062856&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurl&gt;
282
+ &lt;backlink&gt;http://alephstage.library.nyu.edu/F?func=direct&amp;amp;local_base=PRIMOCOMMON&amp;amp;doc_number=000062856&lt;/backlink&gt;
283
+ &lt;thumbnail&gt;http://images.amazon.com/images/P/0143039008.01._SSTHUM_.jpg&lt;/thumbnail&gt;
284
+ &lt;linktotoc&gt;http://www.amazon.com/gp/reader/0143039008&lt;/linktotoc&gt;
285
+ &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%3A31IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph000062856&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:book&amp;rft.genre=book&amp;rft.jtitle=&amp;rft.btitle=Travels%20with%20my%20aunt&amp;rft.aulast=Greene&amp;rft.aufirst=Graham%2C&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Greene%2C%20Graham%2C%201904-1991&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Penguin%20Books&amp;rft.place=New%20York&amp;rft.issn=&amp;rft.eissn=&amp;rft.isbn=0143039008&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph&gt;000062856&lt;/nyu_aleph&gt;&amp;rft_id=info:oai/]]&gt;&lt;/openurlfulltext&gt;
286
+ &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=000062856&lt;/linktoholdings&gt;
287
+ &lt;linktoreview&gt;https://library.nyu.edu/persistent/lcn/nyu_aleph000062856?institution=NYU&amp;amp;persistent&lt;/linktoreview&gt;
288
+ &lt;linktouc&gt;http://www.amazon.com/s/?search-alias=aps&amp;amp;field-keywords=0143039008&lt;/linktouc&gt;
289
+ &lt;linktouc&gt;http://www.worldcat.org/search?q=isbn%3A0143039008&lt;/linktouc&gt;
290
+ &lt;/LINKS&gt;
291
+ &lt;/DOC&gt;
292
+ &lt;/DOCSET&gt;
293
+ &lt;/RESULT&gt;
294
+ &lt;searchToken&gt;0&lt;/searchToken&gt;
295
+ &lt;/JAGROOT&gt;
296
+ &lt;/SEGMENTS&gt;</searchBriefReturn></ns1:searchBriefResponse></soapenv:Body></soapenv:Envelope>
297
+ http_version:
298
+ recorded_at: Fri, 12 Oct 2012 18:00:31 GMT
299
+ recorded_with: VCR 2.2.5