umlaut-primo 0.1.0 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/Rakefile +1 -19
- data/lib/umlaut_primo/primo_service.rb +9 -9
- data/lib/umlaut_primo/version.rb +1 -1
- data/test/dummy/log/test.log +17234 -0
- data/test/fixtures/referent_values.yml +32 -0
- data/test/fixtures/referents.yml +3 -0
- data/test/fixtures/requests.yml +3 -0
- data/test/unit/primo_service_test.rb +30 -0
- data/test/vcr_cassettes/russkaia_pochta_with_no_title_by_issn.yml +187 -0
- metadata +46 -54
@@ -87,6 +87,14 @@ the_musical_quarterly_3:
|
|
87
87
|
private_data: false
|
88
88
|
|
89
89
|
the_musical_quarterly_4:
|
90
|
+
referent: the_musical_quarterly
|
91
|
+
key_name: "isbn"
|
92
|
+
value: ""
|
93
|
+
normalized_value: ""
|
94
|
+
metadata: true
|
95
|
+
private_data: false
|
96
|
+
|
97
|
+
the_musical_quarterly_5:
|
90
98
|
referent: the_musical_quarterly
|
91
99
|
key_name: "issn"
|
92
100
|
value: "0027-4631"
|
@@ -94,3 +102,27 @@ the_musical_quarterly_4:
|
|
94
102
|
metadata: true
|
95
103
|
private_data: false
|
96
104
|
|
105
|
+
russkaia_pochta_with_no_title_1:
|
106
|
+
referent: russkaia_pochta_with_no_title
|
107
|
+
key_name: "format"
|
108
|
+
value: "journal"
|
109
|
+
normalized_value: "journal"
|
110
|
+
metadata: true
|
111
|
+
private_data: false
|
112
|
+
|
113
|
+
russkaia_pochta_with_no_title_2:
|
114
|
+
referent: russkaia_pochta_with_no_title
|
115
|
+
key_name: "genre"
|
116
|
+
value: "journal"
|
117
|
+
normalized_value: "journal"
|
118
|
+
metadata: true
|
119
|
+
private_data: false
|
120
|
+
|
121
|
+
russkaia_pochta_with_no_title_3:
|
122
|
+
referent: russkaia_pochta_with_no_title
|
123
|
+
key_name: "issn"
|
124
|
+
value: "1820-7278"
|
125
|
+
normalized_value: "1820-7278"
|
126
|
+
metadata: true
|
127
|
+
private_data: false
|
128
|
+
|
data/test/fixtures/referents.yml
CHANGED
data/test/fixtures/requests.yml
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
# encoding: UTF-8
|
1
2
|
require 'test_helper'
|
2
3
|
require 'fileutils'
|
3
4
|
class PrimoServiceTest < ActiveSupport::TestCase
|
@@ -225,4 +226,33 @@ class PrimoServiceTest < ActiveSupport::TestCase
|
|
225
226
|
assert_equal("aleph000935132", view_data[:original_id])
|
226
227
|
assert_equal("1997 - 2000 Full Text available from ProQuest", view_data[:display])
|
227
228
|
end
|
229
|
+
|
230
|
+
test "issn search with no title" do
|
231
|
+
request = requests(:russkaia_pochta_with_no_title_by_issn)
|
232
|
+
# Make sure the referent values are nil to start with
|
233
|
+
assert_nil(request.referent.title, "Title was not nil before resolving by ISSN.")
|
234
|
+
assert_nil(request.referent.metadata["jtitle"], "Journal title was not nil before resolving by ISSN.")
|
235
|
+
assert_nil(request.referent.metadata["place"], "Publication place was not nil before resolving by ISSN.")
|
236
|
+
assert_nil(request.referent.metadata["pub"], "Publisher was not nil before resolving by ISSN.")
|
237
|
+
assert_nil(request.referent.metadata["oclcnum"], "OCLC number was nil before resolving by ISSN.")
|
238
|
+
assert_nil(request.referent.metadata["lccn"], "LCCN was not nil before resolving by ISSN.")
|
239
|
+
|
240
|
+
# Handle the service
|
241
|
+
VCR.use_cassette("russkaia pochta with no title by issn") do
|
242
|
+
@primo_service.handle(request)
|
243
|
+
end
|
244
|
+
|
245
|
+
# Get latest from the DB after handling the service.
|
246
|
+
request.referent.referent_values.reset
|
247
|
+
request.dispatched_services.reset
|
248
|
+
request.service_responses.reset
|
249
|
+
|
250
|
+
# Test that the referent was enhanced
|
251
|
+
assert_equal("russkai͡a pochta.", request.referent.title, "Title (normalized) was not enhances when resolveing by ISSN.")
|
252
|
+
assert_equal("Russkai͡a pochta.", request.referent.metadata["jtitle"], "Journal title was not enhanced when resolving by ISSN.")
|
253
|
+
assert_equal("Belgrad", request.referent.metadata["place"], "Publication place was not enhanced when resolving by ISSN.")
|
254
|
+
assert_equal("Filološki fakultet, Katedra za slavistiku", request.referent.metadata["pub"], "Publisher was not enhanced when resolving by ISSN.")
|
255
|
+
assert_equal("261559574", request.referent.metadata["oclcnum"], "OCLC number was not enhanced when resolving by ISSN.")
|
256
|
+
assert_equal("2008262508", request.referent.metadata["lccn"], "LCCN was not enhanced when resolving by ISSN.")
|
257
|
+
end
|
228
258
|
end
|
@@ -0,0 +1,187 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: post
|
5
|
+
uri: http://primo.library.edu/PrimoWebServices/services/searcher
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: <?xml version="1.0" encoding="UTF-8"?><env:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
9
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://primo.library.edu/PrimoWebServices/services/searcher"
|
10
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><wsdl:searchBrief><request><![CDATA[<searchRequest
|
11
|
+
xmlns="http://www.exlibris.com/primo/xsd/wsRequest" xmlns:uic="http://www.exlibris.com/primo/xsd/primoview/uicomponents"><PrimoSearchRequest
|
12
|
+
xmlns="http://www.exlibris.com/primo/xsd/search/request"><QueryTerms><BoolOpeator>AND</BoolOpeator><QueryTerm><IndexField>isbn</IndexField><PrecisionOperator>exact</PrecisionOperator><Value>1820-7278</Value></QueryTerm></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled></PrimoSearchRequest><institution>NYU</institution></searchRequest>]]></request></wsdl:searchBrief></env:Body></env:Envelope>
|
13
|
+
headers:
|
14
|
+
Soapaction:
|
15
|
+
- ! '"searchBrief"'
|
16
|
+
Content-Type:
|
17
|
+
- text/xml;charset=UTF-8
|
18
|
+
Content-Length:
|
19
|
+
- '930'
|
20
|
+
Accept:
|
21
|
+
- ! '*/*'
|
22
|
+
User-Agent:
|
23
|
+
- Ruby
|
24
|
+
response:
|
25
|
+
status:
|
26
|
+
code: 200
|
27
|
+
message: OK
|
28
|
+
headers:
|
29
|
+
Server:
|
30
|
+
- Apache-Coyote/1.1
|
31
|
+
X-Powered-By:
|
32
|
+
- Servlet 2.5; JBoss-5.0/JBossWeb-2.1
|
33
|
+
Content-Type:
|
34
|
+
- text/xml;charset=utf-8
|
35
|
+
Transfer-Encoding:
|
36
|
+
- chunked
|
37
|
+
Date:
|
38
|
+
- Tue, 08 Oct 2013 15:47:23 GMT
|
39
|
+
body:
|
40
|
+
encoding: US-ASCII
|
41
|
+
string: ! "<?xml version=\"1.0\" encoding=\"UTF-8\"?><soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"
|
42
|
+
xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"><soapenv:Body><ns1:searchBriefResponse
|
43
|
+
soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:ns1=\"http://primo.library.edu/PrimoWebServices/services/searcher\"><searchBriefReturn
|
44
|
+
xsi:type=\"soapenc:string\" xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"><SEGMENTS
|
45
|
+
xmlns="http://www.exlibrisgroup.com/xsd/jaguar/search">\n <JAGROOT>\n
|
46
|
+
\ <RESULT>\n <QUERYTRANSFORMS/>\n <FACETLIST ACCURATE_COUNTERS="true">\n
|
47
|
+
\ <FACET NAME="creator" COUNT="1">\n <FACET_VALUES
|
48
|
+
KEY="Univerzitet u Beogradu. Katedra za slavistiku" VALUE="1"/>\n
|
49
|
+
\ </FACET>\n <FACET NAME="lcc" COUNT="1">\n
|
50
|
+
\ <FACET_VALUES KEY="P - Language and literature." VALUE="1"/>\n
|
51
|
+
\ </FACET>\n <FACET NAME="lang" COUNT="2">\n
|
52
|
+
\ <FACET_VALUES KEY="rus" VALUE="1"/>\n
|
53
|
+
\ <FACET_VALUES KEY="ger" VALUE="1"/>\n
|
54
|
+
\ </FACET>\n <FACET NAME="rtype" COUNT="1">\n
|
55
|
+
\ <FACET_VALUES KEY="journals" VALUE="1"/>\n
|
56
|
+
\ </FACET>\n <FACET NAME="topic" COUNT="1">\n
|
57
|
+
\ <FACET_VALUES KEY="Russian literature" VALUE="1"/>\n
|
58
|
+
\ </FACET>\n <FACET NAME="tlevel" COUNT="1">\n
|
59
|
+
\ <FACET_VALUES KEY="available" VALUE="1"/>\n
|
60
|
+
\ </FACET>\n <FACET NAME="pfilter" COUNT="1">\n
|
61
|
+
\ <FACET_VALUES KEY="journals" VALUE="1"/>\n
|
62
|
+
\ </FACET>\n <FACET NAME="creationdate" COUNT="1">\n
|
63
|
+
\ <FACET_VALUES KEY="2008" VALUE="1"/>\n
|
64
|
+
\ </FACET>\n <FACET NAME="domain" COUNT="1">\n
|
65
|
+
\ <FACET_VALUES KEY="BOBST" VALUE="1"/>\n
|
66
|
+
\ </FACET>\n <FACET NAME="genre" COUNT="1">\n
|
67
|
+
\ <FACET_VALUES KEY="Periodicals" VALUE="1"/>\n
|
68
|
+
\ </FACET>\n <FACET NAME="library" COUNT="1">\n
|
69
|
+
\ <FACET_VALUES KEY="BOBST" VALUE="1"/>\n
|
70
|
+
\ </FACET>\n <FACET NAME="local1" COUNT="1">\n
|
71
|
+
\ <FACET_VALUES KEY="Main Collection" VALUE="1"/>\n
|
72
|
+
\ </FACET>\n </FACETLIST>\n <DOCSET HIT_TIME="7"
|
73
|
+
TOTALHITS="1" FIRSTHIT="1" LASTHIT="1" TOTAL_TIME="32"
|
74
|
+
IS_LOCAL="true">\n <DOC ID="3801750" RANK="1.0"
|
75
|
+
NO="1" SEARCH_ENGINE="Local Search Engine" SEARCH_ENGINE_TYPE="Local
|
76
|
+
Search Engine">\n <PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">\n
|
77
|
+
\ <record>\n <control>\n <sourcerecordid>003766758</sourcerecordid>\n
|
78
|
+
\ <sourceid>nyu_aleph</sourceid>\n <recordid>nyu_aleph003766758</recordid>\n
|
79
|
+
\ <originalsourceid>LIB01</originalsourceid>\n <ilsapiid>LIB01003766758</ilsapiid>\n
|
80
|
+
\ <sourceformat>MARC21</sourceformat>\n <sourcesystem>Aleph</sourcesystem>\n
|
81
|
+
\ </control>\n <display>\n <type>journal</type>\n
|
82
|
+
\ <title>Russkai͡a pochta.</title>\n <contributor>Универзитет
|
83
|
+
у Београду. Катедра
|
84
|
+
за славистику;
|
85
|
+
Univerzitet u Beogradu. Katedra za slavistiku</contributor>\n <publisher>Белград
|
86
|
+
: Филолошки факултет,
|
87
|
+
Катедра за славистику;
|
88
|
+
Belgrad : Filološki fakultet, Katedra za slavistiku</publisher>\n
|
89
|
+
\ <creationdate>2008</creationdate>\n <format>v.
|
90
|
+
: ill. ; 24 cm.</format>\n <identifier>$$Cissn$$V1820-7278</identifier>\n
|
91
|
+
\ <subject>Russian literature -- History and criticism
|
92
|
+
-- Periodicals</subject>\n <language>rus;ger</language>\n
|
93
|
+
\ <source>nyu_aleph</source>\n <availlibrary>$$INYU$$LBOBST$$1Main
|
94
|
+
Collection$$2(PG2900 .R876 )$$Savailable$$32$$40$$5Y$$60$$XNYU50$$YBOBST$$ZMAIN</availlibrary>\n
|
95
|
+
\ <lds02>nyu_aleph003766758</lds02>\n <lds01>NYU</lds01>\n
|
96
|
+
\ <availinstitution>$$INYU$$Savailable</availinstitution>\n
|
97
|
+
\ <availpnx>available</availpnx>\n </display>\n
|
98
|
+
\ <links>\n <openurl>$$Topenurl_journal</openurl>\n
|
99
|
+
\ <backlink>$$Taleph_backlink$$DMore bibliographic information</backlink>\n
|
100
|
+
\ <openurlfulltext>$$Topenurlfull_journal</openurlfulltext>\n
|
101
|
+
\ <linktoholdings>$$Taleph_holdings</linktoholdings>\n
|
102
|
+
\ <linktoreview>$$TpersistentUrl$$DCopy item link</linktoreview>\n
|
103
|
+
\ <linktouc>$$Tworldcat_oclc$$DCheck other libraries (WorldCat®)</linktouc>\n
|
104
|
+
\ </links>\n <search>\n <creatorcontrib>Универзитет
|
105
|
+
у Београду. Катедра
|
106
|
+
за славистику.</creatorcontrib>\n
|
107
|
+
\ <creatorcontrib>Univerzitet u Beogradu. Katedra za slavistiku</creatorcontrib>\n
|
108
|
+
\ <creatorcontrib>Univerzitet u Beogradu. Filološki
|
109
|
+
fakultet. Katedra za slavistiku</creatorcontrib>\n <creatorcontrib>Kafedra
|
110
|
+
slavistiki Belgradskogo universiteta</creatorcontrib>\n <title>Russkai͡a
|
111
|
+
pochta.</title>\n <subject>Russian literature History
|
112
|
+
and criticism Periodicals</subject>\n <general>Filološki
|
113
|
+
fakultet, Katedra za slavistiku</general>\n <general>Филолошки
|
114
|
+
факултет, Катедра
|
115
|
+
за славистику</general>\n
|
116
|
+
\ <general>"Zhurnal o russkoĭ literature i
|
117
|
+
kulʹture."</general>\n <sourceid>nyu_aleph</sourceid>\n
|
118
|
+
\ <recordid>nyu_aleph003766758</recordid>\n <isbn>1820-7278</isbn>\n
|
119
|
+
\ <rsrctype>journal</rsrctype>\n <creationdate>2008</creationdate>\n
|
120
|
+
\ <addtitle>Русская
|
121
|
+
почта.</addtitle>\n <searchscope>BOBST</searchscope>\n
|
122
|
+
\ <searchscope>BOBST Main Collection</searchscope>\n
|
123
|
+
\ <searchscope>nyu_aleph</searchscope>\n <searchscope>NYU</searchscope>\n
|
124
|
+
\ <scope>BOBST</scope>\n <scope>BOBST
|
125
|
+
Main Collection</scope>\n <scope>nyu_aleph</scope>\n
|
126
|
+
\ <scope>NYU</scope>\n <lsr01>PG2900
|
127
|
+
.R876</lsr01>\n <lsr01>PG2900.R876</lsr01>\n
|
128
|
+
\ <lsr02>Filološki fakultet, Katedra za slavistiku</lsr02>\n
|
129
|
+
\ </search>\n <sort>\n <title>Русская
|
130
|
+
почта.</title>\n <creationdate>2008</creationdate>\n
|
131
|
+
\ <author>Универзитет
|
132
|
+
у Београду. Катедра
|
133
|
+
за славистику.</author>\n
|
134
|
+
\ <lso01>2008</lso01>\n </sort>\n
|
135
|
+
\ <facets>\n <language>rus</language>\n
|
136
|
+
\ <language>ger</language>\n <creationdate>2008</creationdate>\n
|
137
|
+
\ <topic>Russian literature–History and criticism–Periodicals</topic>\n
|
138
|
+
\ <collection>BOBST</collection>\n <toplevel>available</toplevel>\n
|
139
|
+
\ <prefilter>journals</prefilter>\n <rsrctype>journals</rsrctype>\n
|
140
|
+
\ <creatorcontrib>Univerzitet u Beogradu. Katedra za slavistiku</creatorcontrib>\n
|
141
|
+
\ <genre>Periodicals</genre>\n <library>BOBST</library>\n
|
142
|
+
\ <lfc01>Main Collection</lfc01>\n <classificationlcc>P
|
143
|
+
- Language and literature.–Slavic. Baltic. Albanian</classificationlcc>\n
|
144
|
+
\ <frbrgroupid>105469017</frbrgroupid>\n <frbrtype>6</frbrtype>\n
|
145
|
+
\ </facets>\n <dedup>\n <t>2</t>\n
|
146
|
+
\ <c1>2008262508</c1>\n <c2>1820-7278</c2>\n
|
147
|
+
\ <c3>russkaiapochta</c3>\n <c4>belgrad</c4>\n
|
148
|
+
\ <f1>2008262508</f1>\n <f3>18207278</f3>\n
|
149
|
+
\ <f6>2008</f6>\n <f7>russkaia
|
150
|
+
pochta</f7>\n <f8>russkaia pochta</f8>\n
|
151
|
+
\ <f9>ru</f9>\n <f10>belgrad</f10>\n
|
152
|
+
\ </dedup>\n <frbr>\n <t>1</t>\n
|
153
|
+
\ <k1>$$Kuniverzitet u beogradu katedra za slavistiku$$AA</k1>\n
|
154
|
+
\ <k3>$$Krusskaia pochta$$AT</k3>\n </frbr>\n
|
155
|
+
\ <delivery>\n <institution>NYU</institution>\n
|
156
|
+
\ <delcategory>Physical Item</delcategory>\n </delivery>\n
|
157
|
+
\ <enrichment>\n <classificationlcc>PG2900</classificationlcc>\n
|
158
|
+
\ </enrichment>\n <ranking>\n <booster1>1</booster1>\n
|
159
|
+
\ <booster2>1</booster2>\n </ranking>\n
|
160
|
+
\ <addata>\n <addau>Univerzitet u Beogradu.
|
161
|
+
Katedra za slavistiku</addau>\n <jtitle>Russkai͡a
|
162
|
+
pochta.</jtitle>\n <date>2008</date>\n <risdate>2008</risdate>\n
|
163
|
+
\ <issn>1820-7278</issn>\n <format>journal</format>\n
|
164
|
+
\ <genre>journal</genre>\n <ristype>JOUR</ristype>\n
|
165
|
+
\ <cop>Belgrad</cop>\n <pub>Filološki
|
166
|
+
fakultet, Katedra za slavistiku</pub>\n <oclcid>261559574</oclcid>\n
|
167
|
+
\ <lccn>2008262508</lccn>\n <lad01>BOBST</lad01>\n
|
168
|
+
\ <lad01>Physical Item</lad01>\n </addata>\n
|
169
|
+
\ </record>\n </PrimoNMBib>\n <GETIT
|
170
|
+
deliveryCategory="Physical Item" GetIt1="http://aleph.library.nyu.edu/F?func=item-global&amp;doc_library=LIB01&amp;local_base=PRIMOCOMMON&amp;doc_number=003766758"
|
171
|
+
GetIt2="https://getit.library.nyu.edu/resolve?&amp;ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-10-08T11%3A47%3A23IST&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_aleph003766758&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;rft.genre=journal&amp;rft.jtitle=Russkai͡a%20pochta.&amp;rft.btitle=&amp;rft.aulast=&amp;rft.aufirst=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.volume=&amp;rft.issue=&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.pub=Filološki%20fakultet%2C%20Katedra%20za%20slavistiku&amp;rft.place=Belgrad&amp;rft.issn=1820-7278&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;rft.primo=nyu_aleph003766758&amp;rft.eisbn=&amp;rft_dat=&lt;nyu_aleph>003766758&lt;/nyu_aleph>&amp;rft_id=info:oai/"/>\n
|
172
|
+
\ <LIBRARIES>\n <LIBRARY>\n <institution>NYU</institution>\n
|
173
|
+
\ <library>BOBST</library>\n <status>available</status>\n
|
174
|
+
\ <collection>Main Collection</collection>\n <callNumber>(PG2900
|
175
|
+
.R876 )</callNumber>\n <url>http://aleph.library.nyu.edu/F?func=item-global&amp;doc_library=LIB01&amp;local_base=PRIMOCOMMON&amp;doc_number=003766758</url>\n
|
176
|
+
\ </LIBRARY>\n </LIBRARIES>\n <LINKS>\n
|
177
|
+
\ <openurl><![CDATA[https://getit.library.nyu.edu/resolve?&ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-10-08T11%3A47%3A23IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003766758&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=journal&rft.jtitle=Russkai͡a%20pochta.&rft.btitle=&rft.aulast=&rft.aufirst=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Filološki%20fakultet%2C%20Katedra%20za%20slavistiku&rft.place=Belgrad&rft.issn=1820-7278&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.primo=nyu_aleph003766758&rft.eisbn=&rft_dat=<nyu_aleph>003766758</nyu_aleph>&rft_id=info:oai/]]></openurl>\n
|
178
|
+
\ <backlink>http://aleph.library.nyu.edu/F?func=direct&amp;local_base=PRIMOCOMMON&amp;doc_number=003766758</backlink>\n
|
179
|
+
\ <thumbnail/>\n <openurlfulltext><![CDATA[https://getit.library.nyu.edu/resolve?&ctx_ver=Z39.88-2004&sfx.ignore_date_threshold=1&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-10-08T11%3A47%3A23IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo-nyu_aleph003766758&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=journal&rft.jtitle=Russkai͡a%20pochta.&rft.btitle=&rft.aulast=&rft.aufirst=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.volume=&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=&rft.epage=&rft.pages=&rft.artnum=&rft.pub=Filološki%20fakultet%2C%20Katedra%20za%20slavistiku&rft.place=Belgrad&rft.issn=1820-7278&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<nyu_aleph>003766758</nyu_aleph>&rft_id=info:oai/]]></openurlfulltext>\n
|
180
|
+
\ <linktoholdings>http://aleph.library.nyu.edu/F?func=item-global&amp;doc_library=LIB01&amp;local_base=PRIMOCOMMON&amp;doc_number=003766758</linktoholdings>\n
|
181
|
+
\ <linktoreview>https://library.nyu.edu/persistent/lcn/nyu_aleph003766758?institution=NYU&amp;persistent</linktoreview>\n
|
182
|
+
\ <linktouc>http://www.worldcat.org/search?q=no%3A261559574</linktouc>\n
|
183
|
+
\ </LINKS>\n </DOC>\n </DOCSET>\n </RESULT>\n
|
184
|
+
\ <searchToken>0</searchToken>\n </JAGROOT>\n</SEGMENTS></searchBriefReturn></ns1:searchBriefResponse></soapenv:Body></soapenv:Envelope>"
|
185
|
+
http_version:
|
186
|
+
recorded_at: Tue, 08 Oct 2013 15:47:23 GMT
|
187
|
+
recorded_with: VCR 2.4.0
|
metadata
CHANGED
@@ -1,68 +1,60 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: umlaut-primo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
5
|
-
prerelease:
|
4
|
+
version: 0.1.2
|
6
5
|
platform: ruby
|
7
6
|
authors:
|
8
7
|
- Scot Dalton
|
9
8
|
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date: 2013-
|
11
|
+
date: 2013-10-10 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
14
|
+
name: require_all
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
16
|
requirements:
|
19
|
-
- -
|
17
|
+
- - ! '>='
|
20
18
|
- !ruby/object:Gem::Version
|
21
|
-
version:
|
19
|
+
version: 1.2.1
|
22
20
|
type: :runtime
|
23
21
|
prerelease: false
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
23
|
requirements:
|
27
|
-
- -
|
24
|
+
- - ! '>='
|
28
25
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
26
|
+
version: 1.2.1
|
30
27
|
- !ruby/object:Gem::Dependency
|
31
|
-
name:
|
28
|
+
name: exlibris-primo
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
30
|
requirements:
|
35
|
-
- -
|
31
|
+
- - ! '>='
|
36
32
|
- !ruby/object:Gem::Version
|
37
|
-
version: 1.
|
33
|
+
version: 1.0.8
|
38
34
|
type: :runtime
|
39
35
|
prerelease: false
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
37
|
requirements:
|
43
|
-
- -
|
38
|
+
- - ! '>='
|
44
39
|
- !ruby/object:Gem::Version
|
45
|
-
version: 1.
|
40
|
+
version: 1.0.8
|
46
41
|
- !ruby/object:Gem::Dependency
|
47
|
-
name:
|
42
|
+
name: rake
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
49
|
-
none: false
|
50
44
|
requirements:
|
51
45
|
- - ~>
|
52
46
|
- !ruby/object:Gem::Version
|
53
|
-
version:
|
54
|
-
type: :
|
47
|
+
version: 10.0.3
|
48
|
+
type: :development
|
55
49
|
prerelease: false
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
-
none: false
|
58
51
|
requirements:
|
59
52
|
- - ~>
|
60
53
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
54
|
+
version: 10.0.3
|
62
55
|
- !ruby/object:Gem::Dependency
|
63
56
|
name: jquery-rails
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
65
|
-
none: false
|
66
58
|
requirements:
|
67
59
|
- - ~>
|
68
60
|
- !ruby/object:Gem::Version
|
@@ -70,7 +62,6 @@ dependencies:
|
|
70
62
|
type: :development
|
71
63
|
prerelease: false
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
-
none: false
|
74
65
|
requirements:
|
75
66
|
- - ~>
|
76
67
|
- !ruby/object:Gem::Version
|
@@ -78,7 +69,6 @@ dependencies:
|
|
78
69
|
- !ruby/object:Gem::Dependency
|
79
70
|
name: mysql2
|
80
71
|
requirement: !ruby/object:Gem::Requirement
|
81
|
-
none: false
|
82
72
|
requirements:
|
83
73
|
- - ~>
|
84
74
|
- !ruby/object:Gem::Version
|
@@ -86,59 +76,66 @@ dependencies:
|
|
86
76
|
type: :development
|
87
77
|
prerelease: false
|
88
78
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
-
none: false
|
90
79
|
requirements:
|
91
80
|
- - ~>
|
92
81
|
- !ruby/object:Gem::Version
|
93
82
|
version: 0.3.11
|
94
83
|
- !ruby/object:Gem::Dependency
|
95
|
-
name:
|
84
|
+
name: vcr
|
96
85
|
requirement: !ruby/object:Gem::Requirement
|
97
|
-
none: false
|
98
86
|
requirements:
|
99
|
-
- -
|
87
|
+
- - ~>
|
100
88
|
- !ruby/object:Gem::Version
|
101
|
-
version:
|
89
|
+
version: 2.4.0
|
102
90
|
type: :development
|
103
91
|
prerelease: false
|
104
92
|
version_requirements: !ruby/object:Gem::Requirement
|
105
|
-
none: false
|
106
93
|
requirements:
|
107
|
-
- -
|
94
|
+
- - ~>
|
108
95
|
- !ruby/object:Gem::Version
|
109
|
-
version:
|
96
|
+
version: 2.4.0
|
110
97
|
- !ruby/object:Gem::Dependency
|
111
|
-
name:
|
98
|
+
name: webmock
|
112
99
|
requirement: !ruby/object:Gem::Requirement
|
113
|
-
none: false
|
114
100
|
requirements:
|
115
101
|
- - ~>
|
116
102
|
- !ruby/object:Gem::Version
|
117
|
-
version:
|
103
|
+
version: 1.9.0
|
118
104
|
type: :development
|
119
105
|
prerelease: false
|
120
106
|
version_requirements: !ruby/object:Gem::Requirement
|
121
|
-
none: false
|
122
107
|
requirements:
|
123
108
|
- - ~>
|
124
109
|
- !ruby/object:Gem::Version
|
125
|
-
version:
|
110
|
+
version: 1.9.0
|
126
111
|
- !ruby/object:Gem::Dependency
|
127
|
-
name:
|
112
|
+
name: debugger
|
128
113
|
requirement: !ruby/object:Gem::Requirement
|
129
|
-
none: false
|
130
114
|
requirements:
|
131
115
|
- - ~>
|
132
116
|
- !ruby/object:Gem::Version
|
133
|
-
version: 1.
|
117
|
+
version: 1.5.0
|
134
118
|
type: :development
|
135
119
|
prerelease: false
|
136
120
|
version_requirements: !ruby/object:Gem::Requirement
|
137
|
-
none: false
|
138
121
|
requirements:
|
139
122
|
- - ~>
|
140
123
|
- !ruby/object:Gem::Version
|
141
|
-
version: 1.
|
124
|
+
version: 1.5.0
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: pry
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ~>
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 0.9.12.2
|
132
|
+
type: :development
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - ~>
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 0.9.12.2
|
142
139
|
description: Umlaut service to provide fulltext, holdings, etc. from the Primo discovery
|
143
140
|
solution.
|
144
141
|
email:
|
@@ -201,36 +198,30 @@ files:
|
|
201
198
|
- test/unit/primo_source_test.rb
|
202
199
|
- test/vcr_cassettes/australian_journal_of_international_affairs_by_id.yml
|
203
200
|
- test/vcr_cassettes/musical_quarterly_by_issn.yml
|
201
|
+
- test/vcr_cassettes/russkaia_pochta_with_no_title_by_issn.yml
|
204
202
|
- test/vcr_cassettes/travels_with_my_by_id.yml
|
205
203
|
homepage: https://github.com/team-umlaut/umlaut-primo
|
206
204
|
licenses: []
|
205
|
+
metadata: {}
|
207
206
|
post_install_message:
|
208
207
|
rdoc_options: []
|
209
208
|
require_paths:
|
210
209
|
- lib
|
211
210
|
required_ruby_version: !ruby/object:Gem::Requirement
|
212
|
-
none: false
|
213
211
|
requirements:
|
214
212
|
- - ! '>='
|
215
213
|
- !ruby/object:Gem::Version
|
216
214
|
version: '0'
|
217
|
-
segments:
|
218
|
-
- 0
|
219
|
-
hash: 4352882914527669125
|
220
215
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
221
|
-
none: false
|
222
216
|
requirements:
|
223
217
|
- - ! '>='
|
224
218
|
- !ruby/object:Gem::Version
|
225
219
|
version: '0'
|
226
|
-
segments:
|
227
|
-
- 0
|
228
|
-
hash: 4352882914527669125
|
229
220
|
requirements: []
|
230
221
|
rubyforge_project:
|
231
|
-
rubygems_version:
|
222
|
+
rubygems_version: 2.0.3
|
232
223
|
signing_key:
|
233
|
-
specification_version:
|
224
|
+
specification_version: 4
|
234
225
|
summary: Umlaut service to provide fulltext, holdings, etc. from the Primo discovery
|
235
226
|
solution.
|
236
227
|
test_files:
|
@@ -280,4 +271,5 @@ test_files:
|
|
280
271
|
- test/unit/primo_source_test.rb
|
281
272
|
- test/vcr_cassettes/australian_journal_of_international_affairs_by_id.yml
|
282
273
|
- test/vcr_cassettes/musical_quarterly_by_issn.yml
|
274
|
+
- test/vcr_cassettes/russkaia_pochta_with_no_title_by_issn.yml
|
283
275
|
- test/vcr_cassettes/travels_with_my_by_id.yml
|