bento_search 0.0.1

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.
Files changed (122) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +299 -0
  3. data/Rakefile +40 -0
  4. data/app/assets/images/bento_search/large_loader.gif +0 -0
  5. data/app/assets/javascripts/bento_search.js +3 -0
  6. data/app/assets/javascripts/bento_search/ajax_load.js +22 -0
  7. data/app/assets/stylesheets/bento_search/bento.css +4 -0
  8. data/app/controllers/bento_search/bento_search_controller.rb +7 -0
  9. data/app/controllers/bento_search/search_controller.rb +72 -0
  10. data/app/helpers/bento_search_helper.rb +138 -0
  11. data/app/item_decorators/bento_search/only_premade_openurl.rb +16 -0
  12. data/app/item_decorators/bento_search/openurl_add_other_link.rb +35 -0
  13. data/app/item_decorators/bento_search/openurl_main_link.rb +30 -0
  14. data/app/models/bento_search/author.rb +25 -0
  15. data/app/models/bento_search/link.rb +30 -0
  16. data/app/models/bento_search/multi_searcher.rb +109 -0
  17. data/app/models/bento_search/openurl_creator.rb +128 -0
  18. data/app/models/bento_search/registrar.rb +70 -0
  19. data/app/models/bento_search/result_item.rb +203 -0
  20. data/app/models/bento_search/results.rb +54 -0
  21. data/app/models/bento_search/results/pagination.rb +67 -0
  22. data/app/models/bento_search/search_engine.rb +219 -0
  23. data/app/models/bento_search/search_engine/capabilities.rb +65 -0
  24. data/app/search_engines/bento_search/#Untitled-1# +11 -0
  25. data/app/search_engines/bento_search/ebsco_host_engine.rb +356 -0
  26. data/app/search_engines/bento_search/eds_engine.rb +557 -0
  27. data/app/search_engines/bento_search/google_books_engine.rb +184 -0
  28. data/app/search_engines/bento_search/primo_engine.rb +231 -0
  29. data/app/search_engines/bento_search/scopus_engine.rb +295 -0
  30. data/app/search_engines/bento_search/summon_engine.rb +398 -0
  31. data/app/search_engines/bento_search/xerxes_engine.rb +168 -0
  32. data/app/views/bento_search/_link.html.erb +4 -0
  33. data/app/views/bento_search/_search_error.html.erb +22 -0
  34. data/app/views/bento_search/_std_item.html.erb +39 -0
  35. data/app/views/bento_search/search/search.html.erb +1 -0
  36. data/config/locales/en.yml +25 -0
  37. data/lib/bento_search.rb +29 -0
  38. data/lib/bento_search/engine.rb +5 -0
  39. data/lib/bento_search/routes.rb +45 -0
  40. data/lib/bento_search/version.rb +3 -0
  41. data/lib/generators/bento_search/pull_ebsco_dbs_generator.rb +24 -0
  42. data/lib/generators/bento_search/templates/ebsco_global_var.erb +6 -0
  43. data/lib/http_client_patch/include_client.rb +86 -0
  44. data/lib/tasks/bento_search_tasks.rake +4 -0
  45. data/test/dummy/README.rdoc +261 -0
  46. data/test/dummy/Rakefile +7 -0
  47. data/test/dummy/app/assets/javascripts/application.js +15 -0
  48. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  49. data/test/dummy/app/controllers/application_controller.rb +3 -0
  50. data/test/dummy/app/helpers/application_helper.rb +2 -0
  51. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  52. data/test/dummy/config.ru +4 -0
  53. data/test/dummy/config/application.rb +56 -0
  54. data/test/dummy/config/boot.rb +10 -0
  55. data/test/dummy/config/database.yml +25 -0
  56. data/test/dummy/config/environment.rb +5 -0
  57. data/test/dummy/config/environments/development.rb +37 -0
  58. data/test/dummy/config/environments/production.rb +67 -0
  59. data/test/dummy/config/environments/test.rb +37 -0
  60. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  61. data/test/dummy/config/initializers/inflections.rb +15 -0
  62. data/test/dummy/config/initializers/mime_types.rb +5 -0
  63. data/test/dummy/config/initializers/secret_token.rb +7 -0
  64. data/test/dummy/config/initializers/session_store.rb +8 -0
  65. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  66. data/test/dummy/config/locales/en.yml +5 -0
  67. data/test/dummy/config/routes.rb +6 -0
  68. data/test/dummy/db/test.sqlite3 +0 -0
  69. data/test/dummy/log/test.log +3100 -0
  70. data/test/dummy/public/404.html +26 -0
  71. data/test/dummy/public/422.html +26 -0
  72. data/test/dummy/public/500.html +25 -0
  73. data/test/dummy/public/favicon.ico +0 -0
  74. data/test/dummy/script/rails +6 -0
  75. data/test/functional/bento_search/search_controller_test.rb +81 -0
  76. data/test/helper/bento_search_helper_test.rb +125 -0
  77. data/test/integration/navigation_test.rb +10 -0
  78. data/test/support/mock_engine.rb +23 -0
  79. data/test/support/test_with_cassette.rb +38 -0
  80. data/test/test_helper.rb +52 -0
  81. data/test/unit/#vcr_test.rb# +68 -0
  82. data/test/unit/ebsco_host_engine_test.rb +134 -0
  83. data/test/unit/eds_engine_test.rb +105 -0
  84. data/test/unit/google_books_engine_test.rb +93 -0
  85. data/test/unit/item_decorators_test.rb +66 -0
  86. data/test/unit/multi_searcher_test.rb +49 -0
  87. data/test/unit/openurl_creator_test.rb +111 -0
  88. data/test/unit/pagination_test.rb +59 -0
  89. data/test/unit/primo_engine_test.rb +37 -0
  90. data/test/unit/register_engine_test.rb +50 -0
  91. data/test/unit/result_item_display_test.rb +39 -0
  92. data/test/unit/result_item_test.rb +36 -0
  93. data/test/unit/scopus_engine_test.rb +130 -0
  94. data/test/unit/search_engine_base_test.rb +178 -0
  95. data/test/unit/search_engine_test.rb +95 -0
  96. data/test/unit/summon_engine_test.rb +161 -0
  97. data/test/unit/xerxes_engine_test.rb +70 -0
  98. data/test/vcr_cassettes/ebscohost/error_bad_db.yml +45 -0
  99. data/test/vcr_cassettes/ebscohost/error_bad_password.yml +45 -0
  100. data/test/vcr_cassettes/ebscohost/get_info.yml +3626 -0
  101. data/test/vcr_cassettes/ebscohost/live_search.yml +45 -0
  102. data/test/vcr_cassettes/ebscohost/live_search_smoke_test.yml +1311 -0
  103. data/test/vcr_cassettes/eds/basic_search_smoke_test.yml +1811 -0
  104. data/test/vcr_cassettes/eds/get_auth_token.yml +75 -0
  105. data/test/vcr_cassettes/eds/get_auth_token_failure.yml +39 -0
  106. data/test/vcr_cassettes/eds/get_with_auth.yml +243 -0
  107. data/test/vcr_cassettes/eds/get_with_auth_recovers_from_bad_auth.yml +368 -0
  108. data/test/vcr_cassettes/gbs/error_condition.yml +40 -0
  109. data/test/vcr_cassettes/gbs/pagination.yml +702 -0
  110. data/test/vcr_cassettes/gbs/search.yml +340 -0
  111. data/test/vcr_cassettes/primo/search_smoke_test.yml +1112 -0
  112. data/test/vcr_cassettes/scopus/bad_api_key_should_return_error_response.yml +60 -0
  113. data/test/vcr_cassettes/scopus/escaped_chars.yml +187 -0
  114. data/test/vcr_cassettes/scopus/fielded_search.yml +176 -0
  115. data/test/vcr_cassettes/scopus/simple_search.yml +227 -0
  116. data/test/vcr_cassettes/scopus/zero_results_search.yml +67 -0
  117. data/test/vcr_cassettes/summon/bad_auth.yml +54 -0
  118. data/test/vcr_cassettes/summon/proper_tags_for_snippets.yml +216 -0
  119. data/test/vcr_cassettes/summon/search.yml +242 -0
  120. data/test/vcr_cassettes/xerxes/live_search.yml +2580 -0
  121. data/test/view/std_item_test.rb +98 -0
  122. metadata +421 -0
