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,224 @@
|
|
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>ebrroutebr10416506</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>ebr10416506</sourcerecordid>
|
54
|
+
<sourceid>ebrrout</sourceid>
|
55
|
+
<recordid>ebrroutebr10416506</recordid>
|
56
|
+
<ilsapiid>ebr10416506</ilsapiid>
|
57
|
+
<sourceformat>MARC Exchange</sourceformat>
|
58
|
+
<sourcesystem>Other</sourcesystem>
|
59
|
+
</control>
|
60
|
+
<display>
|
61
|
+
<type>book</type>
|
62
|
+
<title>Nationalisms and politics in Turkey political Islam, Kemalism, and the Kurdish issue</title>
|
63
|
+
<contributor>Marlies Casier; Joost Jongerden</contributor>
|
64
|
+
<publisher>Milton Park, Abingdon, Oxon ; New York : Routledge</publisher>
|
65
|
+
<creationdate>2011</creationdate>
|
66
|
+
<format>xiii, 221 p. ; 24 cm..</format>
|
67
|
+
<subject>Kurds -- Turkey -- Social conditions; Nationalism -- Turkey; Islam and politics -- Turkey; Turkey -- Politics and government -- 1980-; Turkey -- Ethnic relations -- Political aspects; Electronic books</subject>
|
68
|
+
<language>eng</language>
|
69
|
+
<relation>$$Cseries $$VRoutledge studies in Middle Eastern politics ; 26</relation>
|
70
|
+
<source>ebrrout</source>
|
71
|
+
<lds02>ebrroutebr10416506</lds02>
|
72
|
+
<lds01>NYU</lds01>
|
73
|
+
<lds01>NYUAD</lds01>
|
74
|
+
</display>
|
75
|
+
<links>
|
76
|
+
<openurl>$$Topenurl_journal</openurl>
|
77
|
+
<linktorsrc>$$Uhttps://ezproxy.library.nyu.edu/login?url=http://site.ebrary.com/lib/nyulibrary/Doc?id=10416506$$DAn electronic book accessible through the World Wide Web; click to view$$INYU</linktorsrc>
|
78
|
+
<linktorsrc>$$Uhttps://ezproxy.library.nyu.edu/login?url=http://site.ebrary.com/lib/nyulibrary/Doc?id=10416506$$DAn electronic book accessible through the World Wide Web; click to view$$INYUAD</linktorsrc>
|
79
|
+
<linktorsrc>$$Uhttps://ezproxy.library.nyu.edu/login?url=http://nyu.etailer.dpsl.net/home/html/moreinfo.asp?isbn=0203847067$$DOnline Version$$INYU</linktorsrc>
|
80
|
+
<linktorsrc>$$Uhttps://ezproxy.library.nyu.edu/login?url=http://nyu.etailer.dpsl.net/home/html/moreinfo.asp?isbn=0203847067$$DOnline Version$$INYUAD$$DOnline Version</linktorsrc>
|
81
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
82
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
83
|
+
<linktouc>$$Tworldcat_oclc$$DCheck other libraries (WorldCat®)</linktouc>
|
84
|
+
</links>
|
85
|
+
<search>
|
86
|
+
<creatorcontrib>edited by Marlies Casier and Joost Jongerden.</creatorcontrib>
|
87
|
+
<creatorcontrib>Marlies Casier</creatorcontrib>
|
88
|
+
<creatorcontrib>Joost Jongerden</creatorcontrib>
|
89
|
+
<creatorcontrib>Casier, M</creatorcontrib>
|
90
|
+
<creatorcontrib>Jongerden, J</creatorcontrib>
|
91
|
+
<creatorcontrib>ebrary, Inc.</creatorcontrib>
|
92
|
+
<title>Nationalisms and politics in Turkey political Islam, Kemalism, and the Kurdish issue /</title>
|
93
|
+
<subject>Kurds Turkey Social conditions</subject>
|
94
|
+
<subject>Nationalism Turkey</subject>
|
95
|
+
<subject>Islam and politics Turkey</subject>
|
96
|
+
<subject>Turkey Politics and government 1980-</subject>
|
97
|
+
<subject>Turkey Ethnic relations Political aspects</subject>
|
98
|
+
<subject>Electronic books</subject>
|
99
|
+
<subject>Ebooks</subject>
|
100
|
+
<subject>E-books</subject>
|
101
|
+
<subject>Online books</subject>
|
102
|
+
<general>Routledge,</general>
|
103
|
+
<general>[electronic resource] :</general>
|
104
|
+
<sourceid>ebrrout</sourceid>
|
105
|
+
<recordid>ebrroutebr10416506</recordid>
|
106
|
+
<isbn>9780415583459</isbn>
|
107
|
+
<isbn>0415583454</isbn>
|
108
|
+
<isbn>9780203847060</isbn>
|
109
|
+
<isbn>0203847067</isbn>
|
110
|
+
<rsrctype>book</rsrctype>
|
111
|
+
<creationdate>2011</creationdate>
|
112
|
+
<addtitle>Routledge studies in Middle Eastern politics ; 26</addtitle>
|
113
|
+
<searchscope>ebrrout</searchscope>
|
114
|
+
<searchscope>NYU</searchscope>
|
115
|
+
<searchscope>NYUAD</searchscope>
|
116
|
+
<searchscope>BOBST</searchscope>
|
117
|
+
<searchscope>IFA</searchscope>
|
118
|
+
<searchscope>IFAC</searchscope>
|
119
|
+
<searchscope>ISAW</searchscope>
|
120
|
+
<searchscope>COUR</searchscope>
|
121
|
+
<searchscope>REI</searchscope>
|
122
|
+
<scope>ebrrout</scope>
|
123
|
+
<scope>NYU</scope>
|
124
|
+
<scope>NYUAD</scope>
|
125
|
+
<scope>BOBST</scope>
|
126
|
+
<scope>IFA</scope>
|
127
|
+
<scope>IFAC</scope>
|
128
|
+
<scope>ISAW</scope>
|
129
|
+
<scope>COUR</scope>
|
130
|
+
<scope>REI</scope>
|
131
|
+
<lsr02>Routledge,</lsr02>
|
132
|
+
</search>
|
133
|
+
<sort>
|
134
|
+
<title>Nationalisms and politics in Turkey political Islam, Kemalism, and the Kurdish issue /</title>
|
135
|
+
<creationdate>2011</creationdate>
|
136
|
+
<author>Casier, Marlies.</author>
|
137
|
+
</sort>
|
138
|
+
<facets>
|
139
|
+
<language>eng</language>
|
140
|
+
<creationdate>2011</creationdate>
|
141
|
+
<topic>Kurds–Turkey–Social conditions</topic>
|
142
|
+
<topic>Nationalism–Turkey</topic>
|
143
|
+
<topic>Islam and politics–Turkey</topic>
|
144
|
+
<topic>Turkey–Politics and government–1980-</topic>
|
145
|
+
<topic>Turkey–Ethnic relations–Political aspects</topic>
|
146
|
+
<toplevel>online_resources</toplevel>
|
147
|
+
<prefilter>books</prefilter>
|
148
|
+
<rsrctype>books</rsrctype>
|
149
|
+
<creatorcontrib>Casier, M</creatorcontrib>
|
150
|
+
<creatorcontrib>Jongerden, J</creatorcontrib>
|
151
|
+
<creatorcontrib>ebrary, Inc</creatorcontrib>
|
152
|
+
<genre>Electronic books</genre>
|
153
|
+
<library>BOBST</library>
|
154
|
+
<library>IFA</library>
|
155
|
+
<library>IFAC</library>
|
156
|
+
<library>ISAW</library>
|
157
|
+
<library>COUR</library>
|
158
|
+
<library>REI</library>
|
159
|
+
<frbrtype>2</frbrtype>
|
160
|
+
</facets>
|
161
|
+
<dedup>
|
162
|
+
<t>1</t>
|
163
|
+
<c1>2010003758</c1>
|
164
|
+
<c2>9780415583459;0415583454;9780203847060;0203847067</c2>
|
165
|
+
<c3>nationalismsandpolitrdishissue</c3>
|
166
|
+
<c4>2011</c4>
|
167
|
+
<f2>2010003758</f2>
|
168
|
+
<f4>9780415583459;0415583454;9780203847060;0203847067</f4>
|
169
|
+
<f5>nationalismsandpolitrdishissue</f5>
|
170
|
+
<f6>2011</f6>
|
171
|
+
<f7>nationalisms and politics in turkey political islam kemalism and the kurdish issue</f7>
|
172
|
+
<f8>enk</f8>
|
173
|
+
<f9>xiii, 221 p. ;</f9>
|
174
|
+
<f10>routledge</f10>
|
175
|
+
</dedup>
|
176
|
+
<frbr>
|
177
|
+
<t>1</t>
|
178
|
+
<k1>$$Kcasier marlies$$AA</k1>
|
179
|
+
<k1>$$Kjongerden joost$$AA</k1>
|
180
|
+
<k1>$$Kebrary inc$$AA</k1>
|
181
|
+
<k3>$$Kbooknationalisms and politics in turkey political islam kemalism and the kurdish issue$$AT</k3>
|
182
|
+
</frbr>
|
183
|
+
<delivery>
|
184
|
+
<institution>NYU</institution>
|
185
|
+
<institution>NYUAD</institution>
|
186
|
+
<delcategory>Online Resource</delcategory>
|
187
|
+
</delivery>
|
188
|
+
<enrichment>
|
189
|
+
<classificationlcc>JQ1805</classificationlcc>
|
190
|
+
</enrichment>
|
191
|
+
<ranking>
|
192
|
+
<booster1>1</booster1>
|
193
|
+
<booster2>1</booster2>
|
194
|
+
</ranking>
|
195
|
+
<addata>
|
196
|
+
<aulast>Casier</aulast>
|
197
|
+
<aufirst>Marlies</aufirst>
|
198
|
+
<addau>Casier, Marlies</addau>
|
199
|
+
<addau>Jongerden, Joost</addau>
|
200
|
+
<addau>ebrary, Inc</addau>
|
201
|
+
<btitle>Nationalisms and politics in Turkey political Islam, Kemalism, and the Kurdish issue</btitle>
|
202
|
+
<seriestitle>Routledge studies in Middle Eastern politics ; 26</seriestitle>
|
203
|
+
<date>2011</date>
|
204
|
+
<risdate>2011.</risdate>
|
205
|
+
<format>book</format>
|
206
|
+
<genre>book</genre>
|
207
|
+
<ristype>BOOK</ristype>
|
208
|
+
<notes>Includes bibliographical references and index.</notes>
|
209
|
+
<cop>Milton Park, Abingdon, Oxon %3B New York</cop>
|
210
|
+
<pub>Routledge</pub>
|
211
|
+
<oclcid>671755896</oclcid>
|
212
|
+
<lad01>Online Resource</lad01>
|
213
|
+
</addata>
|
214
|
+
</record>
|
215
|
+
</PrimoNMBib>
|
216
|
+
</sear:DOC>
|
217
|
+
</DOCSET>
|
218
|
+
</RESULT>
|
219
|
+
</JAGROOT>
|
220
|
+
</SEGMENTS>
|
221
|
+
</getRecordReturn></ns1:getRecordResponse></soapenv:Body></soapenv:Envelope>
|
222
|
+
http_version:
|
223
|
+
recorded_at: Fri, 12 Oct 2012 17:59:16 GMT
|
224
|
+
recorded_with: VCR 2.2.5
|
@@ -0,0 +1,194 @@
|
|
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_aleph000509288</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: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: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>000509288</sourcerecordid>
|
54
|
+
<sourceid>nyu_aleph</sourceid>
|
55
|
+
<recordid>nyu_aleph000509288</recordid>
|
56
|
+
<originalsourceid>NYU01</originalsourceid>
|
57
|
+
<ilsapiid>NYU01000509288</ilsapiid>
|
58
|
+
<sourceformat>MARC21</sourceformat>
|
59
|
+
<sourcesystem>Aleph</sourcesystem>
|
60
|
+
</control>
|
61
|
+
<display>
|
62
|
+
<type>book</type>
|
63
|
+
<title>Janáček's interconnected world : with a closer look at The cunning little vixen ; Evocations of an earthly nature : for orchestra</title>
|
64
|
+
<creator>Gregory Mertl</creator>
|
65
|
+
<publisher>Thesis (Ph. D.)--University of Rochester, 2005.</publisher>
|
66
|
+
<creationdate>2005</creationdate>
|
67
|
+
<format>vi, 40 leaves : music ; 28 cm. + 1 miniature score (60 p. ; 38 cm.)</format>
|
68
|
+
<subject>Janáček, Leoš, 1854-1928 -- Criticism and interpretation; Janáček, Leoš, 1854-1928. Příhody lišky Bystroušky; Orchestral music -- Scores</subject>
|
69
|
+
<description>Mertl, Gregory. Evocations of an earthly nature.</description>
|
70
|
+
<language>eng</language>
|
71
|
+
<relation>Mertl, Gregory. Evocations of an earthly nature.</relation>
|
72
|
+
<source>nyu_aleph</source>
|
73
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(ML410.J33 M47 2005a )$$Savailable$$31$$40$$5N$$62$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
74
|
+
<lds02>nyu_aleph000509288</lds02>
|
75
|
+
<lds01>NYU</lds01>
|
76
|
+
<availinstitution>$$INYU$$Savailable</availinstitution>
|
77
|
+
<availpnx>available</availpnx>
|
78
|
+
</display>
|
79
|
+
<links>
|
80
|
+
<openurl>$$Topenurl_journal</openurl>
|
81
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
82
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
83
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
84
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
85
|
+
</links>
|
86
|
+
<search>
|
87
|
+
<creatorcontrib>Gregory Mertl</creatorcontrib>
|
88
|
+
<creatorcontrib>Mertl, Gregory.</creatorcontrib>
|
89
|
+
<creatorcontrib>Mertl, G</creatorcontrib>
|
90
|
+
<creatorcontrib>by Gregory Mertl.</creatorcontrib>
|
91
|
+
<title>Janáček's interconnected world : with a closer look at The cunning little vixen ; Evocations of an earthly nature : for orchestra /</title>
|
92
|
+
<subject>Janáček, Leoš, 1854-1928 Criticism and interpretation</subject>
|
93
|
+
<subject>Janáček, Leoš, 1854-1928. Příhody lišky Bystroušky</subject>
|
94
|
+
<subject>Orchestral music Scores</subject>
|
95
|
+
<subject>Janáček, Leoš, 1854-1928. Prikli͡uchenii͡a Lisichki-plutovki</subject>
|
96
|
+
<subject>Janáček, Leoš, 1854-1928. Schlaue Füchslein</subject>
|
97
|
+
<subject>Janáček, Leoš, 1854-1928. Adventures of Bystrouška the vixen</subject>
|
98
|
+
<subject>Janáček, Leoš, 1854-1928. Petite renarde rusée</subject>
|
99
|
+
<subject>Janáček, Leoš, 1854-1928. Adventures of Fox Sharp-Ears</subject>
|
100
|
+
<subject>Janáček, Leoš, 1854-1928. Sly little fox</subject>
|
101
|
+
<subject>Janáček, Leoš, 1854-1928. Cunning little vixen</subject>
|
102
|
+
<subject>Orchestra music</subject>
|
103
|
+
<general>Includes abstract and vita.</general>
|
104
|
+
<general>Thesis (Ph. D.)--University of Rochester, 2005.</general>
|
105
|
+
<sourceid>nyu_aleph</sourceid>
|
106
|
+
<recordid>nyu_aleph000509288</recordid>
|
107
|
+
<rsrctype>book</rsrctype>
|
108
|
+
<creationdate>2005</creationdate>
|
109
|
+
<addtitle>Evocations of an earthly nature.</addtitle>
|
110
|
+
<searchscope>BOBST</searchscope>
|
111
|
+
<searchscope>BOBST Main Collection</searchscope>
|
112
|
+
<searchscope>nyu_aleph</searchscope>
|
113
|
+
<searchscope>NYU</searchscope>
|
114
|
+
<scope>BOBST</scope>
|
115
|
+
<scope>BOBST Main Collection</scope>
|
116
|
+
<scope>nyu_aleph</scope>
|
117
|
+
<scope>NYU</scope>
|
118
|
+
<lsr01>ML410.J33 M47 2005a</lsr01>
|
119
|
+
<lsr01>ML410 .J33 M47 2005a</lsr01>
|
120
|
+
</search>
|
121
|
+
<sort>
|
122
|
+
<title>Janáček's interconnected world : with a closer look at The cunning little vixen ; Evocations of an earthly nature : for orchestra /</title>
|
123
|
+
<creationdate>2005</creationdate>
|
124
|
+
<author>Mertl, Gregory.</author>
|
125
|
+
<lso01>2005</lso01>
|
126
|
+
</sort>
|
127
|
+
<facets>
|
128
|
+
<language>eng</language>
|
129
|
+
<creationdate>2005</creationdate>
|
130
|
+
<topic>Janáček, Leoš, 1854-1928–Criticism and interpretation</topic>
|
131
|
+
<topic>Janáček, Leoš, 1854-1928. Příhody lišky Bystroušky</topic>
|
132
|
+
<topic>Orchestral music–Scores</topic>
|
133
|
+
<collection>BOBST</collection>
|
134
|
+
<toplevel>available</toplevel>
|
135
|
+
<prefilter>books</prefilter>
|
136
|
+
<rsrctype>books</rsrctype>
|
137
|
+
<creatorcontrib>Mertl, G</creatorcontrib>
|
138
|
+
<genre>Scores</genre>
|
139
|
+
<library>BOBST</library>
|
140
|
+
<lfc01>Main Collection</lfc01>
|
141
|
+
<frbrgroupid>59923993</frbrgroupid>
|
142
|
+
<frbrtype>6</frbrtype>
|
143
|
+
</facets>
|
144
|
+
<dedup>
|
145
|
+
<t>1</t>
|
146
|
+
<c3>janaceksinterconnectrorchestra</c3>
|
147
|
+
<c4>2005</c4>
|
148
|
+
<f5>janaceksinterconnectrorchestra</f5>
|
149
|
+
<f6>2005</f6>
|
150
|
+
<f7>janaceks interconnected world with a closer look at the cunning little vixen evocations of an earthly nature for orchestra</f7>
|
151
|
+
<f8>xx</f8>
|
152
|
+
<f9>vi, 40 leaves :</f9>
|
153
|
+
<f11>mertl gregory</f11>
|
154
|
+
</dedup>
|
155
|
+
<frbr>
|
156
|
+
<t>1</t>
|
157
|
+
<k1>$$Kmertl gregory$$AA</k1>
|
158
|
+
<k3>$$Kbookjanacek's interconnected world with a closer look at the cunning little vixen evocations of an earthly nature for orchestra$$AT</k3>
|
159
|
+
</frbr>
|
160
|
+
<delivery>
|
161
|
+
<institution>NYU</institution>
|
162
|
+
<delcategory>Physical Item</delcategory>
|
163
|
+
</delivery>
|
164
|
+
<ranking>
|
165
|
+
<booster1>1</booster1>
|
166
|
+
<booster2>1</booster2>
|
167
|
+
</ranking>
|
168
|
+
<addata>
|
169
|
+
<aulast>Mertl</aulast>
|
170
|
+
<aufirst>Gregory</aufirst>
|
171
|
+
<au>Mertl, Gregory</au>
|
172
|
+
<addau>Mertl, Gregory</addau>
|
173
|
+
<btitle>Janáček's interconnected world : with a closer look at The cunning little vixen ; Evocations of an earthly nature : for orchestra</btitle>
|
174
|
+
<date>2005</date>
|
175
|
+
<risdate>2005.</risdate>
|
176
|
+
<format>dissertation</format>
|
177
|
+
<genre>dissertation</genre>
|
178
|
+
<genre>book</genre>
|
179
|
+
<ristype>THES</ristype>
|
180
|
+
<notes>Thesis (Ph. D.)--University of Rochester, 2005. ; Includes bibliographical references.</notes>
|
181
|
+
<lad01>BOBST</lad01>
|
182
|
+
<lad01>Physical Item</lad01>
|
183
|
+
</addata>
|
184
|
+
</record>
|
185
|
+
</PrimoNMBib>
|
186
|
+
</sear:DOC>
|
187
|
+
</DOCSET>
|
188
|
+
</RESULT>
|
189
|
+
</JAGROOT>
|
190
|
+
</SEGMENTS>
|
191
|
+
</getRecordReturn></ns1:getRecordResponse></soapenv:Body></soapenv:Envelope>
|
192
|
+
http_version:
|
193
|
+
recorded_at: Fri, 12 Oct 2012 17:59:17 GMT
|
194
|
+
recorded_with: VCR 2.2.5
|
@@ -0,0 +1,217 @@
|
|
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_aleph003149772</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: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: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>003149772</sourcerecordid>
|
54
|
+
<sourceid>nyu_aleph</sourceid>
|
55
|
+
<recordid>nyu_aleph003149772</recordid>
|
56
|
+
<originalsourceid>NYU01</originalsourceid>
|
57
|
+
<ilsapiid>NYU01003149772</ilsapiid>
|
58
|
+
<sourceformat>MARC21</sourceformat>
|
59
|
+
<sourcesystem>Aleph</sourcesystem>
|
60
|
+
</control>
|
61
|
+
<display>
|
62
|
+
<type>book</type>
|
63
|
+
<title>The risk management process : business strategy and tactics</title>
|
64
|
+
<creator>Christopher L. Culp</creator>
|
65
|
+
<publisher>New York : J. Wiley</publisher>
|
66
|
+
<creationdate>c2001</creationdate>
|
67
|
+
<format>xv, 606 p. : ill. ; 24 cm.</format>
|
68
|
+
<identifier>$$Cisbn$$V047140554X (alk. paper); $$Cisbn$$V9780471405542 (alk. paper)</identifier>
|
69
|
+
<subject>Risk management; Business planning</subject>
|
70
|
+
<language>eng</language>
|
71
|
+
<source>nyu_aleph</source>
|
72
|
+
<availlibrary>$$INYU$$LBOBST$$1Main Collection$$2(HD61 .C85 2001 )$$Savailable$$32$$40$$5N$$62$$XNYU50$$YBOBST$$ZMAIN</availlibrary>
|
73
|
+
<lds02>nyu_aleph003149772</lds02>
|
74
|
+
<lds01>NYU</lds01>
|
75
|
+
<availinstitution>$$INYU$$Savailable</availinstitution>
|
76
|
+
<availpnx>available</availpnx>
|
77
|
+
</display>
|
78
|
+
<links>
|
79
|
+
<openurl>$$Topenurl_journal</openurl>
|
80
|
+
<backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>
|
81
|
+
<thumbnail>$$Tamazon_thumb</thumbnail>
|
82
|
+
<linktotoc>$$Tamazon_toc$$DCheck for Amazon Search Inside</linktotoc>
|
83
|
+
<linktotoc>$$Uhttp://www.loc.gov/catdir/toc/onix07/2001024342.html$$DTable of Contents</linktotoc>
|
84
|
+
<openurlfulltext>$$Topenurlfull_journal</openurlfulltext>
|
85
|
+
<linktoholdings>$$Taleph_holdings</linktoholdings>
|
86
|
+
<linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>
|
87
|
+
<addlink>$$Uhttp://www.loc.gov/catdir/bios/wiley045/2001024342.html$$DContributor biographical information</addlink>
|
88
|
+
<addlink>$$Uhttp://www.loc.gov/catdir/description/wiley039/2001024342.html$$DPublisher description</addlink>
|
89
|
+
<addlink>$$Uhttp://www.loc.gov/catdir/toc/onix07/2001024342.html$$DTable of Contents</addlink>
|
90
|
+
<linktouc>$$Tamazon_uc$$DCheck Amazon</linktouc>
|
91
|
+
<linktouc>$$Tworldcat_isbn$$DCheck other libraries (WorldCat®)</linktouc>
|
92
|
+
<linktoexcerpt>$$Tsyndetics_excerpt$$DExcerpt from item</linktoexcerpt>
|
93
|
+
</links>
|
94
|
+
<search>
|
95
|
+
<creatorcontrib>Christopher L. Culp</creatorcontrib>
|
96
|
+
<creatorcontrib>Culp, Christopher L.</creatorcontrib>
|
97
|
+
<creatorcontrib>Culp, C</creatorcontrib>
|
98
|
+
<creatorcontrib>Christopher L. Culp.</creatorcontrib>
|
99
|
+
<title>The risk management process : business strategy and tactics /</title>
|
100
|
+
<subject>Risk management</subject>
|
101
|
+
<subject>Business planning</subject>
|
102
|
+
<subject>Corporate planning</subject>
|
103
|
+
<subject>Corporate strategy</subject>
|
104
|
+
<subject>Strategy, Corporate</subject>
|
105
|
+
<subject>Business enterprises Planning</subject>
|
106
|
+
<subject>Business plans</subject>
|
107
|
+
<subject>Corporations Planning</subject>
|
108
|
+
<general>J. Wiley,</general>
|
109
|
+
<sourceid>nyu_aleph</sourceid>
|
110
|
+
<recordid>nyu_aleph003149772</recordid>
|
111
|
+
<isbn>047140554X</isbn>
|
112
|
+
<isbn>9780471405542</isbn>
|
113
|
+
<rsrctype>book</rsrctype>
|
114
|
+
<creationdate>2001</creationdate>
|
115
|
+
<searchscope>BOBST</searchscope>
|
116
|
+
<searchscope>BOBST Main Collection</searchscope>
|
117
|
+
<searchscope>WEB</searchscope>
|
118
|
+
<searchscope>WEB Internet Resources</searchscope>
|
119
|
+
<searchscope>nyu_aleph</searchscope>
|
120
|
+
<searchscope>NYU</searchscope>
|
121
|
+
<scope>BOBST</scope>
|
122
|
+
<scope>BOBST Main Collection</scope>
|
123
|
+
<scope>WEB</scope>
|
124
|
+
<scope>WEB Internet Resources</scope>
|
125
|
+
<scope>nyu_aleph</scope>
|
126
|
+
<scope>NYU</scope>
|
127
|
+
<lsr01>HD61 .C85 2001</lsr01>
|
128
|
+
<lsr01>HD61.C85 2001</lsr01>
|
129
|
+
<lsr02>J. Wiley,</lsr02>
|
130
|
+
</search>
|
131
|
+
<sort>
|
132
|
+
<title>risk management process : business strategy and tactics /</title>
|
133
|
+
<creationdate>2001</creationdate>
|
134
|
+
<author>Culp, Christopher L.</author>
|
135
|
+
<lso01>2001</lso01>
|
136
|
+
</sort>
|
137
|
+
<facets>
|
138
|
+
<language>eng</language>
|
139
|
+
<creationdate>2001</creationdate>
|
140
|
+
<topic>Risk management</topic>
|
141
|
+
<topic>Business planning</topic>
|
142
|
+
<collection>BOBST</collection>
|
143
|
+
<collection>WEB</collection>
|
144
|
+
<toplevel>available</toplevel>
|
145
|
+
<prefilter>books</prefilter>
|
146
|
+
<rsrctype>books</rsrctype>
|
147
|
+
<creatorcontrib>Culp, C</creatorcontrib>
|
148
|
+
<library>BOBST</library>
|
149
|
+
<lfc01>Main Collection</lfc01>
|
150
|
+
<lfc01>Internet Resources</lfc01>
|
151
|
+
<classificationlcc>H - Social sciences.–Industries. Land use. Labor–Management. Industrial management–Risk in industry. Risk management</classificationlcc>
|
152
|
+
<frbrgroupid>65037213</frbrgroupid>
|
153
|
+
<frbrtype>6</frbrtype>
|
154
|
+
</facets>
|
155
|
+
<dedup>
|
156
|
+
<t>1</t>
|
157
|
+
<c1>2001024342</c1>
|
158
|
+
<c2>047140554X;9780471405542</c2>
|
159
|
+
<c3>riskmanagementprocesandtactics</c3>
|
160
|
+
<c4>2001</c4>
|
161
|
+
<f1>2001024342</f1>
|
162
|
+
<f3>047140554X;9780471405542</f3>
|
163
|
+
<f5>riskmanagementprocesandtactics</f5>
|
164
|
+
<f6>2001</f6>
|
165
|
+
<f7>risk management process business strategy and tactics</f7>
|
166
|
+
<f8>nyu</f8>
|
167
|
+
<f9>xv, 606 p. :</f9>
|
168
|
+
<f10>j wiley</f10>
|
169
|
+
<f11>culp christopher l</f11>
|
170
|
+
</dedup>
|
171
|
+
<frbr>
|
172
|
+
<t>1</t>
|
173
|
+
<k1>$$Kculp christopher l$$AA</k1>
|
174
|
+
<k3>$$Kbookrisk management process business strategy and tactics$$AT</k3>
|
175
|
+
</frbr>
|
176
|
+
<delivery>
|
177
|
+
<institution>NYU</institution>
|
178
|
+
<delcategory>Physical Item</delcategory>
|
179
|
+
</delivery>
|
180
|
+
<enrichment>
|
181
|
+
<classificationlcc>HD61</classificationlcc>
|
182
|
+
</enrichment>
|
183
|
+
<ranking>
|
184
|
+
<booster1>1</booster1>
|
185
|
+
<booster2>1</booster2>
|
186
|
+
</ranking>
|
187
|
+
<addata>
|
188
|
+
<aulast>Culp</aulast>
|
189
|
+
<aufirst>Christopher L.</aufirst>
|
190
|
+
<au>Culp, Christopher L</au>
|
191
|
+
<btitle>The risk management process : business strategy and tactics</btitle>
|
192
|
+
<date>2001</date>
|
193
|
+
<risdate>c2001.</risdate>
|
194
|
+
<isbn>047140554X</isbn>
|
195
|
+
<isbn>9780471405542</isbn>
|
196
|
+
<format>book</format>
|
197
|
+
<genre>book</genre>
|
198
|
+
<ristype>BOOK</ristype>
|
199
|
+
<notes>Includes bibliographical references (p. 584-596) and index.</notes>
|
200
|
+
<cop>New York</cop>
|
201
|
+
<pub>J. Wiley</pub>
|
202
|
+
<oclcid>46473927</oclcid>
|
203
|
+
<lccn>2001024342</lccn>
|
204
|
+
<lad01>BOBSTBOBSTWEB</lad01>
|
205
|
+
<lad01>Physical Item</lad01>
|
206
|
+
</addata>
|
207
|
+
</record>
|
208
|
+
</PrimoNMBib>
|
209
|
+
</sear:DOC>
|
210
|
+
</DOCSET>
|
211
|
+
</RESULT>
|
212
|
+
</JAGROOT>
|
213
|
+
</SEGMENTS>
|
214
|
+
</getRecordReturn></ns1:getRecordResponse></soapenv:Body></soapenv:Envelope>
|
215
|
+
http_version:
|
216
|
+
recorded_at: Fri, 12 Oct 2012 17:59:18 GMT
|
217
|
+
recorded_with: VCR 2.2.5
|