exlibris-primo 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/lib/exlibris/primo/link.rb +10 -10
- data/lib/exlibris/primo/pnx/elements.rb +11 -11
- data/lib/exlibris/primo/pnx/links.rb +11 -11
- data/lib/exlibris/primo/version.rb +1 -1
- data/lib/exlibris/primo/web_service/response/base.rb +3 -6
- data/test/pnx/links_test.rb +6 -1
- data/test/search_primo_central_test.rb +20 -2
- data/test/search_test.rb +2 -2
- data/test/test_helper.rb +1 -0
- data/test/vcr_cassettes/search_primo_central.yml +545 -592
- data/test/vcr_cassettes/search_primo_central_mla.yml +213 -0
- metadata +55 -67
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 1233f0d8bcbf2e1d6f1a022e87fc2cb549740610
|
4
|
+
data.tar.gz: 28b408b9bba716d664b98033ba719e6e299408a6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 49d7936b6358aa33ccafd306edabbf6d4dbe1a80e0dcd28a700c3cc62580cb267d247bd1fbeb1eae9ac59dc550577ffe62084abc9f9f3391d928197fb7bc62d8
|
7
|
+
data.tar.gz: 6aa5e9f6859fb8f29e290ec9bbe49768366dd9465abf8e9dbeca06ca36cf50111f5abf29a82a502519cbd778014f5df3ea0946396dfa38409f96e2c4cf57aa1a
|
data/lib/exlibris/primo/link.rb
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
module Exlibris
|
2
2
|
module Primo
|
3
|
-
#
|
3
|
+
#
|
4
4
|
# Abstract class representing a link in Primo.
|
5
|
-
#
|
5
|
+
#
|
6
6
|
class Link
|
7
7
|
include Abstract
|
8
8
|
include Config::Attributes
|
@@ -11,7 +11,7 @@ module Exlibris
|
|
11
11
|
self.abstract = true
|
12
12
|
|
13
13
|
attr_accessor :institution, :record_id, :original_id,
|
14
|
-
:url, :display, :notes, :subfields
|
14
|
+
:url, :display, :notes, :subfields, :display_code
|
15
15
|
|
16
16
|
def initialize *args
|
17
17
|
# URLs may have XML escaped ampersands
|
@@ -21,19 +21,19 @@ module Exlibris
|
|
21
21
|
end
|
22
22
|
end
|
23
23
|
|
24
|
-
#
|
24
|
+
#
|
25
25
|
# Primo fulltext link.
|
26
|
-
#
|
26
|
+
#
|
27
27
|
class Fulltext < Link; end
|
28
28
|
|
29
|
-
#
|
29
|
+
#
|
30
30
|
# Primo table of contents link.
|
31
|
-
#
|
31
|
+
#
|
32
32
|
class TableOfContents < Link; end
|
33
33
|
|
34
|
-
#
|
34
|
+
#
|
35
35
|
# Primo related link.
|
36
|
-
#
|
36
|
+
#
|
37
37
|
class RelatedLink < Link; end
|
38
38
|
end
|
39
|
-
end
|
39
|
+
end
|
@@ -1,9 +1,9 @@
|
|
1
1
|
module Exlibris
|
2
2
|
module Primo
|
3
3
|
module Pnx
|
4
|
-
#
|
4
|
+
#
|
5
5
|
# Provides access to PNX elements
|
6
|
-
#
|
6
|
+
#
|
7
7
|
module Elements
|
8
8
|
#
|
9
9
|
# Parses elements from PNX base on the pattern
|
@@ -44,25 +44,25 @@ module Exlibris
|
|
44
44
|
|
45
45
|
def attr_read method
|
46
46
|
if("#{method}".start_with? "all_")
|
47
|
-
(
|
47
|
+
(inner_text_all(xpathize(method)) || inner_text_all(controlize(method)))
|
48
48
|
else
|
49
|
-
(
|
49
|
+
(inner_text_at(xpathize(method)) || inner_text_at(controlize(method)))
|
50
50
|
end
|
51
51
|
end
|
52
52
|
private :attr_read
|
53
53
|
|
54
|
-
def
|
54
|
+
def inner_text_all xpath
|
55
55
|
xml.root.xpath(xpath).collect do |element|
|
56
|
-
element.
|
56
|
+
element.inner_text
|
57
57
|
end
|
58
58
|
end
|
59
|
-
private :
|
59
|
+
private :inner_text_all
|
60
60
|
|
61
|
-
def
|
61
|
+
def inner_text_at xpath
|
62
62
|
xml_at = xml.root.at_xpath(xpath)
|
63
|
-
xml_at.
|
63
|
+
xml_at.inner_text if xml_at
|
64
64
|
end
|
65
|
-
private :
|
65
|
+
private :inner_text_at
|
66
66
|
|
67
67
|
def controlize s
|
68
68
|
"control/#{xpathize s.to_s}"
|
@@ -76,4 +76,4 @@ module Exlibris
|
|
76
76
|
end
|
77
77
|
end
|
78
78
|
end
|
79
|
-
end
|
79
|
+
end
|
@@ -1,34 +1,34 @@
|
|
1
1
|
module Exlibris
|
2
2
|
module Primo
|
3
3
|
module Pnx
|
4
|
-
#
|
4
|
+
#
|
5
5
|
# Handle links in links tags.
|
6
|
-
#
|
6
|
+
#
|
7
7
|
module Links
|
8
8
|
#
|
9
9
|
# Parse linktorsrc tags to find full text links
|
10
10
|
#
|
11
11
|
def fulltexts
|
12
|
-
@fulltexts ||=
|
13
|
-
links("linktorsrc").collect { |link_attributes|
|
12
|
+
@fulltexts ||=
|
13
|
+
links("linktorsrc").collect { |link_attributes|
|
14
14
|
Exlibris::Primo::Fulltext.new link_attributes }
|
15
15
|
end
|
16
|
-
|
16
|
+
|
17
17
|
#
|
18
18
|
# Parse addlink tags to find related links
|
19
19
|
#
|
20
20
|
def related_links
|
21
|
-
@
|
21
|
+
@related_links ||=
|
22
22
|
links("addlink").collect { |link_attributes|
|
23
23
|
Exlibris::Primo::RelatedLink.new link_attributes }
|
24
24
|
end
|
25
|
-
|
25
|
+
|
26
26
|
#
|
27
27
|
# Parse linktotoc tags to find table of contents links
|
28
28
|
#
|
29
29
|
def tables_of_contents
|
30
|
-
@tables_of_contents ||=
|
31
|
-
links("linktotoc").collect { |link_attributes|
|
30
|
+
@tables_of_contents ||=
|
31
|
+
links("linktotoc").collect { |link_attributes|
|
32
32
|
Exlibris::Primo::TableOfContents.new link_attributes }
|
33
33
|
end
|
34
34
|
|
@@ -44,11 +44,11 @@ module Exlibris
|
|
44
44
|
next if subfields["U"].nil?
|
45
45
|
{ :institution => subfields["I"],
|
46
46
|
:record_id => recordid, :original_id => original_id,
|
47
|
-
:url => subfields["U"], :display => subfields["D"] }
|
47
|
+
:url => subfields["U"], :display => subfields["D"], :display_code => subfields['E'] }
|
48
48
|
end
|
49
49
|
end
|
50
50
|
private :links
|
51
51
|
end
|
52
52
|
end
|
53
53
|
end
|
54
|
-
end
|
54
|
+
end
|
@@ -19,14 +19,11 @@ module Exlibris
|
|
19
19
|
@code = savon_response.http.code
|
20
20
|
@body = savon_response.http.body
|
21
21
|
@soap_action = soap_action
|
22
|
-
|
23
|
-
|
24
|
-
# This is a complete HACK.
|
25
|
-
@raw_xml = savon_response.body[response_key][return_key].
|
26
|
-
gsub('&', '&').gsub('&', '&')
|
22
|
+
|
23
|
+
@raw_xml = savon_response.body[response_key][return_key]
|
27
24
|
end
|
28
25
|
end
|
29
26
|
end
|
30
27
|
end
|
31
28
|
end
|
32
|
-
end
|
29
|
+
end
|
data/test/pnx/links_test.rb
CHANGED
@@ -15,6 +15,11 @@ module Pnx
|
|
15
15
|
assert_not_nil(record.fulltexts.first.display)
|
16
16
|
end
|
17
17
|
|
18
|
+
def test_fulltexs_with_title_in_template_field
|
19
|
+
record = Exlibris::Primo::Record.new(:raw_xml => dedupmgr_record_xml)
|
20
|
+
assert_equal("linktosrc_code", record.fulltexts[1].display_code)
|
21
|
+
end
|
22
|
+
|
18
23
|
def test_tables_of_contents
|
19
24
|
record = Exlibris::Primo::Record.new(:raw_xml => dedupmgr_record_xml)
|
20
25
|
assert_not_nil record.tables_of_contents
|
@@ -47,4 +52,4 @@ module Pnx
|
|
47
52
|
assert_equal("Example Related Link", record.related_links.first.display)
|
48
53
|
end
|
49
54
|
end
|
50
|
-
end
|
55
|
+
end
|
@@ -1,9 +1,10 @@
|
|
1
1
|
require 'test_helper'
|
2
2
|
class SearchPrimoCentralTest < Test::Unit::TestCase
|
3
3
|
def setup
|
4
|
-
@base_url = "http://
|
5
|
-
@search_term = "van gogh"
|
4
|
+
@base_url = "http://primo-fe1.library.nd.edu:1701"
|
6
5
|
@institution = "NDU"
|
6
|
+
@search_term = "van gogh"
|
7
|
+
@mla_doc_id = "mla2012444463"
|
7
8
|
end
|
8
9
|
|
9
10
|
def test_primo_central
|
@@ -22,4 +23,21 @@ class SearchPrimoCentralTest < Test::Unit::TestCase
|
|
22
23
|
end
|
23
24
|
end
|
24
25
|
end
|
26
|
+
|
27
|
+
def test_mla_source
|
28
|
+
VCR.use_cassette('search primo central mla') do
|
29
|
+
search = Exlibris::Primo::Search.new.base_url!(@base_url).
|
30
|
+
institution!(@institution).add_adaptor_location('primo_central_multiple_fe').add_query_term(@mla_doc_id, "rid", "exact").on_campus
|
31
|
+
assert_not_nil search.records
|
32
|
+
assert((not search.records.empty?))
|
33
|
+
assert_not_nil search.size
|
34
|
+
record = search.records.first
|
35
|
+
assert record.respond_to?(:display_title), "Record should have a display title"
|
36
|
+
assert_not_nil record.display_title
|
37
|
+
assert_not_nil record.fulltexts
|
38
|
+
assert_not_nil record.tables_of_contents
|
39
|
+
assert_not_nil record.related_links
|
40
|
+
assert_equal "MLA International Bibliography<img src=\"http://exlibris-pub.s3.amazonaws.com/mlalogo_001.jpg\" style=\"vertical-align:middle;margin-left:7px\">", record.display_source
|
41
|
+
end
|
42
|
+
end
|
25
43
|
end
|
data/test/search_test.rb
CHANGED
@@ -209,7 +209,7 @@ class SearchTest < Test::Unit::TestCase
|
|
209
209
|
assert_not_nil search.records
|
210
210
|
assert((not search.records.empty?))
|
211
211
|
search.records.each do |record|
|
212
|
-
|
212
|
+
assert_match(/<span class="searchword">/, record.display_title)
|
213
213
|
end
|
214
214
|
end
|
215
215
|
end
|
@@ -344,4 +344,4 @@ class SearchTest < Test::Unit::TestCase
|
|
344
344
|
assert_equal "digital video", search.did_u_mean
|
345
345
|
end
|
346
346
|
end
|
347
|
-
end
|
347
|
+
end
|
data/test/test_helper.rb
CHANGED
@@ -144,6 +144,7 @@ class Test::Unit::TestCase
|
|
144
144
|
"<backlink>$$V$$Taleph_backlink$$DMore bibliographic information$$Onyu_aleph000932393</backlink>"+
|
145
145
|
"<backlink>$$V$$Taleph_backlink$$DMore bibliographic information$$Onyu_aleph002959842</backlink>"+
|
146
146
|
"<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://proquest.umi.com/pqdweb?RQT=318&VName=PQD&clientid=9269&pmid=7818$$D1995 - Current Access via Proquest$$INYU$$Onyu_aleph000932393</linktorsrc>"+
|
147
|
+
"<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://proquest.umi.com/pqdweb?RQT=318&VName=PQD&clientid=9269&pmid=7818$$Elinktosrc_code$$INYUAD$$Onyu_aleph000932393</linktorsrc>"+
|
147
148
|
"<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://proquest.umi.com/pqdweb?RQT=318&VName=PQD&clientid=9269&pmid=7818$$D1995 - Current Access via Proquest$$INYUAD$$Onyu_aleph000932393</linktorsrc>"+
|
148
149
|
"<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://www.nytimes.com/$$DOnline version:$$INYU$$Onyu_aleph002959842</linktorsrc>"+
|
149
150
|
"<linktorsrc>$$V$$Uhttps://ezproxy.library.nyu.edu/login?url=http://www.nytimes.com/$$DOnline version:$$INYUAD$$Onyu_aleph002959842</linktorsrc>"+
|
@@ -2,25 +2,27 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: post
|
5
|
-
uri: http://
|
5
|
+
uri: http://primo-fe1.library.nd.edu:1701/PrimoWebServices/services/searcher
|
6
6
|
body:
|
7
|
-
encoding:
|
7
|
+
encoding: UTF-8
|
8
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://
|
10
|
-
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><searchBrief><request><![CDATA[<searchRequest
|
9
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsdl="http://primo-fe1.library.nd.edu:1701/PrimoWebServices/services/searcher"
|
10
|
+
xmlns:env="http://schemas.xmlsoap.org/soap/envelope/"><env:Body><wsdl:searchBrief><request><![CDATA[<searchRequest
|
11
11
|
xmlns="http://www.exlibris.com/primo/xsd/wsRequest" xmlns:uic="http://www.exlibris.com/primo/xsd/primoview/uicomponents"><PrimoSearchRequest
|
12
12
|
xmlns="http://www.exlibris.com/primo/xsd/search/request"><QueryTerms><BoolOpeator>AND</BoolOpeator><QueryTerm><IndexField>any</IndexField><PrecisionOperator>contains</PrecisionOperator><Value>van
|
13
13
|
gogh</Value></QueryTerm></QueryTerms><StartIndex>1</StartIndex><BulkSize>5</BulkSize><DidUMeanEnabled>false</DidUMeanEnabled><Locations><uic:Location
|
14
|
-
type="adaptor" value="primo_central_multiple_fe"/></Locations></PrimoSearchRequest><institution>NDU</institution></searchRequest>]]></request></searchBrief></env:Body></env:Envelope>
|
14
|
+
type="adaptor" value="primo_central_multiple_fe"/></Locations></PrimoSearchRequest><institution>NDU</institution></searchRequest>]]></request></wsdl:searchBrief></env:Body></env:Envelope>
|
15
15
|
headers:
|
16
16
|
Soapaction:
|
17
|
-
-
|
17
|
+
- '"searchBrief"'
|
18
18
|
Content-Type:
|
19
19
|
- text/xml;charset=UTF-8
|
20
20
|
Content-Length:
|
21
|
-
- '
|
21
|
+
- '1025'
|
22
|
+
Accept-Encoding:
|
23
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
22
24
|
Accept:
|
23
|
-
-
|
25
|
+
- "*/*"
|
24
26
|
User-Agent:
|
25
27
|
- Ruby
|
26
28
|
response:
|
@@ -28,413 +30,396 @@ http_interactions:
|
|
28
30
|
code: 200
|
29
31
|
message: OK
|
30
32
|
headers:
|
31
|
-
|
32
|
-
-
|
33
|
+
Server:
|
34
|
+
- Apache-Coyote/1.1
|
33
35
|
Content-Type:
|
34
36
|
- text/xml;charset=utf-8
|
35
37
|
Transfer-Encoding:
|
36
38
|
- chunked
|
37
39
|
Date:
|
38
|
-
-
|
39
|
-
Server:
|
40
|
-
- Apache-Coyote/1.1
|
40
|
+
- Thu, 05 Jun 2014 16:49:32 GMT
|
41
41
|
body:
|
42
|
-
encoding:
|
43
|
-
string:
|
44
|
-
xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"><soapenv:Body><searchBriefResponse
|
45
|
-
soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\"><searchBriefReturn
|
42
|
+
encoding: UTF-8
|
43
|
+
string: "<?xml version=\"1.0\" encoding=\"UTF-8\"?><soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\"
|
44
|
+
xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"><soapenv:Body><ns1:searchBriefResponse
|
45
|
+
soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:ns1=\"http://primo-fe1.library.nd.edu:1701/PrimoWebServices/services/searcher\"><searchBriefReturn
|
46
46
|
xsi:type=\"soapenc:string\" xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"><sear:SEGMENTS
|
47
|
-
xmlns:
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
\
|
128
|
-
|
129
|
-
|
130
|
-
\
|
131
|
-
\ <sear:FACET_VALUES
|
132
|
-
\
|
133
|
-
\ <sear:FACET_VALUES
|
134
|
-
\ <sear:FACET_VALUES
|
135
|
-
\ <sear:FACET_VALUES
|
136
|
-
\ <sear:FACET_VALUES
|
137
|
-
\ <sear:FACET_VALUES
|
138
|
-
\ <sear:FACET_VALUES
|
139
|
-
\ <sear:FACET_VALUES
|
140
|
-
\ <sear:FACET_VALUES
|
141
|
-
\ <sear:FACET_VALUES
|
142
|
-
\ <sear:FACET_VALUES
|
143
|
-
\
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
VALUE="
|
208
|
-
VALUE="
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
VALUE="
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
VALUE="
|
219
|
-
VALUE="
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
\
|
229
|
-
\ <sear:FACET_VALUES
|
230
|
-
\ <sear:FACET_VALUES
|
231
|
-
|
232
|
-
|
233
|
-
KEY="
|
234
|
-
VALUE="
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
KEY="
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
\
|
248
|
-
|
249
|
-
|
250
|
-
Of
|
251
|
-
KEY="
|
252
|
-
KEY="
|
253
|
-
\ <sear:FACET_VALUES
|
254
|
-
|
255
|
-
\
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
\
|
266
|
-
|
267
|
-
|
268
|
-
&
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
\
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
\
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
\ <
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
\ <
|
285
|
-
\ <
|
286
|
-
|
287
|
-
\ <prim:addtitle>New Scientist</prim:addtitle>\n
|
288
|
-
\ <prim:searchscope>sciversesciencedirect_elsevier</prim:searchscope>\n
|
289
|
-
\ <prim:searchscope>elsevier_sciencedirect</prim:searchscope>\n
|
290
|
-
\ <prim:scope>sciversesciencedirect_elsevier</prim:scope>\n
|
291
|
-
\ <prim:scope>elsevier_sciencedirect</prim:scope>\n
|
292
|
-
\ </prim:search>\n <prim:sort>\n <prim:title>Disputed
|
293
|
-
painting revealed as a Van Gogh</prim:title>\n <prim:creationdate>20120331</prim:creationdate>\n
|
294
|
-
\ </prim:sort>\n <prim:facets>\n <prim:language>eng</prim:language>\n
|
295
|
-
\ <prim:creationdate>2012</prim:creationdate>\n
|
296
|
-
\ <prim:collection>ScienceDirect (Elsevier)</prim:collection>\n
|
297
|
-
\ <prim:collection>SciVerse ScienceDirect (Elsevier)</prim:collection>\n
|
298
|
-
\ <prim:prefilter>articles</prim:prefilter>\n <prim:rsrctype>articles</prim:rsrctype>\n
|
299
|
-
\ <prim:jtitle>New Scientist</prim:jtitle>\n <prim:frbrgroupid>485703486</prim:frbrgroupid>\n
|
300
|
-
\ <prim:frbrtype>6</prim:frbrtype>\n </prim:facets>\n
|
301
|
-
\ <prim:frbr>\n <prim:t>2</prim:t>\n
|
302
|
-
\ <prim:k1>2012</prim:k1>\n <prim:k2>02624079</prim:k2>\n
|
303
|
-
\ <prim:k3>10.1016/S0262-4079(12)60794-5</prim:k3>\n
|
304
|
-
\ <prim:k4>213</prim:k4>\n <prim:k5>2858</prim:k5>\n
|
305
|
-
\ <prim:k6>7</prim:k6>\n <prim:k7>new
|
306
|
-
scientist</prim:k7>\n <prim:k8>disputed painting
|
307
|
-
revealed as van gogh</prim:k8>\n <prim:k9>disputedpaintingrevengogh</prim:k9>\n
|
308
|
-
\ <prim:k12>disputedpaintingrevealeda</prim:k12>\n
|
309
|
-
\ </prim:frbr>\n <prim:delivery>\n <prim:delcategory>Remote
|
310
|
-
Search Resource</prim:delcategory>\n <prim:fulltext>fulltext</prim:fulltext>\n
|
311
|
-
\ </prim:delivery>\n <prim:ranking>\n
|
312
|
-
\ <prim:booster1>1</prim:booster1>\n <prim:booster2>1</prim:booster2>\n
|
313
|
-
\ <prim:pcg_type>publisher</prim:pcg_type>\n </prim:ranking>\n
|
314
|
-
\ <prim:addata>\n <prim:atitle>Disputed
|
315
|
-
painting revealed as a Van Gogh</prim:atitle>\n <prim:jtitle>New
|
316
|
-
Scientist</prim:jtitle>\n <prim:date>20120331</prim:date>\n
|
317
|
-
\ <prim:risdate>20120331</prim:risdate>\n <prim:volume>213</prim:volume>\n
|
318
|
-
\ <prim:issue>2858</prim:issue>\n <prim:spage>7</prim:spage>\n
|
319
|
-
\ <prim:epage>7</prim:epage>\n <prim:pages>7-7</prim:pages>\n
|
320
|
-
\ <prim:issn>0262-4079</prim:issn>\n <prim:genre>article</prim:genre>\n
|
321
|
-
\ <prim:ristype>JOUR</prim:ristype>\n <prim:abstract>High-energy
|
322
|
-
radiation reveals that a painting of a bouquet considered too flowery to be
|
323
|
-
done by Van Gogh was actually his</prim:abstract>\n <prim:doi>10.1016/S0262-4079(12)60794-5</prim:doi>\n
|
324
|
-
\ </prim:addata>\n </prim:record>\n </prim:PrimoNMBib>\n
|
325
|
-
\ <sear:GETIT GetIt2="http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-04-10T14%3A24%3A06IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Disputed%20painting%20revealed%20as%20a%20Van%20Gogh&amp;rft.jtitle=New%20Scientist&amp;rft.btitle=&amp;rft.aulast=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.date=20120331&amp;rft.volume=213&amp;rft.issue=2858&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=7&amp;rft.epage=7&amp;rft.pages=7-7&amp;rft.artnum=&amp;rft.issn=0262-4079&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/S0262-4079(12)60794-5&amp;rft.object_id=&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S0262-4079(12)60794-5&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/"
|
326
|
-
GetIt1="http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2013-04-10T14%3A24%3A06IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Disputed%20painting%20revealed%20as%20a%20Van%20Gogh&amp;rft.jtitle=New%20Scientist&amp;rft.btitle=&amp;rft.aulast=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.date=20120331&amp;rft.volume=213&amp;rft.issue=2858&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=7&amp;rft.epage=7&amp;rft.pages=7-7&amp;rft.artnum=&amp;rft.issn=0262-4079&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/S0262-4079(12)60794-5&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S0262-4079(12)60794-5&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/&amp;template=openurlfull_article"
|
327
|
-
deliveryCategory="Remote Search Resource"/>\n <sear:LINKS>\n
|
328
|
-
\ <sear:openurl><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-04-10T14%3A24%3A06IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Disputed%20painting%20revealed%20as%20a%20Van%20Gogh&rft.jtitle=New%20Scientist&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.date=20120331&rft.volume=213&rft.issue=2858&rft.part=&rft.quarter=&rft.ssn=&rft.spage=7&rft.epage=7&rft.pages=7-7&rft.artnum=&rft.issn=0262-4079&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1016/S0262-4079(12)60794-5&rft.object_id=&rft.eisbn=&rft_dat=<sciversesciencedirect_elsevier>S0262-4079(12)60794-5</sciversesciencedirect_elsevier>&rft_id=info:oai/]]></sear:openurl>\n
|
329
|
-
\ <sear:backlink>http://dx.doi.org/10.1016/S0262-4079(12)60794-5</sear:backlink>\n
|
330
|
-
\ <sear:thumbnail/>\n <sear:openurlfulltext><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2013-04-10T14%3A24%3A06IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Disputed%20painting%20revealed%20as%20a%20Van%20Gogh&rft.jtitle=New%20Scientist&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.date=20120331&rft.volume=213&rft.issue=2858&rft.part=&rft.quarter=&rft.ssn=&rft.spage=7&rft.epage=7&rft.pages=7-7&rft.artnum=&rft.issn=0262-4079&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1016/S0262-4079(12)60794-5&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=&rft.eisbn=&rft_dat=<sciversesciencedirect_elsevier>S0262-4079(12)60794-5</sciversesciencedirect_elsevier>&rft_id=info:oai/&template=openurlfull_article]]></sear:openurlfulltext>\n
|
331
|
-
\ </sear:LINKS>\n </sear:DOC>\n <sear:DOC
|
332
|
-
LOCAL="false" SEARCH_ENGINE_TYPE="Primo Central Search Engine"
|
333
|
-
SEARCH_ENGINE="PrimoCentralThirdNode" NO="2" RANK="0.2986234"
|
334
|
-
ID="145966088">\n <PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">\n
|
335
|
-
\ <record>\n <control>\n <sourcerecordid>S0262-4079(11)60359-X</sourcerecordid>\n
|
336
|
-
\ <sourceid>sciversesciencedirect_elsevier</sourceid>\n
|
337
|
-
\ <recordid>TN_sciversesciencedirect_elsevierS0262-4079(11)60359-X</recordid>\n
|
338
|
-
\ <sourcesystem>Other</sourcesystem>\n </control>\n
|
339
|
-
\ <display>\n <type>article</type>\n
|
340
|
-
\ <title>X-rays show why van Gogh's yellows have darkened</title>\n
|
341
|
-
\ <ispartof>New Scientist, 2011, Vol.209(2800), pp.5-5</ispartof>\n
|
342
|
-
\ <identifier>&lt;b>ISSN: &lt;/b>0262-4079
|
343
|
-
; &lt;b>DOI: &lt;/b>10.1016/S0262-4079(11)60359-X</identifier>\n
|
344
|
-
\ <description>Van Gogh may have made his paint last longer
|
345
|
-
by adding barium sulphate, X-ray synchrotron reveals – an addition
|
346
|
-
that has made the paint darken</description>\n <language>eng</language>\n
|
347
|
-
\ <source>SciVerse ScienceDirect Journals</source>\n
|
47
|
+
xmlns:sear="http://www.exlibrisgroup.com/xsd/jaguar/search"><sear:JAGROOT>\n
|
48
|
+
\ <sear:RESULT>\n <sear:QUERYTRANSFORMS/>\n <sear:FACETLIST
|
49
|
+
ACCURATE_COUNTERS="true">\n <sear:FACET NAME="creator"
|
50
|
+
COUNT="20">\n <sear:FACET_VALUES KEY="Kooij,
|
51
|
+
E.S." VALUE="9"/>\n <sear:FACET_VALUES KEY="Tian,
|
52
|
+
He" VALUE="6"/>\n <sear:FACET_VALUES KEY="Radepont,
|
53
|
+
Marie" VALUE="7"/>\n <sear:FACET_VALUES KEY="Russell,
|
54
|
+
John" VALUE="103"/>\n <sear:FACET_VALUES KEY="Kimmelman,
|
55
|
+
Michael" VALUE="93"/>\n <sear:FACET_VALUES KEY="Gogh,
|
56
|
+
Vincent Van" VALUE="18"/>\n <sear:FACET_VALUES
|
57
|
+
KEY="Arnold, Wilfred Niels" VALUE="15"/>\n <sear:FACET_VALUES
|
58
|
+
KEY="Koeman, N.J." VALUE="10"/>\n <sear:FACET_VALUES
|
59
|
+
KEY="Monico, Letizia" VALUE="9"/>\n <sear:FACET_VALUES
|
60
|
+
KEY="Van Der Snickt, Geert" VALUE="9"/>\n <sear:FACET_VALUES
|
61
|
+
KEY="Vogel, Carol" VALUE="167"/>\n <sear:FACET_VALUES
|
62
|
+
KEY="Miliani, Costanza" VALUE="7"/>\n <sear:FACET_VALUES
|
63
|
+
KEY="Hendriks, Ella" VALUE="8"/>\n <sear:FACET_VALUES
|
64
|
+
KEY="Cotte, Marine" VALUE="10"/>\n <sear:FACET_VALUES
|
65
|
+
KEY="Janssens, Koen" VALUE="15"/>\n <sear:FACET_VALUES
|
66
|
+
KEY="Reif, Rita" VALUE="80"/>\n <sear:FACET_VALUES
|
67
|
+
KEY="Griessen, R." VALUE="20"/>\n <sear:FACET_VALUES
|
68
|
+
KEY="Dik, Joris" VALUE="9"/>\n <sear:FACET_VALUES
|
69
|
+
KEY="Soth, Lauren" VALUE="9"/>\n <sear:FACET_VALUES
|
70
|
+
KEY="Bailey, Martin" VALUE="29"/>\n </sear:FACET>\n
|
71
|
+
\ <sear:FACET NAME="lang" COUNT="20">\n <sear:FACET_VALUES
|
72
|
+
KEY="cat" VALUE="10"/>\n <sear:FACET_VALUES
|
73
|
+
KEY="hun" VALUE="1"/>\n <sear:FACET_VALUES
|
74
|
+
KEY="ger" VALUE="326"/>\n <sear:FACET_VALUES
|
75
|
+
KEY="por" VALUE="29"/>\n <sear:FACET_VALUES
|
76
|
+
KEY="fre" VALUE="199"/>\n <sear:FACET_VALUES
|
77
|
+
KEY="heb" VALUE="3"/>\n <sear:FACET_VALUES
|
78
|
+
KEY="rum" VALUE="2"/>\n <sear:FACET_VALUES
|
79
|
+
KEY="swe" VALUE="6"/>\n <sear:FACET_VALUES
|
80
|
+
KEY="kor" VALUE="20"/>\n <sear:FACET_VALUES
|
81
|
+
KEY="und" VALUE="8"/>\n <sear:FACET_VALUES
|
82
|
+
KEY="nor" VALUE="1"/>\n <sear:FACET_VALUES
|
83
|
+
KEY="dan" VALUE="2"/>\n <sear:FACET_VALUES
|
84
|
+
KEY="rus" VALUE="1"/>\n <sear:FACET_VALUES
|
85
|
+
KEY="dut" VALUE="59"/>\n <sear:FACET_VALUES
|
86
|
+
KEY="ita" VALUE="22"/>\n <sear:FACET_VALUES
|
87
|
+
KEY="chi" VALUE="118"/>\n <sear:FACET_VALUES
|
88
|
+
KEY="pol" VALUE="2"/>\n <sear:FACET_VALUES
|
89
|
+
KEY="glg" VALUE="2"/>\n <sear:FACET_VALUES
|
90
|
+
KEY="eng" VALUE="24612"/>\n <sear:FACET_VALUES
|
91
|
+
KEY="spa" VALUE="161"/>\n </sear:FACET>\n
|
92
|
+
\ <sear:FACET NAME="rtype" COUNT="14">\n <sear:FACET_VALUES
|
93
|
+
KEY="books" VALUE="108"/>\n <sear:FACET_VALUES
|
94
|
+
KEY="reviews" VALUE="3136"/>\n <sear:FACET_VALUES
|
95
|
+
KEY="journals" VALUE="2"/>\n <sear:FACET_VALUES
|
96
|
+
KEY="articles" VALUE="16253"/>\n <sear:FACET_VALUES
|
97
|
+
KEY="other" VALUE="4"/>\n <sear:FACET_VALUES
|
98
|
+
KEY="text_resources" VALUE="641"/>\n <sear:FACET_VALUES
|
99
|
+
KEY="websites" VALUE="21"/>\n <sear:FACET_VALUES
|
100
|
+
KEY="newspaper_articles" VALUE="14004"/>\n <sear:FACET_VALUES
|
101
|
+
KEY="reference_entrys" VALUE="301"/>\n <sear:FACET_VALUES
|
102
|
+
KEY="research_datasets" VALUE="30"/>\n <sear:FACET_VALUES
|
103
|
+
KEY="Dissertations" VALUE="82"/>\n <sear:FACET_VALUES
|
104
|
+
KEY="conference_proceedings" VALUE="430"/>\n <sear:FACET_VALUES
|
105
|
+
KEY="images" VALUE="13"/>\n <sear:FACET_VALUES
|
106
|
+
KEY="media" VALUE="161"/>\n </sear:FACET>\n
|
107
|
+
\ <sear:FACET NAME="topic" COUNT="19">\n <sear:FACET_VALUES
|
108
|
+
KEY="Artists" VALUE="712"/>\n <sear:FACET_VALUES
|
109
|
+
KEY="Art Exhibitions" VALUE="474"/>\n <sear:FACET_VALUES
|
110
|
+
KEY="Dutch Painters" VALUE="58"/>\n <sear:FACET_VALUES
|
111
|
+
KEY="Modern Art" VALUE="209"/>\n <sear:FACET_VALUES
|
112
|
+
KEY="Bipolar Disorder" VALUE="53"/>\n <sear:FACET_VALUES
|
113
|
+
KEY="Gogh, Vincent Van" VALUE="123"/>\n <sear:FACET_VALUES
|
114
|
+
KEY="Famous Persons" VALUE="100"/>\n <sear:FACET_VALUES
|
115
|
+
KEY="Museums" VALUE="595"/>\n <sear:FACET_VALUES
|
116
|
+
KEY="Creativity" VALUE="145"/>\n <sear:FACET_VALUES
|
117
|
+
KEY="Art Auctions" VALUE="72"/>\n <sear:FACET_VALUES
|
118
|
+
KEY="Art Museums" VALUE="393"/>\n <sear:FACET_VALUES
|
119
|
+
KEY="Art" VALUE="547"/>\n <sear:FACET_VALUES
|
120
|
+
KEY="Painters (Artists)" VALUE="624"/>\n <sear:FACET_VALUES
|
121
|
+
KEY=" Van Gogh" VALUE="82"/>\n <sear:FACET_VALUES
|
122
|
+
KEY="Art Thefts" VALUE="119"/>\n <sear:FACET_VALUES
|
123
|
+
KEY="Epilepsy" VALUE="56"/>\n <sear:FACET_VALUES
|
124
|
+
KEY="Mental Disorders" VALUE="62"/>\n <sear:FACET_VALUES
|
125
|
+
KEY="Paintings" VALUE="87"/>\n <sear:FACET_VALUES
|
126
|
+
KEY="Painting (Art)" VALUE="556"/>\n </sear:FACET>\n
|
127
|
+
\ <sear:FACET NAME="tlevel" COUNT="2">\n <sear:FACET_VALUES
|
128
|
+
KEY="online_resources" VALUE="27696"/>\n <sear:FACET_VALUES
|
129
|
+
KEY="peer_reviewed" VALUE="8186"/>\n </sear:FACET>\n
|
130
|
+
\ <sear:FACET NAME="pfilter" COUNT="12">\n
|
131
|
+
\ <sear:FACET_VALUES KEY="books" VALUE="178"/>\n
|
132
|
+
\ <sear:FACET_VALUES KEY="reviews" VALUE="3136"/>\n
|
133
|
+
\ <sear:FACET_VALUES KEY="reference_entrys" VALUE="301"/>\n
|
134
|
+
\ <sear:FACET_VALUES KEY="journals" VALUE="2"/>\n
|
135
|
+
\ <sear:FACET_VALUES KEY="articles" VALUE="16633"/>\n
|
136
|
+
\ <sear:FACET_VALUES KEY="research_datasets" VALUE="30"/>\n
|
137
|
+
\ <sear:FACET_VALUES KEY="Dissertations" VALUE="82"/>\n
|
138
|
+
\ <sear:FACET_VALUES KEY="audio_video" VALUE="161"/>\n
|
139
|
+
\ <sear:FACET_VALUES KEY="images" VALUE="13"/>\n
|
140
|
+
\ <sear:FACET_VALUES KEY="conference_proceedings" VALUE="430"/>\n
|
141
|
+
\ <sear:FACET_VALUES KEY="websites" VALUE="21"/>\n
|
142
|
+
\ <sear:FACET_VALUES KEY="newspaper_articles" VALUE="14004"/>\n
|
143
|
+
\ </sear:FACET>\n <sear:FACET NAME="creationdate"
|
144
|
+
COUNT="76">\n <sear:FACET_VALUES KEY="2008"
|
145
|
+
VALUE="1999"/>\n <sear:FACET_VALUES KEY="2009"
|
146
|
+
VALUE="1780"/>\n <sear:FACET_VALUES KEY="2006"
|
147
|
+
VALUE="2146"/>\n <sear:FACET_VALUES KEY="2007"
|
148
|
+
VALUE="2081"/>\n <sear:FACET_VALUES KEY="2004"
|
149
|
+
VALUE="2062"/>\n <sear:FACET_VALUES KEY="2005"
|
150
|
+
VALUE="2124"/>\n <sear:FACET_VALUES KEY="2002"
|
151
|
+
VALUE="1428"/>\n <sear:FACET_VALUES KEY="2003"
|
152
|
+
VALUE="1738"/>\n <sear:FACET_VALUES KEY="1930"
|
153
|
+
VALUE="72"/>\n <sear:FACET_VALUES KEY="1970"
|
154
|
+
VALUE="36"/>\n <sear:FACET_VALUES KEY="1971"
|
155
|
+
VALUE="41"/>\n <sear:FACET_VALUES KEY="1972"
|
156
|
+
VALUE="52"/>\n <sear:FACET_VALUES KEY="1973"
|
157
|
+
VALUE="38"/>\n <sear:FACET_VALUES KEY="1974"
|
158
|
+
VALUE="35"/>\n <sear:FACET_VALUES KEY="1975"
|
159
|
+
VALUE="44"/>\n <sear:FACET_VALUES KEY="1976"
|
160
|
+
VALUE="56"/>\n <sear:FACET_VALUES KEY="1977"
|
161
|
+
VALUE="52"/>\n <sear:FACET_VALUES KEY="2012"
|
162
|
+
VALUE="1650"/>\n <sear:FACET_VALUES KEY="1978"
|
163
|
+
VALUE="43"/>\n <sear:FACET_VALUES KEY="2011"
|
164
|
+
VALUE="1478"/>\n <sear:FACET_VALUES KEY="1979"
|
165
|
+
VALUE="54"/>\n <sear:FACET_VALUES KEY="2010"
|
166
|
+
VALUE="2328"/>\n <sear:FACET_VALUES KEY="2013"
|
167
|
+
VALUE="993"/>\n <sear:FACET_VALUES KEY="2014"
|
168
|
+
VALUE="590"/>\n <sear:FACET_VALUES KEY="1900"
|
169
|
+
VALUE="13"/>\n <sear:FACET_VALUES KEY="1990"
|
170
|
+
VALUE="600"/>\n <sear:FACET_VALUES KEY="1940"
|
171
|
+
VALUE="136"/>\n <sear:FACET_VALUES KEY="500"
|
172
|
+
VALUE="1"/>\n <sear:FACET_VALUES KEY="1982"
|
173
|
+
VALUE="57"/>\n <sear:FACET_VALUES KEY="1983"
|
174
|
+
VALUE="98"/>\n <sear:FACET_VALUES KEY="1"
|
175
|
+
VALUE="8"/>\n <sear:FACET_VALUES KEY="1980"
|
176
|
+
VALUE="66"/>\n <sear:FACET_VALUES KEY="1981"
|
177
|
+
VALUE="83"/>\n <sear:FACET_VALUES KEY="1986"
|
178
|
+
VALUE="222"/>\n <sear:FACET_VALUES KEY="1987"
|
179
|
+
VALUE="349"/>\n <sear:FACET_VALUES KEY="1984"
|
180
|
+
VALUE="129"/>\n <sear:FACET_VALUES KEY="1985"
|
181
|
+
VALUE="224"/>\n <sear:FACET_VALUES KEY="1988"
|
182
|
+
VALUE="297"/>\n <sear:FACET_VALUES KEY="1989"
|
183
|
+
VALUE="290"/>\n <sear:FACET_VALUES KEY="1910"
|
184
|
+
VALUE="4"/>\n <sear:FACET_VALUES KEY="1600"
|
185
|
+
VALUE="4"/>\n <sear:FACET_VALUES KEY="1959"
|
186
|
+
VALUE="20"/>\n <sear:FACET_VALUES KEY="1958"
|
187
|
+
VALUE="23"/>\n <sear:FACET_VALUES KEY="1957"
|
188
|
+
VALUE="29"/>\n <sear:FACET_VALUES KEY="1956"
|
189
|
+
VALUE="32"/>\n <sear:FACET_VALUES KEY="1955"
|
190
|
+
VALUE="20"/>\n <sear:FACET_VALUES KEY="1954"
|
191
|
+
VALUE="18"/>\n <sear:FACET_VALUES KEY="1953"
|
192
|
+
VALUE="31"/>\n <sear:FACET_VALUES KEY="1952"
|
193
|
+
VALUE="21"/>\n <sear:FACET_VALUES KEY="1951"
|
194
|
+
VALUE="20"/>\n <sear:FACET_VALUES KEY="1950"
|
195
|
+
VALUE="157"/>\n <sear:FACET_VALUES KEY="1995"
|
196
|
+
VALUE="466"/>\n <sear:FACET_VALUES KEY="1996"
|
197
|
+
VALUE="512"/>\n <sear:FACET_VALUES KEY="1997"
|
198
|
+
VALUE="613"/>\n <sear:FACET_VALUES KEY="1998"
|
199
|
+
VALUE="964"/>\n <sear:FACET_VALUES KEY="1991"
|
200
|
+
VALUE="441"/>\n <sear:FACET_VALUES KEY="1500"
|
201
|
+
VALUE="6"/>\n <sear:FACET_VALUES KEY="1992"
|
202
|
+
VALUE="420"/>\n <sear:FACET_VALUES KEY="1993"
|
203
|
+
VALUE="452"/>\n <sear:FACET_VALUES KEY="1994"
|
204
|
+
VALUE="424"/>\n <sear:FACET_VALUES KEY="1800"
|
205
|
+
VALUE="4"/>\n <sear:FACET_VALUES KEY="1700"
|
206
|
+
VALUE="10"/>\n <sear:FACET_VALUES KEY="1999"
|
207
|
+
VALUE="1042"/>\n <sear:FACET_VALUES KEY="1920"
|
208
|
+
VALUE="18"/>\n <sear:FACET_VALUES KEY="1967"
|
209
|
+
VALUE="26"/>\n <sear:FACET_VALUES KEY="1966"
|
210
|
+
VALUE="33"/>\n <sear:FACET_VALUES KEY="1969"
|
211
|
+
VALUE="23"/>\n <sear:FACET_VALUES KEY="1968"
|
212
|
+
VALUE="32"/>\n <sear:FACET_VALUES KEY="1963"
|
213
|
+
VALUE="30"/>\n <sear:FACET_VALUES KEY="1962"
|
214
|
+
VALUE="31"/>\n <sear:FACET_VALUES KEY="1965"
|
215
|
+
VALUE="19"/>\n <sear:FACET_VALUES KEY="1964"
|
216
|
+
VALUE="37"/>\n <sear:FACET_VALUES KEY="1961"
|
217
|
+
VALUE="35"/>\n <sear:FACET_VALUES KEY="1960"
|
218
|
+
VALUE="24"/>\n <sear:FACET_VALUES KEY="2001"
|
219
|
+
VALUE="1321"/>\n <sear:FACET_VALUES KEY="2000"
|
220
|
+
VALUE="1246"/>\n </sear:FACET>\n <sear:FACET
|
221
|
+
NAME="domain" COUNT="20">\n <sear:FACET_VALUES
|
222
|
+
KEY="Nature Publishing Group (CrossRef)" VALUE="47"/>\n
|
223
|
+
\ <sear:FACET_VALUES KEY="Taylor &amp; Francis Online
|
224
|
+
- Journals" VALUE="2012"/>\n <sear:FACET_VALUES
|
225
|
+
KEY="Wiley Online Library" VALUE="120"/>\n <sear:FACET_VALUES
|
226
|
+
KEY="JSTOR" VALUE="806"/>\n <sear:FACET_VALUES
|
227
|
+
KEY="ERIC (U.S. Dept. of Education)" VALUE="130"/>\n
|
228
|
+
\ <sear:FACET_VALUES KEY="Project MUSE" VALUE="561"/>\n
|
229
|
+
\ <sear:FACET_VALUES KEY="Dialnet" VALUE="19"/>\n
|
230
|
+
\ <sear:FACET_VALUES KEY="SciVerse ScienceDirect (Elsevier)"
|
231
|
+
VALUE="1650"/>\n <sear:FACET_VALUES KEY="American
|
232
|
+
Medical Association (CrossRef)" VALUE="13"/>\n <sear:FACET_VALUES
|
233
|
+
KEY="Wolters Kluwer - Ovid - Lippincott Williams &amp; Wilkins (CrossRef)"
|
234
|
+
VALUE="15"/>\n <sear:FACET_VALUES KEY="SpringerLink"
|
235
|
+
VALUE="413"/>\n <sear:FACET_VALUES KEY="Britannica
|
236
|
+
Online Academic Edition" VALUE="75"/>\n <sear:FACET_VALUES
|
237
|
+
KEY="MEDLINE (NLM)" VALUE="1087"/>\n <sear:FACET_VALUES
|
238
|
+
KEY="Informa - Taylor &amp; Francis (CrossRef)" VALUE="1671"/>\n
|
239
|
+
\ <sear:FACET_VALUES KEY="Directory of Open Access Journals
|
240
|
+
(DOAJ)" VALUE="112"/>\n <sear:FACET_VALUES KEY="NDLTD
|
241
|
+
Union Catalog" VALUE="66"/>\n <sear:FACET_VALUES
|
242
|
+
KEY="American Chemical Society (CrossRef)" VALUE="13"/>\n
|
243
|
+
\ <sear:FACET_VALUES KEY="维普资讯
|
244
|
+
(Chongqing VIP Information Co.)" VALUE="117"/>\n <sear:FACET_VALUES
|
245
|
+
KEY="KISS (Korean studies Information Service System)" VALUE="18"/>\n
|
246
|
+
\ <sear:FACET_VALUES KEY="OneFile (GALE)" VALUE="26192"/>\n
|
247
|
+
\ </sear:FACET>\n <sear:FACET NAME="jtitle"
|
248
|
+
COUNT="19">\n <sear:FACET_VALUES KEY="London
|
249
|
+
Evening Standard (London, England)" VALUE="159"/>\n <sear:FACET_VALUES
|
250
|
+
KEY="Jama: The Journal Of The American Medical Association" VALUE="14"/>\n
|
251
|
+
\ <sear:FACET_VALUES KEY="PRWeb Newswire" VALUE="131"/>\n
|
252
|
+
\ <sear:FACET_VALUES KEY="ARTnews" VALUE="60"/>\n
|
253
|
+
\ <sear:FACET_VALUES KEY="The New York Times" VALUE="2456"/>\n
|
254
|
+
\ <sear:FACET_VALUES KEY="Nature" VALUE="29"/>\n
|
255
|
+
\ <sear:FACET_VALUES KEY="Quotations Book" VALUE="21"/>\n
|
256
|
+
\ <sear:FACET_VALUES KEY="Burlington Magazine" VALUE="92"/>\n
|
257
|
+
\ <sear:FACET_VALUES KEY="The Times (London, England)"
|
258
|
+
VALUE="201"/>\n <sear:FACET_VALUES KEY="Asia
|
259
|
+
Africa Intelligence Wire" VALUE="523"/>\n <sear:FACET_VALUES
|
260
|
+
KEY="Choice Reviews Online" VALUE="38"/>\n <sear:FACET_VALUES
|
261
|
+
KEY="Time" VALUE="415"/>\n <sear:FACET_VALUES
|
262
|
+
KEY="Newsweek" VALUE="46"/>\n <sear:FACET_VALUES
|
263
|
+
KEY="Analytical Chemistry" VALUE="12"/>\n <sear:FACET_VALUES
|
264
|
+
KEY="Sunday Times (London, England)" VALUE="184"/>\n
|
265
|
+
\ <sear:FACET_VALUES KEY="Nederlands Tijdschrift Voor Geneeskunde"
|
266
|
+
VALUE="12"/>\n <sear:FACET_VALUES KEY="Apollo"
|
267
|
+
VALUE="174"/>\n <sear:FACET_VALUES KEY="School
|
268
|
+
Arts" VALUE="124"/>\n <sear:FACET_VALUES KEY="Arts
|
269
|
+
&amp; Activities" VALUE="153"/>\n </sear:FACET>\n
|
270
|
+
\ </sear:FACETLIST>\n <sear:DOCSET HIT_TIME="84"
|
271
|
+
TOTALHITS="33912" FIRSTHIT="1" LASTHIT="5" TOTAL_TIME="283">\n
|
272
|
+
\ <sear:DOC ID="245124465" RANK="0.10000001"
|
273
|
+
NO="1" SEARCH_ENGINE="PrimoCentralThirdNode" SEARCH_ENGINE_TYPE="Primo
|
274
|
+
Central Search Engine" LOCAL="false">\n <PrimoNMBib
|
275
|
+
xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">\n
|
276
|
+
\ <record>\n <control>\n <sourcerecordid>10.5860/CHOICE.36-1963</sourcerecordid>\n
|
277
|
+
\ <sourceid>crossref</sourceid>\n <recordid>TN_crossref10.5860/CHOICE.36-1963</recordid>\n
|
278
|
+
\ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
|
279
|
+
\ </control>\n <display>\n <type>article</type>\n
|
280
|
+
\ <title>Van Gogh</title>\n <ispartof>Choice
|
281
|
+
Reviews Online, 1998, Vol.36(04), pp.36-1963-36-1963</ispartof>\n <identifier><![CDATA[<b>ISSN:</b>
|
282
|
+
0009-4978 ; <b>E-ISSN:</b> 1523-8253 ; <b>DOI:</b>
|
283
|
+
http://dx.doi.org/10.5860/CHOICE.36-1963]]></identifier>\n <language>eng</language>\n
|
284
|
+
\ <source>CrossRef</source>\n <lds40>19981201</lds40>\n
|
285
|
+
\ <lds41>19981201</lds41>\n <lds43>19981201</lds43>\n
|
286
|
+
\ <lds45>19981201</lds45>\n <lds50>peer_reviewed</lds50>\n
|
348
287
|
\ </display>\n <links>\n <openurl>$$Topenurl_article</openurl>\n
|
349
|
-
\ <
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
\ <
|
356
|
-
\ <
|
357
|
-
\ <
|
358
|
-
\ <
|
359
|
-
\ <
|
360
|
-
\ <
|
361
|
-
\ <
|
362
|
-
\ <
|
363
|
-
\
|
364
|
-
\ <
|
365
|
-
\ <
|
366
|
-
|
367
|
-
\
|
368
|
-
\ <
|
369
|
-
|
370
|
-
|
371
|
-
\ <
|
372
|
-
|
373
|
-
\ <
|
374
|
-
\
|
375
|
-
|
376
|
-
\ <
|
377
|
-
\
|
378
|
-
|
379
|
-
\
|
380
|
-
\
|
288
|
+
\ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
|
289
|
+
\ <addlink>$$Uhttps://exlibris-pub.s3.amazonaws.com/aboutCrossref.html$$DView
|
290
|
+
CrossRef copyright notice</addlink>\n </links>\n
|
291
|
+
\ <search>\n <title>Van Gogh</title>\n
|
292
|
+
\ <general>English</general>\n <general>10.5860/CHOICE.36-1963</general>\n
|
293
|
+
\ <sourceid>crossref</sourceid>\n <recordid>crossref10.5860/CHOICE.36-1963</recordid>\n
|
294
|
+
\ <issn>0009-4978</issn>\n <issn>00094978</issn>\n
|
295
|
+
\ <issn>1523-8253</issn>\n <issn>15238253</issn>\n
|
296
|
+
\ <rsrctype>article</rsrctype>\n <creationdate>1998</creationdate>\n
|
297
|
+
\ <addtitle>Choice Reviews Online</addtitle>\n <searchscope>crossref_rest</searchscope>\n
|
298
|
+
\ <searchscope>CrossRef</searchscope>\n <searchscope>Crossref</searchscope>\n
|
299
|
+
\ <searchscope>crossref</searchscope>\n <scope>crossref_rest</scope>\n
|
300
|
+
\ <scope>CrossRef</scope>\n <scope>Crossref</scope>\n
|
301
|
+
\ <scope>crossref</scope>\n </search>\n
|
302
|
+
\ <sort>\n <title>Van Gogh</title>\n
|
303
|
+
\ <creationdate>19981201</creationdate>\n </sort>\n
|
304
|
+
\ <facets>\n <frbrgroupid>5418720077066216478</frbrgroupid>\n
|
305
|
+
\ <frbrtype>6</frbrtype>\n <language>eng</language>\n
|
306
|
+
\ <creationdate>1998</creationdate>\n <prefilter>articles</prefilter>\n
|
307
|
+
\ <rsrctype>articles</rsrctype>\n <jtitle>Choice
|
308
|
+
Reviews Online</jtitle>\n <toplevel>peer_reviewed</toplevel>\n
|
309
|
+
\ </facets>\n <frbr>\n <t>2</t>\n
|
310
|
+
\ <k1>1998</k1>\n <k2>00094978</k2>\n
|
311
|
+
\ <k2>15238253</k2>\n <k3>10.5860/CHOICE.36-1963</k3>\n
|
312
|
+
\ <k4>36</k4>\n <k5>04</k5>\n
|
313
|
+
\ <k6>36</k6>\n <k7>choice
|
314
|
+
reviews online</k7>\n <k8>van gogh</k8>\n
|
315
|
+
\ <k9>vangogh</k9>\n </frbr>\n
|
316
|
+
\ <delivery>\n <delcategory>Remote
|
317
|
+
Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n
|
318
|
+
\ </delivery>\n <ranking>\n <booster1>1</booster1>\n
|
319
|
+
\ <booster2>1</booster2>\n <pcg_type>aggregator_crossref</pcg_type>\n
|
320
|
+
\ </ranking>\n <addata>\n <atitle>Van
|
321
|
+
Gogh</atitle>\n <jtitle>Choice Reviews Online</jtitle>\n
|
322
|
+
\ <date>19981201</date>\n <risdate>19981201</risdate>\n
|
323
|
+
\ <volume>36</volume>\n <issue>04</issue>\n
|
324
|
+
\ <spage>36-1963</spage>\n <epage>36-1963</epage>\n
|
325
|
+
\ <pages>36-1963-36-1963</pages>\n <issn>0009-4978</issn>\n
|
326
|
+
\ <eissn>1523-8253</eissn>\n <genre>article</genre>\n
|
327
|
+
\ <ristype>JOUR</ristype>\n <doi>10.5860/CHOICE.36-1963</doi>\n
|
328
|
+
\ </addata>\n </record>\n </PrimoNMBib>\n
|
329
|
+
\ <sear:GETIT deliveryCategory="Remote Search Resource"
|
330
|
+
GetIt1="http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2014-06-05T12%3A49%3A33IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-crossref&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Van%20Gogh&amp;rft.jtitle=Choice%20Reviews%20Online&amp;rft.btitle=&amp;rft.aulast=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=&amp;rft.aucorp=&amp;rft.date=19981201&amp;rft.volume=36&amp;rft.issue=04&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=36-1963&amp;rft.epage=36-1963&amp;rft.pages=36-1963-36-1963&amp;rft.artnum=&amp;rft.issn=0009-4978&amp;rft.eissn=1523-8253&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.5860/CHOICE.36-1963&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=&amp;rft.eisbn=&amp;rft_dat=&lt;crossref>10.5860/CHOICE.36-1963&lt;/crossref>&lt;grp_id>5418720077066216478&lt;/grp_id>&lt;oa>&lt;/oa>&amp;rft_id=info:oai/&amp;template=openurlfull_article&amp;req.language="
|
331
|
+
GetIt2=""/><sear:LINKS><sear:openurl><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2014-06-05T12%3A49%3A33IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-crossref&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Van%20Gogh&rft.jtitle=Choice%20Reviews%20Online&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.date=19981201&rft.volume=36&rft.issue=04&rft.part=&rft.quarter=&rft.ssn=&rft.spage=36-1963&rft.epage=36-1963&rft.pages=36-1963-36-1963&rft.artnum=&rft.issn=0009-4978&rft.eissn=1523-8253&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.5860/CHOICE.36-1963&rft.object_id=&rft.eisbn=&rft_dat=<crossref>10.5860/CHOICE.36-1963</crossref><grp_id>5418720077066216478</grp_id><oa></oa>&rft_id=info:oai/&req.language=]]></sear:openurl><sear:thumbnail/><sear:openurlfulltext><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2014-06-05T12%3A49%3A33IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-crossref&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Van%20Gogh&rft.jtitle=Choice%20Reviews%20Online&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=&rft.aucorp=&rft.date=19981201&rft.volume=36&rft.issue=04&rft.part=&rft.quarter=&rft.ssn=&rft.spage=36-1963&rft.epage=36-1963&rft.pages=36-1963-36-1963&rft.artnum=&rft.issn=0009-4978&rft.eissn=1523-8253&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.5860/CHOICE.36-1963&rft.object_id=&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=&rft.eisbn=&rft_dat=<crossref>10.5860/CHOICE.36-1963</crossref><grp_id>5418720077066216478</grp_id><oa></oa>&rft_id=info:oai/&template=openurlfull_article&req.language=]]></sear:openurlfulltext><sear:addlink>https://exlibris-pub.s3.amazonaws.com/aboutCrossref.html</sear:addlink></sear:LINKS></sear:DOC>\n
|
332
|
+
\ <sear:DOC ID="56137930" RANK="0.1" NO="2"
|
333
|
+
SEARCH_ENGINE="PrimoCentralThirdNode" SEARCH_ENGINE_TYPE="Primo
|
334
|
+
Central Search Engine" LOCAL="false">\n <PrimoNMBib
|
335
|
+
xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">\n
|
336
|
+
\ <record>\n <control>\n <sourcerecordid>275312207</sourcerecordid>\n
|
337
|
+
\ <sourceid>gale_ofa</sourceid>\n <recordid>TN_gale_ofa275312207</recordid>\n
|
338
|
+
\ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
|
339
|
+
\ </control>\n <display>\n <type>article</type>\n
|
340
|
+
\ <title>Van Gogh: The Life</title>\n <creator>Bethune,
|
341
|
+
Brian</creator>\n <ispartof>Maclean's, Dec 5, 2011,
|
342
|
+
Vol.124(47), p.77(1)</ispartof>\n <identifier>&lt;b>ISSN:
|
343
|
+
&lt;/b>0024-9262</identifier>\n <language>English</language>\n
|
344
|
+
\ <source>Cengage Learning, Inc.</source>\n </display>\n
|
345
|
+
\ <links>\n <openurl>$$Topenurl_article</openurl>\n
|
346
|
+
\ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
|
347
|
+
\ </links>\n <search>\n <scope>gale_onefileg</scope>\n
|
348
|
+
\ <scope>gale_onefilea</scope>\n <creatorcontrib>Bethune,
|
349
|
+
Brian</creatorcontrib>\n <creatorcontrib>Bethune</creatorcontrib>\n
|
350
|
+
\ <title>Van Gogh: The Life.</title>\n <general>English</general>\n
|
351
|
+
\ <general>Rogers Publishing Ltd.</general>\n <general>Cengage
|
352
|
+
Learning, Inc.</general>\n <sourceid>gale_ofa</sourceid>\n
|
353
|
+
\ <recordid>gale_ofa275312207</recordid>\n <issn>0024-9262</issn>\n
|
354
|
+
\ <issn>00249262</issn>\n <rsrctype>article</rsrctype>\n
|
355
|
+
\ <creationdate>2011</creationdate>\n <recordtype>article</recordtype>\n
|
356
|
+
\ <addtitle>Maclean's</addtitle>\n <searchscope>OneFile</searchscope>\n
|
357
|
+
\ <scope>OneFile</scope>\n </search>\n
|
358
|
+
\ <sort>\n <title>Van Gogh: The Life.</title>\n
|
359
|
+
\ <author>Bethune, Brian</author>\n <creationdate>20111205</creationdate>\n
|
360
|
+
\ </sort>\n <facets>\n <frbrgroupid>4412197537331139454</frbrgroupid>\n
|
361
|
+
\ <frbrtype>6</frbrtype>\n <language>eng</language>\n
|
362
|
+
\ <creationdate>2011</creationdate>\n <collection>OneFile
|
363
|
+
(GALE)</collection>\n <prefilter>articles</prefilter>\n
|
364
|
+
\ <rsrctype>articles</rsrctype>\n <creatorcontrib>Bethune,
|
365
|
+
Brian</creatorcontrib>\n <jtitle>Maclean's</jtitle>\n
|
366
|
+
\ </facets>\n <frbr>\n <t>2</t>\n
|
367
|
+
\ <k1>2011</k1>\n <k2>00249262</k2>\n
|
368
|
+
\ <k4>124</k4>\n <k5>47</k5>\n
|
369
|
+
\ <k6>77</k6>\n <k7>maclean
|
370
|
+
apos s</k7>\n <k8>van gogh the life</k8>\n
|
371
|
+
\ <k9>vangoghthelife</k9>\n <k15>brianbethune</k15>\n
|
372
|
+
\ <k16>bethunebrian</k16>\n </frbr>\n
|
373
|
+
\ <delivery>\n <delcategory>Remote
|
381
374
|
Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n
|
382
375
|
\ </delivery>\n <ranking>\n <booster1>1</booster1>\n
|
383
|
-
\ <booster2>1</booster2>\n <pcg_type>
|
384
|
-
\ </ranking>\n <addata>\n <
|
385
|
-
|
386
|
-
|
387
|
-
\ <risdate>
|
388
|
-
\ <issue>
|
389
|
-
\ <
|
390
|
-
\ <
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
\ <
|
401
|
-
\
|
402
|
-
\ </sear:LINKS>\n </sear:DOC>\n <sear:DOC
|
403
|
-
LOCAL="false" SEARCH_ENGINE_TYPE="Primo Central Search Engine"
|
404
|
-
SEARCH_ENGINE="PrimoCentralThirdNode" NO="3" RANK="0.2361394"
|
405
|
-
ID="233740531">\n <PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">\n
|
406
|
-
\ <record>\n <control>\n <sourcerecordid>10.2307/25579974</sourcerecordid>\n
|
407
|
-
\ <sourceid>jstor</sourceid>\n <recordid>TN_jstor10.2307/25579974</recordid>\n
|
376
|
+
\ <booster2>1</booster2>\n <pcg_type>aggregator</pcg_type>\n
|
377
|
+
\ </ranking>\n <addata>\n <au>Bethune,
|
378
|
+
Brian</au>\n <atitle>Van Gogh: The Life.</atitle>\n
|
379
|
+
\ <jtitle>Maclean's</jtitle>\n <date>20111205</date>\n
|
380
|
+
\ <risdate>20111205</risdate>\n <volume>124</volume>\n
|
381
|
+
\ <issue>47</issue>\n <spage>77</spage>\n
|
382
|
+
\ <issn>0024-9262</issn>\n <genre>article</genre>\n
|
383
|
+
\ <ristype>JOUR</ristype>\n <pub>Rogers
|
384
|
+
Publishing Ltd.</pub>\n <lad01>gale_ofa</lad01>\n
|
385
|
+
\ </addata>\n </record>\n </PrimoNMBib>\n
|
386
|
+
\ <sear:GETIT deliveryCategory="Remote Search Resource"
|
387
|
+
GetIt1="http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2014-06-05T12%3A49%3A33IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Van%20Gogh:%20The%20Life.&amp;rft.jtitle=Maclean%27s&amp;rft.btitle=&amp;rft.aulast=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Bethune%2C%20Brian&amp;rft.aucorp=&amp;rft.date=20111205&amp;rft.volume=124&amp;rft.issue=47&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=77&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.issn=0024-9262&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=&amp;rft.eisbn=&amp;rft_dat=&lt;gale_ofa>275312207&lt;/gale_ofa>&lt;grp_id>4412197537331139454&lt;/grp_id>&lt;oa>&lt;/oa>&amp;rft_id=info:oai/&amp;template=openurlfull_article&amp;req.language="
|
388
|
+
GetIt2=""/><sear:LINKS><sear:openurl><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2014-06-05T12%3A49%3A33IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Van%20Gogh:%20The%20Life.&rft.jtitle=Maclean%27s&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Bethune%2C%20Brian&rft.aucorp=&rft.date=20111205&rft.volume=124&rft.issue=47&rft.part=&rft.quarter=&rft.ssn=&rft.spage=77&rft.epage=&rft.pages=&rft.artnum=&rft.issn=0024-9262&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.eisbn=&rft_dat=<gale_ofa>275312207</gale_ofa><grp_id>4412197537331139454</grp_id><oa></oa>&rft_id=info:oai/&req.language=]]></sear:openurl><sear:thumbnail/><sear:openurlfulltext><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2014-06-05T12%3A49%3A33IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Van%20Gogh:%20The%20Life.&rft.jtitle=Maclean%27s&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Bethune%2C%20Brian&rft.aucorp=&rft.date=20111205&rft.volume=124&rft.issue=47&rft.part=&rft.quarter=&rft.ssn=&rft.spage=77&rft.epage=&rft.pages=&rft.artnum=&rft.issn=0024-9262&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=&rft.eisbn=&rft_dat=<gale_ofa>275312207</gale_ofa><grp_id>4412197537331139454</grp_id><oa></oa>&rft_id=info:oai/&template=openurlfull_article&req.language=]]></sear:openurlfulltext></sear:LINKS></sear:DOC>\n
|
389
|
+
\ <sear:DOC ID="593203908" RANK="0.1" NO="3"
|
390
|
+
SEARCH_ENGINE="PrimoCentralThirdNode" SEARCH_ENGINE_TYPE="Primo
|
391
|
+
Central Search Engine" LOCAL="false">\n <PrimoNMBib
|
392
|
+
xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">\n
|
393
|
+
\ <record>\n <control>\n <sourcerecordid>25579974</sourcerecordid>\n
|
394
|
+
\ <sourceid>jstor_archive</sourceid>\n <recordid>TN_jstor_archive25579974</recordid>\n
|
408
395
|
\ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
|
409
396
|
\ </control>\n <display>\n <type>article</type>\n
|
410
397
|
\ <title>Van Gogh</title>\n <creator>Smyth,
|
411
398
|
Gerard</creator>\n <ispartof>The Poetry Ireland
|
412
|
-
Review, 2002(72), pp.85</ispartof>\n <identifier>&lt;b>ISSN:&lt;/b>
|
413
|
-
03322998</identifier>\n <
|
414
|
-
\ <
|
415
|
-
\ <
|
416
|
-
\ <backlink>$$Uhttp://www.jstor.org/stable/
|
399
|
+
Review, 2002(72), pp.85-85</ispartof>\n <identifier>&lt;b>ISSN:&lt;/b>
|
400
|
+
03322998</identifier>\n <language>eng</language>\n
|
401
|
+
\ <source>JSTOR</source>\n </display>\n
|
402
|
+
\ <links>\n <openurl>$$Topenurl_article</openurl>\n
|
403
|
+
\ <backlink>$$Uhttp://www.jstor.org/stable/25579974$$EView_this_record_in_JSTOR</backlink>\n
|
417
404
|
\ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
|
418
405
|
\ </links>\n <search>\n <creatorcontrib>Smyth,
|
419
406
|
Gerard</creatorcontrib>\n <title>Van Gogh</title>\n
|
420
|
-
\ <subject>literature</subject>\n <general>10.2307/25579974</general>\n
|
421
407
|
\ <general>English</general>\n <general>JSOTR</general>\n
|
422
|
-
\ <
|
423
|
-
\ <
|
424
|
-
\ <
|
425
|
-
\ <
|
426
|
-
Poetry Ireland Review</addtitle>\n
|
427
|
-
\ <searchscope>jstor_ic</searchscope>\n <scope>
|
428
|
-
\
|
429
|
-
|
430
|
-
\ <
|
431
|
-
\ <
|
432
|
-
\ <
|
433
|
-
\ <
|
434
|
-
\ <
|
435
|
-
Gerard</creatorcontrib>\n
|
436
|
-
Review</jtitle>\n
|
437
|
-
\ <frbrtype>6</frbrtype>\n </facets>\n
|
408
|
+
\ <general>Poetry Ireland Ltd.</general>\n <sourceid>jstor_archive</sourceid>\n
|
409
|
+
\ <recordid>jstor_archive25579974</recordid>\n <issn>0332-2998</issn>\n
|
410
|
+
\ <issn>03322998</issn>\n <rsrctype>article</rsrctype>\n
|
411
|
+
\ <creationdate>2002</creationdate>\n <recordtype>article</recordtype>\n
|
412
|
+
\ <addtitle>The Poetry Ireland Review</addtitle>\n
|
413
|
+
\ <searchscope>jstor_ic</searchscope>\n <scope>jstor_ic</scope>\n
|
414
|
+
\ </search>\n <sort>\n <title>Van
|
415
|
+
Gogh</title>\n <author>Smyth, Gerard</author>\n
|
416
|
+
\ <creationdate>20020401</creationdate>\n </sort>\n
|
417
|
+
\ <facets>\n <frbrgroupid>2843262240286033619</frbrgroupid>\n
|
418
|
+
\ <frbrtype>6</frbrtype>\n <language>eng</language>\n
|
419
|
+
\ <creationdate>2002</creationdate>\n <collection>JSTOR</collection>\n
|
420
|
+
\ <prefilter>articles</prefilter>\n <rsrctype>articles</rsrctype>\n
|
421
|
+
\ <creatorcontrib>Smyth, Gerard</creatorcontrib>\n
|
422
|
+
\ <jtitle>Poetry Ireland Review</jtitle>\n </facets>\n
|
438
423
|
\ <frbr>\n <t>2</t>\n <k1>2002</k1>\n
|
439
424
|
\ <k2>03322998</k2>\n <k5>72</k5>\n
|
440
425
|
\ <k6>85</k6>\n <k7>poetry
|
@@ -448,214 +433,182 @@ http_interactions:
|
|
448
433
|
\ </ranking>\n <addata>\n <aulast>Smyth</aulast>\n
|
449
434
|
\ <aufirst>Gerard</aufirst>\n <au>Smyth,
|
450
435
|
Gerard</au>\n <atitle>Van Gogh</atitle>\n
|
451
|
-
\ <jtitle>The Poetry Ireland Review</jtitle>\n <
|
436
|
+
\ <jtitle>The Poetry Ireland Review</jtitle>\n <date>20020401</date>\n
|
437
|
+
\ <risdate>20020401</risdate>\n <issue>72</issue>\n
|
452
438
|
\ <spage>85</spage>\n <epage>85</epage>\n
|
453
439
|
\ <pages>85-85</pages>\n <issn>03322998</issn>\n
|
454
|
-
\ <
|
455
|
-
\ <
|
456
|
-
|
457
|
-
\
|
458
|
-
|
459
|
-
GetIt2="http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
\ <
|
465
|
-
\
|
466
|
-
LOCAL="false" SEARCH_ENGINE_TYPE="Primo Central Search Engine"
|
467
|
-
SEARCH_ENGINE="PrimoCentralThirdNode" NO="4" RANK="0.1680907"
|
468
|
-
ID="52122192">\n <PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">\n
|
469
|
-
\ <record>\n <control>\n <sourcerecordid>10.1080/03017605.2011.561634</sourcerecordid>\n
|
470
|
-
\ <sourceid>tayfranc</sourceid>\n <recordid>TN_tayfranc10.1080/03017605.2011.561634</recordid>\n
|
440
|
+
\ <format>journal</format>\n <genre>article</genre>\n
|
441
|
+
\ <ristype>JOUR</ristype>\n <pub>Poetry
|
442
|
+
Ireland Ltd.</pub>\n </addata>\n </record>\n
|
443
|
+
\ </PrimoNMBib>\n <sear:GETIT deliveryCategory="Remote
|
444
|
+
Search Resource" GetIt1="http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2014-06-05T12%3A49%3A33IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-jstor_archive&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:journal&amp;rft.genre=article&amp;rft.atitle=Van%20Gogh&amp;rft.jtitle=The%20Poetry%20Ireland%20Review&amp;rft.btitle=&amp;rft.aulast=Smyth&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Smyth%2C%20Gerard&amp;rft.aucorp=&amp;rft.date=20020401&amp;rft.volume=&amp;rft.issue=72&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=85&amp;rft.epage=85&amp;rft.pages=85-85&amp;rft.artnum=&amp;rft.issn=03322998&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=&amp;rft.eisbn=&amp;rft_dat=&lt;jstor_archive>25579974&lt;/jstor_archive>&lt;grp_id>2843262240286033619&lt;/grp_id>&lt;oa>&lt;/oa>&amp;rft_id=info:oai/&amp;template=openurlfull_article&amp;req.language="
|
445
|
+
GetIt2=""/><sear:LINKS><sear:openurl><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2014-06-05T12%3A49%3A33IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-jstor_archive&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=Van%20Gogh&rft.jtitle=The%20Poetry%20Ireland%20Review&rft.btitle=&rft.aulast=Smyth&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Smyth%2C%20Gerard&rft.aucorp=&rft.date=20020401&rft.volume=&rft.issue=72&rft.part=&rft.quarter=&rft.ssn=&rft.spage=85&rft.epage=85&rft.pages=85-85&rft.artnum=&rft.issn=03322998&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.eisbn=&rft_dat=<jstor_archive>25579974</jstor_archive><grp_id>2843262240286033619</grp_id><oa></oa>&rft_id=info:oai/&req.language=]]></sear:openurl><sear:backlink>http://www.jstor.org/stable/25579974</sear:backlink><sear:thumbnail/><sear:openurlfulltext><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2014-06-05T12%3A49%3A33IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-jstor_archive&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=Van%20Gogh&rft.jtitle=The%20Poetry%20Ireland%20Review&rft.btitle=&rft.aulast=Smyth&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Smyth%2C%20Gerard&rft.aucorp=&rft.date=20020401&rft.volume=&rft.issue=72&rft.part=&rft.quarter=&rft.ssn=&rft.spage=85&rft.epage=85&rft.pages=85-85&rft.artnum=&rft.issn=03322998&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=&rft.eisbn=&rft_dat=<jstor_archive>25579974</jstor_archive><grp_id>2843262240286033619</grp_id><oa></oa>&rft_id=info:oai/&template=openurlfull_article&req.language=]]></sear:openurlfulltext></sear:LINKS></sear:DOC>\n
|
446
|
+
\ <sear:DOC ID="88661624" RANK="0.050083812"
|
447
|
+
NO="4" SEARCH_ENGINE="PrimoCentralThirdNode" SEARCH_ENGINE_TYPE="Primo
|
448
|
+
Central Search Engine" LOCAL="false">\n <PrimoNMBib
|
449
|
+
xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">\n
|
450
|
+
\ <record>\n <control>\n <sourcerecordid>147615120</sourcerecordid>\n
|
451
|
+
\ <sourceid>gale_ofa</sourceid>\n <recordid>TN_gale_ofa147615120</recordid>\n
|
471
452
|
\ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
|
472
453
|
\ </control>\n <display>\n <type>article</type>\n
|
473
|
-
\ <title>
|
474
|
-
|
475
|
-
|
476
|
-
p.
|
477
|
-
</b>
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
vehement intensity that their reproductions are to be found across the globe;
|
483
|
-
those signature images of sunflowers and blazing stars which have since passed
|
484
|
-
into permanence, resonating the thoughts and feelings of each successive generation.
|
485
|
-
Yet in his own lifetime Vincent experienced dismal failure and was unable
|
486
|
-
to sell a single work. He was no more successful in his personal life; the
|
487
|
-
few friends he did manage to make were quickly lost, and he was never able
|
488
|
-
to start a family. Vincent's life faltered between hope and despair; each
|
489
|
-
new connection he tried to forge was brutally disappointed. It is the writer's
|
490
|
-
contention that the art of Van Gogh can be better understood by referencing
|
491
|
-
the historical context of his life. That the loneliness Vincent experienced
|
492
|
-
was at the same time the pre-condition for the beauty, melancholy and power
|
493
|
-
of the art he produced. It was the relentless and alienating objectivities
|
494
|
-
of the world he encountered which forced him to turn inward, to develop a
|
495
|
-
rich mental life which was to culminate in both genius and madness. Vincent
|
496
|
-
committed suicide at the age of 37.</description>\n <source>Routledge,
|
497
|
-
Taylor &amp; Francis Group&lt;img src="https://exlibris-pub.s3.amazonaws.com/Routledge_RGB.jpg"
|
498
|
-
style="vertical-align:middle;margin-left:7px"></source>\n
|
499
|
-
\ <lds50>peer_reviewed</lds50>\n <version>1</version>\n
|
500
|
-
\ </display>\n <links>\n <openurl>$$Topenurl_article</openurl>\n
|
454
|
+
\ <title>What tortured the artist?(EDUCATION)(Vincent
|
455
|
+
van Gogh suffer of acute intermittent porphyria)(Brief article)</title>\n
|
456
|
+
\ <creator>Leslie, Mitch</creator>\n <ispartof>Science,
|
457
|
+
April 28, 2006, Vol.312(5773), p.505(1)</ispartof>\n <identifier>&lt;b>ISSN:
|
458
|
+
&lt;/b>0036-8075</identifier>\n <subject>Porphyria
|
459
|
+
-- Research ; Porphyria -- Analysis</subject>\n <language>English</language>\n
|
460
|
+
\ <source>Cengage Learning, Inc.</source>\n <lds50>peer_reviewed</lds50>\n
|
461
|
+
\ <version>2</version>\n </display>\n
|
462
|
+
\ <links>\n <openurl>$$Topenurl_article</openurl>\n
|
501
463
|
\ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
|
502
|
-
\
|
503
|
-
\
|
504
|
-
|
505
|
-
\ <
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
\ <
|
523
|
-
\
|
524
|
-
\ <
|
525
|
-
\ <
|
526
|
-
\ <
|
527
|
-
|
528
|
-
\ <
|
529
|
-
|
530
|
-
\ <
|
531
|
-
\
|
532
|
-
\ <
|
533
|
-
\ <
|
534
|
-
\
|
535
|
-
|
536
|
-
\ <
|
537
|
-
\ <facets>\n <creationdate>2011</creationdate>\n
|
538
|
-
\ <topic>Van Gogh</topic>\n <topic>Alienation</topic>\n
|
539
|
-
\ <topic>Religion</topic>\n <topic>Art</topic>\n
|
540
|
-
\ <collection>Taylor &amp; Francis Online - Journals</collection>\n
|
541
|
-
\ <prefilter>articles</prefilter>\n <rsrctype>articles</rsrctype>\n
|
542
|
-
\ <creatorcontrib>Mckenna, Tony</creatorcontrib>\n
|
543
|
-
\ <jtitle>Critique</jtitle>\n <toplevel>peer_reviewed</toplevel>\n
|
544
|
-
\ <frbrgroupid>8381996817650573379</frbrgroupid>\n
|
545
|
-
\ <frbrtype>5</frbrtype>\n </facets>\n
|
546
|
-
\ <frbr>\n <t>2</t>\n <k1>2011</k1>\n
|
547
|
-
\ <k2>03017605</k2>\n <k2>17488605</k2>\n
|
548
|
-
\ <k3>10.1080/03017605.2011.561634</k3>\n <k4>39</k4>\n
|
549
|
-
\ <k5>2</k5>\n <k6>295</k6>\n
|
550
|
-
\ <k7>critique</k7>\n <k8>vincent
|
551
|
-
van gogh</k8>\n <k9>vincentvangogh</k9>\n
|
552
|
-
\ <k15>tonymckenna</k15>\n <k16>mckennatony</k16>\n
|
464
|
+
\ </links>\n <search>\n <scope>gale_onefilea</scope>\n
|
465
|
+
\ <scope>gale_onefileg</scope>\n <creatorcontrib>Leslie,
|
466
|
+
Mitch</creatorcontrib>\n <creatorcontrib>Leslie</creatorcontrib>\n
|
467
|
+
\ <title>What tortured the artist?(EDUCATION)(Vincent
|
468
|
+
van Gogh suffer of acute intermittent porphyria)(Brief article)</title>\n
|
469
|
+
\ <subject>Porphyria--Research</subject>\n <subject>Porphyria--Analysis</subject>\n
|
470
|
+
\ <subject>United States</subject>\n <subject>1USA</subject>\n
|
471
|
+
\ <subject>Gogh, Vincent Van</subject>\n <subject>Observations</subject>\n
|
472
|
+
\ <subject>Health aspects</subject>\n <general>English</general>\n
|
473
|
+
\ <general>American Association for the Advancement of
|
474
|
+
Science</general>\n <general>Cengage Learning,
|
475
|
+
Inc.</general>\n <sourceid>gale_ofa</sourceid>\n
|
476
|
+
\ <recordid>gale_ofa147615120</recordid>\n <issn>0036-8075</issn>\n
|
477
|
+
\ <issn>00368075</issn>\n <rsrctype>article</rsrctype>\n
|
478
|
+
\ <creationdate>2006</creationdate>\n <recordtype>article</recordtype>\n
|
479
|
+
\ <addtitle>Science</addtitle>\n <searchscope>OneFile</searchscope>\n
|
480
|
+
\ <scope>OneFile</scope>\n </search>\n
|
481
|
+
\ <sort>\n <title>What tortured the
|
482
|
+
artist?(EDUCATION)(Vincent van Gogh suffer of acute intermittent porphyria)(Brief
|
483
|
+
article)</title>\n <author>Leslie, Mitch</author>\n
|
484
|
+
\ <creationdate>20060428</creationdate>\n </sort>\n
|
485
|
+
\ <facets>\n <frbrgroupid>6359258460248509776</frbrgroupid>\n
|
486
|
+
\ <frbrtype>5</frbrtype>\n <language>eng</language>\n
|
487
|
+
\ <creationdate>2006</creationdate>\n <topic>Porphyria–Research</topic>\n
|
488
|
+
\ <topic>Porphyria–Analysis</topic>\n <collection>OneFile
|
489
|
+
(GALE)</collection>\n <prefilter>articles</prefilter>\n
|
490
|
+
\ <rsrctype>articles</rsrctype>\n <creatorcontrib>Leslie,
|
491
|
+
Mitch</creatorcontrib>\n <jtitle>Science</jtitle>\n
|
492
|
+
\ <toplevel>peer_reviewed</toplevel>\n </facets>\n
|
493
|
+
\ <frbr>\n <t>2</t>\n <k1>2006</k1>\n
|
494
|
+
\ <k2>00368075</k2>\n <k4>312</k4>\n
|
495
|
+
\ <k5>5773</k5>\n <k6>505</k6>\n
|
496
|
+
\ <k7>science</k7>\n <k8>what
|
497
|
+
tortured the artist</k8>\n <k9>whattorturedtheartist</k9>\n
|
498
|
+
\ <k15>mitchleslie</k15>\n <k16>lesliemitch</k16>\n
|
553
499
|
\ </frbr>\n <delivery>\n <delcategory>Remote
|
554
|
-
Search Resource</delcategory>\n <fulltext>
|
500
|
+
Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n
|
555
501
|
\ </delivery>\n <ranking>\n <booster1>1</booster1>\n
|
556
|
-
\ <booster2>1</booster2>\n <pcg_type>
|
557
|
-
\ </ranking>\n <addata>\n <
|
558
|
-
|
559
|
-
|
560
|
-
\ <jtitle>
|
561
|
-
|
562
|
-
\ <
|
563
|
-
\ <
|
564
|
-
\ <
|
565
|
-
|
566
|
-
\ <ristype>JOUR</ristype>\n <abstract>Van
|
567
|
-
Gogh's story is beautifully sad. It was only in the last ten years of his
|
568
|
-
life that he took up painting. During that time he produced works of such
|
569
|
-
vehement intensity that their reproductions are to be found across the globe;
|
570
|
-
those signature images of sunflowers and blazing stars which have since passed
|
571
|
-
into permanence, resonating the thoughts and feelings of each successive generation.
|
572
|
-
Yet in his own lifetime Vincent experienced dismal failure and was unable
|
573
|
-
to sell a single work. He was no more successful in his personal life; the
|
574
|
-
few friends he did manage to make were quickly lost, and he was never able
|
575
|
-
to start a family. Vincent's life faltered between hope and despair; each
|
576
|
-
new connection he tried to forge was brutally disappointed. It is the writer's
|
577
|
-
contention that the art of Van Gogh can be better understood by referencing
|
578
|
-
the historical context of his life. That the loneliness Vincent experienced
|
579
|
-
was at the same time the pre-condition for the beauty, melancholy and power
|
580
|
-
of the art he produced. It was the relentless and alienating objectivities
|
581
|
-
of the world he encountered which forced him to turn inward, to develop a
|
582
|
-
rich mental life which was to culminate in both genius and madness. Vincent
|
583
|
-
committed suicide at the age of 37.</abstract>\n <pub>Taylor
|
584
|
-
&amp; Francis Group</pub>\n <doi>10.1080/03017605.2011.561634</doi>\n
|
502
|
+
\ <booster2>1</booster2>\n <pcg_type>aggregator</pcg_type>\n
|
503
|
+
\ </ranking>\n <addata>\n <au>Leslie,
|
504
|
+
Mitch</au>\n <atitle>What tortured the artist?(EDUCATION)(Vincent
|
505
|
+
van Gogh suffer of acute intermittent porphyria)(Brief article)</atitle>\n
|
506
|
+
\ <jtitle>Science</jtitle>\n <date>20060428</date>\n
|
507
|
+
\ <risdate>20060428</risdate>\n <volume>312</volume>\n
|
508
|
+
\ <issue>5773</issue>\n <spage>505</spage>\n
|
509
|
+
\ <issn>0036-8075</issn>\n <genre>article</genre>\n
|
510
|
+
\ <ristype>JOUR</ristype>\n <pub>American
|
511
|
+
Association for the Advancement of Science</pub>\n <lad01>gale_ofa</lad01>\n
|
585
512
|
\ </addata>\n </record>\n </PrimoNMBib>\n
|
586
|
-
\
|
587
|
-
GetIt1="http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=
|
588
|
-
|
589
|
-
\
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
ID="48605838">\n <PrimoNMBib xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">\n
|
596
|
-
\ <record>\n <control>\n <sourcerecordid>10.2307/4611194</sourcerecordid>\n
|
597
|
-
\ <sourceid>jstor</sourceid>\n <recordid>TN_jstor10.2307/4611194</recordid>\n
|
513
|
+
\ <sear:GETIT deliveryCategory="Remote Search Resource"
|
514
|
+
GetIt1="http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2014-06-05T12%3A49%3A33IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=What%20tortured%20the%20artist%3F(EDUCATION)(Vincent%20van%20Gogh%20suffer%20of%20acute%20intermittent%20porphyria)(Brief%20article)&amp;rft.jtitle=Science&amp;rft.btitle=&amp;rft.aulast=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Leslie%2C%20Mitch&amp;rft.aucorp=&amp;rft.date=20060428&amp;rft.volume=312&amp;rft.issue=5773&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=505&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.issn=0036-8075&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=&amp;rft.eisbn=&amp;rft_dat=&lt;gale_ofa>147615120&lt;/gale_ofa>&lt;grp_id>6359258460248509776&lt;/grp_id>&lt;oa>&lt;/oa>&amp;rft_id=info:oai/&amp;template=openurlfull_article&amp;req.language="
|
515
|
+
GetIt2=""/><sear:LINKS><sear:openurl><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2014-06-05T12%3A49%3A33IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=What%20tortured%20the%20artist%3F(EDUCATION)(Vincent%20van%20Gogh%20suffer%20of%20acute%20intermittent%20porphyria)(Brief%20article)&rft.jtitle=Science&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Leslie%2C%20Mitch&rft.aucorp=&rft.date=20060428&rft.volume=312&rft.issue=5773&rft.part=&rft.quarter=&rft.ssn=&rft.spage=505&rft.epage=&rft.pages=&rft.artnum=&rft.issn=0036-8075&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.eisbn=&rft_dat=<gale_ofa>147615120</gale_ofa><grp_id>6359258460248509776</grp_id><oa></oa>&rft_id=info:oai/&req.language=]]></sear:openurl><sear:thumbnail/><sear:openurlfulltext><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2014-06-05T12%3A49%3A33IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=What%20tortured%20the%20artist%3F(EDUCATION)(Vincent%20van%20Gogh%20suffer%20of%20acute%20intermittent%20porphyria)(Brief%20article)&rft.jtitle=Science&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Leslie%2C%20Mitch&rft.aucorp=&rft.date=20060428&rft.volume=312&rft.issue=5773&rft.part=&rft.quarter=&rft.ssn=&rft.spage=505&rft.epage=&rft.pages=&rft.artnum=&rft.issn=0036-8075&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=&rft.eisbn=&rft_dat=<gale_ofa>147615120</gale_ofa><grp_id>6359258460248509776</grp_id><oa></oa>&rft_id=info:oai/&template=openurlfull_article&req.language=]]></sear:openurlfulltext></sear:LINKS></sear:DOC>\n
|
516
|
+
\ <sear:DOC ID="482064110" RANK="0.0493454" NO="5"
|
517
|
+
SEARCH_ENGINE="PrimoCentralThirdNode" SEARCH_ENGINE_TYPE="Primo
|
518
|
+
Central Search Engine" LOCAL="false">\n <PrimoNMBib
|
519
|
+
xmlns="http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib">\n
|
520
|
+
\ <record>\n <control>\n <sourcerecordid>293165368</sourcerecordid>\n
|
521
|
+
\ <sourceid>gale_ofa</sourceid>\n <recordid>TN_gale_ofa293165368</recordid>\n
|
598
522
|
\ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
|
599
523
|
\ </control>\n <display>\n <type>article</type>\n
|
600
|
-
\ <title>
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
524
|
+
\ <title>Beautiful mutants.(Advances / Best of the Blogs
|
525
|
+
/ Botany)(mutated sunflowers depicted in Vincent van Gogh's oil paintings)</title>\n
|
526
|
+
\ <creator>Jabr, Ferris</creator>\n <ispartof>Scientific
|
527
|
+
American, June, 2012, Vol.306(6), p.28(1)</ispartof>\n <identifier>&lt;b>ISSN:
|
528
|
+
&lt;/b>0036-8733</identifier>\n <subject>Sunflowers
|
529
|
+
-- Research ; Sunflowers -- Portrayals ; Sunflowers -- Genetic Aspects ; Dutch
|
530
|
+
Painters -- Works ; Gene Mutation -- Research ; Plant Mutation -- Research</subject>\n
|
531
|
+
\ <description>Researchers from the University of Georgia
|
532
|
+
attributed the floral arrangements of sunflowers depicted in Vincent Van Gogh's
|
533
|
+
oil paintings from the late 1880s to mutations of the HaCYC2c gene. Instead
|
534
|
+
of showing yellow petals encircling a dark whorl of seeds, Van Gogh's paintings
|
535
|
+
portray doubled-flowered blooms that have abundant small yellow petals.</description>\n
|
536
|
+
\ <language>English</language>\n <source>Cengage
|
537
|
+
Learning, Inc.</source>\n <lds50>peer_reviewed</lds50>\n
|
538
|
+
\ <version>2</version>\n </display>\n
|
606
539
|
\ <links>\n <openurl>$$Topenurl_article</openurl>\n
|
607
|
-
\ <backlink>$$Uhttp://www.jstor.org/stable/10.2307/4611194?origin=api$$EView_this_record_in_JSTOR</backlink>\n
|
608
540
|
\ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
|
609
|
-
\ </links>\n <search>\n <
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
|
619
|
-
\ <
|
620
|
-
|
621
|
-
\ <
|
622
|
-
|
623
|
-
|
624
|
-
\ <
|
625
|
-
\ <
|
626
|
-
|
627
|
-
|
628
|
-
\ <
|
629
|
-
\
|
630
|
-
\ <
|
631
|
-
\ <
|
632
|
-
\ <
|
633
|
-
|
634
|
-
|
541
|
+
\ </links>\n <search>\n <scope>gale_onefilea</scope>\n
|
542
|
+
\ <scope>gale_onefileg</scope>\n <creatorcontrib>Jabr,
|
543
|
+
Ferris</creatorcontrib>\n <title>Beautiful mutants.(Advances
|
544
|
+
/ Best of the Blogs / Botany)(mutated sunflowers depicted in Vincent van Gogh's
|
545
|
+
oil paintings)</title>\n <description>Researchers
|
546
|
+
from the University of Georgia attributed the floral arrangements of sunflowers
|
547
|
+
depicted in Vincent Van Gogh's oil paintings from the late 1880s to mutations
|
548
|
+
of the HaCYC2c gene. Instead of showing yellow petals encircling a dark whorl
|
549
|
+
of seeds, Van Gogh's paintings portray doubled-flowered blooms that have abundant
|
550
|
+
small yellow petals.</description>\n <subject>Sunflowers--Research</subject>\n
|
551
|
+
\ <subject>Sunflowers--Portrayals</subject>\n <subject>Sunflowers--Genetic
|
552
|
+
aspects</subject>\n <subject>Dutch painters--Works</subject>\n
|
553
|
+
\ <subject>Gene mutation--Research</subject>\n <subject>Plant
|
554
|
+
mutation--Research</subject>\n <subject>United
|
555
|
+
States</subject>\n <subject>1USA</subject>\n
|
556
|
+
\ <subject>Gogh, Vincent Van</subject>\n <subject>Works</subject>\n
|
557
|
+
\ <general>English</general>\n <general>Scientific
|
558
|
+
American, Inc.</general>\n <general>Cengage Learning,
|
559
|
+
Inc.</general>\n <sourceid>gale_ofa</sourceid>\n
|
560
|
+
\ <recordid>gale_ofa293165368</recordid>\n <issn>0036-8733</issn>\n
|
561
|
+
\ <issn>00368733</issn>\n <rsrctype>article</rsrctype>\n
|
562
|
+
\ <creationdate>2012</creationdate>\n <recordtype>article</recordtype>\n
|
563
|
+
\ <addtitle>Scientific American</addtitle>\n <searchscope>OneFile</searchscope>\n
|
564
|
+
\ <scope>OneFile</scope>\n </search>\n
|
565
|
+
\ <sort>\n <title>Beautiful mutants.(Advances
|
566
|
+
/ Best of the Blogs / Botany)(mutated sunflowers depicted in Vincent van Gogh's
|
567
|
+
oil paintings)</title>\n <author>Jabr, Ferris</author>\n
|
568
|
+
\ <creationdate>20120601</creationdate>\n </sort>\n
|
569
|
+
\ <facets>\n <frbrgroupid>5768430088859704746</frbrgroupid>\n
|
570
|
+
\ <frbrtype>5</frbrtype>\n <language>eng</language>\n
|
571
|
+
\ <creationdate>2012</creationdate>\n <topic>Sunflowers–Research</topic>\n
|
572
|
+
\ <topic>Sunflowers–Portrayals</topic>\n
|
573
|
+
\ <topic>Sunflowers–Genetic Aspects</topic>\n
|
574
|
+
\ <topic>Dutch Painters–Works</topic>\n <topic>Gene
|
575
|
+
Mutation–Research</topic>\n <topic>Plant
|
576
|
+
Mutation–Research</topic>\n <collection>OneFile
|
577
|
+
(GALE)</collection>\n <prefilter>articles</prefilter>\n
|
578
|
+
\ <rsrctype>articles</rsrctype>\n <creatorcontrib>Jabr,
|
579
|
+
Ferris</creatorcontrib>\n <jtitle>Scientific American</jtitle>\n
|
580
|
+
\ <toplevel>peer_reviewed</toplevel>\n </facets>\n
|
581
|
+
\ <frbr>\n <t>2</t>\n <k1>2012</k1>\n
|
582
|
+
\ <k2>00368733</k2>\n <k4>306</k4>\n
|
583
|
+
\ <k5>6</k5>\n <k6>28</k6>\n
|
584
|
+
\ <k7>scientific american</k7>\n <k8>beautiful
|
585
|
+
mutants</k8>\n <k9>beautifulmutants</k9>\n
|
586
|
+
\ <k15>ferrisjabr</k15>\n <k16>jabrferris</k16>\n
|
635
587
|
\ </frbr>\n <delivery>\n <delcategory>Remote
|
636
588
|
Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n
|
637
589
|
\ </delivery>\n <ranking>\n <booster1>1</booster1>\n
|
638
590
|
\ <booster2>1</booster2>\n <pcg_type>aggregator</pcg_type>\n
|
639
|
-
\ </ranking>\n <addata>\n <
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
\ <
|
644
|
-
\ <
|
645
|
-
\ <
|
646
|
-
\ <
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
\
|
655
|
-
|
656
|
-
|
657
|
-
\
|
658
|
-
\ </sear:RESULT>\n
|
659
|
-
|
660
|
-
|
661
|
-
|
591
|
+
\ </ranking>\n <addata>\n <au>Jabr,
|
592
|
+
Ferris</au>\n <atitle>Beautiful mutants.(Advances
|
593
|
+
/ Best of the Blogs / Botany)(mutated sunflowers depicted in Vincent van Gogh's
|
594
|
+
oil paintings)</atitle>\n <jtitle>Scientific American</jtitle>\n
|
595
|
+
\ <date>20120601</date>\n <risdate>20120601</risdate>\n
|
596
|
+
\ <volume>306</volume>\n <issue>6</issue>\n
|
597
|
+
\ <spage>28</spage>\n <issn>0036-8733</issn>\n
|
598
|
+
\ <genre>article</genre>\n <ristype>JOUR</ristype>\n
|
599
|
+
\ <abstract>Researchers from the University of Georgia
|
600
|
+
attributed the floral arrangements of sunflowers depicted in Vincent Van Gogh's
|
601
|
+
oil paintings from the late 1880s to mutations of the HaCYC2c gene. Instead
|
602
|
+
of showing yellow petals encircling a dark whorl of seeds, Van Gogh's paintings
|
603
|
+
portray doubled-flowered blooms that have abundant small yellow petals.</abstract>\n
|
604
|
+
\ <pub>Scientific American, Inc.</pub>\n <lad01>gale_ofa</lad01>\n
|
605
|
+
\ </addata>\n </record>\n </PrimoNMBib>\n
|
606
|
+
\ <sear:GETIT deliveryCategory="Remote Search Resource"
|
607
|
+
GetIt1="http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2014-06-05T12%3A49%3A33IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Beautiful%20mutants.(Advances%20/%20Best%20of%20the%20Blogs%20/%20Botany)(mutated%20sunflowers%20depicted%20in%20Vincent%20van%20Gogh%27s%20oil%20paintings)&amp;rft.jtitle=Scientific%20American&amp;rft.btitle=&amp;rft.aulast=&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Jabr%2C%20Ferris&amp;rft.aucorp=&amp;rft.date=20120601&amp;rft.volume=306&amp;rft.issue=6&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=28&amp;rft.epage=&amp;rft.pages=&amp;rft.artnum=&amp;rft.issn=0036-8733&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/&amp;rft.object_id=&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=&amp;rft.eisbn=&amp;rft_dat=&lt;gale_ofa>293165368&lt;/gale_ofa>&lt;grp_id>5768430088859704746&lt;/grp_id>&lt;oa>&lt;/oa>&amp;rft_id=info:oai/&amp;template=openurlfull_article&amp;req.language="
|
608
|
+
GetIt2=""/><sear:LINKS><sear:openurl><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2014-06-05T12%3A49%3A33IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Beautiful%20mutants.(Advances%20/%20Best%20of%20the%20Blogs%20/%20Botany)(mutated%20sunflowers%20depicted%20in%20Vincent%20van%20Gogh%27s%20oil%20paintings)&rft.jtitle=Scientific%20American&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Jabr%2C%20Ferris&rft.aucorp=&rft.date=20120601&rft.volume=306&rft.issue=6&rft.part=&rft.quarter=&rft.ssn=&rft.spage=28&rft.epage=&rft.pages=&rft.artnum=&rft.issn=0036-8733&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.object_id=&rft.eisbn=&rft_dat=<gale_ofa>293165368</gale_ofa><grp_id>5768430088859704746</grp_id><oa></oa>&rft_id=info:oai/&req.language=]]></sear:openurl><sear:thumbnail/><sear:openurlfulltext><![CDATA[http://findtext.library.nd.edu:8889/ndu_local?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2014-06-05T12%3A49%3A33IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Beautiful%20mutants.(Advances%20/%20Best%20of%20the%20Blogs%20/%20Botany)(mutated%20sunflowers%20depicted%20in%20Vincent%20van%20Gogh%27s%20oil%20paintings)&rft.jtitle=Scientific%20American&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Jabr%2C%20Ferris&rft.aucorp=&rft.date=20120601&rft.volume=306&rft.issue=6&rft.part=&rft.quarter=&rft.ssn=&rft.spage=28&rft.epage=&rft.pages=&rft.artnum=&rft.issn=0036-8733&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=&rft.eisbn=&rft_dat=<gale_ofa>293165368</gale_ofa><grp_id>5768430088859704746</grp_id><oa></oa>&rft_id=info:oai/&template=openurlfull_article&req.language=]]></sear:openurlfulltext></sear:LINKS></sear:DOC>\n
|
609
|
+
\ \n \n \n \n \n </sear:DOCSET>\n
|
610
|
+
\ </sear:RESULT>\n <sear:searchToken>0</sear:searchToken>\n
|
611
|
+
\ </sear:JAGROOT></sear:SEGMENTS></searchBriefReturn></ns1:searchBriefResponse></soapenv:Body></soapenv:Envelope>"
|
612
|
+
http_version:
|
613
|
+
recorded_at: Thu, 05 Jun 2014 16:49:33 GMT
|
614
|
+
recorded_with: VCR 2.5.0
|