@@ -0,0 +1,67 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.elsevier.com/content/search/index:SCOPUS?count=10&query=aldfjkadf%20lakdj%20zdfzzzz&sort=refeid
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ X-Els-Apikey:
11
+ - DUMMY_API_KEY
12
+ X-Els-Resourceversion:
13
+ - XOCS
14
+ Accept:
15
+ - application/atom+xml
16
+ Cookie:
17
+ - JSESSIONID=FC9EA38206AB6BFD7D48F6B1ED186E57.KLCIns3Dy2n2GJ9KNkUA
18
+ response:
19
+ status:
20
+ code: 400
21
+ message: !binary |-
22
+ QmFkIFJlcXVlc3Q=
23
+ headers:
24
+ !binary "U2VydmVy":
25
+ - !binary |-
26
+ YXBpLmVsc2V2aWVyLmNvbSAgOTk5OQ==
27
+ !binary "WC1FbHMtU3RhdHVz":
28
+ - !binary |-
29
+ SU5WQUxJRF9JTlBVVChSZXN1bHQgc2V0IHdhcyBlbXB0eSBvciBTdGFydCB2
30
+ YWx1ZSBiZXlvbmQgcmVzdWx0IHNldCk=
31
+ !binary "WC1FbHMtUmVxaWQ=":
32
+ - !binary |-
33
+ MDAwMDAxMzhmYjRkMGIyYi01NjVmNg==
34
+ !binary "WC1FbHMtQXBpa2V5":
35
+ - !binary |-
36
+ RFVNTVlfQVBJX0tFWQ==
37
+ !binary "U2V0LUNvb2tpZQ==":
38
+ - !binary |-
39
+ SlNFU1NJT05JRD0zRjNEOTkyOTBEMTZFMTU2QUQxRkI2RkMwRjBCOTA3Ri4y
40
+ VWlvdmVvMVhNU0tyTDZlU2FJTk1ROyBEb21haW49YXBpLmVsc2V2aWVyLmNv
41
+ bTsgUGF0aD0vY29udGVudC9zZWFyY2g=
42
+ !binary "Q29udGVudC1UeXBl":
43
+ - !binary |-
44
+ dGV4dC94bWw7Y2hhcnNldD11dGYtOA==
45
+ !binary "Q29udGVudC1MZW5ndGg=":
46
+ - !binary |-
47
+ MTc1
48
+ !binary "RGF0ZQ==":
49
+ - !binary |-
50
+ TW9uLCAwNiBBdWcgMjAxMiAxNToyNzoxNiBHTVQ=
51
+ !binary "WC1DbmVjdGlvbg==":
52
+ - !binary |-
53
+ Y2xvc2U=
54
+ !binary "WC1SZS1SZWY=":
55
+ - !binary |-
56
+ MSAtMjA5NDcyNDU1MQ==
57
+ !binary "UDNw":
58
+ - !binary |-
59
+ Q1A9IklEQyBEU1AgTEFXIEFETSBERVYgVEFJIFBTQSBQU0QgSVZBIElWRCBD
60
+ T04gSElTIFRFTCBPVVIgREVMIFNBTSBPVFIgSU5EIE9UQyI=
61
+ body:
62
+ encoding: US-ASCII
63
+ string: ! "<service-error>\n\t<status>\n\t\t<statusCode>INVALID_INPUT</statusCode>\n\t\t<statusText>Result
64
+ set was empty or Start value beyond result set</statusText>\n\t</status>\n</service-error>"
65
+ http_version:
66
+ recorded_at: Mon, 06 Aug 2012 15:27:16 GMT
67
+ recorded_with: VCR 2.2.4
@@ -0,0 +1,54 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.summon.serialssolutions.com/2.0.0/search?s.he=$$BENTO_HL_END$$&s.hs=$$BENTO_HL_START$$&s.ps=10&s.q=elephants
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Content-Type:
11
+ - application/x-www-form-urlencoded; charset=utf8
12
+ Accept:
13
+ - application/json
14
+ X-Summon-Date:
15
+ - Mon, 06 Aug 2012 15:13:32 GMT
16
+ Authorization:
17
+ - Summon bad_access_id;zEFKYSwR7I7eAJ7a235qivVSf5w=
18
+ Host:
19
+ - api.summon.serialssolutions.com:80
20
+ response:
21
+ status:
22
+ code: 401
23
+ message: !binary |-
24
+ VW5hdXRob3JpemVk
25
+ headers:
26
+ !binary "Q29udGVudC1UeXBl":
27
+ - !binary |-
28
+ dGV4dC9odG1sO2NoYXJzZXQ9dXRmLTg=
29
+ !binary "RGF0YWNlbnRlcg==":
30
+ - !binary |-
31
+ SUFEMQ==
32
+ !binary "RGF0ZQ==":
33
+ - !binary |-
34
+ TW9uLCAwNiBBdWcgMjAxMiAxNToxMzozMSBHTVQ=
35
+ !binary "Q29udGVudC1MZW5ndGg=":
36
+ - !binary |-
37
+ MTA2NQ==
38
+ body:
39
+ encoding: US-ASCII
40
+ string: ! '<html><head><title>Apache Tomcat/6.0.20 - Error report</title><style><!--H1
41
+ {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;}
42
+ H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;}
43
+ H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;}
44
+ BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;}
45
+ B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;}
46
+ P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A
47
+ {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP
48
+ Status 401 - Invalid ID, secret key or client hash</h1><HR size="1" noshade="noshade"><p><b>type</b>
49
+ Status report</p><p><b>message</b> <u>Invalid ID, secret key or client hash</u></p><p><b>description</b>
50
+ <u>This request requires HTTP authentication (Invalid ID, secret key or client
51
+ hash).</u></p><HR size="1" noshade="noshade"><h3>Apache Tomcat/6.0.20</h3></body></html>'
52
+ http_version:
53
+ recorded_at: Mon, 06 Aug 2012 15:13:32 GMT
54
+ recorded_with: VCR 2.2.4
@@ -0,0 +1,216 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.summon.serialssolutions.com/2.0.0/search?s.he=$$BENTO_HL_END$$&s.hs=$$BENTO_HL_START$$&s.ps=10&s.q=cancer
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Content-Type:
11
+ - application/x-www-form-urlencoded; charset=utf8
12
+ Accept:
13
+ - application/json
14
+ X-Summon-Date:
15
+ - Mon, 06 Aug 2012 15:13:32 GMT
16
+ Authorization:
17
+ - Summon DUMMY_ACCESS_ID;HQLgl/dwwHxCOU9eyTvF5iqPmLE=
18
+ Host:
19
+ - api.summon.serialssolutions.com:80
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: !binary |-
24
+ T0s=
25
+ headers:
26
+ !binary "Q29udGVudC1UeXBl":
27
+ - !binary |-
28
+ YXBwbGljYXRpb24vanNvbjtjaGFyc2V0PXV0Zi04
29
+ !binary "RGF0YWNlbnRlcg==":
30
+ - !binary |-
31
+ SUFEMQ==
32
+ !binary "RGF0ZQ==":
33
+ - !binary |-
34
+ TW9uLCAwNiBBdWcgMjAxMiAxNToxMzozMiBHTVQ=
35
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
36
+ - !binary |-
37
+ Y2h1bmtlZA==
38
+ body:
39
+ encoding: UTF-8
40
+ string: ! '{"version": "2.0.0","sessionId": "291eab7b-ff5c-4bc1-9e33-bdc608d8d056","elapsedQueryTime":
41
+ 800,"queryTime": 797,"totalRequestTime": 806,"pageCount": 1290424,"recordCount":
42
+ 12904239,"query": {"queryString": "s.hs=%5C%24%5C%24BENTO_HL_START%5C%24%5C%24&s.mr=&s.ps=10&s.q=cancer&s.he=%5C%24%5C%24BENTO_HL_END%5C%24%5C%24&s.pn=1","pageNumber":
43
+ 1,"pageSize": 10,"highlightStartDelimiter": "$$BENTO_HL_START$$","highlightEndDelimiter":
44
+ "$$BENTO_HL_END$$","textQueries": [{"textQuery": "cancer","removeCommand":
45
+ "removeTextQuery(cancer)"}],"searchTerms": [],"textFilters": [],"rangeFilters":
46
+ [],"facetValueFilters": [],"facetValueGroupFilters": [],"facetFields": [],"rangeFacetFields":
47
+ [],"sort": []},"facetFields": [],"rangeFacetFields": [],"didYouMeanSuggestions":
48
+ [],"recommendationLists": {"database": [{"title": "Cochrane Library","description":
49
+ "","link": "http://www.thecochranelibrary.com/view/0/index.html"}]},"documents":
50
+ [{"hasFullText": false,"isFullTextHit": false,"inHoldings": false,"openUrl":
51
+ "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Cancer&rft.date=1995-01-01&rft.pub=Wiley&rft.issn=1934-662X&rft.externalDocID=129067733","link":
52
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbI0TE1MMk_STUszTdY1SUo21LVMNTbWTUpJNjOwSLFIMQDf1hAWbBngax7pZ-KBVKK7iTLIuLmGOHvopieVxRdATlyIBw2WmJmbA_vefEvu9Z2dddt7SePn2bP9XxTqAAAO3CB9","Language":
53
+ ["German"],"PublicationPlace": ["Hagerstown, Md","New York, NY","Hoboken,
54
+ NJ","Philadelphia, Pa"],"Score": ["7.9369874"],"DBID": ["TB1"],"IsPeerReviewed":
55
+ ["true"],"PublicationDate": ["1995","1948-1995","1948-"],"PublicationCentury":
56
+ ["1900"],"PublicationDate_xml": [{"text": "1995","year": "1995"},{"text":
57
+ "1948-","year": "1948"},{"text": "früher"},{"text": "1948-1995","year": "1948"}],"Source":
58
+ ["unknown"],"OCLC": ["260154653","643471759","(DE-599)ZDB1429-1"],"Publisher":
59
+ ["Wiley","Lippincott","Lippincott-Raven Publishers"],"Notes": ["1.1948","Cancer
60
+ cytopathology; ungezählte Beil.: Suppl.","Zusatz 20.1967 - 24.1969: Proceedings
61
+ of the James Ewing Society. - Zusatz 25.1970 - 28.1971: official journal of
62
+ the James Ewing Society, the American Society of Clinical Oncology. - Zusatz
63
+ später: official journal for the Society of Surgical Oncology (founded as
64
+ James Ewing Society), the American Society of Clinical Oncology, American
65
+ Association of Therapeutic Radiologists","Pro Jahr ersch. mit durchgehender
66
+ Zählung jeweils 2 Vol. d. Hauptzeitschrift u. 1 Vol. d. Section"],"SourceType":
67
+ ["Institutional Repository"],"Publisher_xml": [{"name": "Wiley"},{"name":
68
+ "Lippincott-Raven Publishers"},{"name": "Lippincott"}],"DocumentTitleAlternate":
69
+ ["Cancer : a journal of the American Cancer Society ; official journal for
70
+ the Society of Surgical Oncology (founded as the James Ewing Soc., Inc.),
71
+ the American Society for Therapeutics Radiology and Oncology"],"PublicationTitleAlternate":
72
+ ["Cancer cytopathology","official journal of the James Ewing Society, the
73
+ American Society of Clinical Oncology","official journal for the Society of
74
+ Surgical Oncology (founded as James Ewing Society), the American Society of
75
+ Clinical Oncology, American Association of Therapeutic Radiologists","Cancer,
76
+ Suppl.","Cytopathology","Cancer","Proceedings of the James Ewing Society","Cancer
77
+ (Philadelphia)"],"URI": ["http://www.gbv.de/gsomenu/opendb.php?db=2.3&ln=en"],"IsScholarly":
78
+ ["true"],"ID": ["FETCH-gbv_primary_1290677330"],"PublicationTitle": ["Cancer"],"Discipline":
79
+ ["Medicine"],"PublicationPlace_xml": [{"name": "Philadelphia, Pa"},{"name":
80
+ "Hagerstown, Md"},{"name": "New York, NY"},{"name": "Hoboken, NJ"}],"PublicationDecade":
81
+ ["1990","1940"],"EISSN": ["1934-6638"],"ContentType": ["Journal"],"Title":
82
+ ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN": ["1934-662X","0008-543X"],"ExternalDocumentID":
83
+ ["129067733"],"SSID": ["ssj0018721","ssj0007253"],"Subtitle": ["a journal
84
+ of the American $$BENTO_HL_START$$Cancer$$BENTO_HL_END$$ Society ; official
85
+ journal for the Society of Surgical Oncology (founded as the James Ewing Soc.,
86
+ Inc.), the American Society for Therapeutics Radiology and Oncology"]},{"hasFullText":
87
+ true,"isFullTextHit": false,"inHoldings": true,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Cancer&rft.creator=%E6%97%A5%E6%9C%AC%E7%94%B2%E6%AE%BB%E9%A1%9E%E5%AD%A6%E4%BC%9A+%5B%E7%B7%A8%5D&rft.date=1991-01-01&rft.pub=%E6%97%A5%E6%9C%AC%E7%94%B2%E6%AE%BB%E9%A1%9E%E5%AD%A6%E4%BC%9A&rft.issn=0918-1989","link":
88
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbI0TE1MMk_STUszTdY1SUo21LVMNTbWTUpJNjOwSLFIMQDf1hAWbBngax7pZ-LBgyig3EQZ7N1cQ5w9dLPyUnLiwW3QeNARyEBnxINE0vPjswrig8DD0qDsHO8JZYFOXTEEzaXycdw_9OSKg_v3Wb86nTWO7TQEAOVsKsA","Language":
89
+ ["Japanese"],"Author": ["日本甲殻類学会 [編]"],"PublicationPlace": ["東京"],"Score":
90
+ ["7.916323"],"IsPeerReviewed": ["false"],"DBID": ["3CS"],"PublicationDate":
91
+ ["1991"],"PublicationCentury": ["1900"],"PublicationDate_xml": [{"text": "1991","year":
92
+ "1991"}],"Publisher": ["日本甲殻類学会"],"SourceType": ["Publisher"],"Publisher_xml":
93
+ [{"name": "日本甲殻類学会"}],"ClassificationCodes": ["Z18-3327"],"URI": ["http://iss.ndl.go.jp/books/R100000002-I000000082371-00"],"IsScholarly":
94
+ ["true"],"ID": ["FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000082371_000"],"PublicationPlace_xml":
95
+ [{"name": "東京"}],"PublicationDecade": ["1990"],"Author_xml": [{"fullname":
96
+ "日本甲殻類学会 [編]"}],"ContentType": ["Journal"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN":
97
+ ["0918-1989"],"SSID": ["ssib005091095","ssib003110677","ssib000935677","ssib007295855","ssib002223832"]},{"hasFullText":
98
+ false,"isFullTextHit": false,"inHoldings": false,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Cancer","link":
99
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbI0TE1MMk_STUszTdY1SUo21LVMNTbWTUpJNjOwSLFIMQDf1hAWbBngax7pZ-LBgyio3EQZ7N1cQ5w9dLPyUnLiwW3QeNARyEBnxINE0vPjswrig8DD0qDsHO8JYQDLWTMLE9BcKt8V5v2vzRj853e1MBoaaWWcBADQnSgk","Language":
100
+ ["Japanese"],"URI": ["http://iss.ndl.go.jp/books/R100000002-I000000128684-00"],"Score":
101
+ ["7.882948"],"IsScholarly": ["false"],"IsPeerReviewed": ["false"],"DBID":
102
+ ["3CS"],"ID": ["FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000128684_000"],"SourceType":
103
+ ["Publisher"],"ContentType": ["Journal"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ClassificationCodes":
104
+ ["Z53-S17"]},{"hasFullText": false,"isFullTextHit": false,"inHoldings": false,"openUrl":
105
+ "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Cancer&rft.date=2002-01-01&rft.pub=Blackwell+Japan&rft.issn=1347-1082","link":
106
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbI0TE1MMk_STUszTdY1SUo21LVMNTbWTUpJNjOwSLFIMQDf1hAWbBngax7pZ-LBgyiw3EQZ7N1cQ5w9dLPyUnLiwW3QeNARyEBnxINE0vPjswrig8DD0qDsHO8JYQA7JmbGhqC5VD6V4FN2gh9dz65giEo_PS_nLADP4ilJ","Language":
107
+ ["Japanese"],"Edition": ["日本語版"],"URI": ["http://iss.ndl.go.jp/books/R100000002-I000000407631-00"],"PublicationPlace":
108
+ ["Tokyo"],"Score": ["7.882948"],"IsScholarly": ["false"],"DBID": ["3CS"],"IsPeerReviewed":
109
+ ["false"],"ID": ["FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000407631_000"],"PublicationCentury":
110
+ ["2000"],"PublicationDate_xml": [{"text": "2002","year": "2002"}],"PublicationDate":
111
+ ["2002"],"Publisher": ["Blackwell Japan"],"PublicationPlace_xml": [{"name":
112
+ "Tokyo"}],"SourceType": ["Publisher"],"Publisher_xml": [{"name": "Blackwell
113
+ Japan"}],"PublicationDecade": ["2000"],"ContentType": ["Journal"],"Title":
114
+ ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN": ["1347-1082"],"ClassificationCodes":
115
+ ["Z74-D141"]},{"hasFullText": false,"isFullTextHit": false,"inHoldings": false,"openUrl":
116
+ "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Cancer&rft.creator=%E9%AB%98%E6%9D%BE%E5%AE%AE%E5%A6%83%E7%99%8C%E7%A0%94%E7%A9%B6%E5%9F%BA%E9%87%91+%5B%E7%B7%A8%5D&rft.date=1900-01-01&rft.pub=%E9%AB%98%E6%9D%BE%E5%AE%AE%E5%A6%83%E7%99%8C%E7%A0%94%E7%A9%B6%E5%9F%BA%E9%87%91","link":
117
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbI0TE1MMk_STUszTdY1SUo21LVMNTbWTUpJNjOwSLFIMQDf1hAWbBngax7pZ-LBgyi43EQZ7N1cQ5w9dLPyUnLiwW3QeNARyEBnxINE0vPjswrig8DD0qDsHO8JZZkAWyLGoLlUvi-dgZ7lvx3k97J80v7JPvcSANu4KeE","Language":
118
+ ["Japanese"],"URI": ["http://iss.ndl.go.jp/books/R100000002-I000000049323-00"],"Author":
119
+ ["高松宮妃癌研究基金 [編]"],"PublicationPlace": ["東京"],"Score": ["7.882948"],"IsScholarly":
120
+ ["false"],"DBID": ["3CS"],"IsPeerReviewed": ["false"],"ID": ["FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000049323_000"],"PublicationCentury":
121
+ ["1900"],"PublicationDate_xml": [{"text": "1900","year": "1900"}],"PublicationDate":
122
+ ["1900"],"Publisher": ["高松宮妃癌研究基金"],"PublicationPlace_xml": [{"name": "東京"}],"SourceType":
123
+ ["Publisher"],"Publisher_xml": [{"name": "高松宮妃癌研究基金"}],"PublicationDecade":
124
+ ["1900"],"Author_xml": [{"fullname": "高松宮妃癌研究基金 [編]"}],"ContentType": ["Journal"],"Title":
125
+ ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ClassificationCodes": ["Z43-638"]},{"hasFullText":
126
+ true,"isFullTextHit": false,"inHoldings": true,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=Cancer&rft.jtitle=Nature+Reviews+Gastroenterology+%26+Hepatology&rft.date=2010-08-01&rft.pub=Nature+Publishing+Group&rft.issn=1759-5045&rft.volume=7&rft.issue=8&rft.spage=416&rft.externalDBID=n%2Fa&rft.externalDocID=234570291","link":
127
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbI0TE1MMk_STUszTdY1SUo21LVMNTbWTUpJNjOwSLFIMQDf1hAWbBngax7pZ-LBgyjA3EQZZN1cQ5w9dEEFZHwB5MiFeCNjE1NzA6DBBnxnGnpmF_z0KmnJflv-6P4-WQAl0SCi","Volume":
128
+ ["7"],"Language": ["English"],"Score": ["7.8756924"],"PageCount": ["1"],"Copyright":
129
+ ["COPYRIGHT 2010 Nature Publishing Group"],"IsPeerReviewed": ["true"],"PublicationDate":
130
+ ["August 2010"],"PublicationCentury": ["2000"],"PublicationDate_xml": [{"text":
131
+ "August 2010","month": "08","year": "2010"}],"Copyright_xml": [{"notice":
132
+ "COPYRIGHT 2010 Nature Publishing Group"}],"Publisher": ["Nature Publishing
133
+ Group"],"SourceType": ["Aggregation Database"],"Publisher_xml": [{"name":
134
+ "Nature Publishing Group"}],"Snippet": ["...Smoking has now been identified
135
+ as a risk factor for flat adenomas of all sizes, which might explain why colorectal
136
+ $$BENTO_HL_START$$cancer$$BENTO_HL_END$$ occurs earlier in smokers than..."],"GeographicLocations":
137
+ ["United States"],"IsScholarly": ["true"],"ID": ["FETCH-gale_primary_2345702910"],"PublicationTitle":
138
+ ["Nature Reviews Gastroenterology & Hepatology"],"GeographicLocations_xml":
139
+ [{"name": "United States"}],"Issue": ["8"],"Audience": ["Academic"],"PublicationDecade":
140
+ ["2010"],"EISSN": ["1759-5053"],"SubjectTerms": ["Smoking","Colonoscopy","Health
141
+ aspects","Risk factors","Demographic aspects","Cancer","Usage"],"ContentType":
142
+ ["Journal Article"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN":
143
+ ["1759-5045"],"ExternalDocumentID": ["234570291"],"SSID": ["ssj0065539"],"StartPage":
144
+ ["416"]},{"hasFullText": false,"isFullTextHit": false,"inHoldings": false,"openUrl":
145
+ "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.title=Cancer&rft.au=Woolfolk%2C+Joanna&rft.date=2011-11-01&rft.pub=Taylor+Trade+Publishing&rft.isbn=1589795563&rft.externalDocID=10523642","link":
146
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbI0TE1MMk_STUszTdY1SUo21LVMNTbWTUpJNjOwSLFIMQDf1hAWbBngax7pZ-LBgyjI3EQZ5NxcQ5w9dCHzpvEFkEMX4g1B45fAxrIBn2KD2fxfeV4T5_pUbLBZascHADulHsQ","Language":
147
+ ["English"],"Author": ["Woolfolk, Joanna"],"Score": ["7.8754735"],"PageCount":
148
+ ["109"],"IsPeerReviewed": ["false"],"PublicationDate": ["20111101"],"PublicationCentury":
149
+ ["2000"],"PublicationDate_xml": [{"text": "20111101","month": "11","year":
150
+ "2011","day": "01"}],"Publisher": ["Taylor Trade Publishing"],"SourceType":
151
+ ["Publisher","Enrichment Source"],"Publisher_xml": [{"name": "Taylor Trade
152
+ Publishing"}],"DocumentTitleAlternate": ["Cancer : Joanna Woolfolk''s Sun
153
+ Sign Series"],"Snippet": ["...CONTENTS About the Author Acknowledgments Introduction
154
+ Part One: All About You Your $$BENTO_HL_START$$Cancer$$BENTO_HL_END$$ Personality
155
+ $$BENTO_HL_START$$Cancer$$BENTO_HL_END$$ in Love $$BENTO_HL_START$$Cancer''s$$BENTO_HL_END$$
156
+ Amorous Combinations: Your Love..."],"EISBN": ["1589795318","9781589795310"],"ISBN":
157
+ ["1589795563","9781589795563"],"IsScholarly": ["false"],"ID": ["FETCH-ebrary_primary_105236420"],"Discipline":
158
+ ["Parapsychology & Occult Sciences"],"PublicationDecade": ["2010"],"SubjectTerms":
159
+ ["BODY, MIND & SPIRIT","Astrology General"],"Author_xml": [{"fullname": "Woolfolk,
160
+ Joanna"}],"ContentType": ["eBook"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ExternalDocumentID":
161
+ ["10523642"],"SSID": ["ssj0000575694"],"Subtitle": ["Joanna Woolfolk''s Sun
162
+ Sign Series"],"thumbnail_l": ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9781589795563/large"],"thumbnail_m":
163
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9781589795563/medium"],"thumbnail_s":
164
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9781589795563/small"]},{"hasFullText":
165
+ true,"isFullTextHit": false,"inHoldings": true,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=Cancer&rft.jtitle=Nature+Reviews+Endocrinology&rft.date=2010-04-01&rft.pub=Nature+Publishing+Group&rft.issn=1759-5029&rft.volume=6&rft.issue=4&rft.spage=183&rft.externalDBID=n%2Fa&rft.externalDocID=222559570","link":
166
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbI0TE1MMk_STUszTdY1SUo21LVMNTbWTUpJNjOwSLFIMQDf1hAWbBngax7pZ-LBgyjQ3EQZZN1cQ5w9dEEFZHwB5MiFeFCvxNQSdBY739TbbjsX8_k6ds1f4SeScEcMABdzHlI","Volume":
167
+ ["6"],"Language": ["English"],"Score": ["7.8707085"],"PageCount": ["1"],"Copyright":
168
+ ["COPYRIGHT 2010 Nature Publishing Group"],"IsPeerReviewed": ["true"],"PublicationDate_xml":
169
+ [{"text": "April 2010","month": "04","year": "2010"}],"PublicationCentury":
170
+ ["2000"],"PublicationDate": ["April 2010"],"Copyright_xml": [{"notice": "COPYRIGHT
171
+ 2010 Nature Publishing Group"}],"Publisher": ["Nature Publishing Group"],"SourceType":
172
+ ["Aggregation Database"],"Publisher_xml": [{"name": "Nature Publishing Group"}],"Snippet":
173
+ ["...Vasomotor symptoms in menopausal women with hormone receptor-positive
174
+ breast $$BENTO_HL_START$$cancer$$BENTO_HL_END$$ can be treated efficiently
175
+ with acupuncture rather than venlafaxine..."],"GeographicLocations": ["United
176
+ States"],"IsScholarly": ["true"],"ID": ["FETCH-gale_primary_2225595700"],"GeographicLocations_xml":
177
+ [{"name": "United States"}],"PublicationTitle": ["Nature Reviews Endocrinology"],"Issue":
178
+ ["4"],"Discipline": ["Anatomy & Physiology"],"Audience": ["Academic"],"PublicationDecade":
179
+ ["2010"],"EISSN": ["1759-5037"],"SubjectTerms": ["Acupuncture","Health aspects","Venlafaxine","Care
180
+ and treatment","Patient outcomes","Breast cancer","Dosage and administration"],"ContentType":
181
+ ["Journal Article"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN":
182
+ ["1759-5029"],"ExternalDocumentID": ["222559570"],"SSID": ["ssj0066474"],"StartPage":
183
+ ["183"]},{"hasFullText": false,"isFullTextHit": false,"inHoldings": false,"openUrl":
184
+ "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:book&rft.genre=book&rft.title=Cancer&rft.au=Acton%2C+Q.+Ashton&rft.date=2012-01-01&rft.pub=Scholarly+Editions&rft.externalDocID=10548160","link":
185
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbI0TE1MMk_STUszTdY1SUo21LVMNTbWTUpJNjOwSLFIMQDf1hAWbBngax7pZ-LBgyjY3EQZ5NxcQ5w9dCHzpvEFkEMX4oHtABMLQ2D1zNe94bfwrx7_I80hPxt8yp89AABP_yGM","Language":
186
+ ["English"],"Author": ["Acton, Q. Ashton"],"Score": ["7.870208"],"PageCount":
187
+ ["3937"],"IsPeerReviewed": ["false"],"PublicationDate": ["20120101"],"PublicationCentury":
188
+ ["2000"],"PublicationDate_xml": [{"text": "20120101","month": "01","year":
189
+ "2012","day": "01"}],"Publisher": ["Scholarly Editions"],"SourceType": ["Publisher","Enrichment
190
+ Source"],"Publisher_xml": [{"name": "Scholarly Editions"}],"DocumentTitleAlternate":
191
+ ["Cancer : New Insights for the Healthcare Professional (2011 Edition)"],"EISBN":
192
+ ["1464900035","9781464900037"],"IsScholarly": ["false"],"ID": ["FETCH-ebrary_primary_105481600"],"PublicationDecade":
193
+ ["2010"],"SubjectTerms": ["MEDICAL","Oncology"],"Author_xml": [{"fullname":
194
+ "Acton, Q. Ashton"}],"ContentType": ["eBook"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ExternalDocumentID":
195
+ ["10548160"],"SSID": ["ssib009094050"],"Subtitle": ["New Insights for the
196
+ Healthcare Professional (2011 Edition)"]},{"hasFullText": true,"isFullTextHit":
197
+ false,"inHoldings": true,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=Cancer&rft.jtitle=Nature+Reviews+Gastroenterology+%26+Hepatology&rft.date=2010-03-01&rft.pub=Nature+Publishing+Group&rft.issn=1759-5045&rft.volume=7&rft.issue=3&rft.spage=122&rft.externalDBID=n%2Fa&rft.externalDocID=221204592","link":
198
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbI0TE1MMk_STUszTdY1SUo21LVMNTbWTUpJNjOwSLFIMQDf1hAWbBngax7pZ-KBXPi5iTLIurmGOHvogkrI-ALImQvxRsAiFtj6sDQy4AvTnvpka6_nopkHA7yPXrp-FAAyvSCO","Volume":
199
+ ["7"],"Language": ["English"],"Score": ["7.8696756"],"PageCount": ["1"],"Copyright":
200
+ ["COPYRIGHT 2010 Nature Publishing Group"],"IsPeerReviewed": ["true"],"PublicationDate":
201
+ ["March 2010"],"PublicationCentury": ["2000"],"PublicationDate_xml": [{"text":
202
+ "March 2010","month": "03","year": "2010"}],"Copyright_xml": [{"notice": "COPYRIGHT
203
+ 2010 Nature Publishing Group"}],"Publisher": ["Nature Publishing Group"],"SourceType":
204
+ ["Aggregation Database"],"Publisher_xml": [{"name": "Nature Publishing Group"}],"Snippet":
205
+ ["... $$BENTO_HL_START$$cancer$$BENTO_HL_END$$: a prospective cohort study.
206
+ Gut 59,39-48(2010)..."],"GeographicLocations": ["United States"],"IsScholarly":
207
+ ["true"],"ID": ["FETCH-gale_primary_2212045920"],"PublicationTitle": ["Nature
208
+ Reviews Gastroenterology & Hepatology"],"GeographicLocations_xml": [{"name":
209
+ "United States"}],"Issue": ["3"],"Audience": ["Academic"],"PublicationDecade":
210
+ ["2010"],"EISSN": ["1759-5053"],"SubjectTerms": ["Smoking","Health aspects","Smokers","Esophageal
211
+ cancer","Risk factors","Stomach cancer"],"ContentType": ["Journal Article"],"Title":
212
+ ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN": ["1759-5045"],"ExternalDocumentID":
213
+ ["221204592"],"SSID": ["ssj0065539"],"StartPage": ["122"]}]}'
214
+ http_version:
215
+ recorded_at: Mon, 06 Aug 2012 15:13:33 GMT
216
+ recorded_with: VCR 2.2.4
@@ -0,0 +1,242 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://api.summon.serialssolutions.com/2.0.0/search?s.he=$$BENTO_HL_END$$&s.hs=$$BENTO_HL_START$$&s.ps=10&s.q=elephants
6
+ body:
7
+ encoding: US-ASCII
8
+ string: ''
9
+ headers:
10
+ Content-Type:
11
+ - application/x-www-form-urlencoded; charset=utf8
12
+ Accept:
13
+ - application/json
14
+ X-Summon-Date:
15
+ - Mon, 06 Aug 2012 15:13:33 GMT
16
+ Authorization:
17
+ - Summon DUMMY_ACCESS_ID;zkMz27i3XvhWxcCxo7TTy7bl5+Q=
18
+ Host:
19
+ - api.summon.serialssolutions.com:80
20
+ response:
21
+ status:
22
+ code: 200
23
+ message: !binary |-
24
+ T0s=
25
+ headers:
26
+ !binary "Q29udGVudC1UeXBl":
27
+ - !binary |-
28
+ YXBwbGljYXRpb24vanNvbjtjaGFyc2V0PXV0Zi04
29
+ !binary "RGF0YWNlbnRlcg==":
30
+ - !binary |-
31
+ SUFEMQ==
32
+ !binary "RGF0ZQ==":
33
+ - !binary |-
34
+ TW9uLCAwNiBBdWcgMjAxMiAxNToxMzozMyBHTVQ=
35
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
36
+ - !binary |-
37
+ Y2h1bmtlZA==
38
+ body:
39
+ encoding: UTF-8
40
+ string: ! '{"version": "2.0.0","sessionId": "008ca147-d48c-4153-a574-bdb43b219d58","elapsedQueryTime":
41
+ 226,"queryTime": 222,"totalRequestTime": 231,"pageCount": 146447,"recordCount":
42
+ 1464465,"query": {"queryString": "s.hs=%5C%24%5C%24BENTO_HL_START%5C%24%5C%24&s.mr=&s.ps=10&s.q=elephants&s.he=%5C%24%5C%24BENTO_HL_END%5C%24%5C%24&s.pn=1","pageNumber":
43
+ 1,"pageSize": 10,"highlightStartDelimiter": "$$BENTO_HL_START$$","highlightEndDelimiter":
44
+ "$$BENTO_HL_END$$","textQueries": [{"textQuery": "elephants","removeCommand":
45
+ "removeTextQuery(elephants)"}],"searchTerms": [],"textFilters": [],"rangeFilters":
46
+ [],"facetValueFilters": [],"facetValueGroupFilters": [],"facetFields": [],"rangeFacetFields":
47
+ [],"sort": []},"facetFields": [],"rangeFacetFields": [],"didYouMeanSuggestions":
48
+ [],"recommendationLists": {},"documents": [{"hasFullText": false,"isFullTextHit":
49
+ false,"inHoldings": false,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Elephants&rft.date=2011-01-01&rft.pub=Marshall+Cavendish&rft.isbn=0761479376&rft.spage=52&rft.epage=65&rft.externalDocID=1508900010","link":
50
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQAVYryYmGJua6KSYWybrAGsJYN9HU3EQ3KSXJxDgJmEVSwIc9hwVbBviaR_qZeCCV6G6iDFJuriHOHrqgAjK-rCgnHnRiOehqS0MDA745Lnv9OFZ4ntj8xePmhq9HtQFUrB2X","Language":
51
+ ["English"],"PublicationPlace": ["New York"],"Score": ["18.681522"],"IsPeerReviewed":
52
+ ["false"],"PublicationDate": ["2011"],"PublicationCentury": ["2000"],"PublicationDate_xml":
53
+ [{"text": "2011","year": "2011"}],"Source": ["Marshall Cavendish Reference"],"Publisher":
54
+ ["Marshall Cavendish"],"SourceType": ["Publisher"],"Publisher_xml": [{"name":
55
+ "Marshall Cavendish"}],"Snippet": ["...A charging $$BENTO_HL_START$$elephant$$BENTO_HL_END$$
56
+ can reach a speed of around 25 miles per hour (40 km/h), fast enough to outrun
57
+ a human . $$BENTO_HL_START$$Elephant$$BENTO_HL_END$$ males use their tusks
58
+ to fight one..."],"EISBN": ["0761499628","9780761499626"],"ISBN": ["0761479376","9780761479376"],"IsScholarly":
59
+ ["false"],"ID": ["FETCH-gale_vrl_15089000100"],"PublicationTitle": ["Mammals
60
+ of the Southern Hemisphere"],"Discipline": ["Zoology"],"PublicationPlace_xml":
61
+ [{"name": "New York"}],"PublicationDecade": ["2010"],"ContentType": ["Reference"],"Title":
62
+ ["$$BENTO_HL_START$$Elephants$$BENTO_HL_END$$"],"ExternalDocumentID": ["1508900010"],"SSID":
63
+ ["ssj0000422555"],"StartPage": ["52"],"EndPage": ["65"],"thumbnail_l": ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780761479376/large"],"thumbnail_m":
64
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780761479376/medium"],"thumbnail_s":
65
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780761479376/small"]},{"hasFullText":
66
+ false,"isFullTextHit": false,"inHoldings": false,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Elephants&rft.date=2011-01-01&rft.pub=Cengage+Learning&rft.isbn=1414487363&rft.volume=1&rft.spage=527&rft.epage=528&rft.externalDocID=1918700486","link":
67
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQAVYryYmGJua6KSYWybrAGsJYN9HU3EQ3KSXJxDgJmEVSwIc9hwVbBviaR_qZePAgCig3UQYpN9cQZw9dUAEZX1aUEw_sUViYQ25L4gtkztvat8Qreo3pppu3f5tFAABOGhzB","Volume":
68
+ ["1"],"Language": ["English"],"Edition": ["4th"],"PublicationPlace": ["Detroit"],"Score":
69
+ ["18.679066"],"IsPeerReviewed": ["false"],"PublicationDate": ["2011"],"PublicationCentury":
70
+ ["2000"],"PublicationDate_xml": [{"text": "2011","year": "2011"}],"Source":
71
+ ["Gale"],"Publisher": ["Cengage Learning"],"SourceType": ["Publisher"],"Publisher_xml":
72
+ [{"name": "Cengage Learning"}],"Snippet": ["...The $$BENTO_HL_START$$elephant$$BENTO_HL_END$$
73
+ is a large mammal with a long trunk and tusks. The trunk is an elongated nose
74
+ used for feeding, drinking, bathing, blowing dust, and testing..."],"EISBN":
75
+ ["9781414487397","1414487398"],"ISBN": ["1414487363","9781414487366"],"IsScholarly":
76
+ ["false"],"ID": ["FETCH-gale_vrl_19187004860"],"PublicationTitle": ["Environmental
77
+ Encyclopedia"],"PublicationPlace_xml": [{"name": "Detroit"}],"PublicationDecade":
78
+ ["2010"],"ContentType": ["Reference"],"Title": ["$$BENTO_HL_START$$Elephants$$BENTO_HL_END$$"],"PublicationSubtitle":
79
+ ["A-K"],"ExternalDocumentID": ["1918700486"],"SSID": ["ssib007105038"],"StartPage":
80
+ ["527"],"EndPage": ["528"],"thumbnail_l": ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9781414487366/large"],"thumbnail_m":
81
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9781414487366/medium"],"thumbnail_s":
82
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9781414487366/small"]},{"hasFullText":
83
+ false,"isFullTextHit": false,"inHoldings": false,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Elephants&rft.date=2010-01-01&rft.pub=ABC-Clio&rft.isbn=9780313352553&rft.volume=1&rft.spage=198&rft.externalDocID=2442700083","link":
84
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQAVYryYmGJua6KSYWybrAGsJYN9HU3EQ3KSXJxDgJmEVSwIc9hwVbBviaR_qZePAgCio3UQYpN9cQZw9dUAEZX1aUEw-sgECzo8C2ggHfkWSfgL8_nH53aF4WmnQ1yA4AWvcdGA","Volume":
85
+ ["1"],"Language": ["English"],"Edition": ["2nd"],"PublicationPlace": ["Santa
86
+ Barbara, CA"],"Score": ["18.62199"],"IsPeerReviewed": ["false"],"PublicationDate":
87
+ ["2010"],"PublicationCentury": ["2000"],"PublicationDate_xml": [{"text": "2010","year":
88
+ "2010"}],"Source": ["Greenwood Press"],"Publisher": ["ABC-Clio"],"SourceType":
89
+ ["Publisher"],"Publisher_xml": [{"name": "ABC-Clio"}],"Snippet": ["...See
90
+ Conservation Ethics, $$BENTO_HL_START$$Elephants$$BENTO_HL_END$$..."],"EISBN":
91
+ ["0313352569","9780313352560"],"ISBN": ["9780313352553","0313352550"],"IsScholarly":
92
+ ["false"],"ID": ["FETCH-gale_vrl_24427000830"],"PublicationTitle": ["Encyclopedia
93
+ of Animal Rights and Animal Welfare"],"Editor": ["Bekoff, Marc"],"Editor_xml":
94
+ [{"givenname": "Marc","surname": "Bekoff","fullname": "Bekoff, Marc"}],"PublicationPlace_xml":
95
+ [{"name": "Santa Barbara, CA"}],"PublicationDecade": ["2010"],"ContentType":
96
+ ["Reference"],"PublicationSubtitle": ["A-H"],"Title": ["$$BENTO_HL_START$$Elephants$$BENTO_HL_END$$"],"ExternalDocumentID":
97
+ ["2442700083"],"SSID": ["ssj0000435931"],"StartPage": ["198"],"thumbnail_l":
98
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780313352553/large"],"thumbnail_m":
99
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780313352553/medium"],"thumbnail_s":
100
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780313352553/small"]},{"hasFullText":
101
+ false,"isFullTextHit": false,"inHoldings": false,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Elephants&rft.date=2010-01-01&rft.pub=Dorling+Kindersley&rft.isbn=0756657598&rft.spage=184&rft.externalDocID=1796500128","link":
102
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQAVYryYmGJua6KSYWybrAGsJYN9HU3EQ3KSXJxDgJmEVSwIc9hwVbBviaR_qZePAgCiw3UQYpN9cQZw9dUAEZX1aUEw9MMsBmBKggNeC7tHiX_sV016ub5CT2ejJ_TwIAWVEcmg","Language":
103
+ ["English"],"PublicationPlace": ["New York"],"Score": ["18.57741"],"IsPeerReviewed":
104
+ ["false"],"PublicationCentury": ["2000"],"PublicationDate_xml": [{"text":
105
+ "2010","year": "2010"}],"PublicationDate": ["2010"],"Source": ["Dorling Kindersley"],"Publisher":
106
+ ["Dorling Kindersley"],"SourceType": ["Publisher"],"Publisher_xml": [{"name":
107
+ "Dorling Kindersley"}],"Snippet": ["...G REAT TUSKS , huge ears, and a strong
108
+ trunk make the $$BENTO_HL_START$$elephant$$BENTO_HL_END$$ one of the most
109
+ magnificent creatures on Earth. $$BENTO_HL_START$$Elephants$$BENTO_HL_END$$
110
+ are the largest living land mammals..."],"EISBN": ["9780756672546","0756672546"],"ISBN":
111
+ ["0756657598","9780756657598"],"IsScholarly": ["false"],"ID": ["FETCH-gale_vrl_17965001280"],"PublicationTitle":
112
+ ["Children''s Illustrated Encyclopedia"],"PublicationPlace_xml": [{"name":
113
+ "New York"}],"PublicationDecade": ["2010"],"ContentType": ["Reference"],"Title":
114
+ ["$$BENTO_HL_START$$Elephants$$BENTO_HL_END$$"],"ExternalDocumentID": ["1796500128"],"SSID":
115
+ ["ssib006123459","ssj0000522088"],"StartPage": ["184"],"thumbnail_l": ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780756657598/large"],"thumbnail_m":
116
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780756657598/medium"],"thumbnail_s":
117
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780756657598/small"]},{"hasFullText":
118
+ false,"isFullTextHit": false,"inHoldings": false,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Elephants&rft.creator=Nolan%2C+Cathal+J&rft.date=2010-01-01&rft.pub=ABC-Clio&rft.isbn=9780313330506&rft.volume=1&rft.spage=347&rft.externalDocID=1762100616","link":
119
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQAVYryYmGJua6KSYWybrAGsJYN9HU3EQ3KSXJxDgJmEVSwIc9hwVbBviaR_qZePAgCi43UQYpN9cQZw9dUAEZX1aUE28IzK-GoKrWzICPS-ikpkap--WN9rNdQ1R-cQIAPqsaqA","Volume":
120
+ ["1"],"Language": ["English"],"Author": ["Nolan, Cathal J"],"PublicationPlace":
121
+ ["Santa Barbara, CA"],"Score": ["18.57237"],"IsPeerReviewed": ["false"],"PublicationDate":
122
+ ["2010"],"PublicationCentury": ["2000"],"PublicationDate_xml": [{"text": "2010","year":
123
+ "2010"}],"Source": ["Greenwood Press"],"Publisher": ["ABC-Clio"],"SourceType":
124
+ ["Publisher"],"Publisher_xml": [{"name": "ABC-Clio"}],"Snippet": ["...In World
125
+ War II $$BENTO_HL_START$$elephants$$BENTO_HL_END$$ were commonly employed
126
+ in military labor by both sides in northern India and Burma, as well as French
127
+ Indochina and other parts..."],"EISBN": ["9780313365270","031336527X"],"ISBN":
128
+ ["9780313330506","0313330506"],"IsScholarly": ["false"],"ID": ["FETCH-gale_vrl_17621006160"],"PublicationTitle":
129
+ ["The Concise Encyclopedia of World War II"],"Discipline": ["History & Archaeology"],"PublicationPlace_xml":
130
+ [{"name": "Santa Barbara, CA"}],"PublicationDecade": ["2010"],"Author_xml":
131
+ [{"middlename": "J","givenname": "Cathal","surname": "Nolan","fullname": "Nolan,
132
+ Cathal J"}],"ContentType": ["Reference"],"Title": ["$$BENTO_HL_START$$Elephants$$BENTO_HL_END$$"],"ExternalDocumentID":
133
+ ["1762100616"],"SSID": ["ssj0000414642"],"StartPage": ["347"],"thumbnail_l":
134
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780313330506/large"],"thumbnail_m":
135
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780313330506/medium"],"thumbnail_s":
136
+ ["http://DUMMY_ACCESS_ID.summon.serialssolutions.com/2.0.0/image/isbn/VS9PM7YN4H/9780313330506/small"]},{"hasFullText":
137
+ false,"isFullTextHit": false,"inHoldings": false,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=Elephants&rft.jtitle=Broker+World&rft.au=Ronald+R+Hagelman+Jr&rft.date=2011-02-28&rft.issn=0273-6551&rft.volume=31&rft.issue=2&rft.spage=48&rft.externalDBID=BRW&rft.externalDocID=2278562941","link":
138
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQAVYryYmGJua6KSYWybrAGsJYN9HU3EQ3KSXJxDgJmEVSwIc9hwVbBviaR_qZePAgCjA3UQY5N9cQZw9dWMkYn5KTEw_asAmsqS1NDA34kqWzxcoafR33ZD_6rveogAEAylIdgw","Volume":
139
+ ["31"],"Language": ["English"],"Author": ["Ronald R Hagelman Jr"],"Score":
140
+ ["18.538109"],"Copyright": ["Copyright Insurance Publications, Inc. Feb 2011"],"IsPeerReviewed":
141
+ ["false"],"PublicationDate_xml": [{"text": "20110201","month": "02","year":
142
+ "2011","day": "01"},{"text": "20110228","month": "02","year": "2011","day":
143
+ "28"}],"PublicationCentury": ["2000"],"PublicationDate": ["20110228","20110201"],"Copyright_xml":
144
+ [{"notice": "Copyright Insurance Publications, Inc. Feb 2011"}],"AbstractList":
145
+ ["In many ways the pursuit of the LTC insurance sale has been paved with good
146
+ intentions yet impaired by a quest for easy answers. It seems that even wrong
147
+ answers -- if they appear logical and simple -- can take on a life of their
148
+ own. Maybe it''s because an LTC insurance sale defies easy answers. Perhaps
149
+ the most obvious restriction to mainstream critical mass sales has been insurance
150
+ salespeople''s lack of sufficient numbers of proselytizers who encourage clients
151
+ to protect their families. Maybe the revolving doors of carrier participation,
152
+ underwriting brick walls, abrupt rate increases and constant product evolution
153
+ just makes it too hard for too many agents."],"SourceType": ["Aggregation
154
+ Database"],"Snippet": ["In many ways the pursuit of the LTC insurance sale
155
+ has been paved with good intentions yet impaired by a quest for easy answers.
156
+ It seems that even wrong..."],"GeographicLocations": ["United States--US"],"IsScholarly":
157
+ ["false"],"ID": ["FETCH-proquest_dll_22785629410"],"DLL_JC": ["BRW"],"GeographicLocations_xml":
158
+ [{"name": "United States--US"}],"PublicationTitle": ["Broker World"],"Issue":
159
+ ["2"],"PCID": ["58688491"],"Genre": ["Commentary"],"PublicationDecade": ["2010"],"PQID":
160
+ ["854052088"],"DatabaseTitleList": [""],"Abstract": ["In many ways the pursuit
161
+ of the LTC insurance sale has been paved with good intentions yet impaired
162
+ by a quest for easy answers. It seems that even wrong answers -- if they appear
163
+ logical and simple -- can take on a life of their own. Maybe it''s because
164
+ an LTC insurance sale defies easy answers. Perhaps the most obvious restriction
165
+ to mainstream critical mass sales has been insurance salespeople''s lack of
166
+ sufficient numbers of proselytizers who encourage clients to protect their
167
+ families. Maybe the revolving doors of carrier participation, underwriting
168
+ brick walls, abrupt rate increases and constant product evolution just makes
169
+ it too hard for too many agents."],"SubjectTerms": ["United States","Risk
170
+ management","Underwriting","Life & health insurance","Insurance agents & brokers","Long
171
+ term care insurance"],"Author_xml": [{"sequence": "1","fullname": "Ronald
172
+ R Hagelman Jr"}],"ContentType": ["Journal Article"],"Title": ["$$BENTO_HL_START$$Elephants$$BENTO_HL_END$$"],"ISSN":
173
+ ["0273-6551"],"ExternalDocumentID": ["2278562941"],"SSID": ["ssj0038604"],"StartPage":
174
+ ["48"]},{"hasFullText": false,"isFullTextHit": false,"inHoldings": false,"openUrl":
175
+ "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=Elephants&rft.jtitle=Descant&rft.au=Bush%2C+Catherine&rft.date=2006-04-01&rft.issn=0382-909X&rft.volume=37&rft.issue=1&rft.spage=155&rft.externalDBID=DSCT&rft.externalDocID=1012718401","link":
176
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQAVYryYmGJua6KSYWybrAGsJYN9HU3EQ3KSXJxDgJmEVSwIc9hwVbBviaR_qZePAgCjI3UQY5N9cQZw9dWMkYn5KTA1qIZGQO6owYGvDxRrOtbCx2Xt-f_ePrPo49ZQDMFB5H","Volume":
177
+ ["37"],"Language": ["English"],"Author": ["Bush, Catherine"],"Score": ["18.524649"],"RelatedPersons_xml":
178
+ [{"fullname": "Gowdy, Barbara"}],"PageCount": ["0"],"Copyright": ["Copyright
179
+ Descant Arts & Letters Foundation Spring 2006"],"IsPeerReviewed": ["false"],"PublicationDate":
180
+ ["20060630","20060501","20060401"],"PublicationCentury": ["2000"],"PublicationDate_xml":
181
+ [{"text": "20060401","month": "04","year": "2006","day": "01"},{"text": "20060501","month":
182
+ "05","year": "2006","day": "01"},{"text": "20060630","month": "06","year":
183
+ "2006","day": "30"}],"RelatedPersons": ["Gowdy, Barbara"],"Copyright_xml":
184
+ [{"notice": "Copyright Descant Arts & Letters Foundation Spring 2006"}],"SourceType":
185
+ ["Aggregation Database"],"IsScholarly": ["true"],"ID": ["FETCH-proquest_dll_10127184010"],"PublicationTitle":
186
+ ["Descant"],"DLL_JC": ["DSCT"],"Issue": ["1"],"PCID": ["17914641"],"Discipline":
187
+ ["Languages & Literatures"],"Genre": ["General information"],"PublicationDecade":
188
+ ["2000"],"PQID": ["227255234"],"SubjectTerms": ["Writers","Canada","Writing"],"Author_xml":
189
+ [{"sequence": "1","fullname": "Bush, Catherine"}],"ContentType": ["Journal
190
+ Article"],"Title": ["$$BENTO_HL_START$$Elephants$$BENTO_HL_END$$"],"ISSN":
191
+ ["0382-909X"],"ExternalDocumentID": ["1012718401"],"SSID": ["ssj0030962"],"StartPage":
192
+ ["155"]},{"hasFullText": false,"isFullTextHit": false,"inHoldings": false,"openUrl":
193
+ "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Elephants&rft.creator=Denis+Diderot&rft.date=2009-04-01&rft.pub=Ann+Arbor%2C+Michigan%3A+University+Library+University+of+Michigan&rft.externalDBID=spotext%3Adid&rft.externalDocID=oai_quod_lib_umich_edu_did2222_0000_946","link":
194
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQAVYryYmGJua6KSYWybrAGsJYN9HU3EQ3KSXJxDgJmEVSwIc9hwVbBviaR_qZePAgCjQ3UQZbN9cQZw_dUtBgW2Z6Yl58Sk5BcTzoGOTC0vyUeGA3Mh4sFw8si-NTMlOANZwRaA7VIN7SxMyAr0zoz_p3zd6-O43Ot3MyWAQDAGiJKb4","Language":
195
+ ["English"],"Author": ["Denis Diderot"],"Score": ["18.38482"],"Copyright":
196
+ ["This text may be freely searched and displayed. Permission must be received
197
+ for subsequent distribution in print or electronically. Please contact the
198
+ translator or spo-help@umich.edu for more information."],"DBID": ["379"],"IsPeerReviewed":
199
+ ["false"],"PublicationCentury": ["2000"],"PublicationDate_xml": [{"text":
200
+ "20090401","month": "04","year": "2009","day": "01"}],"PublicationDate": ["20090401"],"Copyright_xml":
201
+ [{"notice": "This text may be freely searched and displayed. Permission must
202
+ be received for subsequent distribution in print or electronically. Please
203
+ contact the translator or spo-help@umich.edu for more information."}],"Publisher":
204
+ ["Ann Arbor, Michigan: University Library University of Michigan"],"Notes":
205
+ ["(dlps) did2222.0000.946"],"SourceType": ["Open Access Repository"],"Publisher_xml":
206
+ [{"name": "Ann Arbor, Michigan: University Library University of Michigan"}],"DocumentTitleAlternate":
207
+ ["Eléphans"],"URI": ["http://hdl.handle.net/2027/spo.did2222.0000.946"],"IsScholarly":
208
+ ["false"],"ID": ["FETCH-umichigan_dlps_oai_quod_lib_umich_edu_did2222_0000_9460"],"PublicationTitle":
209
+ ["Encyclopedia of Diderot & d''Alembert"],"PublicationDecade": ["2000"],"SubjectTerms":
210
+ ["Ancient history"],"Author_xml": [{"sequence": "1","fullname": "Denis Diderot"}],"ContentType":
211
+ ["Web Resource"],"Title": ["$$BENTO_HL_START$$Elephants$$BENTO_HL_END$$"],"ExternalDocumentID":
212
+ ["oai_quod_lib_umich_edu_did2222_0000_946"]},{"hasFullText": false,"isFullTextHit":
213
+ false,"inHoldings": false,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:dc&rft.title=Elephants&rft.creator=Lister%2C+AM&rft.pub=Gale+Publishing%2C+USA&rft.externalDocID=31_9b7282e9_d366_4c65_a3f3_6c2a789c37ba_TURTdG9yZURTUmVzb3VyY2VzL01EU3RvcmVEU1Jlc291cmNlVHlwZQ_oai_eprints_ucl_ac_uk_OAI2_36662","link":
214
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQAVYryYmGJua6KSYWybrAGsJYN9HU3EQ3KSXJxDgJmEVSwIc9hwVbBviaR_qZePAgCjY3UYapbq4hzh7AjiGw3E1LzUkBl-fxxobxlknmwA5CqmV8irGZWbxJsplpfKJxmnG8WbJRormFZbKxeVJifEhoUEiKu2VlFJAOzQ2rSjIOq4w0CqvyMTB0DTUOKkvODXMNNfTKSTayNEzO9csJ88gpjwqMB52ynAoaSispji9NzolPTI4vzY73d_Q0igdaZmZkwJfQ_m2lUofHp-UdKqyRlkLWAEueRQU","Language":
215
+ ["English"],"URI": ["http://eprints.ucl.ac.uk/36662/"],"Author": ["Lister,
216
+ AM"],"Score": ["18.38482"],"IsScholarly": ["false"],"DBID": ["SDZ"],"IsPeerReviewed":
217
+ ["false"],"ID": ["FETCH-bielefeld_base_31_9b7282e9_d366_4c65_a3f3_6c2a789c37ba_TURTdG9yZURTUmVzb3VyY2VzL01EU3RvcmVEU1Jlc291cmNlVHlwZQ_oai_eprints_ucl_ac_uk_OAI2_366620"],"Publisher":
218
+ ["Gale Publishing, USA"],"SourceType": ["Institutional Repository"],"Publisher_xml":
219
+ [{"name": "Gale Publishing, USA"}],"Author_xml": [{"sequence": "1","fullname":
220
+ "Lister, AM"}],"ContentType": ["Web Resource"],"Title": ["$$BENTO_HL_START$$Elephants$$BENTO_HL_END$$"],"ExternalDocumentID":
221
+ ["31_9b7282e9_d366_4c65_a3f3_6c2a789c37ba_TURTdG9yZURTUmVzb3VyY2VzL01EU3RvcmVEU1Jlc291cmNlVHlwZQ_oai_eprints_ucl_ac_uk_OAI2_36662"]},{"hasFullText":
222
+ true,"isFullTextHit": false,"inHoldings": true,"openUrl": "ctx_ver=Z39.88-2004&ctx_enc=info%3Aofi%2Fenc%3AUTF-8&rfr_id=info:sid/summon.serialssolutions.com&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=Elephants&rft.jtitle=Cobblestone&rft.au=Meredith+Rutland&rft.date=2009-06-30&rft.issn=0199-5197&rft.volume=30&rft.issue=5&rft.spage=43&rft.externalDBID=ICBL&rft.externalDocID=1844972011","link":
223
+ "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQAVYryYmGJua6KSYWybrAGsJYN9HU3EQ3KSXJxDgJmEVSwIc9hwVbBviaR_qZeCAXfm6iDHJuriHOHrqwojE-JScnHtgRMbE0B9dWfPZau01kld36t8adc5L4JuIJANlVHJ0","Volume":
224
+ ["30"],"Language": ["English"],"Author": ["Meredith Rutland"],"Score": ["18.319273"],"PageCount":
225
+ ["1"],"Copyright": ["Copyright Cobblestone Publishing Company May/Jun 2009"],"IsPeerReviewed":
226
+ ["false"],"PublicationDate_xml": [{"text": "20090601","month": "06","year":
227
+ "2009","day": "01"},{"text": "20090630","month": "06","year": "2009","day":
228
+ "30"},{"text": "20090501","month": "05","year": "2009","day": "01"}],"PublicationCentury":
229
+ ["2000"],"PublicationDate": ["20090501","20090630","20090601"],"Copyright_xml":
230
+ [{"notice": "Copyright Cobblestone Publishing Company May/Jun 2009"}],"SourceType":
231
+ ["Aggregation Database"],"Snippet": ["... speak, $$BENTO_HL_START$$elephants$$BENTO_HL_END$$
232
+ fly; where a castle stretches toward stars. Magical mystery awaits the same
233
+ day as the festival. Mom informs her of my decline. Festival day..."],"IsScholarly":
234
+ ["false"],"ID": ["FETCH-proquest_dll_18449720110"],"DLL_JC": ["ICBL"],"PublicationTitle":
235
+ ["Cobblestone"],"Issue": ["5"],"PCID": ["48172741"],"Discipline": ["History
236
+ & Archaeology"],"Genre": ["Poem"],"PublicationDecade": ["2000"],"PQID": ["195575981"],"EISSN":
237
+ ["1080-5486"],"Author_xml": [{"sequence": "1","fullname": "Meredith Rutland"}],"ContentType":
238
+ ["Journal Article"],"Title": ["$$BENTO_HL_START$$Elephants$$BENTO_HL_END$$"],"ExternalDocumentID":
239
+ ["1844972011"],"ISSN": ["0199-5197"],"SSID": ["ssj0012521"],"StartPage": ["43"]}]}'
240
+ http_version:
241
+ recorded_at: Mon, 06 Aug 2012 15:13:33 GMT
242
+ recorded_with: VCR 2.2.4