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.
- data/README.rdoc +5 -2
- data/Rakefile +1 -5
- data/lib/exlibris/primo/eshelf.rb +4 -3
- data/lib/exlibris/primo/holding.rb +2 -10
- data/lib/exlibris/primo/record.rb +11 -6
- data/lib/exlibris/primo/searcher.rb +2 -4
- data/lib/exlibris/primo/version.rb +2 -2
- data/test/exlibris-primo_test.rb +3 -3
- data/test/test_helper.rb +33 -7
- data/test/unit/eshelf_test.rb +106 -87
- data/test/unit/record_test.rb +64 -45
- data/test/unit/searcher_benchmarks.rb +20 -28
- data/test/unit/searcher_test.rb +298 -273
- data/test/unit/web_service_benchmarks.rb +19 -21
- data/test/unit/web_service_test.rb +130 -102
- data/test/vcr_cassettes/eshelf_add_invalid_records.yml +107 -0
- data/test/vcr_cassettes/eshelf_add_same_record_twice.yml +159 -0
- data/test/vcr_cassettes/eshelf_add_to_empty_basket.yml +107 -0
- data/test/vcr_cassettes/eshelf_add_to_invalid_basket.yml +55 -0
- data/test/vcr_cassettes/eshelf_invalid_eshelf.yml +55 -0
- data/test/vcr_cassettes/eshelf_invalid_institution.yml +55 -0
- data/test/vcr_cassettes/eshelf_valid_eshelf.yml +2553 -0
- data/test/vcr_cassettes/eshelf_valid_eshelf_structure.yml +47 -0
- data/test/vcr_cassettes/record.yml +212 -0
- data/test/vcr_cassettes/record_invalid_record.yml +55 -0
- data/test/vcr_cassettes/record_sub_record.yml +212 -0
- data/test/vcr_cassettes/record_valid_record.yml +212 -0
- data/test/vcr_cassettes/searcher_base_holdings_by_id.yml +212 -0
- data/test/vcr_cassettes/searcher_dedupmrg_by_id.yml +347 -0
- data/test/vcr_cassettes/searcher_diacritics1_by_id.yml +207 -0
- data/test/vcr_cassettes/searcher_diacritics2_by_id.yml +232 -0
- data/test/vcr_cassettes/searcher_holdings_by_id.yml +212 -0
- data/test/vcr_cassettes/searcher_invalid_id.yml +55 -0
- data/test/vcr_cassettes/searcher_rsrcs_by_id.yml +270 -0
- data/test/vcr_cassettes/searcher_search_by_isbn.yml +278 -0
- data/test/vcr_cassettes/searcher_search_by_issn.yml +297 -0
- data/test/vcr_cassettes/searcher_search_by_title_author_genre.yml +671 -0
- data/test/vcr_cassettes/searcher_test_bug_1361.yml +224 -0
- data/test/vcr_cassettes/searcher_test_problem_by_id.yml +194 -0
- data/test/vcr_cassettes/searcher_tocs_by_id.yml +217 -0
- data/test/vcr_cassettes/web_service_author_search.yml +1269 -0
- data/test/vcr_cassettes/web_service_bogus_200.yml +392 -0
- data/test/vcr_cassettes/web_service_brief_search.yml +299 -0
- data/test/vcr_cassettes/web_service_get_eshelf.yml +11823 -0
- data/test/vcr_cassettes/web_service_get_eshelf_structure_search.yml +47 -0
- data/test/vcr_cassettes/web_service_invalid_document.yml +54 -0
- data/test/vcr_cassettes/web_service_isbn_search.yml +299 -0
- data/test/vcr_cassettes/web_service_issn_search.yml +293 -0
- data/test/vcr_cassettes/web_service_problem_document.yml +193 -0
- data/test/vcr_cassettes/web_service_single_document.yml +233 -0
- data/test/vcr_cassettes/web_service_title_author_genre_search.yml +719 -0
- data/test/vcr_cassettes/web_service_title_search.yml +1035 -0
- metadata +147 -77
- data/lib/tasks/exlibris-primo_tasks.rake +0 -4
- data/test/dummy/README.rdoc +0 -261
- data/test/dummy/Rakefile +0 -7
- data/test/dummy/app/assets/javascripts/application.js +0 -15
- data/test/dummy/app/assets/stylesheets/application.css +0 -13
- data/test/dummy/app/controllers/application_controller.rb +0 -3
- data/test/dummy/app/helpers/application_helper.rb +0 -2
- data/test/dummy/app/views/layouts/application.html.erb +0 -14
- data/test/dummy/config.ru +0 -4
- data/test/dummy/config/application.rb +0 -56
- data/test/dummy/config/boot.rb +0 -10
- data/test/dummy/config/database.yml +0 -25
- data/test/dummy/config/environment.rb +0 -5
- data/test/dummy/config/environments/development.rb +0 -37
- data/test/dummy/config/environments/production.rb +0 -67
- data/test/dummy/config/environments/test.rb +0 -37
- data/test/dummy/config/initializers/backtrace_silencers.rb +0 -7
- data/test/dummy/config/initializers/inflections.rb +0 -15
- data/test/dummy/config/initializers/mime_types.rb +0 -5
- data/test/dummy/config/initializers/secret_token.rb +0 -7
- data/test/dummy/config/initializers/session_store.rb +0 -8
- data/test/dummy/config/initializers/wrap_parameters.rb +0 -14
- data/test/dummy/config/locales/en.yml +0 -5
- data/test/dummy/config/routes.rb +0 -58
- data/test/dummy/db/README +0 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +0 -1704
- data/test/dummy/public/404.html +0 -26
- data/test/dummy/public/422.html +0 -26
- data/test/dummy/public/500.html +0 -25
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +0 -6
@@ -0,0 +1,212 @@
|
|
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: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"><fullViewRequest xmlns='http://www.exlibris.com/primo/xsd/wsRequest'><PrimoSearchRequest xmlns='http://www.exlibris.com/primo/xsd/search/request'><QueryTerms><BoolOpeator>AND</BoolOpeator></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled><HighlightingEnabled>false</HighlightingEnabled></PrimoSearchRequest><docId>nyu_aleph000062856</docId><institution>NYU</institution></fullViewRequest></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: 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:14 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:getRecordResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://www.exlibris.com/primo/xsd/wsRequest"><getRecordReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><SEGMENTS xmlns="http://www.exlibrisgroup.com/xsd/jaguar/search">
|
46
|
+
<JAGROOT>
|
47
|
+
<RESULT>
|
48
|
+
<DOCSET TOTALHITS="1">
|
49
|
+
<sear:DOC LOCAL="true" xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib" xmlns:sear="http://www.exlibrisgroup.com/xsd/jaguar/search">
|
50
|
+
<PrimoNMBib>
|
51
|
+
<record>
|
52
|
+
<control>
|
53
|
+
<sourcerecordid>000062856</sourcerecordid>
|
54
|
+
<sourceid>nyu_aleph</sourceid>
|
55
|
+
<recordid>nyu_aleph000062856</recordid>
|
56
|
+
<originalsourceid>NYU01</originalsourceid>
|
57
|
+
<ilsapiid>NYU01000062856</ilsapiid>
|
58
|
+
<sourceformat>MARC21</sourceformat>
|
59
|
+
<sourcesystem>Aleph</sourcesystem>
|
60
|
+
</control>
|
61
|
+
<display>
|
62
|
+
<type>book</type>
|
63
|
+
<title>Travels with my aunt</title>
|
64
|
+
<creator>Graham Greene 1904-1991.</creator>
|
65
|
+
<edition>Deluxe ed.</edition>
|
66
|
+
<publisher>New York : Penguin Books</publisher>
|
67
|
+
<creationdate>2004</creationdate>
|
68
|
+
<format>xvi, 254 p. ; 22 cm.</format>
|
69
|
+
<identifier>$$Cisbn$$V0143039008</identifier>
|
70
|
+
<subject>British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous stories</subject>
|
71
|
+
<language>eng</language>
|
72
|
+
<relation>$$Cseries $$VPenguin classics</relation>
|
73
|
+
<source>nyu_aleph</source>
|
74
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 2004 )$$Sunavailable$$31$$41$$5N$$61$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
75
|
+
<lds02>nyu_aleph000062856</lds02>
|
76
|
+
<lds01>NYU</lds01>
|
77
|
+
<availinstitution>$$INYU$$Sunavailable</availinstitution>
|
78
|
+
<availpnx>unavailable</availpnx>
|
79
|
+
</display>
|
80
|
+
<links>
|
81
|
+
<openurl>$$Topenurl_journal</openurl>
|
82
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
83
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
84
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
85
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
86
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
87
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
88
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
89
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
90
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
91
|
+
</links>
|
92
|
+
<search>
|
93
|
+
<creatorcontrib>Graham, Greene 1904-1991.</creatorcontrib>
|
94
|
+
<creatorcontrib>Greene, Graham, 1904-1991.</creatorcontrib>
|
95
|
+
<creatorcontrib>Greene, G</creatorcontrib>
|
96
|
+
<creatorcontrib>Graham Greene ; introduction by Gloria Emerson.</creatorcontrib>
|
97
|
+
<title>Travels with my aunt /</title>
|
98
|
+
<subject>British Foreign countries Fiction</subject>
|
99
|
+
<subject>Women travelers Fiction</subject>
|
100
|
+
<subject>Older women Fiction</subject>
|
101
|
+
<subject>Travelers Fiction</subject>
|
102
|
+
<subject>Retirees Fiction</subject>
|
103
|
+
<subject>Aunts Fiction</subject>
|
104
|
+
<subject>Humorous stories</subject>
|
105
|
+
<general>Penguin Books,</general>
|
106
|
+
<general>"Graham Greene centennial, 1904-2004"--Cover.</general>
|
107
|
+
<sourceid>nyu_aleph</sourceid>
|
108
|
+
<recordid>nyu_aleph000062856</recordid>
|
109
|
+
<isbn>0143039008</isbn>
|
110
|
+
<rsrctype>book</rsrctype>
|
111
|
+
<creationdate>2004</creationdate>
|
112
|
+
<creationdate>1969</creationdate>
|
113
|
+
<addtitle>Penguin classics</addtitle>
|
114
|
+
<searchscope>BOBST</searchscope>
|
115
|
+
<searchscope>BOBST Main Collection</searchscope>
|
116
|
+
<searchscope>nyu_aleph</searchscope>
|
117
|
+
<searchscope>NYU</searchscope>
|
118
|
+
<scope>BOBST</scope>
|
119
|
+
<scope>BOBST Main Collection</scope>
|
120
|
+
<scope>nyu_aleph</scope>
|
121
|
+
<scope>NYU</scope>
|
122
|
+
<lsr02>Penguin Books,</lsr02>
|
123
|
+
</search>
|
124
|
+
<sort>
|
125
|
+
<title>Travels with my aunt /</title>
|
126
|
+
<creationdate>2004</creationdate>
|
127
|
+
<author>Greene, Graham, 1904-1991.</author>
|
128
|
+
<lso01>2004</lso01>
|
129
|
+
</sort>
|
130
|
+
<facets>
|
131
|
+
<language>eng</language>
|
132
|
+
<creationdate>2004</creationdate>
|
133
|
+
<topic>British–Foreign countries–Fiction</topic>
|
134
|
+
<topic>Women travelers–Fiction</topic>
|
135
|
+
<topic>Older women–Fiction</topic>
|
136
|
+
<topic>Travelers–Fiction</topic>
|
137
|
+
<topic>Retirees–Fiction</topic>
|
138
|
+
<topic>Aunts–Fiction</topic>
|
139
|
+
<collection>BOBST</collection>
|
140
|
+
<prefilter>books</prefilter>
|
141
|
+
<rsrctype>books</rsrctype>
|
142
|
+
<creatorcontrib>Greene, G</creatorcontrib>
|
143
|
+
<genre>Fiction</genre>
|
144
|
+
<genre>Humorous stories</genre>
|
145
|
+
<library>BOBST</library>
|
146
|
+
<lfc01>Main Collection</lfc01>
|
147
|
+
<classificationlcc>P - Language and literature.–English literature</classificationlcc>
|
148
|
+
<frbrgroupid>44552541</frbrgroupid>
|
149
|
+
<frbrtype>5</frbrtype>
|
150
|
+
</facets>
|
151
|
+
<dedup>
|
152
|
+
<t>1</t>
|
153
|
+
<c1>2004559272</c1>
|
154
|
+
<c2>0143039008</c2>
|
155
|
+
<c3>travelswithmyaunt</c3>
|
156
|
+
<c4>2004</c4>
|
157
|
+
<f1>2004559272</f1>
|
158
|
+
<f3>0143039008</f3>
|
159
|
+
<f5>travelswithmyaunt</f5>
|
160
|
+
<f6>2004</f6>
|
161
|
+
<f7>travels with my aunt</f7>
|
162
|
+
<f8>nyu</f8>
|
163
|
+
<f9>xvi, 254 p. ;</f9>
|
164
|
+
<f10>penguin books</f10>
|
165
|
+
<f11>greene graham 1904 1991</f11>
|
166
|
+
</dedup>
|
167
|
+
<frbr>
|
168
|
+
<t>1</t>
|
169
|
+
<k1>$$Kgreene graham 1904 1991$$AA</k1>
|
170
|
+
<k3>$$Kbooktravels with my aunt$$AT</k3>
|
171
|
+
</frbr>
|
172
|
+
<delivery>
|
173
|
+
<institution>NYU</institution>
|
174
|
+
<delcategory>Physical Item</delcategory>
|
175
|
+
</delivery>
|
176
|
+
<enrichment>
|
177
|
+
<classificationlcc>PR6013.R44</classificationlcc>
|
178
|
+
</enrichment>
|
179
|
+
<ranking>
|
180
|
+
<booster1>1</booster1>
|
181
|
+
<booster2>1</booster2>
|
182
|
+
</ranking>
|
183
|
+
<addata>
|
184
|
+
<aulast>Greene</aulast>
|
185
|
+
<aufirst>Graham,</aufirst>
|
186
|
+
<au>Greene, Graham, 1904-1991</au>
|
187
|
+
<btitle>Travels with my aunt</btitle>
|
188
|
+
<seriestitle>Penguin classics</seriestitle>
|
189
|
+
<date>2004</date>
|
190
|
+
<risdate>2004.</risdate>
|
191
|
+
<isbn>0143039008</isbn>
|
192
|
+
<format>book</format>
|
193
|
+
<genre>book</genre>
|
194
|
+
<ristype>BOOK</ristype>
|
195
|
+
<notes>Includes bibliographical references (p. xv-xvi).</notes>
|
196
|
+
<cop>New York</cop>
|
197
|
+
<pub>Penguin Books</pub>
|
198
|
+
<oclcid>56781200</oclcid>
|
199
|
+
<lccn>2004559272</lccn>
|
200
|
+
<lad01>Physical Item</lad01>
|
201
|
+
</addata>
|
202
|
+
</record>
|
203
|
+
</PrimoNMBib>
|
204
|
+
</sear:DOC>
|
205
|
+
</DOCSET>
|
206
|
+
</RESULT>
|
207
|
+
</JAGROOT>
|
208
|
+
</SEGMENTS>
|
209
|
+
</getRecordReturn></ns1:getRecordResponse></soapenv:Body></soapenv:Envelope>
|
210
|
+
http_version:
|
211
|
+
recorded_at: Fri, 12 Oct 2012 17:59:15 GMT
|
212
|
+
recorded_with: VCR 2.2.5
|
@@ -0,0 +1,212 @@
|
|
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: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"><fullViewRequest xmlns='http://www.exlibris.com/primo/xsd/wsRequest'><PrimoSearchRequest xmlns='http://www.exlibris.com/primo/xsd/search/request'><QueryTerms><BoolOpeator>AND</BoolOpeator></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled><HighlightingEnabled>false</HighlightingEnabled></PrimoSearchRequest><docId>nyu_aleph000062856</docId><institution>NYU</institution></fullViewRequest></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: 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:16 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:getRecordResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://www.exlibris.com/primo/xsd/wsRequest"><getRecordReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><SEGMENTS xmlns="http://www.exlibrisgroup.com/xsd/jaguar/search">
|
46
|
+
<JAGROOT>
|
47
|
+
<RESULT>
|
48
|
+
<DOCSET TOTALHITS="1">
|
49
|
+
<sear:DOC LOCAL="true" xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib" xmlns:sear="http://www.exlibrisgroup.com/xsd/jaguar/search">
|
50
|
+
<PrimoNMBib>
|
51
|
+
<record>
|
52
|
+
<control>
|
53
|
+
<sourcerecordid>000062856</sourcerecordid>
|
54
|
+
<sourceid>nyu_aleph</sourceid>
|
55
|
+
<recordid>nyu_aleph000062856</recordid>
|
56
|
+
<originalsourceid>NYU01</originalsourceid>
|
57
|
+
<ilsapiid>NYU01000062856</ilsapiid>
|
58
|
+
<sourceformat>MARC21</sourceformat>
|
59
|
+
<sourcesystem>Aleph</sourcesystem>
|
60
|
+
</control>
|
61
|
+
<display>
|
62
|
+
<type>book</type>
|
63
|
+
<title>Travels with my aunt</title>
|
64
|
+
<creator>Graham Greene 1904-1991.</creator>
|
65
|
+
<edition>Deluxe ed.</edition>
|
66
|
+
<publisher>New York : Penguin Books</publisher>
|
67
|
+
<creationdate>2004</creationdate>
|
68
|
+
<format>xvi, 254 p. ; 22 cm.</format>
|
69
|
+
<identifier>$$Cisbn$$V0143039008</identifier>
|
70
|
+
<subject>British -- Foreign countries -- Fiction; Women travelers -- Fiction; Older women -- Fiction; Travelers -- Fiction; Retirees -- Fiction; Aunts -- Fiction; Humorous stories</subject>
|
71
|
+
<language>eng</language>
|
72
|
+
<relation>$$Cseries $$VPenguin classics</relation>
|
73
|
+
<source>nyu_aleph</source>
|
74
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(PR6013.R44 T7 2004 )$$Sunavailable$$31$$41$$5N$$61$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
75
|
+
<lds02>nyu_aleph000062856</lds02>
|
76
|
+
<lds01>NYU</lds01>
|
77
|
+
<availinstitution>$$INYU$$Sunavailable</availinstitution>
|
78
|
+
<availpnx>unavailable</availpnx>
|
79
|
+
</display>
|
80
|
+
<links>
|
81
|
+
<openurl>$$Topenurl_journal</openurl>
|
82
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
83
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
84
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
85
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
86
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
87
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
88
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
89
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
90
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
91
|
+
</links>
|
92
|
+
<search>
|
93
|
+
<creatorcontrib>Graham, Greene 1904-1991.</creatorcontrib>
|
94
|
+
<creatorcontrib>Greene, Graham, 1904-1991.</creatorcontrib>
|
95
|
+
<creatorcontrib>Greene, G</creatorcontrib>
|
96
|
+
<creatorcontrib>Graham Greene ; introduction by Gloria Emerson.</creatorcontrib>
|
97
|
+
<title>Travels with my aunt /</title>
|
98
|
+
<subject>British Foreign countries Fiction</subject>
|
99
|
+
<subject>Women travelers Fiction</subject>
|
100
|
+
<subject>Older women Fiction</subject>
|
101
|
+
<subject>Travelers Fiction</subject>
|
102
|
+
<subject>Retirees Fiction</subject>
|
103
|
+
<subject>Aunts Fiction</subject>
|
104
|
+
<subject>Humorous stories</subject>
|
105
|
+
<general>Penguin Books,</general>
|
106
|
+
<general>"Graham Greene centennial, 1904-2004"--Cover.</general>
|
107
|
+
<sourceid>nyu_aleph</sourceid>
|
108
|
+
<recordid>nyu_aleph000062856</recordid>
|
109
|
+
<isbn>0143039008</isbn>
|
110
|
+
<rsrctype>book</rsrctype>
|
111
|
+
<creationdate>2004</creationdate>
|
112
|
+
<creationdate>1969</creationdate>
|
113
|
+
<addtitle>Penguin classics</addtitle>
|
114
|
+
<searchscope>BOBST</searchscope>
|
115
|
+
<searchscope>BOBST Main Collection</searchscope>
|
116
|
+
<searchscope>nyu_aleph</searchscope>
|
117
|
+
<searchscope>NYU</searchscope>
|
118
|
+
<scope>BOBST</scope>
|
119
|
+
<scope>BOBST Main Collection</scope>
|
120
|
+
<scope>nyu_aleph</scope>
|
121
|
+
<scope>NYU</scope>
|
122
|
+
<lsr02>Penguin Books,</lsr02>
|
123
|
+
</search>
|
124
|
+
<sort>
|
125
|
+
<title>Travels with my aunt /</title>
|
126
|
+
<creationdate>2004</creationdate>
|
127
|
+
<author>Greene, Graham, 1904-1991.</author>
|
128
|
+
<lso01>2004</lso01>
|
129
|
+
</sort>
|
130
|
+
<facets>
|
131
|
+
<language>eng</language>
|
132
|
+
<creationdate>2004</creationdate>
|
133
|
+
<topic>British–Foreign countries–Fiction</topic>
|
134
|
+
<topic>Women travelers–Fiction</topic>
|
135
|
+
<topic>Older women–Fiction</topic>
|
136
|
+
<topic>Travelers–Fiction</topic>
|
137
|
+
<topic>Retirees–Fiction</topic>
|
138
|
+
<topic>Aunts–Fiction</topic>
|
139
|
+
<collection>BOBST</collection>
|
140
|
+
<prefilter>books</prefilter>
|
141
|
+
<rsrctype>books</rsrctype>
|
142
|
+
<creatorcontrib>Greene, G</creatorcontrib>
|
143
|
+
<genre>Fiction</genre>
|
144
|
+
<genre>Humorous stories</genre>
|
145
|
+
<library>BOBST</library>
|
146
|
+
<lfc01>Main Collection</lfc01>
|
147
|
+
<classificationlcc>P - Language and literature.–English literature</classificationlcc>
|
148
|
+
<frbrgroupid>44552541</frbrgroupid>
|
149
|
+
<frbrtype>5</frbrtype>
|
150
|
+
</facets>
|
151
|
+
<dedup>
|
152
|
+
<t>1</t>
|
153
|
+
<c1>2004559272</c1>
|
154
|
+
<c2>0143039008</c2>
|
155
|
+
<c3>travelswithmyaunt</c3>
|
156
|
+
<c4>2004</c4>
|
157
|
+
<f1>2004559272</f1>
|
158
|
+
<f3>0143039008</f3>
|
159
|
+
<f5>travelswithmyaunt</f5>
|
160
|
+
<f6>2004</f6>
|
161
|
+
<f7>travels with my aunt</f7>
|
162
|
+
<f8>nyu</f8>
|
163
|
+
<f9>xvi, 254 p. ;</f9>
|
164
|
+
<f10>penguin books</f10>
|
165
|
+
<f11>greene graham 1904 1991</f11>
|
166
|
+
</dedup>
|
167
|
+
<frbr>
|
168
|
+
<t>1</t>
|
169
|
+
<k1>$$Kgreene graham 1904 1991$$AA</k1>
|
170
|
+
<k3>$$Kbooktravels with my aunt$$AT</k3>
|
171
|
+
</frbr>
|
172
|
+
<delivery>
|
173
|
+
<institution>NYU</institution>
|
174
|
+
<delcategory>Physical Item</delcategory>
|
175
|
+
</delivery>
|
176
|
+
<enrichment>
|
177
|
+
<classificationlcc>PR6013.R44</classificationlcc>
|
178
|
+
</enrichment>
|
179
|
+
<ranking>
|
180
|
+
<booster1>1</booster1>
|
181
|
+
<booster2>1</booster2>
|
182
|
+
</ranking>
|
183
|
+
<addata>
|
184
|
+
<aulast>Greene</aulast>
|
185
|
+
<aufirst>Graham,</aufirst>
|
186
|
+
<au>Greene, Graham, 1904-1991</au>
|
187
|
+
<btitle>Travels with my aunt</btitle>
|
188
|
+
<seriestitle>Penguin classics</seriestitle>
|
189
|
+
<date>2004</date>
|
190
|
+
<risdate>2004.</risdate>
|
191
|
+
<isbn>0143039008</isbn>
|
192
|
+
<format>book</format>
|
193
|
+
<genre>book</genre>
|
194
|
+
<ristype>BOOK</ristype>
|
195
|
+
<notes>Includes bibliographical references (p. xv-xvi).</notes>
|
196
|
+
<cop>New York</cop>
|
197
|
+
<pub>Penguin Books</pub>
|
198
|
+
<oclcid>56781200</oclcid>
|
199
|
+
<lccn>2004559272</lccn>
|
200
|
+
<lad01>Physical Item</lad01>
|
201
|
+
</addata>
|
202
|
+
</record>
|
203
|
+
</PrimoNMBib>
|
204
|
+
</sear:DOC>
|
205
|
+
</DOCSET>
|
206
|
+
</RESULT>
|
207
|
+
</JAGROOT>
|
208
|
+
</SEGMENTS>
|
209
|
+
</getRecordReturn></ns1:getRecordResponse></soapenv:Body></soapenv:Envelope>
|
210
|
+
http_version:
|
211
|
+
recorded_at: Fri, 12 Oct 2012 17:59:16 GMT
|
212
|
+
recorded_with: VCR 2.2.5
|
@@ -0,0 +1,347 @@
|
|
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: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"><fullViewRequest xmlns='http://www.exlibris.com/primo/xsd/wsRequest'><PrimoSearchRequest xmlns='http://www.exlibris.com/primo/xsd/search/request'><QueryTerms><BoolOpeator>AND</BoolOpeator></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled><HighlightingEnabled>false</HighlightingEnabled></PrimoSearchRequest><docId>dedupmrg17343091</docId><institution>NYU</institution></fullViewRequest></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: 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:16 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:getRecordResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://www.exlibris.com/primo/xsd/wsRequest"><getRecordReturn xsi:type="soapenc:string" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"><SEGMENTS xmlns="http://www.exlibrisgroup.com/xsd/jaguar/search">
|
46
|
+
<JAGROOT>
|
47
|
+
<RESULT>
|
48
|
+
<DOCSET TOTALHITS="1">
|
49
|
+
<sear:DOC LOCAL="true" xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib" xmlns:sear="http://www.exlibrisgroup.com/xsd/jaguar/search">
|
50
|
+
<PrimoNMBib>
|
51
|
+
<record>
|
52
|
+
<control>
|
53
|
+
<sourcerecordid>$$V000932393$$Onyu_aleph000932393</sourcerecordid>
|
54
|
+
<sourcerecordid>$$V002959842$$Onyu_aleph002959842</sourcerecordid>
|
55
|
+
<sourceid>$$Vnyu_aleph$$Onyu_aleph000932393</sourceid>
|
56
|
+
<sourceid>$$Vnyu_aleph$$Onyu_aleph002959842</sourceid>
|
57
|
+
<recordid>dedupmrg17343091</recordid>
|
58
|
+
<originalsourceid>$$VNYU01$$Onyu_aleph000932393</originalsourceid>
|
59
|
+
<originalsourceid>$$VNYU01$$Onyu_aleph002959842</originalsourceid>
|
60
|
+
<sourceformat>$$VMARC21$$Onyu_aleph000932393</sourceformat>
|
61
|
+
<sourceformat>$$VMARC21$$Onyu_aleph002959842</sourceformat>
|
62
|
+
<sourcesystem>$$VAleph$$Onyu_aleph000932393</sourcesystem>
|
63
|
+
<sourcesystem>$$VAleph$$Onyu_aleph002959842</sourcesystem>
|
64
|
+
<ilsapiid>$$VNYU01000932393$$Onyu_aleph000932393</ilsapiid>
|
65
|
+
<ilsapiid>$$VNYU01002959842$$Onyu_aleph002959842</ilsapiid>
|
66
|
+
</control>
|
67
|
+
<display>
|
68
|
+
<type>journal</type>
|
69
|
+
<title>The New York times</title>
|
70
|
+
<publisher>New-York N.Y. : H.J. Raymond &amp; Co.</publisher>
|
71
|
+
<creationdate>1857-</creationdate>
|
72
|
+
<subject>New York (N.Y.) -- Newspapers; New York County (N.Y.) -- Newspapers; Electronic journals</subject>
|
73
|
+
<language>eng</language>
|
74
|
+
<relation>$$Cearlier_title $$VNew-York daily times</relation>
|
75
|
+
<rights>Access is restricted to users affiliated with licensed institutions.</rights>
|
76
|
+
<source>$$Vnyu_aleph$$Onyu_aleph000932393</source>
|
77
|
+
<source>$$Vnyu_aleph$$Onyu_aleph002959842</source>
|
78
|
+
<availlibrary>$$INYU$$LBWEB$$1Internet Resources$$2(Newspaper Electronic access )$$Scheck_holdings$$XNYU50$$YBWEB$$ZBNYUI$$Onyu_aleph000932393</availlibrary>
|
79
|
+
<availlibrary>$$INYU$$LBOBST$$1Microform$$2(Film/Per Non-circulating )$$Scheck_holdings$$5N$$XNYU50$$YBOBST$$ZMFORM$$Onyu_aleph002959842</availlibrary>
|
80
|
+
<availlibrary>$$ICU$$LCU$$1Microform Periodicals$$2(Non-circulating )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YCU$$ZMICRP$$Onyu_aleph002959842</availlibrary>
|
81
|
+
<availlibrary>$$ICU$$LCU$$1Periodicals$$2(Non-circulating )$$Savailable$$31$$40$$5N$$60$$XNYU50$$YCU$$ZPERIO$$Onyu_aleph002959842</availlibrary>
|
82
|
+
<availlibrary>$$INYU$$LBWEB$$1Internet Resources$$2(Newspaper Electronic access )$$Scheck_holdings$$XNYU50$$YBWEB$$ZBNYUI$$Onyu_aleph002959842</availlibrary>
|
83
|
+
<availlibrary>$$INYU$$LREI$$1Reference$$2(Newspaper Non-circulating )$$Scheck_holdings$$XNYU50$$YNREI$$ZREF$$Onyu_aleph002959842</availlibrary>
|
84
|
+
<availlibrary>$$INS$$LNSSC$$1Periodicals$$2(Non-circulating )$$Scheck_holdings$$XNYU50$$YTNSSC$$ZPERIO$$Onyu_aleph002959842</availlibrary>
|
85
|
+
<availinstitution>$$ICU$$Savailable</availinstitution>
|
86
|
+
<availinstitution>$$INYU$$Scheck_holdings</availinstitution>
|
87
|
+
<availinstitution>$$INS$$Scheck_holdings</availinstitution>
|
88
|
+
<availpnx>available</availpnx>
|
89
|
+
<lds01>NYU</lds01>
|
90
|
+
<lds01>NYUAD</lds01>
|
91
|
+
<lds01>NYU</lds01>
|
92
|
+
<lds01>CU</lds01>
|
93
|
+
<lds01>NS</lds01>
|
94
|
+
<lds01>NYUAD</lds01>
|
95
|
+
<lds02>nyu_aleph000932393</lds02>
|
96
|
+
<lds02>nyu_aleph002959842</lds02>
|
97
|
+
</display>
|
98
|
+
<links>
|
99
|
+
<linktoholdings>$$V$$Taleph_holdings$$Onyu_aleph000932393</linktoholdings>
|
100
|
+
<linktoholdings>$$V$$Taleph_holdings$$Onyu_aleph002959842</linktoholdings>
|
101
|
+
<backlink>$$V$$Taleph_backlink$$DMore bibliographic information$$Onyu_aleph000932393</backlink>
|
102
|
+
<backlink>$$V$$Taleph_backlink$$DMore bibliographic information$$Onyu_aleph002959842</backlink>
|
103
|
+
<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://proquest.umi.com/pqdweb?RQT=318&amp;VName=PQD&amp;clientid=9269&amp;pmid=7818$$D1995 - Current Access via Proquest$$INYU$$Onyu_aleph000932393</linktorsrc>
|
104
|
+
<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://proquest.umi.com/pqdweb?RQT=318&amp;VName=PQD&amp;clientid=9269&amp;pmid=7818$$D1995 - Current Access via Proquest$$INYUAD$$Onyu_aleph000932393</linktorsrc>
|
105
|
+
<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://www.nytimes.com/$$DOnline version:$$INYU$$Onyu_aleph002959842</linktorsrc>
|
106
|
+
<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://www.nytimes.com/$$DOnline version:$$INYUAD$$Onyu_aleph002959842</linktorsrc>
|
107
|
+
<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://web.lexis-nexis.com/universe$$DOnline access via Lexis-Nexis Academic Universe: Full-text available from 1980-$$INYU$$Onyu_aleph002959842</linktorsrc>
|
108
|
+
<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://web.lexis-nexis.com/universe$$DOnline access via Lexis-Nexis Academic Universe: Full-text available from 1980-$$INYUAD$$Onyu_aleph002959842</linktorsrc>
|
109
|
+
<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://www.umi.com/pqdauto$$DOnline access via ProQuest:$$INYU$$Onyu_aleph002959842</linktorsrc>
|
110
|
+
<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://www.umi.com/pqdauto$$DOnline access via ProQuest:$$INYUAD$$Onyu_aleph002959842</linktorsrc>
|
111
|
+
<openurl>$$V$$Topenurl_journal$$Onyu_aleph000932393</openurl>
|
112
|
+
<openurl>$$V$$Topenurl_journal$$Onyu_aleph002959842</openurl>
|
113
|
+
<openurlfulltext>$$V$$Topenurlfull_journal$$Onyu_aleph000932393</openurlfulltext>
|
114
|
+
<openurlfulltext>$$V$$Topenurlfull_journal$$Onyu_aleph002959842</openurlfulltext>
|
115
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
116
|
+
<linktouc>$$Tworldcat_oclc$$DCheck other libraries (WorldCat®)</linktouc>
|
117
|
+
</links>
|
118
|
+
<search>
|
119
|
+
<creatorcontrib>Mellon Project.</creatorcontrib>
|
120
|
+
<creatorcontrib>ProQuest Information and Learning Company.</creatorcontrib>
|
121
|
+
<title>The New York times</title>
|
122
|
+
<subject>New York (N.Y.) Newspapers</subject>
|
123
|
+
<subject>New York County (N.Y.) Newspapers</subject>
|
124
|
+
<subject>Electronic journals</subject>
|
125
|
+
<subject>Niyū Yūrk (N.Y.)</subject>
|
126
|
+
<subject>Niu-yüeh (N.Y.)</subject>
|
127
|
+
<subject>Nyuyok (N.Y.)</subject>
|
128
|
+
<subject>Nyu-Yorḳ (N.Y.)</subject>
|
129
|
+
<subject>New York City (N.Y.)</subject>
|
130
|
+
<subject>New Amsterdam (N.Y.)</subject>
|
131
|
+
<subject>Nu Yorḳ (N.Y.)</subject>
|
132
|
+
<subject>Nuyorḳ (N.Y.)</subject>
|
133
|
+
<subject>Novi Jork (N.Y.)</subject>
|
134
|
+
<subject>Nowy Jork (N.Y.)</subject>
|
135
|
+
<subject>Nova Iorque (N.Y.)</subject>
|
136
|
+
<subject>Ni͡u Ĭork (N.Y.)</subject>
|
137
|
+
<subject>Nueva York (N.Y.)</subject>
|
138
|
+
<general>H.J. Raymond &amp; Co.],</general>
|
139
|
+
<general>Latest issue consulted: Vol. 151, no. 52,028 (Feb. 13, 2002).</general>
|
140
|
+
<general>[electronic resource].</general>
|
141
|
+
<general>United States New York New York New York.</general>
|
142
|
+
<sourceid>nyu_aleph</sourceid>
|
143
|
+
<recordid>nyu_aleph000932393</recordid>
|
144
|
+
<isbn>0362-4331</isbn>
|
145
|
+
<rsrctype>journal</rsrctype>
|
146
|
+
<creationdate>1857</creationdate>
|
147
|
+
<creationdate>9999</creationdate>
|
148
|
+
<addtitle>New York times on the web.</addtitle>
|
149
|
+
<addtitle>New York times large type weekly</addtitle>
|
150
|
+
<addtitle>New-York semi-weekly times</addtitle>
|
151
|
+
<addtitle>New-York weekly times</addtitle>
|
152
|
+
<addtitle>Semi-weekly times (New York, N.Y.)</addtitle>
|
153
|
+
<addtitle>New York times on the Web</addtitle>
|
154
|
+
<addtitle>Little times</addtitle>
|
155
|
+
<addtitle>New-York daily times</addtitle>
|
156
|
+
<searchscope>BWEB</searchscope>
|
157
|
+
<searchscope>BWEB Internet Resources</searchscope>
|
158
|
+
<searchscope>nyu_aleph</searchscope>
|
159
|
+
<searchscope>NYU</searchscope>
|
160
|
+
<searchscope>NYUAD</searchscope>
|
161
|
+
<searchscope>BOBST</searchscope>
|
162
|
+
<searchscope>IFA</searchscope>
|
163
|
+
<searchscope>IFAC</searchscope>
|
164
|
+
<searchscope>ISAW</searchscope>
|
165
|
+
<searchscope>COUR</searchscope>
|
166
|
+
<searchscope>REI</searchscope>
|
167
|
+
<scope>BWEB</scope>
|
168
|
+
<scope>BWEB Internet Resources</scope>
|
169
|
+
<scope>nyu_aleph</scope>
|
170
|
+
<scope>NYU</scope>
|
171
|
+
<scope>NYUAD</scope>
|
172
|
+
<scope>BOBST</scope>
|
173
|
+
<scope>IFA</scope>
|
174
|
+
<scope>IFAC</scope>
|
175
|
+
<scope>ISAW</scope>
|
176
|
+
<scope>COUR</scope>
|
177
|
+
<scope>REI</scope>
|
178
|
+
<alttitle>Combined New York morning newspapers</alttitle>
|
179
|
+
<alttitle>Combined New York Sunday newspapers</alttitle>
|
180
|
+
<lsr01>Newspaper</lsr01>
|
181
|
+
<lsr02>H.J. Raymond &amp; Co.],</lsr02>
|
182
|
+
<title>The New York times.</title>
|
183
|
+
<subject>History</subject>
|
184
|
+
<subject>History Africa</subject>
|
185
|
+
<subject>History East Asia</subject>
|
186
|
+
<subject>History Europe</subject>
|
187
|
+
<subject>History Latin America and Caribbean</subject>
|
188
|
+
<subject>History Middle East</subject>
|
189
|
+
<subject>History North America</subject>
|
190
|
+
<subject>History Slavic</subject>
|
191
|
+
<subject>Dance</subject>
|
192
|
+
<subject>Performing arts</subject>
|
193
|
+
<subject>Theater</subject>
|
194
|
+
<subject>Government information New York State and City Recommended</subject>
|
195
|
+
<subject>Electronic indexes</subject>
|
196
|
+
<subject>Electronic newspapers</subject>
|
197
|
+
<subject>Dancing</subject>
|
198
|
+
<subject>Information, Government</subject>
|
199
|
+
<subject>Show business</subject>
|
200
|
+
<subject>Professional theater</subject>
|
201
|
+
<subject>Theatre</subject>
|
202
|
+
<subject>Dramatics</subject>
|
203
|
+
<recordid>nyu_aleph002959842</recordid>
|
204
|
+
<addtitle>New York semi-weekly times</addtitle>
|
205
|
+
<addtitle>New York times on the web</addtitle>
|
206
|
+
<searchscope>BOBST Microform</searchscope>
|
207
|
+
<searchscope>CU</searchscope>
|
208
|
+
<searchscope>CU Microform Periodicals</searchscope>
|
209
|
+
<searchscope>CU Periodicals</searchscope>
|
210
|
+
<searchscope>NREI</searchscope>
|
211
|
+
<searchscope>NREI Reference</searchscope>
|
212
|
+
<searchscope>TNSSC</searchscope>
|
213
|
+
<searchscope>TNSSC Periodicals</searchscope>
|
214
|
+
<searchscope>NS</searchscope>
|
215
|
+
<searchscope>NSSC</searchscope>
|
216
|
+
<searchscope>CPER</searchscope>
|
217
|
+
<scope>BOBST Microform</scope>
|
218
|
+
<scope>CU</scope>
|
219
|
+
<scope>CU Microform Periodicals</scope>
|
220
|
+
<scope>CU Periodicals</scope>
|
221
|
+
<scope>NREI</scope>
|
222
|
+
<scope>NREI Reference</scope>
|
223
|
+
<scope>TNSSC</scope>
|
224
|
+
<scope>TNSSC Periodicals</scope>
|
225
|
+
<scope>NS</scope>
|
226
|
+
<scope>NSSC</scope>
|
227
|
+
<scope>CPER</scope>
|
228
|
+
<alttitle>N.Y. times</alttitle>
|
229
|
+
<lsr01>Film/Per</lsr01>
|
230
|
+
</search>
|
231
|
+
<sort>
|
232
|
+
<title>New York times</title>
|
233
|
+
<creationdate>1857</creationdate>
|
234
|
+
<lso01>1857</lso01>
|
235
|
+
</sort>
|
236
|
+
<facets>
|
237
|
+
<language>eng</language>
|
238
|
+
<creationdate>1857</creationdate>
|
239
|
+
<topic>New York (N.Y.)–Newspapers</topic>
|
240
|
+
<topic>New York County (N.Y.)–Newspapers</topic>
|
241
|
+
<toplevel>available</toplevel>
|
242
|
+
<toplevel>online_resources</toplevel>
|
243
|
+
<prefilter>journals</prefilter>
|
244
|
+
<rsrctype>journals</rsrctype>
|
245
|
+
<genre>Newspapers</genre>
|
246
|
+
<genre>Electronic journals</genre>
|
247
|
+
<library>BOBST</library>
|
248
|
+
<library>IFA</library>
|
249
|
+
<library>IFAC</library>
|
250
|
+
<library>ISAW</library>
|
251
|
+
<library>COUR</library>
|
252
|
+
<library>REI</library>
|
253
|
+
<lfc01>Internet Resources</lfc01>
|
254
|
+
<lfc04>United States</lfc04>
|
255
|
+
<lfc04>New York</lfc04>
|
256
|
+
<lfc04>New York.</lfc04>
|
257
|
+
<topic>History</topic>
|
258
|
+
<topic>History–Africa</topic>
|
259
|
+
<topic>History–East Asia</topic>
|
260
|
+
<topic>History–Europe</topic>
|
261
|
+
<topic>History–Latin America and Caribbean</topic>
|
262
|
+
<topic>History–Middle East</topic>
|
263
|
+
<topic>History–North America</topic>
|
264
|
+
<topic>History–Slavic</topic>
|
265
|
+
<topic>Dance</topic>
|
266
|
+
<topic>Performing arts</topic>
|
267
|
+
<topic>Theater</topic>
|
268
|
+
<topic>Government information–New York State and City–Recommended</topic>
|
269
|
+
<collection>BOBST</collection>
|
270
|
+
<collection>CU</collection>
|
271
|
+
<collection>NREI</collection>
|
272
|
+
<collection>NSSC</collection>
|
273
|
+
<genre>Electronic indexes</genre>
|
274
|
+
<genre>Electronic newspapers</genre>
|
275
|
+
<library>NSSC</library>
|
276
|
+
<library>CPER</library>
|
277
|
+
<lfc01>Microform</lfc01>
|
278
|
+
<lfc01>Microform Periodicals</lfc01>
|
279
|
+
<lfc01>Periodicals</lfc01>
|
280
|
+
<lfc01>Reference</lfc01>
|
281
|
+
<frbrgroupid>21490924</frbrgroupid>
|
282
|
+
<frbrtype>6</frbrtype>
|
283
|
+
</facets>
|
284
|
+
<dedup>
|
285
|
+
<t>2</t>
|
286
|
+
<c2>0362-4331</c2>
|
287
|
+
<c3>newyorktimes</c3>
|
288
|
+
<c4>new</c4>
|
289
|
+
<f4>0362-4331</f4>
|
290
|
+
<f6>1857</f6>
|
291
|
+
<f7>new york times</f7>
|
292
|
+
<f8>new york times</f8>
|
293
|
+
<f9>nyu</f9>
|
294
|
+
<f10>new</f10>
|
295
|
+
</dedup>
|
296
|
+
<frbr>
|
297
|
+
<t>1</t>
|
298
|
+
<k3>$$Knew york times$$AT</k3>
|
299
|
+
</frbr>
|
300
|
+
<delivery>
|
301
|
+
<institution>$$VNYU$$Onyu_aleph000932393</institution>
|
302
|
+
<institution>$$VNYUAD$$Onyu_aleph000932393</institution>
|
303
|
+
<delcategory>$$VOnline Resource$$Onyu_aleph000932393</delcategory>
|
304
|
+
<institution>$$VNYU$$Onyu_aleph002959842</institution>
|
305
|
+
<institution>$$VCU$$Onyu_aleph002959842</institution>
|
306
|
+
<institution>$$VNS$$Onyu_aleph002959842</institution>
|
307
|
+
<institution>$$VNYUAD$$Onyu_aleph002959842</institution>
|
308
|
+
<delcategory>$$VOnline Resource$$Onyu_aleph002959842</delcategory>
|
309
|
+
</delivery>
|
310
|
+
<enrichment>
|
311
|
+
<classificationlcc>Newspaper</classificationlcc>
|
312
|
+
</enrichment>
|
313
|
+
<ranking>
|
314
|
+
<booster1>1</booster1>
|
315
|
+
<booster2>1</booster2>
|
316
|
+
</ranking>
|
317
|
+
<addata>
|
318
|
+
<jtitle>The New York times</jtitle>
|
319
|
+
<addtitle>Combined New York morning newspapers</addtitle>
|
320
|
+
<date>1857</date>
|
321
|
+
<risdate>1857-</risdate>
|
322
|
+
<coden>NYTIAO</coden>
|
323
|
+
<format>journal</format>
|
324
|
+
<genre>journal</genre>
|
325
|
+
<ristype>JOUR</ristype>
|
326
|
+
<cop>New-York [N.Y.</cop>
|
327
|
+
<pub>H.J. Raymond &amp; Co.]</pub>
|
328
|
+
<lad01>BWEB</lad01>
|
329
|
+
<lad01>Online Resource</lad01>
|
330
|
+
<jtitle>The New York times.</jtitle>
|
331
|
+
<stitle>N.Y. times</stitle>
|
332
|
+
<issn>0362-4331</issn>
|
333
|
+
<oclcid>1645522</oclcid>
|
334
|
+
<lccn>sn 78004456</lccn>
|
335
|
+
<lad01>BOBSTBOBSTBWEBNREICUCUTNSSC</lad01>
|
336
|
+
</addata>
|
337
|
+
</record>
|
338
|
+
</PrimoNMBib>
|
339
|
+
</sear:DOC>
|
340
|
+
</DOCSET>
|
341
|
+
</RESULT>
|
342
|
+
</JAGROOT>
|
343
|
+
</SEGMENTS>
|
344
|
+
</getRecordReturn></ns1:getRecordResponse></soapenv:Body></soapenv:Envelope>
|
345
|
+
http_version:
|
346
|
+
recorded_at: Fri, 12 Oct 2012 17:59:16 GMT
|
347
|
+
recorded_with: VCR 2.2.5
|