bento_search 0.8.0 → 0.9.0
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.
- data/README.md +16 -2
- data/app/helpers/bento_search_helper.rb +4 -10
- data/app/item_decorators/bento_search/decorator_base.rb +17 -0
- data/app/item_decorators/bento_search/standard_decorator.rb +3 -3
- data/app/models/bento_search/link.rb +3 -0
- data/app/models/bento_search/result_item.rb +17 -1
- data/app/models/bento_search/results.rb +5 -0
- data/app/models/bento_search/ris_creator.rb +166 -0
- data/app/models/bento_search/search_engine.rb +22 -2
- data/app/search_engines/bento_search/ebsco_host_engine.rb +54 -6
- data/app/search_engines/bento_search/eds_engine.rb +18 -3
- data/app/search_engines/bento_search/google_books_engine.rb +81 -54
- data/app/search_engines/bento_search/mock_engine.rb +8 -0
- data/app/search_engines/bento_search/primo_engine.rb +6 -2
- data/app/search_engines/bento_search/scopus_engine.rb +4 -0
- data/app/search_engines/bento_search/summon_engine.rb +26 -4
- data/app/search_engines/bento_search/worldcat_sru_dc_engine.rb +15 -0
- data/app/views/bento_search/_link.html.erb +3 -2
- data/lib/bento_search/version.rb +1 -1
- data/test/dummy/app/views/_test_custom_item_partial.html.erb +9 -0
- data/test/dummy/log/development.log +1 -0
- data/test/dummy/log/test.log +84981 -0
- data/test/helper/bento_search_helper_test.rb +11 -1
- data/test/unit/ebsco_host_engine_test.rb +59 -0
- data/test/unit/eds_engine_test.rb +10 -0
- data/test/unit/google_books_engine_test.rb +20 -0
- data/test/unit/primo_engine_test.rb +1 -1
- data/test/unit/ris_creator_test.rb +159 -0
- data/test/unit/scopus_engine_test.rb +2 -0
- data/test/unit/search_engine_test.rb +37 -0
- data/test/unit/summon_engine_test.rb +21 -0
- data/test/unit/worldcat_sru_dc_engine_test.rb +151 -0
- data/test/vcr_cassettes/ebscohost/live__get_identifier__round_trip.yml +1324 -0
- data/test/vcr_cassettes/ebscohost/live_get_id__on_bad_db_raises.yml +45 -0
- data/test/vcr_cassettes/ebscohost/live_get_id__with_no_results_raises.yml +45 -0
- data/test/vcr_cassettes/gbs/live_get_id_.yml +415 -0
- data/test/vcr_cassettes/gbs/live_get_id__with_not_found_id.yml +41 -0
- data/test/vcr_cassettes/summon/live__get_id_.yml +313 -0
- data/test/vcr_cassettes/summon/live_get_id__on_non-existing_id.yml +54 -0
- data/test/vcr_cassettes/worldcat_sru_dc/live_get_id_.yml +769 -0
- data/test/vcr_cassettes/worldcat_sru_dc/live_get_id__for_bad_id.yml +68 -0
- data/test/view/link_test.rb +21 -0
- metadata +31 -6
- data/test/vcr_cassettes/max_out_pagination.yml +0 -155
@@ -0,0 +1,41 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://www.googleapis.com/books/v1/volumes/NOT+EXISTING
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 404
|
13
|
+
message: Not Found
|
14
|
+
headers:
|
15
|
+
Content-Type:
|
16
|
+
- application/json; charset=UTF-8
|
17
|
+
Date:
|
18
|
+
- Thu, 03 Jan 2013 00:23:33 GMT
|
19
|
+
Expires:
|
20
|
+
- Thu, 03 Jan 2013 00:23:33 GMT
|
21
|
+
Cache-Control:
|
22
|
+
- private, max-age=0
|
23
|
+
X-Content-Type-Options:
|
24
|
+
- nosniff
|
25
|
+
X-Frame-Options:
|
26
|
+
- SAMEORIGIN
|
27
|
+
X-Xss-Protection:
|
28
|
+
- 1; mode=block
|
29
|
+
Server:
|
30
|
+
- GSE
|
31
|
+
Transfer-Encoding:
|
32
|
+
- chunked
|
33
|
+
body:
|
34
|
+
encoding: US-ASCII
|
35
|
+
string: ! "{\n \"error\": {\n \"errors\": [\n {\n \"domain\": \"global\",\n
|
36
|
+
\ \"reason\": \"notFound\",\n \"message\": \"The volume ID could not
|
37
|
+
be found.\"\n }\n ],\n \"code\": 404,\n \"message\": \"The volume ID
|
38
|
+
could not be found.\"\n }\n}\n"
|
39
|
+
http_version:
|
40
|
+
recorded_at: Thu, 03 Jan 2013 00:23:33 GMT
|
41
|
+
recorded_with: VCR 2.3.0
|
@@ -0,0 +1,313 @@
|
|
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
|
+
- Wed, 02 Jan 2013 23:48:37 GMT
|
16
|
+
Authorization:
|
17
|
+
- Summon DUMMY_ACCESS_ID;BNQGCiVJejRH0KNxuJkCW6o5jrQ=
|
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
|
+
REZXMQ==
|
32
|
+
- !binary |-
|
33
|
+
SUFEMQ==
|
34
|
+
!binary "RGF0ZQ==":
|
35
|
+
- !binary |-
|
36
|
+
V2VkLCAwMiBKYW4gMjAxMyAyMzo0ODozOCBHTVQ=
|
37
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
38
|
+
- !binary |-
|
39
|
+
Y2h1bmtlZA==
|
40
|
+
body:
|
41
|
+
encoding: UTF-8
|
42
|
+
string: ! '{"version": "2.0.0","sessionId": "79201052-b1c2-4b4f-9c79-32a7724a5650","elapsedQueryTime":
|
43
|
+
470,"queryTime": 467,"totalRequestTime": 520,"pageCount": 1358547,"recordCount":
|
44
|
+
13585461,"query": {"queryString": "s.rec.qs.max=&s.hs=%5C%24%5C%24BENTO_HL_START%5C%24%5C%24&s.mr=&s.rec.db.max=&s.ps=10&s.q=cancer&s.he=%5C%24%5C%24BENTO_HL_END%5C%24%5C%24&s.pn=1","pageNumber":
|
45
|
+
1,"pageSize": 10,"highlightStartDelimiter": "$$BENTO_HL_START$$","highlightEndDelimiter":
|
46
|
+
"$$BENTO_HL_END$$","textQueries": [{"textQuery": "cancer","removeCommand":
|
47
|
+
"removeTextQuery(cancer)"}],"searchTerms": [],"textFilters": [],"rangeFilters":
|
48
|
+
[],"facetValueFilters": [],"inclusiveFacetValueFilters": [],"facetValueGroupFilters":
|
49
|
+
[],"facetFields": [],"rangeFacetFields": [],"sort": []},"facetFields": [],"rangeFacetFields":
|
50
|
+
[],"didYouMeanSuggestions": [],"recommendationLists": {"database": [{"title":
|
51
|
+
"Cochrane Library","description": "","link": "http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/dbrecommender/AAAkNzkyMDEwNTItYjFjMi00YjRmLTljNzktMzJhNzcyNGE1NjUwAQAKVlM5UE03WU40SAIAM2h0dHA6Ly93d3cudGhlY29jaHJhbmVsaWJyYXJ5LmNvbS92aWV3LzAvaW5kZXguaHRtbAMAATAEABBDb2NocmFuZSBMaWJyYXJ5BQAIZGF0YWJhc2U"}]},"documents":
|
52
|
+
[{"hasFullText": true,"isFullTextHit": false,"inHoldings": true,"openUrl":
|
53
|
+
"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=journal&rft.jtitle=&rft.series=&rft.pub=%E6%97%A5%E6%9C%AC%E7%94%B2%E6%AE%BB%E9%A1%9E%E5%AD%A6%E4%BC%9A&rft.isbn=&rft.issn=0918-1989&rft.externalDBID=&rft.externalDocID=","link":
|
54
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbcETbGaGukmGSYb6ZokmaTpWiabW-oaGyUC23ImicA2BGgoOyzYMsDXPNLPxAOpRHcTZbB3cw1x9tDNykvJiQe3QeNBRyADnREPEknPj88qiA8CD0uDsnO8J5QFOnXFEDSXCgCqeSAS","Language":
|
55
|
+
["Japanese"],"Author": ["日本甲殻類学会 [編]"],"PublicationPlace": ["東京"],"Score":
|
56
|
+
["8.295631"],"DBID": ["3CS","JQU"],"IsPeerReviewed": ["false"],"PublicationDate_xml":
|
57
|
+
[{"text": "1991","year": "1991"}],"PublicationDate": ["1991"],"PublicationCentury":
|
58
|
+
["1900"],"Publisher": ["日本甲殻類学会"],"SourceType": ["Publisher"],"Publisher_xml":
|
59
|
+
[{"name": "日本甲殻類学会"}],"ClassificationCodes": ["Z18-3327"],"URI": ["http://iss.ndl.go.jp/books/R100000002-I000000082371-00"],"IsScholarly":
|
60
|
+
["true"],"ID": ["FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000082371_000"],"PublicationYear":
|
61
|
+
["1991"],"PublicationPlace_xml": [{"name": "東京"}],"MergedId": ["FETCHMERGED-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000082371_000"],"Author_xml":
|
62
|
+
[{"fullname": "日本甲殻類学会 [編]"}],"PublicationDecade": ["1990"],"ContentType":
|
63
|
+
["Journal"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN":
|
64
|
+
["0918-1989"],"SSID": ["ssib003110677","ssib000935677","ssib002223832"]},{"hasFullText":
|
65
|
+
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=journal&rft.jtitle=Cancer&rft.series=&rft.pub=Wiley&rft.isbn=&rft.issn=0008-543X&rft.externalDBID=&rft.externalDocID=129067733","link":
|
66
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbcETbGaGukmGSYb6ZokmaTpWiabW-oaGyUC23ImicA2BGgoOyzYMsDXPNLPxIMHUUC5iTLIuLmGOHvopieVxRdATlyIBw2WmJmbA_veALsTFSk","Language":
|
67
|
+
["German"],"PublicationPlace": ["Hagerstown, Md","New York, NY","Hoboken,
|
68
|
+
NJ","Philadelphia, Pa"],"Score": ["8.274099"],"DBID": ["TB1"],"IsPeerReviewed":
|
69
|
+
["true"],"PublicationDate": ["1995","1948-1995","1948-"],"PublicationDate_xml":
|
70
|
+
[{"text": "1995","year": "1995"},{"text": "1948-","year": "1948"},{"text":
|
71
|
+
"früher"},{"text": "1948-1995","year": "1948"}],"PublicationCentury": ["1900"],"Source":
|
72
|
+
["unknown"],"OCLC": ["260154653","643471759","(DE-599)ZDB1429-1"],"Publisher":
|
73
|
+
["Wiley","Lippincott","Lippincott-Raven Publishers"],"Notes": ["1.1948","Cancer
|
74
|
+
cytopathology; ungezählte Beil.: Suppl.","Zusatz 20.1967 - 24.1969: Proceedings
|
75
|
+
of the James Ewing Society. - Zusatz 25.1970 - 28.1971: official journal of
|
76
|
+
the James Ewing Society, the American Society of Clinical Oncology. - Zusatz
|
77
|
+
später: official journal for the Society of Surgical Oncology (founded as
|
78
|
+
James Ewing Society), the American Society of Clinical Oncology, American
|
79
|
+
Association of Therapeutic Radiologists","Pro Jahr ersch. mit durchgehender
|
80
|
+
Zählung jeweils 2 Vol. d. Hauptzeitschrift u. 1 Vol. d. Section"],"SourceType":
|
81
|
+
["Institutional Repository"],"Publisher_xml": [{"name": "Wiley"},{"name":
|
82
|
+
"Lippincott-Raven Publishers"},{"name": "Lippincott"}],"DocumentTitleAlternate":
|
83
|
+
["Cancer : a journal of the American Cancer Society ; official journal for
|
84
|
+
the Society of Surgical Oncology (founded as the James Ewing Soc., Inc.),
|
85
|
+
the American Society for Therapeutics Radiology and Oncology"],"PublicationTitleAlternate":
|
86
|
+
["Cancer cytopathology","official journal of the James Ewing Society, the
|
87
|
+
American Society of Clinical Oncology","official journal for the Society of
|
88
|
+
Surgical Oncology (founded as James Ewing Society), the American Society of
|
89
|
+
Clinical Oncology, American Association of Therapeutic Radiologists","Cancer,
|
90
|
+
Suppl.","Cytopathology","Cancer","Proceedings of the James Ewing Society","Cancer
|
91
|
+
(Philadelphia)"],"URI": ["http://www.gbv.de/gsomenu/opendb.php?db=2.3&ln=en"],"IsScholarly":
|
92
|
+
["true"],"ID": ["FETCH-gbv_primary_1290677330"],"PublicationTitle": ["Cancer"],"Discipline":
|
93
|
+
["Medicine"],"PublicationYear": ["1995","1948"],"PublicationPlace_xml": [{"name":
|
94
|
+
"Philadelphia, Pa"},{"name": "Hagerstown, Md"},{"name": "New York, NY"},{"name":
|
95
|
+
"Hoboken, NJ"}],"EISSN": ["1934-6638"],"MergedId": ["FETCHMERGED-gbv_primary_1290677330"],"PublicationDecade":
|
96
|
+
["1990","1940"],"ContentType": ["Journal"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN":
|
97
|
+
["1934-662X","0008-543X"],"ExternalDocumentID": ["129067733"],"SSID": ["ssj0018721","ssj0007253"],"Subtitle":
|
98
|
+
["a journal of the American $$BENTO_HL_START$$Cancer$$BENTO_HL_END$$ Society
|
99
|
+
; official journal for the Society of Surgical Oncology (founded as the James
|
100
|
+
Ewing Soc., Inc.), the American Society for Therapeutics Radiology and Oncology"]},{"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:journal&rft.genre=journal&rft.jtitle=&rft.series=&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&rft.isbn=&rft.issn=&rft.externalDBID=&rft.externalDocID=","link":
|
102
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbcETbGaGukmGSYb6ZokmaTpWiabW-oaGyUC23ImicA2BGgoOyzYMsDXPNLPxIMHUVC5iTLYu7mGOHvoZuWl5MSD26DxoCOQgc6IB4mk58dnFcQHgYelQdk53hPKMgG2RIxBc6kAqwcgFA","Language":
|
103
|
+
["Japanese"],"Author": ["高松宮妃癌研究基金 [編]"],"PublicationPlace": ["東京"],"Score":
|
104
|
+
["7.957937"],"IsPeerReviewed": ["false"],"DBID": ["3CS","JQU"],"PublicationDate":
|
105
|
+
["1900"],"PublicationDate_xml": [{"text": "1900","year": "1900"}],"PublicationCentury":
|
106
|
+
["1900"],"Publisher": ["高松宮妃癌研究基金"],"SourceType": ["Publisher"],"Publisher_xml":
|
107
|
+
[{"name": "高松宮妃癌研究基金"}],"ClassificationCodes": ["Z43-638"],"URI": ["http://iss.ndl.go.jp/books/R100000002-I000000049323-00"],"IsScholarly":
|
108
|
+
["false"],"ID": ["FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000049323_000"],"PublicationYear":
|
109
|
+
["1900"],"PublicationPlace_xml": [{"name": "東京"}],"MergedId": ["FETCHMERGED-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000049323_000"],"Author_xml":
|
110
|
+
[{"fullname": "高松宮妃癌研究基金 [編]"}],"PublicationDecade": ["1900"],"ContentType":
|
111
|
+
["Journal"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"]},{"hasFullText":
|
112
|
+
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=journal&rft.jtitle=&rft.series=&rft.pub=&rft.isbn=&rft.issn=&rft.externalDBID=&rft.externalDocID=","link":
|
113
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbcETbGaGukmGSYb6ZokmaTpWiabW-oaGyUC23ImicA2BGgoOyzYMsDXPNLPxIMHUWC5iTLYu7mGOHvoZuWl5MSD26DxoCOQgc6IB4mk58dnFcQHgYelQdk53hPCAJazZhYmoLlUAKt8IB0","Language":
|
114
|
+
["Japanese"],"URI": ["http://iss.ndl.go.jp/books/R100000002-I000000128684-00"],"Score":
|
115
|
+
["7.844063"],"IsScholarly": ["false"],"DBID": ["3CS","JQU"],"IsPeerReviewed":
|
116
|
+
["false"],"ID": ["FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000128684_000"],"SourceType":
|
117
|
+
["Publisher"],"MergedId": ["FETCHMERGED-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000128684_000"],"ContentType":
|
118
|
+
["Journal"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ClassificationCodes":
|
119
|
+
["Z53-S17"]},{"hasFullText": false,"isFullTextHit": false,"inHoldings": false,"openUrl":
|
120
|
+
"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=journal&rft.jtitle=&rft.series=&rft.pub=Blackwell+Japan&rft.isbn=&rft.issn=1347-1082&rft.externalDBID=&rft.externalDocID=","link":
|
121
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbcETbGaGukmGSYb6ZokmaTpWiabW-oaGyUC23ImicA2BGgoOyzYMsDXPNLPxIMHUXC5iTLYu7mGOHvoZuWl5MSD26DxoCOQgc6IB4mk58dnFcQHgYelQdk53hPCAHZMzIwNQXOpAKuaIBY","Language":
|
122
|
+
["Japanese"],"Edition": ["日本語版"],"PublicationPlace": ["Tokyo"],"Score": ["7.844063"],"IsPeerReviewed":
|
123
|
+
["false"],"DBID": ["3CS","JQU"],"PublicationDate": ["2002"],"PublicationDate_xml":
|
124
|
+
[{"text": "2002","year": "2002"}],"PublicationCentury": ["2000"],"Publisher":
|
125
|
+
["Blackwell Japan"],"SourceType": ["Publisher"],"Publisher_xml": [{"name":
|
126
|
+
"Blackwell Japan"}],"ClassificationCodes": ["Z74-D141"],"URI": ["http://iss.ndl.go.jp/books/R100000002-I000000407631-00"],"IsScholarly":
|
127
|
+
["false"],"ID": ["FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000407631_000"],"PublicationYear":
|
128
|
+
["2002"],"PublicationPlace_xml": [{"name": "Tokyo"}],"MergedId": ["FETCHMERGED-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000407631_000"],"PublicationDecade":
|
129
|
+
["2000"],"ContentType": ["Journal"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN":
|
130
|
+
["1347-1082"]},{"hasFullText": false,"isFullTextHit": false,"inHoldings":
|
131
|
+
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=Cancer&rft.jtitle=IARC+scientific+publications&rft.au=Perera%2C+Frederica+P&rft.au=Vineis%2C+Paolo&rft.series=&rft.date=2011-01-01&rft.pub=&rft.isbn=&rft.issn=0300-5038&rft.volume=&rft.issue=163&rft.spage=337&rft.epage=&rft_id=info:pmid/22997871&rft_id=info:pmid/22997871&rft.externalDBID=&rft.externalDocID=22997871","link":
|
132
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbcETbGaGukmGSYb6ZokmaTpWiabW-oaGyUC23ImicA2BGgoOyzYMsDXPNLPxIMHUYC5iTLIubmGOHvoQuqD-ALIoQvxRsByE5i4DA0A7joWRA","Language":
|
133
|
+
["English"],"Author": ["Vineis, Paolo","Perera, Frederica P"],"PublicationPlace":
|
134
|
+
["France"],"AuthorAffiliation_xml": [{"name": "Columbia University, New York,
|
135
|
+
NY, USA. fpp1@columbia.edu"}],"Score": ["7.7872376"],"IsPeerReviewed": ["true"],"PublicationDate_xml":
|
136
|
+
[{"text": "2011-00-00","year": "2011"}],"PublicationDate": ["2011-00-00"],"PublicationCentury":
|
137
|
+
["2000"],"AbstractList": ["Molecular epidemiology was introduced in the study
|
138
|
+
of cancer in the early 1980s, with the expectation that it would help overcome
|
139
|
+
some important limitations of epidemiology and facilitate cancer prevention.
|
140
|
+
The first generation of biomarkers has indeed contributed to our understanding
|
141
|
+
of mechanisms, risk and susceptibility as they relate largely to genotoxic
|
142
|
+
carcinogens, resulting in interventions and policy changes to reduce risk
|
143
|
+
from several important environmental carcinogens. New and promising biomarkers
|
144
|
+
are now becoming available for epidemiological studies, including alterations
|
145
|
+
in gene methylation and gene expression, proteomics and metabolomics. However,
|
146
|
+
most of these newer biomarkers have not been adequately validated, and their
|
147
|
+
role in the causal paradigm is not clear. Systematic validation of these newer
|
148
|
+
biomarkers is urgently needed and can take advantage of the principles and
|
149
|
+
criteria established over the past several decades from experience with the
|
150
|
+
first generation of biomarkers. Prevention of only 20% of cancers in the United
|
151
|
+
States alone would result in 300 000 fewer new cases annually, avoidance of
|
152
|
+
incalculable suffering, and a savings in direct financial costs of over US$20
|
153
|
+
billion each year (1). Molecular epidemiology can play a valuable role in
|
154
|
+
achieving this goal."],"SourceType": ["Publisher"],"Snippet": ["...Molecular
|
155
|
+
epidemiology was introduced in the study of $$BENTO_HL_START$$cancer$$BENTO_HL_END$$
|
156
|
+
in the early 1980s, with the expectation that it would help overcome some
|
157
|
+
important limitations of epidemiology and facilitate $$BENTO_HL_START$$cancer$$BENTO_HL_END$$
|
158
|
+
prevention..."],"PublicationTitleAlternate": ["IARC Sci Publ"],"GrantInformation":
|
159
|
+
["R01CA69094 - NCI NIH HHS - United States","1R01CA127532 - NCI NIH HHS -
|
160
|
+
United States","5R01ES08977 - NIEHS NIH HHS - United States"],"URI": ["http://www.ncbi.nlm.nih.gov/pubmed/22997871"],"IsScholarly":
|
161
|
+
["true"],"ID": ["FETCH-pubmed_primary_229978710"],"PMID": ["22997871"],"PublicationTitle":
|
162
|
+
["IARC scientific publications"],"Issue": ["163"],"PublicationYear": ["2011"],"Genre":
|
163
|
+
["Research Support, Non-U.S. Gov''t","Review","Research Support, U.S. Gov''t,
|
164
|
+
Non-P.H.S","Journal Article","Research Support, N.I.H., Extramural"],"PublicationPlace_xml":
|
165
|
+
[{"name": "France"}],"AuthorAffiliation": ["Columbia University, New York,
|
166
|
+
NY, USA. fpp1@columbia.edu"],"DatabaseTitleList": [""],"Abstract": ["Molecular
|
167
|
+
epidemiology was introduced in the study of cancer in the early 1980s, with
|
168
|
+
the expectation that it would help overcome some important limitations of
|
169
|
+
epidemiology and facilitate cancer prevention. The first generation of biomarkers
|
170
|
+
has indeed contributed to our understanding of mechanisms, risk and susceptibility
|
171
|
+
as they relate largely to genotoxic carcinogens, resulting in interventions
|
172
|
+
and policy changes to reduce risk from several important environmental carcinogens.
|
173
|
+
New and promising biomarkers are now becoming available for epidemiological
|
174
|
+
studies, including alterations in gene methylation and gene expression, proteomics
|
175
|
+
and metabolomics. However, most of these newer biomarkers have not been adequately
|
176
|
+
validated, and their role in the causal paradigm is not clear. Systematic
|
177
|
+
validation of these newer biomarkers is urgently needed and can take advantage
|
178
|
+
of the principles and criteria established over the past several decades from
|
179
|
+
experience with the first generation of biomarkers. Prevention of only 20%
|
180
|
+
of cancers in the United States alone would result in 300 000 fewer new cases
|
181
|
+
annually, avoidance of incalculable suffering, and a savings in direct financial
|
182
|
+
costs of over US$20 billion each year (1). Molecular epidemiology can play
|
183
|
+
a valuable role in achieving this goal."],"SubjectTerms": ["Neoplasms - prevention
|
184
|
+
& control","Neoplasms - diagnosis","Neoplasms - epidemiology","Tumor Markers,
|
185
|
+
Biological - analysis"],"MergedId": ["FETCHMERGED-pubmed_primary_229978710"],"Author_xml":
|
186
|
+
[{"sequence": "1","givenname": "Frederica P","surname": "Perera","fullname":
|
187
|
+
"Perera, Frederica P"},{"sequence": "2","givenname": "Paolo","surname": "Vineis","fullname":
|
188
|
+
"Vineis, Paolo"}],"PublicationDecade": ["2010"],"ContentType": ["Journal Article"],"Title":
|
189
|
+
["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN": ["0300-5038"],"ExternalDocumentID":
|
190
|
+
["22997871"],"SSID": ["ssib004628120","ssib000496792"],"StartPage": ["337"]},{"hasFullText":
|
191
|
+
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=Chest&rft.au=Lawrence%2C+D&rft.series=&rft.date=2010-06-03&rft.pub=&rft.isbn=&rft.issn=0012-3692&rft.volume=137&rft.issue=6&rft.spage=1483&rft.epage=1483&rft_id=info:doi/10.1378%2Fchest.09-1971&rft.externalDBID=n%2Fa&rft.externalDocID=10_1378_chest_09_1971","link":
|
192
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbcETbGaGukmGSYb6ZokmaTpWiabW-oaGyUC23ImicA2BGgoOyzYMsDXPNLPxIMHUZC5iTLourmGOHvowmqJ-ALIsQvx4LkXc4t48EVS8QaW8YaWwOoRAHhUG5M","DatabaseTitle":
|
193
|
+
["CrossRef"],"Volume": ["137"],"Language": ["English"],"Author": ["Lawrence,
|
194
|
+
D"],"Score": ["7.69245"],"DOI": ["10.1378/chest.09-1971"],"IsPeerReviewed":
|
195
|
+
["true"],"PublicationDate": ["20100601","20100603"],"PublicationDate_xml":
|
196
|
+
[{"text": "20100603","month": "06","year": "2010","day": "03"},{"text": "20100601","month":
|
197
|
+
"06","year": "2010","day": "01"}],"PublicationCentury": ["2000"],"SourceType":
|
198
|
+
["Aggregation Database"],"IsScholarly": ["true"],"ID": ["FETCH-crossref_primary_10_1378_chest_09_19710"],"PublicationTitle":
|
199
|
+
["Chest"],"Issue": ["6"],"Discipline": ["Medicine"],"PublicationYear": ["2010"],"EISSN":
|
200
|
+
["1931-3543"],"MergedId": ["FETCHMERGED-crossref_primary_10_1378_chest_09_19710"],"Author_xml":
|
201
|
+
[{"sequence": "1","givenname": "D","surname": "Lawrence","fullname": "Lawrence,
|
202
|
+
D"}],"PublicationDecade": ["2010"],"ContentType": ["Journal Article"],"Title":
|
203
|
+
["$$BENTO_HL_START$$CANCER$$BENTO_HL_END$$"],"ISSN": ["0012-3692"],"ExternalDocumentID":
|
204
|
+
["10_1378_chest_09_1971"],"SSID": ["ssj0001196"],"StartPage": ["1483"],"EndPage":
|
205
|
+
["1483"]},{"hasFullText": true,"isFullTextHit": false,"inHoldings": true,"openUrl":
|
206
|
+
"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=Chest&rft.au=Lawrence%2C+D&rft.series=&rft.date=2010-06-01&rft.pub=&rft.isbn=&rft.issn=0012-3692&rft.volume=137&rft.issue=6&rft.spage=1483&rft.epage=&rft.externalDBID=&rft.externalDocID=Lawrence_D_Chest_June_2010_137_6_1483_CANCER","link":
|
207
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbcETbGaGukmGSYb6ZokmaTpWiabW-oaGyUC23ImicA2BGgoOyzYMsDXPNLPxIMHUaC5iTK4ubmGOHvowqqG-NyUZNBuxJySeJ_EcvAWuHiXeGfQbVLxXqV5qfEgy-INjc3jzYDtWAvjeGfQrS5BBgDYlSR-","Volume":
|
208
|
+
["137"],"Language": ["English"],"Author": ["Lawrence, D"],"Score": ["7.6915755"],"IsPeerReviewed":
|
209
|
+
["true"],"PublicationDate": ["20100600"],"PublicationDate_xml": [{"text":
|
210
|
+
"20100600","month": "06","year": "2010"}],"PublicationCentury": ["2000"],"SourceType":
|
211
|
+
["Publisher"],"IsScholarly": ["true"],"ID": ["FETCH-elsevier_mdconsult_Lawrence_D_Chest_June_2010_137_6_1483_CANCER0"],"PublicationTitle":
|
212
|
+
["Chest"],"Issue": ["6"],"PublicationYear": ["2010"],"EISSN": ["1931-3543"],"MergedId":
|
213
|
+
["FETCHMERGED-elsevier_mdconsult_Lawrence_D_Chest_June_2010_137_6_1483_CANCER0"],"Author_xml":
|
214
|
+
[{"sequence": "1","fullname": "Lawrence, D"}],"PublicationDecade": ["2010"],"ContentType":
|
215
|
+
["Journal Article"],"Title": ["$$BENTO_HL_START$$CANCER$$BENTO_HL_END$$"],"ISSN":
|
216
|
+
["0012-3692"],"ExternalDocumentID": ["Lawrence_D_Chest_June_2010_137_6_1483_CANCER"],"SSID":
|
217
|
+
["ssj0001196"],"StartPage": ["1483"]},{"hasFullText": true,"isFullTextHit":
|
218
|
+
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=Chest&rft.au=Lawrence%2C+Deborah&rft.series=&rft.date=2010-06-01&rft.pub=American+College+of+Chest+Physicians&rft.isbn=&rft.issn=0012-3692&rft.volume=137&rft.issue=6&rft.spage=1483&rft.epage=&rft.externalDBID=n%2Fa&rft.externalDocID=230448683","link":
|
219
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbcETbGaGukmGSYb6ZokmaTpWiabW-oaGyUC23ImicA2BGgoOyzYMsDXPNLPxIMHUbC5iTLIurmGOHvoggrI-ALIkQvxoKFLEwszC2MDANJ8FYs","Volume":
|
220
|
+
["137"],"Language": ["English"],"Author": ["Lawrence, Deborah"],"Score": ["7.6915755"],"PageCount":
|
221
|
+
["1"],"IsPeerReviewed": ["true"],"PublicationDate": ["June 2010"],"PublicationDate_xml":
|
222
|
+
[{"text": "June 2010","month": "06","year": "2010"}],"PublicationCentury":
|
223
|
+
["2000"],"Publisher": ["American College of Chest Physicians"],"SourceType":
|
224
|
+
["Aggregation Database"],"Publisher_xml": [{"name": "American College of Chest
|
225
|
+
Physicians"}],"IsScholarly": ["true"],"ID": ["FETCH-gale_primary_2304486830"],"PublicationTitle":
|
226
|
+
["Chest"],"Issue": ["6"],"Discipline": ["Medicine"],"PublicationYear": ["2010"],"Audience":
|
227
|
+
["Professional"],"EISSN": ["1931-3543"],"MergedId": ["FETCHMERGED-gale_primary_2304486830"],"Author_xml":
|
228
|
+
[{"sequence": "1","fullname": "Lawrence, Deborah"}],"PublicationDecade": ["2010"],"ContentType":
|
229
|
+
["Journal Article"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ISSN":
|
230
|
+
["0012-3692"],"ExternalDocumentID": ["230448683"],"SSID": ["ssj0001196"],"StartPage":
|
231
|
+
["1483"]},{"hasFullText": false,"isFullTextHit": false,"inHoldings": false,"openUrl":
|
232
|
+
"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.series=&rft.date=2012-01-01&rft.pub=Scholarly+Editions&rft.isbn=&rft.issn=&rft.volume=&rft.issue=&rft.spage=&rft.epage=&rft.externalDBID=&rft.externalDocID=10548160","link":
|
233
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQMbcETbGaGukmGSYb6ZokmaTpWiabW-oaGyUC23ImicA2BGgoOyzYMsDXPNLPxAO58HMTZZBzcw1x9tCFTJzGF0BOXYgHmmhiYQisnwEAoRZk","Language":
|
234
|
+
["English"],"Author": ["Acton, Q. Ashton"],"Score": ["7.649659"],"PageCount":
|
235
|
+
["3937"],"IsPeerReviewed": ["false"],"PublicationDate": ["20120101"],"PublicationDate_xml":
|
236
|
+
[{"text": "20120101","month": "01","year": "2012","day": "01"}],"PublicationCentury":
|
237
|
+
["2000"],"Publisher": ["Scholarly Editions"],"SourceType": ["Publisher","Enrichment
|
238
|
+
Source"],"Publisher_xml": [{"name": "Scholarly Editions"}],"DocumentTitleAlternate":
|
239
|
+
["Cancer : New Insights for the Healthcare Professional (2011 Edition)"],"EISBN":
|
240
|
+
["1464900035","9781464900037"],"IsScholarly": ["false"],"ID": ["FETCH-ebrary_primary_105481600"],"PublicationYear":
|
241
|
+
["2012"],"SubjectTerms": ["MEDICAL","Oncology"],"MergedId": ["FETCHMERGED-ebrary_primary_105481600"],"Author_xml":
|
242
|
+
[{"fullname": "Acton, Q. Ashton"}],"PublicationDecade": ["2010"],"ContentType":
|
243
|
+
["eBook"],"Title": ["$$BENTO_HL_START$$Cancer$$BENTO_HL_END$$"],"ExternalDocumentID":
|
244
|
+
["10548160"],"SSID": ["ssib009094050"],"Subtitle": ["New Insights for the
|
245
|
+
Healthcare Professional (2011 Edition)"]}],"spotlights": [],"spotlightPosition":
|
246
|
+
0}'
|
247
|
+
http_version:
|
248
|
+
recorded_at: Wed, 02 Jan 2013 23:48:38 GMT
|
249
|
+
- request:
|
250
|
+
method: get
|
251
|
+
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=ID:(FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000082371_000)
|
252
|
+
body:
|
253
|
+
encoding: US-ASCII
|
254
|
+
string: ''
|
255
|
+
headers:
|
256
|
+
Content-Type:
|
257
|
+
- application/x-www-form-urlencoded; charset=utf8
|
258
|
+
Accept:
|
259
|
+
- application/json
|
260
|
+
X-Summon-Date:
|
261
|
+
- Wed, 02 Jan 2013 23:48:45 GMT
|
262
|
+
Authorization:
|
263
|
+
- Summon DUMMY_ACCESS_ID;MNLmWqFyldwTVqld1YE2Yqbo26M=
|
264
|
+
Host:
|
265
|
+
- api.summon.serialssolutions.com:80
|
266
|
+
response:
|
267
|
+
status:
|
268
|
+
code: 200
|
269
|
+
message: !binary |-
|
270
|
+
T0s=
|
271
|
+
headers:
|
272
|
+
!binary "Q29udGVudC1UeXBl":
|
273
|
+
- !binary |-
|
274
|
+
YXBwbGljYXRpb24vanNvbjtjaGFyc2V0PXV0Zi04
|
275
|
+
!binary "RGF0YWNlbnRlcg==":
|
276
|
+
- !binary |-
|
277
|
+
REZXMQ==
|
278
|
+
- !binary |-
|
279
|
+
SUFEMQ==
|
280
|
+
!binary "RGF0ZQ==":
|
281
|
+
- !binary |-
|
282
|
+
V2VkLCAwMiBKYW4gMjAxMyAyMzo0ODo0NCBHTVQ=
|
283
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
284
|
+
- !binary |-
|
285
|
+
Y2h1bmtlZA==
|
286
|
+
body:
|
287
|
+
encoding: UTF-8
|
288
|
+
string: ! '{"version": "2.0.0","sessionId": "e3f5fff3-2c4d-48a8-8aa7-52b6ff667c81","elapsedQueryTime":
|
289
|
+
16,"queryTime": 15,"totalRequestTime": 21,"pageCount": 1,"recordCount": 1,"query":
|
290
|
+
{"queryString": "s.rec.qs.max=&s.hs=%5C%24%5C%24BENTO_HL_START%5C%24%5C%24&s.mr=&s.ho=f&s.rec.db.max=&s.ps=10&s.q=ID%3A%28FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000082371_000%29&s.he=%5C%24%5C%24BENTO_HL_END%5C%24%5C%24&s.pn=1","pageNumber":
|
291
|
+
1,"pageSize": 10,"highlightStartDelimiter": "$$BENTO_HL_START$$","highlightEndDelimiter":
|
292
|
+
"$$BENTO_HL_END$$","isHoldingsOnlyEnabled": false,"textQueries": [{"textQuery":
|
293
|
+
"ID:(FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000082371_000)","removeCommand":
|
294
|
+
"removeTextQuery(ID\\:\\(FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000082371_000\\))"}],"searchTerms":
|
295
|
+
[],"textFilters": [],"rangeFilters": [],"facetValueFilters": [],"inclusiveFacetValueFilters":
|
296
|
+
[],"facetValueGroupFilters": [],"facetFields": [],"rangeFacetFields": [],"sort":
|
297
|
+
[]},"facetFields": [],"rangeFacetFields": [],"didYouMeanSuggestions": [],"recommendationLists":
|
298
|
+
{},"documents": [{"hasFullText": true,"isFullTextHit": false,"inHoldings":
|
299
|
+
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=journal&rft.jtitle=&rft.series=&rft.pub=%E6%97%A5%E6%9C%AC%E7%94%B2%E6%AE%BB%E9%A1%9E%E5%AD%A6%E4%BC%9A&rft.isbn=&rft.issn=0918-1989&rft.externalDBID=&rft.externalDocID=","link":
|
300
|
+
"http://DUMMY_ACCESS_ID.summon.serialssolutions.com/link/0/eLvHCXMwY2BQSTVOM01LSzPWNUo2SdE1sUi00LVITDQH9nmSzNLSzMzMk8GbxMKCLQN8zSP9TDyQSnQ3UQZ7N9cQZw_drLyUnHhwGzQedAQy0BnxIJH0_Pisgvgg8LA0KDvHe0JZoFNXDEFzqQBN2iF-","Language":
|
301
|
+
["Japanese"],"Author": ["日本甲殻類学会 [編]"],"PublicationPlace": ["東京"],"Score":
|
302
|
+
["5.911355"],"DBID": ["3CS","JQU"],"IsPeerReviewed": ["false"],"PublicationDate_xml":
|
303
|
+
[{"text": "1991","year": "1991"}],"PublicationDate": ["1991"],"PublicationCentury":
|
304
|
+
["1900"],"Publisher": ["日本甲殻類学会"],"SourceType": ["Publisher"],"Publisher_xml":
|
305
|
+
[{"name": "日本甲殻類学会"}],"ClassificationCodes": ["Z18-3327"],"URI": ["http://iss.ndl.go.jp/books/R100000002-I000000082371-00"],"IsScholarly":
|
306
|
+
["true"],"ID": ["FETCH-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000082371_000"],"PublicationYear":
|
307
|
+
["1991"],"PublicationPlace_xml": [{"name": "東京"}],"MergedId": ["FETCHMERGED-jndl_porta_oai_iss_ndl_go_jp_R100000002_I000000082371_000"],"Author_xml":
|
308
|
+
[{"fullname": "日本甲殻類学会 [編]"}],"PublicationDecade": ["1990"],"ContentType":
|
309
|
+
["Journal"],"Title": ["Cancer"],"ISSN": ["0918-1989"],"SSID": ["ssib003110677","ssib000935677","ssib002223832"]}],"spotlights":
|
310
|
+
[],"spotlightPosition": 0}'
|
311
|
+
http_version:
|
312
|
+
recorded_at: Wed, 02 Jan 2013 23:48:45 GMT
|
313
|
+
recorded_with: VCR 2.3.0
|
@@ -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=ID:(NONE%20SUCH)
|
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
|
+
- Wed, 02 Jan 2013 23:53:31 GMT
|
16
|
+
Authorization:
|
17
|
+
- Summon DUMMY_ACCESS_ID;RbsSujGNqxGIwdLOCWCH6rFvtSY=
|
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
|
+
REZXMQ==
|
32
|
+
- !binary |-
|
33
|
+
SUFEMQ==
|
34
|
+
!binary "RGF0ZQ==":
|
35
|
+
- !binary |-
|
36
|
+
V2VkLCAwMiBKYW4gMjAxMyAyMzo1MzozMSBHTVQ=
|
37
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
38
|
+
- !binary |-
|
39
|
+
Y2h1bmtlZA==
|
40
|
+
body:
|
41
|
+
encoding: US-ASCII
|
42
|
+
string: ! '{"version": "2.0.0","sessionId": "b7232712-0a93-49e7-b5ab-83716199b33e","elapsedQueryTime":
|
43
|
+
53,"queryTime": 52,"totalRequestTime": 54,"pageCount": 0,"recordCount": 0,"query":
|
44
|
+
{"queryString": "s.rec.qs.max=&s.hs=%5C%24%5C%24BENTO_HL_START%5C%24%5C%24&s.mr=&s.rec.db.max=&s.ps=10&s.q=ID%3A%28NONE+SUCH%29&s.he=%5C%24%5C%24BENTO_HL_END%5C%24%5C%24&s.pn=1","pageNumber":
|
45
|
+
1,"pageSize": 10,"highlightStartDelimiter": "$$BENTO_HL_START$$","highlightEndDelimiter":
|
46
|
+
"$$BENTO_HL_END$$","textQueries": [{"textQuery": "ID:(NONE SUCH)","removeCommand":
|
47
|
+
"removeTextQuery(ID\\:\\(NONE SUCH\\))"}],"searchTerms": [],"textFilters":
|
48
|
+
[],"rangeFilters": [],"facetValueFilters": [],"inclusiveFacetValueFilters":
|
49
|
+
[],"facetValueGroupFilters": [],"facetFields": [],"rangeFacetFields": [],"sort":
|
50
|
+
[]},"facetFields": [],"rangeFacetFields": [],"didYouMeanSuggestions": [],"recommendationLists":
|
51
|
+
{},"documents": [],"spotlights": [],"spotlightPosition": 0}'
|
52
|
+
http_version:
|
53
|
+
recorded_at: Wed, 02 Jan 2013 23:53:31 GMT
|
54
|
+
recorded_with: VCR 2.3.0
|
@@ -0,0 +1,769 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: http://www.worldcat.org/webservices/catalog/search/sru?maximumRecords=10&query=srw.kw%20=%20%22anarchism%22&recordSchema=info:srw/schema/1/dc&wskey=DUMMY_API_KEY
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers: {}
|
10
|
+
response:
|
11
|
+
status:
|
12
|
+
code: 200
|
13
|
+
message: !binary |-
|
14
|
+
T0s=
|
15
|
+
headers:
|
16
|
+
!binary "RGF0ZQ==":
|
17
|
+
- !binary |-
|
18
|
+
VGh1LCAwMyBKYW4gMjAxMyAwMDozMToyNCBHTVQ=
|
19
|
+
!binary "U2VydmVy":
|
20
|
+
- !binary |-
|
21
|
+
QXBhY2hl
|
22
|
+
!binary "VHJhbnNmZXItRW5jb2Rpbmc=":
|
23
|
+
- !binary |-
|
24
|
+
Y2h1bmtlZA==
|
25
|
+
!binary "Q29udGVudC1UeXBl":
|
26
|
+
- !binary |-
|
27
|
+
dGV4dC94bWw7Y2hhcnNldD11dGYtOA==
|
28
|
+
body:
|
29
|
+
encoding: US-ASCII
|
30
|
+
string: ! '<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
31
|
+
|
32
|
+
<?xml-stylesheet type="text/xsl" href="/webservices/catalog/xsl/searchRetrieveResponse.xsl"?>
|
33
|
+
|
34
|
+
|
35
|
+
<searchRetrieveResponse xmlns="http://www.loc.gov/zing/srw/" xmlns:oclcterms="http://purl.org/oclc/terms/"
|
36
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:diag="http://www.loc.gov/zing/srw/diagnostic/"
|
37
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
38
|
+
|
39
|
+
<version>1.1</version>
|
40
|
+
|
41
|
+
<numberOfRecords>26289</numberOfRecords>
|
42
|
+
|
43
|
+
<records>
|
44
|
+
|
45
|
+
<record>
|
46
|
+
|
47
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
48
|
+
|
49
|
+
<recordPacking>xml</recordPacking>
|
50
|
+
|
51
|
+
<recordData>
|
52
|
+
|
53
|
+
<oclcdcs>
|
54
|
+
|
55
|
+
<dc:contributor>Pennock, J. Roland (James Roland), 1906-1995.</dc:contributor>
|
56
|
+
|
57
|
+
<dc:contributor>Chapman, John W. (John William), 1923-</dc:contributor>
|
58
|
+
|
59
|
+
<dc:contributor>Paul Avrich Collection (Library of Congress)</dc:contributor>
|
60
|
+
|
61
|
+
<dc:date>1978</dc:date>
|
62
|
+
|
63
|
+
<dc:description>Includes index.</dc:description>
|
64
|
+
|
65
|
+
<dc:description>Anarchism and political philosophy : an introduction / Gerald
|
66
|
+
F. Gaus and John W. Chapman -- What is anarchism? / John P. Clark -- A contractarian
|
67
|
+
perspective on anarchy / James M. Buchanan -- Nozick''s anarchism / Eric Mack
|
68
|
+
-- Anarchism and world order / Richard A. Falk -- Anarchism and authority
|
69
|
+
/ Richard T. De George -- Comments on "Anarchism and authority" / Richard
|
70
|
+
Wasserstrom -- Anarchism and skepticism / Rex Martin -- The anarchist justification
|
71
|
+
of authority / Alan Ritter -- Disrespect for law / Lester J. Mazor -- The
|
72
|
+
profoundest respect for law : Mazor''s Anarchy and the political association
|
73
|
+
/ Lisa Newton -- Disrespect for law and the case for anarchy / Alan Wertheimer
|
74
|
+
-- Society without state / Murray N. Rothbard -- Some reflections on arbitrating
|
75
|
+
our way to anarchy / Chistopher D. Stone -- Anarchist justice / David Wieck
|
76
|
+
-- The dimensions of anarchy / Donald McIntosh -- Philosophical anarchism
|
77
|
+
revisited / Grenville Wall -- On the "Kantian" foundations of Robert Paul
|
78
|
+
Wolff''s anarchism / Partrick Riley -- Anarchism and violence / April Carter.</dc:description>
|
79
|
+
|
80
|
+
<dc:format>xlv, 375 p. ; 22 cm.</dc:format>
|
81
|
+
|
82
|
+
<dc:identifier>0814765726</dc:identifier>
|
83
|
+
|
84
|
+
<dc:identifier>9780814765722</dc:identifier>
|
85
|
+
|
86
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
87
|
+
|
88
|
+
<dc:publisher>New York University Press</dc:publisher>
|
89
|
+
|
90
|
+
<dc:relation>Nomos ; 19</dc:relation>
|
91
|
+
|
92
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism.</dc:subject>
|
93
|
+
|
94
|
+
<dc:title>Anarchism </dc:title>
|
95
|
+
|
96
|
+
<dc:type>Text</dc:type>
|
97
|
+
|
98
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">771213</oclcterms:recordCreationDate>
|
99
|
+
|
100
|
+
<oclcterms:recordIdentifier xsi:type="http://purl.org/oclc/terms/lccn"> 77084158
|
101
|
+
</oclcterms:recordIdentifier>
|
102
|
+
|
103
|
+
<oclcterms:recordIdentifier>3540542</oclcterms:recordIdentifier>
|
104
|
+
|
105
|
+
</oclcdcs>
|
106
|
+
|
107
|
+
</recordData>
|
108
|
+
|
109
|
+
</record>
|
110
|
+
|
111
|
+
<record>
|
112
|
+
|
113
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
114
|
+
|
115
|
+
<recordPacking>xml</recordPacking>
|
116
|
+
|
117
|
+
<recordData>
|
118
|
+
|
119
|
+
<oclcdcs>
|
120
|
+
|
121
|
+
<dc:contributor>Paul Avrich Collection (Library of Congress)</dc:contributor>
|
122
|
+
|
123
|
+
<dc:creator>Hoffman, Robert Louis, 1937-</dc:creator>
|
124
|
+
|
125
|
+
<dc:date>1970</dc:date>
|
126
|
+
|
127
|
+
<dc:description>[1st ed.]</dc:description>
|
128
|
+
|
129
|
+
<dc:description>What is government? / Pierre-Joseph Proudhon -- What is anarchism?
|
130
|
+
/ Alexander Berkman -- The place of anarchism in the history of political
|
131
|
+
thought / Derry Novak -- Anarchism: what it really stands for / Emma Goldman
|
132
|
+
-- An anarchist''s view of democracy / Pierre-Joseph Proudhon -- Patriotism
|
133
|
+
and government / Leo Tolstoy -- Essentials of anarchism / David Thoreau Wieck
|
134
|
+
-- The impossibilities of anarchism / George Bernard Shaw -- The philosophical
|
135
|
+
anarchist / William Ernest Hocking -- Government and law / Bertrand Russell
|
136
|
+
-- Am estimate of anarchism''s role / James Joll -- The black flag of anarchism
|
137
|
+
/ Paul Goodman.</dc:description>
|
138
|
+
|
139
|
+
<dc:format>165 p. 23 cm.</dc:format>
|
140
|
+
|
141
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
142
|
+
|
143
|
+
<dc:publisher>Atherton Press</dc:publisher>
|
144
|
+
|
145
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism.</dc:subject>
|
146
|
+
|
147
|
+
<dc:title>Anarchism.</dc:title>
|
148
|
+
|
149
|
+
<dc:type>Text</dc:type>
|
150
|
+
|
151
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">700824</oclcterms:recordCreationDate>
|
152
|
+
|
153
|
+
<oclcterms:recordIdentifier xsi:type="http://purl.org/oclc/terms/lccn"> 71105604
|
154
|
+
</oclcterms:recordIdentifier>
|
155
|
+
|
156
|
+
<oclcterms:recordIdentifier>90131</oclcterms:recordIdentifier>
|
157
|
+
|
158
|
+
</oclcdcs>
|
159
|
+
|
160
|
+
</recordData>
|
161
|
+
|
162
|
+
</record>
|
163
|
+
|
164
|
+
<record>
|
165
|
+
|
166
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
167
|
+
|
168
|
+
<recordPacking>xml</recordPacking>
|
169
|
+
|
170
|
+
<recordData>
|
171
|
+
|
172
|
+
<oclcdcs>
|
173
|
+
|
174
|
+
<dc:contributor>Paul Avrich Collection (Library of Congress)</dc:contributor>
|
175
|
+
|
176
|
+
<dc:creator>Sonn, Richard David.</dc:creator>
|
177
|
+
|
178
|
+
<dc:date>c1992</dc:date>
|
179
|
+
|
180
|
+
<dc:description>1. The Place of Anarchism -- 2. The Philosophy of Anarchism
|
181
|
+
-- 3. The Anarchist Movement -- 4. Case Study: Anarchism in Spain -- 5. Contemporary
|
182
|
+
Anarchism.</dc:description>
|
183
|
+
|
184
|
+
<dc:format>xv, 147 p. ; 23 cm.</dc:format>
|
185
|
+
|
186
|
+
<dc:identifier>0805786112 (cloth : alk. paper)</dc:identifier>
|
187
|
+
|
188
|
+
<dc:identifier>9780805786118 (cloth : alk. paper)</dc:identifier>
|
189
|
+
|
190
|
+
<dc:identifier>0805786368 (pbk. : alk. paper)</dc:identifier>
|
191
|
+
|
192
|
+
<dc:identifier>9780805786361 (pbk. : alk. paper)</dc:identifier>
|
193
|
+
|
194
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
195
|
+
|
196
|
+
<dc:publisher>Twayne Publishers </dc:publisher>
|
197
|
+
|
198
|
+
<dc:publisher>Maxwell Macmillan Canada </dc:publisher>
|
199
|
+
|
200
|
+
<dc:publisher>Maxwell Macmillan International</dc:publisher>
|
201
|
+
|
202
|
+
<dc:relation xsi:type="http://purl.org/dc/terms/URI">http://www.gbv.de/dms/bowker/toc/9780805786361.pdf</dc:relation>
|
203
|
+
|
204
|
+
<dc:relation>Twayne''s studies in intellectual and cultural history ; no.
|
205
|
+
4</dc:relation>
|
206
|
+
|
207
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism--History.</dc:subject>
|
208
|
+
|
209
|
+
<dc:title>Anarchism </dc:title>
|
210
|
+
|
211
|
+
<dc:type>Text</dc:type>
|
212
|
+
|
213
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">920430</oclcterms:recordCreationDate>
|
214
|
+
|
215
|
+
<oclcterms:recordIdentifier xsi:type="http://purl.org/oclc/terms/lccn"> 92016954
|
216
|
+
</oclcterms:recordIdentifier>
|
217
|
+
|
218
|
+
<oclcterms:recordIdentifier>25873821</oclcterms:recordIdentifier>
|
219
|
+
|
220
|
+
</oclcdcs>
|
221
|
+
|
222
|
+
</recordData>
|
223
|
+
|
224
|
+
</record>
|
225
|
+
|
226
|
+
<record>
|
227
|
+
|
228
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
229
|
+
|
230
|
+
<recordPacking>xml</recordPacking>
|
231
|
+
|
232
|
+
<recordData>
|
233
|
+
|
234
|
+
<oclcdcs>
|
235
|
+
|
236
|
+
<dc:creator>Miller, David, 1946-</dc:creator>
|
237
|
+
|
238
|
+
<dc:date>1984</dc:date>
|
239
|
+
|
240
|
+
<dc:description>Includes index.</dc:description>
|
241
|
+
|
242
|
+
<dc:format>216 p. ; 23 cm.</dc:format>
|
243
|
+
|
244
|
+
<dc:identifier>0460100939</dc:identifier>
|
245
|
+
|
246
|
+
<dc:identifier>9780460100939</dc:identifier>
|
247
|
+
|
248
|
+
<dc:identifier>0460110934 (pbk.)</dc:identifier>
|
249
|
+
|
250
|
+
<dc:identifier>9780460110938 (pbk.)</dc:identifier>
|
251
|
+
|
252
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
253
|
+
|
254
|
+
<dc:publisher>J.M. Dent</dc:publisher>
|
255
|
+
|
256
|
+
<dc:relation>Modern ideologies</dc:relation>
|
257
|
+
|
258
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism.</dc:subject>
|
259
|
+
|
260
|
+
<dc:title>Anarchism </dc:title>
|
261
|
+
|
262
|
+
<dc:type>Text</dc:type>
|
263
|
+
|
264
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">840306</oclcterms:recordCreationDate>
|
265
|
+
|
266
|
+
<oclcterms:recordIdentifier xsi:type="http://purl.org/oclc/terms/lccn"> 84129651
|
267
|
+
</oclcterms:recordIdentifier>
|
268
|
+
|
269
|
+
<oclcterms:recordIdentifier>10920428</oclcterms:recordIdentifier>
|
270
|
+
|
271
|
+
</oclcdcs>
|
272
|
+
|
273
|
+
</recordData>
|
274
|
+
|
275
|
+
</record>
|
276
|
+
|
277
|
+
<record>
|
278
|
+
|
279
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
280
|
+
|
281
|
+
<recordPacking>xml</recordPacking>
|
282
|
+
|
283
|
+
<recordData>
|
284
|
+
|
285
|
+
<oclcdcs>
|
286
|
+
|
287
|
+
<dc:contributor>Byington, Steven T. (Steven Tracy), 1868-1957.</dc:contributor>
|
288
|
+
|
289
|
+
<dc:contributor>Anarchism Collection (Library of Congress)</dc:contributor>
|
290
|
+
|
291
|
+
<dc:contributor>Paul Avrich Collection (Library of Congress)</dc:contributor>
|
292
|
+
|
293
|
+
<dc:creator>Eltzbacher, Paul, 1868-1928.</dc:creator>
|
294
|
+
|
295
|
+
<dc:date>1908</dc:date>
|
296
|
+
|
297
|
+
<dc:description>Translation of: Der Anarchismus.</dc:description>
|
298
|
+
|
299
|
+
<dc:description>Publisher''s advertisement on p. [310].</dc:description>
|
300
|
+
|
301
|
+
<dc:description>Includes index.</dc:description>
|
302
|
+
|
303
|
+
<dc:description>Translator''s preface.--Books referred to by abbreviated titles.--The
|
304
|
+
problem.--Law, the state, property.--Godwin''s teaching.--Proudhon''s teaching.--Stirner''s
|
305
|
+
[pseud.] teaching.--Bakunin''s teaching.--Kropotkin''s teaching.--Tucker''s
|
306
|
+
teaching.--Tolstoi''s teaching.--The anarchistic teachings.--Anarchism and
|
307
|
+
its species.--Conclusion.--Index.</dc:description>
|
308
|
+
|
309
|
+
<dc:format>309, [1] p., [6] leaves of plates : ports. ; 18 cm.</dc:format>
|
310
|
+
|
311
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
312
|
+
|
313
|
+
<dc:publisher>Benj. R. Tucker </dc:publisher>
|
314
|
+
|
315
|
+
<dc:publisher>A.C. Fifield</dc:publisher>
|
316
|
+
|
317
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism.</dc:subject>
|
318
|
+
|
319
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchists.</dc:subject>
|
320
|
+
|
321
|
+
<dc:title>Anarchism </dc:title>
|
322
|
+
|
323
|
+
<dc:title>Anarchismus.</dc:title>
|
324
|
+
|
325
|
+
<dc:type>Text</dc:type>
|
326
|
+
|
327
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">810310</oclcterms:recordCreationDate>
|
328
|
+
|
329
|
+
<oclcterms:recordIdentifier xsi:type="http://purl.org/oclc/terms/lccn"> 08005260
|
330
|
+
</oclcterms:recordIdentifier>
|
331
|
+
|
332
|
+
<oclcterms:recordIdentifier>1916707</oclcterms:recordIdentifier>
|
333
|
+
|
334
|
+
</oclcdcs>
|
335
|
+
|
336
|
+
</recordData>
|
337
|
+
|
338
|
+
</record>
|
339
|
+
|
340
|
+
<record>
|
341
|
+
|
342
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
343
|
+
|
344
|
+
<recordPacking>xml</recordPacking>
|
345
|
+
|
346
|
+
<recordData>
|
347
|
+
|
348
|
+
<oclcdcs>
|
349
|
+
|
350
|
+
<dc:creator>Sheehan, Sean, 1951-</dc:creator>
|
351
|
+
|
352
|
+
<dc:date>2003</dc:date>
|
353
|
+
|
354
|
+
<dc:description>Global anarchism -- Anarchos -- Marx, Nietsche and anarchism
|
355
|
+
-- Attacking the state -- Subverting hierarchies -- The anarchist tension.</dc:description>
|
356
|
+
|
357
|
+
<dc:format>175 p. : ill. ; 21 cm.</dc:format>
|
358
|
+
|
359
|
+
<dc:identifier>1861891695</dc:identifier>
|
360
|
+
|
361
|
+
<dc:identifier>9781861891693</dc:identifier>
|
362
|
+
|
363
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
364
|
+
|
365
|
+
<dc:publisher>Reaktion</dc:publisher>
|
366
|
+
|
367
|
+
<dc:relation>Review: "Anarchism is as much an attitude as it is a set of formulated
|
368
|
+
doctrines, and in this book Sean M. Sheehan provides a sure map to what anarchism
|
369
|
+
really means, describing its history through anecdote and dramatic event,
|
370
|
+
and offering explanations of the issues behind this ''movement,'' using examples
|
371
|
+
from around the world." "Anarchist thinking and influences emerge in many
|
372
|
+
different aspects of contemporary culture and history, and the author examines
|
373
|
+
instances in political thought and action, philosophy and the history of ideas
|
374
|
+
as well as in film and literary criticism. The tension between communist and
|
375
|
+
individualist anarchies as reflected in the work of Marx and Nietzsche is
|
376
|
+
explored and explained, as are the expressions of anarchist ideas found in
|
377
|
+
the writings of William Blake and Oscar Wilde, the libertarianism in relation
|
378
|
+
to sex and psychology that influenced Wilhelm Reich and the anarchist dimension
|
379
|
+
to art movements such as Dada and Surrealism."--BOOK JACKET.</dc:relation>
|
380
|
+
|
381
|
+
<dc:relation>FOCI</dc:relation>
|
382
|
+
|
383
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism.</dc:subject>
|
384
|
+
|
385
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism--History.</dc:subject>
|
386
|
+
|
387
|
+
<dc:title>Anarchism </dc:title>
|
388
|
+
|
389
|
+
<dc:type>Text</dc:type>
|
390
|
+
|
391
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">030818</oclcterms:recordCreationDate>
|
392
|
+
|
393
|
+
<oclcterms:recordIdentifier>51964957</oclcterms:recordIdentifier>
|
394
|
+
|
395
|
+
</oclcdcs>
|
396
|
+
|
397
|
+
</recordData>
|
398
|
+
|
399
|
+
</record>
|
400
|
+
|
401
|
+
<record>
|
402
|
+
|
403
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
404
|
+
|
405
|
+
<recordPacking>xml</recordPacking>
|
406
|
+
|
407
|
+
<recordData>
|
408
|
+
|
409
|
+
<oclcdcs>
|
410
|
+
|
411
|
+
<dc:creator>Buckley, A. M., 1968-</dc:creator>
|
412
|
+
|
413
|
+
<dc:date>c2011</dc:date>
|
414
|
+
|
415
|
+
<dc:description>Explains anarchism, a society in which the state is considered
|
416
|
+
unnecessary and there is no authority, and provides examples of governments
|
417
|
+
run by this system.</dc:description>
|
418
|
+
|
419
|
+
<dc:description>What is government? -- What is anarchy? -- Early history of
|
420
|
+
anarchism -- The heday part one : anarchism and violence -- The heday part
|
421
|
+
two : anarchism and society -- Poetry, protest, and punks -- Anarchism and
|
422
|
+
revolution -- Anarchist economics -- Anarchism and art -- Forms of anarchism
|
423
|
+
-- Case studies -- An anarchist legacy -- Reality or Utopia -- Quick facts
|
424
|
+
-- Glossary.</dc:description>
|
425
|
+
|
426
|
+
<dc:format>160 p. : ill. (some col.) ; 23 cm.</dc:format>
|
427
|
+
|
428
|
+
<dc:identifier>9781617147883</dc:identifier>
|
429
|
+
|
430
|
+
<dc:identifier>1617147885</dc:identifier>
|
431
|
+
|
432
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
433
|
+
|
434
|
+
<dc:publisher>ABDO Pub</dc:publisher>
|
435
|
+
|
436
|
+
<dc:relation>Exploring world governments</dc:relation>
|
437
|
+
|
438
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism.</dc:subject>
|
439
|
+
|
440
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism--History.</dc:subject>
|
441
|
+
|
442
|
+
<dc:title>Anarchism </dc:title>
|
443
|
+
|
444
|
+
<dc:type>Text</dc:type>
|
445
|
+
|
446
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">100930</oclcterms:recordCreationDate>
|
447
|
+
|
448
|
+
<oclcterms:recordIdentifier xsi:type="http://purl.org/oclc/terms/lccn"> 2010039861</oclcterms:recordIdentifier>
|
449
|
+
|
450
|
+
<oclcterms:recordIdentifier>663953132</oclcterms:recordIdentifier>
|
451
|
+
|
452
|
+
</oclcdcs>
|
453
|
+
|
454
|
+
</recordData>
|
455
|
+
|
456
|
+
</record>
|
457
|
+
|
458
|
+
<record>
|
459
|
+
|
460
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
461
|
+
|
462
|
+
<recordPacking>xml</recordPacking>
|
463
|
+
|
464
|
+
<recordData>
|
465
|
+
|
466
|
+
<oclcdcs>
|
467
|
+
|
468
|
+
<dc:creator>Labadie, Jo, 1850-1933.</dc:creator>
|
469
|
+
|
470
|
+
<dc:date>1932</dc:date>
|
471
|
+
|
472
|
+
<dc:description>Caption title: Anarchism and crime.</dc:description>
|
473
|
+
|
474
|
+
<dc:format>24 p., [1] leaf of plates : ill., port. ; 13 cm.</dc:format>
|
475
|
+
|
476
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
477
|
+
|
478
|
+
<dc:publisher>The Labadie Shop</dc:publisher>
|
479
|
+
|
480
|
+
<dc:relation>Anarchism and crime.</dc:relation>
|
481
|
+
|
482
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism.</dc:subject>
|
483
|
+
|
484
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchists.</dc:subject>
|
485
|
+
|
486
|
+
<dc:title>Anarchism </dc:title>
|
487
|
+
|
488
|
+
<dc:type>Text</dc:type>
|
489
|
+
|
490
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">811214</oclcterms:recordCreationDate>
|
491
|
+
|
492
|
+
<oclcterms:recordIdentifier>7993029</oclcterms:recordIdentifier>
|
493
|
+
|
494
|
+
</oclcdcs>
|
495
|
+
|
496
|
+
</recordData>
|
497
|
+
|
498
|
+
</record>
|
499
|
+
|
500
|
+
<record>
|
501
|
+
|
502
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
503
|
+
|
504
|
+
<recordPacking>xml</recordPacking>
|
505
|
+
|
506
|
+
<recordData>
|
507
|
+
|
508
|
+
<oclcdcs>
|
509
|
+
|
510
|
+
<dc:creator>Ward, Colin, 1924-</dc:creator>
|
511
|
+
|
512
|
+
<dc:date>2004</dc:date>
|
513
|
+
|
514
|
+
<dc:format>141 p. : ill. ; 18 cm.</dc:format>
|
515
|
+
|
516
|
+
<dc:identifier>0192804774 (pbk.)</dc:identifier>
|
517
|
+
|
518
|
+
<dc:identifier>9780192804778 (pbk.)</dc:identifier>
|
519
|
+
|
520
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
521
|
+
|
522
|
+
<dc:publisher>Oxford University Press</dc:publisher>
|
523
|
+
|
524
|
+
<dc:relation>Very short introduction 116</dc:relation>
|
525
|
+
|
526
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism.</dc:subject>
|
527
|
+
|
528
|
+
<dc:title>Anarchism </dc:title>
|
529
|
+
|
530
|
+
<dc:type>Text</dc:type>
|
531
|
+
|
532
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">040525</oclcterms:recordCreationDate>
|
533
|
+
|
534
|
+
<oclcterms:recordIdentifier>56538912</oclcterms:recordIdentifier>
|
535
|
+
|
536
|
+
</oclcdcs>
|
537
|
+
|
538
|
+
</recordData>
|
539
|
+
|
540
|
+
</record>
|
541
|
+
|
542
|
+
<record>
|
543
|
+
|
544
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
545
|
+
|
546
|
+
<recordPacking>xml</recordPacking>
|
547
|
+
|
548
|
+
<recordData>
|
549
|
+
|
550
|
+
<oclcdcs>
|
551
|
+
|
552
|
+
<dc:contributor>Chomsky, Noam.</dc:contributor>
|
553
|
+
|
554
|
+
<dc:contributor>Nelson, Wendy.</dc:contributor>
|
555
|
+
|
556
|
+
<dc:contributor>What''s Left.</dc:contributor>
|
557
|
+
|
558
|
+
<dc:creator>Chomsky, Noam.</dc:creator>
|
559
|
+
|
560
|
+
<dc:date>c1997</dc:date>
|
561
|
+
|
562
|
+
<dc:description>What''s left presents.</dc:description>
|
563
|
+
|
564
|
+
<dc:description>"During this gathering of journalists, Noam Chomsky fields
|
565
|
+
questions about anarchism, authority, and the prohibition of marijuana among
|
566
|
+
other things."--Container.</dc:description>
|
567
|
+
|
568
|
+
<dc:format>1 sound cassette (45 min.) : analog.</dc:format>
|
569
|
+
|
570
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
571
|
+
|
572
|
+
<dc:publisher>What''s Left</dc:publisher>
|
573
|
+
|
574
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Chomsky, Noam--Political
|
575
|
+
and social views.</dc:subject>
|
576
|
+
|
577
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism.</dc:subject>
|
578
|
+
|
579
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Authority.</dc:subject>
|
580
|
+
|
581
|
+
<dc:title>Anarchism</dc:title>
|
582
|
+
|
583
|
+
<dc:title>Noam Chomsky speaking on anarchism</dc:title>
|
584
|
+
|
585
|
+
<dc:title>Title on container spine: Noam Chomsky anarchism</dc:title>
|
586
|
+
|
587
|
+
<dc:type>Sound</dc:type>
|
588
|
+
|
589
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">010727</oclcterms:recordCreationDate>
|
590
|
+
|
591
|
+
<oclcterms:recordIdentifier>47661938</oclcterms:recordIdentifier>
|
592
|
+
|
593
|
+
</oclcdcs>
|
594
|
+
|
595
|
+
</recordData>
|
596
|
+
|
597
|
+
</record>
|
598
|
+
|
599
|
+
</records>
|
600
|
+
|
601
|
+
<nextRecordPosition>11</nextRecordPosition>
|
602
|
+
|
603
|
+
<resultSetIdleTime/>
|
604
|
+
|
605
|
+
<echoedSearchRetrieveRequest xmlns:srw="http://www.loc.gov/zing/srw/">
|
606
|
+
|
607
|
+
<version>1.1</version>
|
608
|
+
|
609
|
+
<query>srw.kw = "anarchism"</query>
|
610
|
+
|
611
|
+
<maximumRecords>10</maximumRecords>
|
612
|
+
|
613
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
614
|
+
|
615
|
+
<recordPacking>xml</recordPacking>
|
616
|
+
|
617
|
+
<startRecord>1</startRecord>
|
618
|
+
|
619
|
+
<sortKeys>relevance</sortKeys>
|
620
|
+
|
621
|
+
<wskey>DUMMY_API_KEY</wskey>
|
622
|
+
|
623
|
+
</echoedSearchRetrieveRequest>
|
624
|
+
|
625
|
+
</searchRetrieveResponse>
|
626
|
+
|
627
|
+
'
|
628
|
+
http_version:
|
629
|
+
recorded_at: Thu, 03 Jan 2013 00:31:25 GMT
|
630
|
+
- request:
|
631
|
+
method: get
|
632
|
+
uri: http://www.worldcat.org/webservices/catalog/search/sru?maximumRecords=10&query=srw.no%20=%20%223540542%22&recordSchema=info:srw/schema/1/dc&wskey=DUMMY_API_KEY
|
633
|
+
body:
|
634
|
+
encoding: US-ASCII
|
635
|
+
string: ''
|
636
|
+
headers: {}
|
637
|
+
response:
|
638
|
+
status:
|
639
|
+
code: 200
|
640
|
+
message: !binary |-
|
641
|
+
T0s=
|
642
|
+
headers:
|
643
|
+
!binary "RGF0ZQ==":
|
644
|
+
- !binary |-
|
645
|
+
VGh1LCAwMyBKYW4gMjAxMyAwMDozMToyNSBHTVQ=
|
646
|
+
!binary "U2VydmVy":
|
647
|
+
- !binary |-
|
648
|
+
QXBhY2hl
|
649
|
+
!binary "Q29udGVudC1MZW5ndGg=":
|
650
|
+
- !binary |-
|
651
|
+
MzI3OA==
|
652
|
+
!binary "Q29udGVudC1UeXBl":
|
653
|
+
- !binary |-
|
654
|
+
dGV4dC94bWw7Y2hhcnNldD11dGYtOA==
|
655
|
+
body:
|
656
|
+
encoding: US-ASCII
|
657
|
+
string: ! '<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
658
|
+
|
659
|
+
<?xml-stylesheet type="text/xsl" href="/webservices/catalog/xsl/searchRetrieveResponse.xsl"?>
|
660
|
+
|
661
|
+
|
662
|
+
<searchRetrieveResponse xmlns="http://www.loc.gov/zing/srw/" xmlns:oclcterms="http://purl.org/oclc/terms/"
|
663
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:diag="http://www.loc.gov/zing/srw/diagnostic/"
|
664
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
665
|
+
|
666
|
+
<version>1.1</version>
|
667
|
+
|
668
|
+
<numberOfRecords>1</numberOfRecords>
|
669
|
+
|
670
|
+
<records>
|
671
|
+
|
672
|
+
<record>
|
673
|
+
|
674
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
675
|
+
|
676
|
+
<recordPacking>xml</recordPacking>
|
677
|
+
|
678
|
+
<recordData>
|
679
|
+
|
680
|
+
<oclcdcs>
|
681
|
+
|
682
|
+
<dc:contributor>Pennock, J. Roland (James Roland), 1906-1995.</dc:contributor>
|
683
|
+
|
684
|
+
<dc:contributor>Chapman, John W. (John William), 1923-</dc:contributor>
|
685
|
+
|
686
|
+
<dc:contributor>Paul Avrich Collection (Library of Congress)</dc:contributor>
|
687
|
+
|
688
|
+
<dc:date>1978</dc:date>
|
689
|
+
|
690
|
+
<dc:description>Includes index.</dc:description>
|
691
|
+
|
692
|
+
<dc:description>Anarchism and political philosophy : an introduction / Gerald
|
693
|
+
F. Gaus and John W. Chapman -- What is anarchism? / John P. Clark -- A contractarian
|
694
|
+
perspective on anarchy / James M. Buchanan -- Nozick''s anarchism / Eric Mack
|
695
|
+
-- Anarchism and world order / Richard A. Falk -- Anarchism and authority
|
696
|
+
/ Richard T. De George -- Comments on "Anarchism and authority" / Richard
|
697
|
+
Wasserstrom -- Anarchism and skepticism / Rex Martin -- The anarchist justification
|
698
|
+
of authority / Alan Ritter -- Disrespect for law / Lester J. Mazor -- The
|
699
|
+
profoundest respect for law : Mazor''s Anarchy and the political association
|
700
|
+
/ Lisa Newton -- Disrespect for law and the case for anarchy / Alan Wertheimer
|
701
|
+
-- Society without state / Murray N. Rothbard -- Some reflections on arbitrating
|
702
|
+
our way to anarchy / Chistopher D. Stone -- Anarchist justice / David Wieck
|
703
|
+
-- The dimensions of anarchy / Donald McIntosh -- Philosophical anarchism
|
704
|
+
revisited / Grenville Wall -- On the "Kantian" foundations of Robert Paul
|
705
|
+
Wolff''s anarchism / Partrick Riley -- Anarchism and violence / April Carter.</dc:description>
|
706
|
+
|
707
|
+
<dc:format>xlv, 375 p. ; 22 cm.</dc:format>
|
708
|
+
|
709
|
+
<dc:identifier>0814765726</dc:identifier>
|
710
|
+
|
711
|
+
<dc:identifier>9780814765722</dc:identifier>
|
712
|
+
|
713
|
+
<dc:language xsi:type="http://purl.org/dc/terms/ISO639-2">eng</dc:language>
|
714
|
+
|
715
|
+
<dc:publisher>New York University Press</dc:publisher>
|
716
|
+
|
717
|
+
<dc:relation>Nomos ; 19</dc:relation>
|
718
|
+
|
719
|
+
<dc:subject xsi:type="http://purl.org/dc/terms/LCSH">Anarchism.</dc:subject>
|
720
|
+
|
721
|
+
<dc:title>Anarchism </dc:title>
|
722
|
+
|
723
|
+
<dc:type>Text</dc:type>
|
724
|
+
|
725
|
+
<oclcterms:recordCreationDate xsi:type="http://purl.org/oclc/terms/marc008date">771213</oclcterms:recordCreationDate>
|
726
|
+
|
727
|
+
<oclcterms:recordIdentifier xsi:type="http://purl.org/oclc/terms/lccn"> 77084158
|
728
|
+
</oclcterms:recordIdentifier>
|
729
|
+
|
730
|
+
<oclcterms:recordIdentifier>3540542</oclcterms:recordIdentifier>
|
731
|
+
|
732
|
+
</oclcdcs>
|
733
|
+
|
734
|
+
</recordData>
|
735
|
+
|
736
|
+
</record>
|
737
|
+
|
738
|
+
</records>
|
739
|
+
|
740
|
+
<nextRecordPosition/>
|
741
|
+
|
742
|
+
<resultSetIdleTime/>
|
743
|
+
|
744
|
+
<echoedSearchRetrieveRequest xmlns:srw="http://www.loc.gov/zing/srw/">
|
745
|
+
|
746
|
+
<version>1.1</version>
|
747
|
+
|
748
|
+
<query>srw.no = "3540542"</query>
|
749
|
+
|
750
|
+
<maximumRecords>10</maximumRecords>
|
751
|
+
|
752
|
+
<recordSchema>info:srw/schema/1/dc</recordSchema>
|
753
|
+
|
754
|
+
<recordPacking>xml</recordPacking>
|
755
|
+
|
756
|
+
<startRecord>1</startRecord>
|
757
|
+
|
758
|
+
<sortKeys>relevance</sortKeys>
|
759
|
+
|
760
|
+
<wskey>DUMMY_API_KEY</wskey>
|
761
|
+
|
762
|
+
</echoedSearchRetrieveRequest>
|
763
|
+
|
764
|
+
</searchRetrieveResponse>
|
765
|
+
|
766
|
+
'
|
767
|
+
http_version:
|
768
|
+
recorded_at: Thu, 03 Jan 2013 00:31:25 GMT
|
769
|
+
recorded_with: VCR 2.3.0
|