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,340 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: https://www.googleapis.com/books/v1/volumes?maxResults=10&q=cancer
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 "RXhwaXJlcw==":
17
+ - !binary |-
18
+ TW9uLCAwNiBBdWcgMjAxMiAxNToyNzoxNCBHTVQ=
19
+ !binary "RGF0ZQ==":
20
+ - !binary |-
21
+ TW9uLCAwNiBBdWcgMjAxMiAxNToyNzoxNCBHTVQ=
22
+ !binary "Q2FjaGUtQ29udHJvbA==":
23
+ - !binary |-
24
+ cHJpdmF0ZSwgbWF4LWFnZT0wLCBtdXN0LXJldmFsaWRhdGUsIG5vLXRyYW5z
25
+ Zm9ybQ==
26
+ !binary "RXRhZw==":
27
+ - !binary |-
28
+ InNjeTROa3AyVnBMTlo1azlOLW9rdXZwLXNOay9xTW1sWDkwaWpoZUZoSkYx
29
+ X0NFNVcyV3RRSDAi
30
+ !binary "Q29udGVudC1UeXBl":
31
+ - !binary |-
32
+ YXBwbGljYXRpb24vanNvbjsgY2hhcnNldD1VVEYtOA==
33
+ !binary "WC1Db250ZW50LVR5cGUtT3B0aW9ucw==":
34
+ - !binary |-
35
+ bm9zbmlmZg==
36
+ !binary "WC1GcmFtZS1PcHRpb25z":
37
+ - !binary |-
38
+ U0FNRU9SSUdJTg==
39
+ !binary "WC1Yc3MtUHJvdGVjdGlvbg==":
40
+ - !binary |-
41
+ MTsgbW9kZT1ibG9jaw==
42
+ !binary "U2VydmVy":
43
+ - !binary |-
44
+ R1NF
45
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
46
+ - !binary |-
47
+ Y2h1bmtlZA==
48
+ body:
49
+ encoding: US-ASCII
50
+ string: ! "{\n \"kind\": \"books#volumes\",\n \"totalItems\": 1761,\n \"items\":
51
+ [\n {\n \"kind\": \"books#volume\",\n \"id\": \"d-eg-7yZ7vIC\",\n \"etag\":
52
+ \"6woOPjZEoNA\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/d-eg-7yZ7vIC\",\n
53
+ \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"authors\": [\n \"Angela
54
+ Royston\"\n ],\n \"publisher\": \"Heinemann First Library\",\n \"publishedDate\":
55
+ \"2005-06-01\",\n \"description\": \"Cancer is a condition many people
56
+ live with. Find out what life is like for some who have cancer.\",\n \"industryIdentifiers\":
57
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"1403458502\"\n
58
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781403458506\"\n
59
+ \ }\n ],\n \"pageCount\": 32,\n \"printType\": \"BOOK\",\n \"categories\":
60
+ [\n \"Health & Fitness\"\n ],\n \"averageRating\": 5.0,\n \"ratingsCount\":
61
+ 2,\n \"contentVersion\": \"preview-1.0.0\",\n \"imageLinks\": {\n \"smallThumbnail\":
62
+ \"http://bks9.books.google.com/books?id=d-eg-7yZ7vIC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
63
+ \ \"thumbnail\": \"http://bks9.books.google.com/books?id=d-eg-7yZ7vIC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
64
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=d-eg-7yZ7vIC&printsec=frontcover&dq=cancer&hl=&cd=1&source=gbs_api\",\n
65
+ \ \"infoLink\": \"http://books.google.com/books?id=d-eg-7yZ7vIC&dq=cancer&hl=&source=gbs_api\",\n
66
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=d-eg-7yZ7vIC\"\n
67
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
68
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
69
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
70
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
71
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
72
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=d-eg-7yZ7vIC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
73
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
74
+ \"Cancer is a condition many people live with. Find out what life is like
75
+ for some who have cancer.\"\n }\n },\n {\n \"kind\": \"books#volume\",\n
76
+ \ \"id\": \"PMbLAT1JJqUC\",\n \"etag\": \"lxwlSBMEVdw\",\n \"selfLink\":
77
+ \"https://www.googleapis.com/books/v1/volumes/PMbLAT1JJqUC\",\n \"volumeInfo\":
78
+ {\n \"title\": \"Cancer\",\n \"authors\": [\n \"Oliver Gillie\"\n
79
+ \ ],\n \"publisher\": \"NA-h\",\n \"publishedDate\": \"2004-05-01\",\n
80
+ \ \"description\": \"Provides an overview of cancer, describing what it
81
+ is, what the various forms are that it takes, what it is like to live with
82
+ this disease, and some of the available treatments.\",\n \"industryIdentifiers\":
83
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"1403451443\"\n
84
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781403451446\"\n
85
+ \ }\n ],\n \"pageCount\": 56,\n \"printType\": \"BOOK\",\n \"categories\":
86
+ [\n \"Medical\"\n ],\n \"contentVersion\": \"preview-1.0.0\",\n
87
+ \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks9.books.google.com/books?id=PMbLAT1JJqUC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
88
+ \ \"thumbnail\": \"http://bks9.books.google.com/books?id=PMbLAT1JJqUC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
89
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=PMbLAT1JJqUC&printsec=frontcover&dq=cancer&hl=&cd=2&source=gbs_api\",\n
90
+ \ \"infoLink\": \"http://books.google.com/books?id=PMbLAT1JJqUC&dq=cancer&hl=&source=gbs_api\",\n
91
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=PMbLAT1JJqUC\"\n
92
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
93
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
94
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
95
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
96
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
97
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=PMbLAT1JJqUC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
98
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
99
+ \"Provides an overview of cancer, describing what it is, what the various
100
+ forms are that it takes, what it is like to live with this disease, and some
101
+ of the available treatments.\"\n }\n },\n {\n \"kind\": \"books#volume\",\n
102
+ \ \"id\": \"E-0_T_sEMB8C\",\n \"etag\": \"Ajq0OdjVoVk\",\n \"selfLink\":
103
+ \"https://www.googleapis.com/books/v1/volumes/E-0_T_sEMB8C\",\n \"volumeInfo\":
104
+ {\n \"title\": \"Cancer\",\n \"subtitle\": \"101 Solutions to a Preventable
105
+ Epidemic\",\n \"authors\": [\n \"Liz Armstrong\",\n \"Guy Dauncey\",\n
106
+ \ \"Anne Wordsworth\"\n ],\n \"publisher\": \"New Society Pub\",\n
107
+ \ \"publishedDate\": \"2007-05-01\",\n \"description\": \"How to prevent
108
+ cancer before it starts.\",\n \"industryIdentifiers\": [\n {\n \"type\":
109
+ \"ISBN_10\",\n \"identifier\": \"0865715424\"\n },\n {\n \"type\":
110
+ \"ISBN_13\",\n \"identifier\": \"9780865715424\"\n }\n ],\n \"pageCount\":
111
+ 317,\n \"printType\": \"BOOK\",\n \"averageRating\": 3.0,\n \"ratingsCount\":
112
+ 1,\n \"contentVersion\": \"0.1.0.0.preview.1\",\n \"imageLinks\": {\n
113
+ \ \"smallThumbnail\": \"http://bks9.books.google.com/books?id=E-0_T_sEMB8C&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
114
+ \ \"thumbnail\": \"http://bks9.books.google.com/books?id=E-0_T_sEMB8C&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
115
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=E-0_T_sEMB8C&printsec=frontcover&dq=cancer&hl=&cd=3&source=gbs_api\",\n
116
+ \ \"infoLink\": \"http://books.google.com/books?id=E-0_T_sEMB8C&dq=cancer&hl=&source=gbs_api\",\n
117
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=E-0_T_sEMB8C\"\n
118
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
119
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
120
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
121
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
122
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
123
+ true,\n \"acsTokenLink\": \"http://books.google.com/books/download/Cancer-sample-pdf.acsm?id=E-0_T_sEMB8C&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
124
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=E-0_T_sEMB8C&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
125
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
126
+ \"How to prevent cancer before it starts.\"\n }\n },\n {\n \"kind\":
127
+ \"books#volume\",\n \"id\": \"5wsylnGBaWUC\",\n \"etag\": \"EZ17oQ3np0I\",\n
128
+ \ \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/5wsylnGBaWUC\",\n
129
+ \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"authors\": [\n \"Linda
130
+ Page\"\n ],\n \"publisher\": \"Healthy Healing Pubns\",\n \"publishedDate\":
131
+ \"1997-12-01\",\n \"description\": \"The very latest information about
132
+ cancers, alternative treatments, and natural therapies. A must for every natural
133
+ healing library. From a Certified Doctor of Naturopathy and PhD. who has been
134
+ working in nutrition and herbal medicine since the earlier seventies. Contents
135
+ include New Facts About Cancer Causes, Is Cancer Preventable, Can Herbal Medicines
136
+ Fight Cancer, and Programs for Specific Types of Cancer.\",\n \"industryIdentifiers\":
137
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"1884334369\"\n
138
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781884334368\"\n
139
+ \ }\n ],\n \"pageCount\": 96,\n \"printType\": \"BOOK\",\n \"contentVersion\":
140
+ \"1.1.1.0.preview.0\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks8.books.google.com/books?id=5wsylnGBaWUC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
141
+ \ \"thumbnail\": \"http://bks8.books.google.com/books?id=5wsylnGBaWUC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
142
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=5wsylnGBaWUC&printsec=frontcover&dq=cancer&hl=&cd=4&source=gbs_api\",\n
143
+ \ \"infoLink\": \"http://books.google.com/books?id=5wsylnGBaWUC&dq=cancer&hl=&source=gbs_api\",\n
144
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=5wsylnGBaWUC\"\n
145
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
146
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
147
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
148
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
149
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
150
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=5wsylnGBaWUC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
151
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
152
+ \"Contents include New Facts About Cancer Causes, Is Cancer Preventable, Can
153
+ Herbal Medicines Fight Cancer, and Programs for Specific Types of Cancer.\"\n
154
+ \ }\n },\n {\n \"kind\": \"books#volume\",\n \"id\": \"n__a1sG0EF4C\",\n
155
+ \ \"etag\": \"PyD4RPFoX+4\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/n__a1sG0EF4C\",\n
156
+ \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"subtitle\": \"From
157
+ Mechanisms to Therapeutic Approaches\",\n \"authors\": [\n \"Robert
158
+ A. Meyers\"\n ],\n \"publisher\": \"Wiley-VCH\",\n \"publishedDate\":
159
+ \"2007-07-31\",\n \"description\": \"With an editorial board containing
160
+ 12 Nobel laureates, this invaluable collection of high-quality articles on
161
+ cancer biology is taken from the highly acclaimed R.A. Meyer's Encyclopedia
162
+ of Molecular Cell Biology and Molecular Medicine. Clearly divided into three
163
+ main sections, this handbook covers a wide range of topics from molecular
164
+ mechanisms and organ specific cancers to diagnostic and therapeutic approaches.
165
+ The articles are uniformly structured for ease of use and carefully designed
166
+ to aid readers of all levels of expertise. To this end, each chapter includes
167
+ a glossary of the most important keywords, a concise summary of the article
168
+ and comprehensive literature references. This title is a ready reference for
169
+ molecular and cell biologists, cancer researchers, oncologists, pharmacologists,
170
+ as well as for those working in the pharmaceutical and biotechnological industries.\",\n
171
+ \ \"industryIdentifiers\": [\n {\n \"type\": \"ISBN_10\",\n \"identifier\":
172
+ \"3527317686\"\n },\n {\n \"type\": \"ISBN_13\",\n \"identifier\":
173
+ \"9783527317684\"\n }\n ],\n \"pageCount\": 478,\n \"printType\":
174
+ \"BOOK\",\n \"categories\": [\n \"Medical\"\n ],\n \"contentVersion\":
175
+ \"0.0.1.0.preview.0\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks5.books.google.com/books?id=n__a1sG0EF4C&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
176
+ \ \"thumbnail\": \"http://bks5.books.google.com/books?id=n__a1sG0EF4C&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
177
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=n__a1sG0EF4C&printsec=frontcover&dq=cancer&hl=&cd=5&source=gbs_api\",\n
178
+ \ \"infoLink\": \"http://books.google.com/books?id=n__a1sG0EF4C&dq=cancer&hl=&source=gbs_api\",\n
179
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=n__a1sG0EF4C\"\n
180
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
181
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
182
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
183
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
184
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
185
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=n__a1sG0EF4C&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
186
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
187
+ \"With an editorial board containing 12 Nobel laureates, this invaluable collection
188
+ of high-quality articles on cancer biology is taken from the highly acclaimed
189
+ R.A. Meyer's Encyclopedia of Molecular Cell Biology and Molecular Medicine.\"\n
190
+ \ }\n },\n {\n \"kind\": \"books#volume\",\n \"id\": \"j0RV27loexoC\",\n
191
+ \ \"etag\": \"OkNwOvZRmn0\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/j0RV27loexoC\",\n
192
+ \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"subtitle\": \"Basic
193
+ Science and Clinical Aspects\",\n \"authors\": [\n \"Craig A. Almeida\",\n
194
+ \ \"Sheila A. Barry\"\n ],\n \"publisher\": \"Wiley-Blackwell\",\n
195
+ \ \"publishedDate\": \"2011-08-26\",\n \"description\": \".\\\".\\\".
196
+ Useful background information is displayed in blue boxes, and good use is
197
+ made of numerous tables and diagrams... a useful book for the undergraduate
198
+ medical or allied health professional...\\\"\\\" -Oncology News, May/June
199
+ 2010 This forward looking cancer biology book appeals to a wide ranging audience.
200
+ Introductory chapters that provide the molecular, cellular, and genetic information
201
+ needed to comprehend the material of the subsequent chapters bring unprepared
202
+ students up to speed for the rest of the book and serve as a useful refresher
203
+ for those with previous biology background. The second set of chapters focuses
204
+ on the main cancers in terms of risk factors, diagnostic and treatment methods
205
+ and relevant current research. The final section encompasses the immune system's
206
+ role in the prevention and development of cancer and the impact that the Human
207
+ Genome Project will have on future approaches to cancer care. While best suited
208
+ to non-majors cancer biology courses, the depth provided satisfies courses
209
+ that combine both majors and non-majors. Also, and deliberately, the authors
210
+ have incorporated relevant information on diagnosis and treatment options
211
+ that lend appeal to the lay reader.\",\n \"industryIdentifiers\": [\n {\n
212
+ \ \"type\": \"ISBN_10\",\n \"identifier\": \"1444357395\"\n },\n
213
+ \ {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9781444357394\"\n
214
+ \ }\n ],\n \"pageCount\": 424,\n \"printType\": \"BOOK\",\n \"categories\":
215
+ [\n \"Medical\"\n ],\n \"contentVersion\": \"1.4.2.0.preview.3\",\n
216
+ \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks3.books.google.com/books?id=j0RV27loexoC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
217
+ \ \"thumbnail\": \"http://bks3.books.google.com/books?id=j0RV27loexoC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
218
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=j0RV27loexoC&printsec=frontcover&dq=cancer&hl=&cd=6&source=gbs_api\",\n
219
+ \ \"infoLink\": \"http://books.google.com/books?id=j0RV27loexoC&dq=cancer&hl=&source=gbs_api\",\n
220
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=j0RV27loexoC\"\n
221
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
222
+ \"FOR_SALE\",\n \"isEbook\": true,\n \"listPrice\": {\n \"amount\":
223
+ 64.99,\n \"currencyCode\": \"USD\"\n },\n \"retailPrice\": {\n \"amount\":
224
+ 64.99,\n \"currencyCode\": \"USD\"\n },\n \"buyLink\": \"http://books.google.com/books?id=j0RV27loexoC&dq=cancer&hl=&buy=&source=gbs_api\"\n
225
+ \ },\n \"accessInfo\": {\n \"country\": \"US\",\n \"viewability\":
226
+ \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\": false,\n \"textToSpeechPermission\":
227
+ \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\": {\n \"isAvailable\": true,\n
228
+ \ \"acsTokenLink\": \"http://books.google.com/books/download/Cancer-sample-epub.acsm?id=j0RV27loexoC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
229
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"acsTokenLink\":
230
+ \"http://books.google.com/books/download/Cancer-sample-pdf.acsm?id=j0RV27loexoC&format=pdf&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
231
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=j0RV27loexoC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
232
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
233
+ \"The text is strategically inclusive of pedagogical features that will assist
234
+ students in both study and comprehension while illustrating real life application
235
+ of the concepts.\"\n }\n },\n {\n \"kind\": \"books#volume\",\n \"id\":
236
+ \"u3bnPGRxs1YC\",\n \"etag\": \"9u33LRmv4Dg\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/u3bnPGRxs1YC\",\n
237
+ \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"subtitle\": \"We Live
238
+ and Die by Radiation\",\n \"authors\": [\n \"Michelangelo Delfino\",\n
239
+ \ \"Mary E. Day\"\n ],\n \"publisher\": \"MoBeta Publishing\",\n
240
+ \ \"publishedDate\": \"2006-09-30\",\n \"description\": \"Discusses the
241
+ effect of radiation on the body and its role in the development, diagnosis,
242
+ and treatment of cancer, offering summaries and evaluations of radiation treatment
243
+ options for different types of cancer.\",\n \"industryIdentifiers\": [\n
244
+ \ {\n \"type\": \"ISBN_10\",\n \"identifier\": \"0972514112\"\n
245
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9780972514118\"\n
246
+ \ }\n ],\n \"pageCount\": 273,\n \"printType\": \"BOOK\",\n \"categories\":
247
+ [\n \"Medical\"\n ],\n \"averageRating\": 1.0,\n \"ratingsCount\":
248
+ 1,\n \"contentVersion\": \"preview-1.0.0\",\n \"imageLinks\": {\n \"smallThumbnail\":
249
+ \"http://bks5.books.google.com/books?id=u3bnPGRxs1YC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
250
+ \ \"thumbnail\": \"http://bks5.books.google.com/books?id=u3bnPGRxs1YC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
251
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=u3bnPGRxs1YC&printsec=frontcover&dq=cancer&hl=&cd=7&source=gbs_api\",\n
252
+ \ \"infoLink\": \"http://books.google.com/books?id=u3bnPGRxs1YC&dq=cancer&hl=&source=gbs_api\",\n
253
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=u3bnPGRxs1YC\"\n
254
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
255
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
256
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
257
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
258
+ {\n \"isAvailable\": true,\n \"acsTokenLink\": \"http://books.google.com/books/download/Cancer-sample-epub.acsm?id=u3bnPGRxs1YC&format=epub&output=acs4_fulfillment_token&dl_type=sample&source=gbs_api\"\n
259
+ \ },\n \"pdf\": {\n \"isAvailable\": false\n },\n \"webReaderLink\":
260
+ \"http://books.google.com/books/reader?id=u3bnPGRxs1YC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
261
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
262
+ \"This unique book gives timely advice for those facing difficult choices.\"\n
263
+ \ }\n },\n {\n \"kind\": \"books#volume\",\n \"id\": \"EIhNAAAAMAAJ\",\n
264
+ \ \"etag\": \"Y1o8l/IdexQ\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/EIhNAAAAMAAJ\",\n
265
+ \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"subtitle\": \"its
266
+ causes, symptoms & treatment, giving the results of over forty years' experience
267
+ in the medical treatment of this disease\",\n \"authors\": [\n \"Eli
268
+ Grellet Jones\"\n ],\n \"publishedDate\": \"1911\",\n \"industryIdentifiers\":
269
+ [\n {\n \"type\": \"OTHER\",\n \"identifier\": \"UOM:39015023142154\"\n
270
+ \ }\n ],\n \"pageCount\": 301,\n \"printType\": \"BOOK\",\n \"categories\":
271
+ [\n \"Health & Fitness\"\n ],\n \"contentVersion\": \"full-1.0.0\",\n
272
+ \ \"imageLinks\": {\n \"smallThumbnail\": \"http://bks4.books.google.com/books?id=EIhNAAAAMAAJ&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
273
+ \ \"thumbnail\": \"http://bks4.books.google.com/books?id=EIhNAAAAMAAJ&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
274
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=EIhNAAAAMAAJ&printsec=frontcover&dq=cancer&hl=&cd=8&source=gbs_api\",\n
275
+ \ \"infoLink\": \"http://books.google.com/books?id=EIhNAAAAMAAJ&dq=cancer&hl=&source=gbs_api\",\n
276
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=EIhNAAAAMAAJ\"\n
277
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
278
+ \"FREE\",\n \"isEbook\": true\n },\n \"accessInfo\": {\n \"country\":
279
+ \"US\",\n \"viewability\": \"ALL_PAGES\",\n \"embeddable\": true,\n
280
+ \ \"publicDomain\": true,\n \"textToSpeechPermission\": \"ALLOWED\",\n
281
+ \ \"epub\": {\n \"isAvailable\": false,\n \"downloadLink\": \"http://books.google.com/books/download/Cancer.epub?id=EIhNAAAAMAAJ&hl=&output=epub&source=gbs_api\"\n
282
+ \ },\n \"pdf\": {\n \"isAvailable\": true,\n \"downloadLink\":
283
+ \"http://books.google.com/books/download/Cancer.pdf?id=EIhNAAAAMAAJ&hl=&output=pdf&sig=ACfU3U0zqZlPA68D7FhlRzz3Vi_koiQ0mQ&source=gbs_api\"\n
284
+ \ },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=EIhNAAAAMAAJ&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
285
+ \ \"accessViewStatus\": \"FULL_PUBLIC_DOMAIN\"\n }\n },\n {\n \"kind\":
286
+ \"books#volume\",\n \"id\": \"rmcw52DmOIcC\",\n \"etag\": \"A6kKUbM2aBI\",\n
287
+ \ \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/rmcw52DmOIcC\",\n
288
+ \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"subtitle\": \"The
289
+ Wayward Cell : Its Origins, Nature, and Treatment\",\n \"authors\": [\n
290
+ \ \"Victor Richards\"\n ],\n \"publisher\": \"Univ of California
291
+ Press\",\n \"publishedDate\": \"1978-09-01\",\n \"description\": \"Discusses
292
+ the biological and historical aspects of cancer as well as methods of treatment
293
+ and the sociopsychological problems confronting patients\",\n \"industryIdentifiers\":
294
+ [\n {\n \"type\": \"ISBN_10\",\n \"identifier\": \"0520035968\"\n
295
+ \ },\n {\n \"type\": \"ISBN_13\",\n \"identifier\": \"9780520035966\"\n
296
+ \ }\n ],\n \"pageCount\": 407,\n \"printType\": \"BOOK\",\n \"contentVersion\":
297
+ \"preview-1.0.0\",\n \"imageLinks\": {\n \"smallThumbnail\": \"http://bks1.books.google.com/books?id=rmcw52DmOIcC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
298
+ \ \"thumbnail\": \"http://bks1.books.google.com/books?id=rmcw52DmOIcC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
299
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=rmcw52DmOIcC&printsec=frontcover&dq=cancer&hl=&cd=9&source=gbs_api\",\n
300
+ \ \"infoLink\": \"http://books.google.com/books?id=rmcw52DmOIcC&dq=cancer&hl=&source=gbs_api\",\n
301
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=rmcw52DmOIcC\"\n
302
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
303
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
304
+ \"US\",\n \"viewability\": \"ALL_PAGES\",\n \"embeddable\": true,\n
305
+ \ \"publicDomain\": false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n
306
+ \ \"epub\": {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
307
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=rmcw52DmOIcC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
308
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
309
+ \"Discusses the biological and historical aspects of cancer as well as methods
310
+ of treatment and the sociopsychological problems confronting patients\"\n
311
+ \ }\n },\n {\n \"kind\": \"books#volume\",\n \"id\": \"aVTMqaclr_kC\",\n
312
+ \ \"etag\": \"TtSgGYafxgc\",\n \"selfLink\": \"https://www.googleapis.com/books/v1/volumes/aVTMqaclr_kC\",\n
313
+ \ \"volumeInfo\": {\n \"title\": \"Cancer\",\n \"authors\": [\n \"Alvin
314
+ Silverstein\",\n \"Virginia B. Silverstein\",\n \"Laura Silverstein
315
+ Nunn\"\n ],\n \"publisher\": \"21st Century\",\n \"publishedDate\":
316
+ \"2006\",\n \"description\": \"Explains different types of cancer, their
317
+ causes, symptoms and treatment, and, through case studies, what it is like
318
+ to live with cancer.\",\n \"industryIdentifiers\": [\n {\n \"type\":
319
+ \"ISBN_10\",\n \"identifier\": \"0761328335\"\n },\n {\n \"type\":
320
+ \"ISBN_13\",\n \"identifier\": \"9780761328339\"\n }\n ],\n \"pageCount\":
321
+ 121,\n \"printType\": \"BOOK\",\n \"categories\": [\n \"Medical\"\n
322
+ \ ],\n \"contentVersion\": \"0.1.0.0.preview.0\",\n \"imageLinks\":
323
+ {\n \"smallThumbnail\": \"http://bks3.books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&img=1&zoom=5&edge=curl&source=gbs_api\",\n
324
+ \ \"thumbnail\": \"http://bks3.books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&img=1&zoom=1&edge=curl&source=gbs_api\"\n
325
+ \ },\n \"language\": \"en\",\n \"previewLink\": \"http://books.google.com/books?id=aVTMqaclr_kC&printsec=frontcover&dq=cancer&hl=&cd=10&source=gbs_api\",\n
326
+ \ \"infoLink\": \"http://books.google.com/books?id=aVTMqaclr_kC&dq=cancer&hl=&source=gbs_api\",\n
327
+ \ \"canonicalVolumeLink\": \"http://books.google.com/books/about/Cancer.html?hl=&id=aVTMqaclr_kC\"\n
328
+ \ },\n \"saleInfo\": {\n \"country\": \"US\",\n \"saleability\":
329
+ \"NOT_FOR_SALE\",\n \"isEbook\": false\n },\n \"accessInfo\": {\n \"country\":
330
+ \"US\",\n \"viewability\": \"PARTIAL\",\n \"embeddable\": true,\n \"publicDomain\":
331
+ false,\n \"textToSpeechPermission\": \"ALLOWED_FOR_ACCESSIBILITY\",\n \"epub\":
332
+ {\n \"isAvailable\": false\n },\n \"pdf\": {\n \"isAvailable\":
333
+ false\n },\n \"webReaderLink\": \"http://books.google.com/books/reader?id=aVTMqaclr_kC&hl=&printsec=frontcover&output=reader&source=gbs_api\",\n
334
+ \ \"accessViewStatus\": \"SAMPLE\"\n },\n \"searchInfo\": {\n \"textSnippet\":
335
+ \"Explains different types of cancer, their causes, symptoms and treatment,
336
+ and, through case studies, what it is like to live with cancer.\"\n }\n
337
+ \ }\n ]\n}\n"
338
+ http_version:
339
+ recorded_at: Mon, 06 Aug 2012 15:27:14 GMT
340
+ recorded_with: VCR 2.2.4
@@ -0,0 +1,1112 @@
1
+ ---
2
+ http_interactions:
3
+ - request:
4
+ method: get
5
+ uri: http://EXAMPLE.ORG:80/PrimoWebServices/xservice/search/brief?bulkSize=10&institution=DUMMY_INSTITUTION&loc=adaptor,primo_central_multiple_fe&onCampus=false&query=any,contains,globalization%20from%20below
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 "U2VydmVy":
17
+ - !binary |-
18
+ QXBhY2hlLUNveW90ZS8xLjE=
19
+ !binary "WC1Qb3dlcmVkLUJ5":
20
+ - !binary |-
21
+ U2VydmxldCAyLjU7IEpCb3NzLTUuMC9KQm9zc1dlYi0yLjE=
22
+ !binary "Q29udGVudC1UeXBl":
23
+ - !binary |-
24
+ dGV4dC94bWw7Y2hhcnNldD1VVEYtOA==
25
+ !binary "VHJhbnNmZXItRW5jb2Rpbmc=":
26
+ - !binary |-
27
+ Y2h1bmtlZA==
28
+ !binary "RGF0ZQ==":
29
+ - !binary |-
30
+ VHVlLCAwNyBBdWcgMjAxMiAxNzo1Mzo1NSBHTVQ=
31
+ body:
32
+ encoding: UTF-8
33
+ string: ! "<sear:SEGMENTS xmlns:prim=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\"
34
+ xmlns:sear=\"http://www.exlibrisgroup.com/xsd/jaguar/search\">\n <sear:JAGROOT>\n
35
+ \ <sear:RESULT>\n <sear:QUERYTRANSFORMS/>\n <sear:FACETLIST ACCURATE_COUNTERS=\"true\">\n
36
+ \ <sear:FACET COUNT=\"20\" NAME=\"creator\">\n <sear:FACET_VALUES
37
+ VALUE=\"1\" KEY=\"Watson, H. A.\"/>\n <sear:FACET_VALUES VALUE=\"3\"
38
+ KEY=\"Carr, Barry\"/>\n <sear:FACET_VALUES VALUE=\"5\" KEY=\"Smith,
39
+ J.\"/>\n <sear:FACET_VALUES VALUE=\"2\" KEY=\"Tubajon, Gina\"/>\n
40
+ \ <sear:FACET_VALUES VALUE=\"3\" KEY=\"Smith, Brendan\"/>\n <sear:FACET_VALUES
41
+ VALUE=\"6\" KEY=\"Costello, Tim\"/>\n <sear:FACET_VALUES VALUE=\"5\"
42
+ KEY=\"Turner, Terisa E.\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"
43
+ Jung Mee Mha\"/>\n <sear:FACET_VALUES VALUE=\"2\" KEY=\"Chase-dunn,
44
+ Christopher\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"Clegg, Stewart\"/>\n
45
+ \ <sear:FACET_VALUES VALUE=\"7\" KEY=\"Brecher, Jeremy\"/>\n <sear:FACET_VALUES
46
+ VALUE=\"7\" KEY=\"Brownhill, Leigh S.\"/>\n <sear:FACET_VALUES VALUE=\"3\"
47
+ KEY=\"Ribeiro, Gustavo Lins\"/>\n <sear:FACET_VALUES VALUE=\"1\"
48
+ KEY=\"Waalkers, S.\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"Schoonmaker,
49
+ Sara\"/>\n <sear:FACET_VALUES VALUE=\"3\" KEY=\"Dufour, Pascale\"/>\n
50
+ \ <sear:FACET_VALUES VALUE=\"2\" KEY=\"Zaman, Habiba\"/>\n <sear:FACET_VALUES
51
+ VALUE=\"1\" KEY=\"Cooper, Catherine R.\"/>\n <sear:FACET_VALUES VALUE=\"1\"
52
+ KEY=\"Terhorst, P.\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"Kume,
53
+ Ikuo\"/>\n </sear:FACET>\n <sear:FACET COUNT=\"1\" NAME=\"lcc\">\n
54
+ \ <sear:FACET_VALUES VALUE=\"16\" KEY=\"H - Social sciences.\"/>\n
55
+ \ </sear:FACET>\n <sear:FACET COUNT=\"13\" NAME=\"lang\">\n <sear:FACET_VALUES
56
+ VALUE=\"1\" KEY=\"lit\"/>\n <sear:FACET_VALUES VALUE=\"17\" KEY=\"한국어\"/>\n
57
+ \ <sear:FACET_VALUES VALUE=\"120\" KEY=\"ger\"/>\n <sear:FACET_VALUES
58
+ VALUE=\"14\" KEY=\"por\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"tur\"/>\n
59
+ \ <sear:FACET_VALUES VALUE=\"44\" KEY=\"fre\"/>\n <sear:FACET_VALUES
60
+ VALUE=\"1\" KEY=\"heb\"/>\n <sear:FACET_VALUES VALUE=\"3\" KEY=\"kor\"/>\n
61
+ \ <sear:FACET_VALUES VALUE=\"11\" KEY=\"chi\"/>\n <sear:FACET_VALUES
62
+ VALUE=\"1\" KEY=\"rus\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"jpn\"/>\n
63
+ \ <sear:FACET_VALUES VALUE=\"53177\" KEY=\"eng\"/>\n <sear:FACET_VALUES
64
+ VALUE=\"117\" KEY=\"spa\"/>\n </sear:FACET>\n <sear:FACET COUNT=\"12\"
65
+ NAME=\"rtype\">\n <sear:FACET_VALUES VALUE=\"5890\" KEY=\"books\"/>\n
66
+ \ <sear:FACET_VALUES VALUE=\"3048\" KEY=\"reviews\"/>\n <sear:FACET_VALUES
67
+ VALUE=\"1793\" KEY=\"reference_entrys\"/>\n <sear:FACET_VALUES VALUE=\"2\"
68
+ KEY=\"journals\"/>\n <sear:FACET_VALUES VALUE=\"26\" KEY=\"other\"/>\n
69
+ \ <sear:FACET_VALUES VALUE=\"61359\" KEY=\"articles\"/>\n <sear:FACET_VALUES
70
+ VALUE=\"55\" KEY=\"Dissertations\"/>\n <sear:FACET_VALUES VALUE=\"2274\"
71
+ KEY=\"text_resources\"/>\n <sear:FACET_VALUES VALUE=\"390\" KEY=\"conference_proceedings\"/>\n
72
+ \ <sear:FACET_VALUES VALUE=\"11\" KEY=\"websites\"/>\n <sear:FACET_VALUES
73
+ VALUE=\"66\" KEY=\"media\"/>\n <sear:FACET_VALUES VALUE=\"12320\"
74
+ KEY=\"newspaper_articles\"/>\n </sear:FACET>\n <sear:FACET COUNT=\"19\"
75
+ NAME=\"topic\">\n <sear:FACET_VALUES VALUE=\"5769\" KEY=\" Introduction\"/>\n
76
+ \ <sear:FACET_VALUES VALUE=\"123\" KEY=\"Latinamericanstudies\"/>\n
77
+ \ <sear:FACET_VALUES VALUE=\"578\" KEY=\"International Economic Relations\"/>\n
78
+ \ <sear:FACET_VALUES VALUE=\"4898\" KEY=\" International Trade Law\"/>\n
79
+ \ <sear:FACET_VALUES VALUE=\"906\" KEY=\"Civil Rights Law\"/>\n <sear:FACET_VALUES
80
+ VALUE=\"889\" KEY=\"Economic Development\"/>\n <sear:FACET_VALUES
81
+ VALUE=\"161\" KEY=\"Transnationalism\"/>\n <sear:FACET_VALUES VALUE=\"125\"
82
+ KEY=\"Social Movements\"/>\n <sear:FACET_VALUES VALUE=\"2\" KEY=\"라푸라푸
83
+ 유출사고\"/>\n <sear:FACET_VALUES VALUE=\"756\" KEY=\" Organizations\"/>\n
84
+ \ <sear:FACET_VALUES VALUE=\"2611\" KEY=\" Criminal Law &amp; Procedure\"/>\n
85
+ \ <sear:FACET_VALUES VALUE=\"292\" KEY=\"Foreign Countries\"/>\n <sear:FACET_VALUES
86
+ VALUE=\"83\" KEY=\"Internationalism\"/>\n <sear:FACET_VALUES VALUE=\"3759\"
87
+ KEY=\" International\"/>\n <sear:FACET_VALUES VALUE=\"3421\" KEY=\"
88
+ Globalization\"/>\n <sear:FACET_VALUES VALUE=\"135\" KEY=\" Economically\"/>\n
89
+ \ <sear:FACET_VALUES VALUE=\"34\" KEY=\"Anti-globalization Movement\"/>\n
90
+ \ <sear:FACET_VALUES VALUE=\"145\" KEY=\"Feminism\"/>\n <sear:FACET_VALUES
91
+ VALUE=\"10\" KEY=\" globalization from below\"/>\n </sear:FACET>\n
92
+ \ <sear:FACET COUNT=\"2\" NAME=\"tlevel\">\n <sear:FACET_VALUES
93
+ VALUE=\"71901\" KEY=\"online_resources\"/>\n <sear:FACET_VALUES VALUE=\"48608\"
94
+ KEY=\"peer_reviewed\"/>\n </sear:FACET>\n <sear:FACET COUNT=\"10\"
95
+ NAME=\"pfilter\">\n <sear:FACET_VALUES VALUE=\"5901\" KEY=\"books\"/>\n
96
+ \ <sear:FACET_VALUES VALUE=\"3048\" KEY=\"reviews\"/>\n <sear:FACET_VALUES
97
+ VALUE=\"1793\" KEY=\"reference_entrys\"/>\n <sear:FACET_VALUES VALUE=\"2\"
98
+ KEY=\"journals\"/>\n <sear:FACET_VALUES VALUE=\"63469\" KEY=\"articles\"/>\n
99
+ \ <sear:FACET_VALUES VALUE=\"55\" KEY=\"Dissertations\"/>\n <sear:FACET_VALUES
100
+ VALUE=\"66\" KEY=\"audio_video\"/>\n <sear:FACET_VALUES VALUE=\"390\"
101
+ KEY=\"conference_proceedings\"/>\n <sear:FACET_VALUES VALUE=\"11\"
102
+ KEY=\"websites\"/>\n <sear:FACET_VALUES VALUE=\"12320\" KEY=\"newspaper_articles\"/>\n
103
+ \ </sear:FACET>\n <sear:FACET COUNT=\"53\" NAME=\"creationdate\">\n
104
+ \ <sear:FACET_VALUES VALUE=\"7969\" KEY=\"2008\"/>\n <sear:FACET_VALUES
105
+ VALUE=\"7938\" KEY=\"2009\"/>\n <sear:FACET_VALUES VALUE=\"7120\"
106
+ KEY=\"2006\"/>\n <sear:FACET_VALUES VALUE=\"7481\" KEY=\"2007\"/>\n
107
+ \ <sear:FACET_VALUES VALUE=\"5486\" KEY=\"2004\"/>\n <sear:FACET_VALUES
108
+ VALUE=\"6286\" KEY=\"2005\"/>\n <sear:FACET_VALUES VALUE=\"4259\"
109
+ KEY=\"2002\"/>\n <sear:FACET_VALUES VALUE=\"4915\" KEY=\"2003\"/>\n
110
+ \ <sear:FACET_VALUES VALUE=\"1\" KEY=\"1930\"/>\n <sear:FACET_VALUES
111
+ VALUE=\"3\" KEY=\"1970\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"1971\"/>\n
112
+ \ <sear:FACET_VALUES VALUE=\"2\" KEY=\"1973\"/>\n <sear:FACET_VALUES
113
+ VALUE=\"4\" KEY=\"1974\"/>\n <sear:FACET_VALUES VALUE=\"3\" KEY=\"1975\"/>\n
114
+ \ <sear:FACET_VALUES VALUE=\"2\" KEY=\"1976\"/>\n <sear:FACET_VALUES
115
+ VALUE=\"3669\" KEY=\"2012\"/>\n <sear:FACET_VALUES VALUE=\"2\" KEY=\"1977\"/>\n
116
+ \ <sear:FACET_VALUES VALUE=\"6674\" KEY=\"2011\"/>\n <sear:FACET_VALUES
117
+ VALUE=\"8\" KEY=\"1978\"/>\n <sear:FACET_VALUES VALUE=\"7780\" KEY=\"2010\"/>\n
118
+ \ <sear:FACET_VALUES VALUE=\"6\" KEY=\"1979\"/>\n <sear:FACET_VALUES
119
+ VALUE=\"196\" KEY=\"1990\"/>\n <sear:FACET_VALUES VALUE=\"2\" KEY=\"1940\"/>\n
120
+ \ <sear:FACET_VALUES VALUE=\"1\" KEY=\"500\"/>\n <sear:FACET_VALUES
121
+ VALUE=\"10\" KEY=\"1982\"/>\n <sear:FACET_VALUES VALUE=\"10\" KEY=\"1983\"/>\n
122
+ \ <sear:FACET_VALUES VALUE=\"3\" KEY=\"1980\"/>\n <sear:FACET_VALUES
123
+ VALUE=\"4\" KEY=\"1981\"/>\n <sear:FACET_VALUES VALUE=\"46\" KEY=\"1986\"/>\n
124
+ \ <sear:FACET_VALUES VALUE=\"52\" KEY=\"1987\"/>\n <sear:FACET_VALUES
125
+ VALUE=\"10\" KEY=\"1984\"/>\n <sear:FACET_VALUES VALUE=\"18\" KEY=\"1985\"/>\n
126
+ \ <sear:FACET_VALUES VALUE=\"62\" KEY=\"1988\"/>\n <sear:FACET_VALUES
127
+ VALUE=\"125\" KEY=\"1989\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"1959\"/>\n
128
+ \ <sear:FACET_VALUES VALUE=\"1\" KEY=\"1957\"/>\n <sear:FACET_VALUES
129
+ VALUE=\"1\" KEY=\"1952\"/>\n <sear:FACET_VALUES VALUE=\"647\" KEY=\"1995\"/>\n
130
+ \ <sear:FACET_VALUES VALUE=\"865\" KEY=\"1996\"/>\n <sear:FACET_VALUES
131
+ VALUE=\"1136\" KEY=\"1997\"/>\n <sear:FACET_VALUES VALUE=\"1546\"
132
+ KEY=\"1998\"/>\n <sear:FACET_VALUES VALUE=\"217\" KEY=\"1991\"/>\n
133
+ \ <sear:FACET_VALUES VALUE=\"250\" KEY=\"1992\"/>\n <sear:FACET_VALUES
134
+ VALUE=\"367\" KEY=\"1993\"/>\n <sear:FACET_VALUES VALUE=\"503\" KEY=\"1994\"/>\n
135
+ \ <sear:FACET_VALUES VALUE=\"2086\" KEY=\"1999\"/>\n <sear:FACET_VALUES
136
+ VALUE=\"1\" KEY=\"1966\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"1969\"/>\n
137
+ \ <sear:FACET_VALUES VALUE=\"1\" KEY=\"1968\"/>\n <sear:FACET_VALUES
138
+ VALUE=\"1\" KEY=\"1963\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"1964\"/>\n
139
+ \ <sear:FACET_VALUES VALUE=\"3692\" KEY=\"2001\"/>\n <sear:FACET_VALUES
140
+ VALUE=\"3359\" KEY=\"2000\"/>\n </sear:FACET>\n <sear:FACET
141
+ COUNT=\"20\" NAME=\"domain\">\n <sear:FACET_VALUES VALUE=\"11\" KEY=\"HathiTrust
142
+ Digital Library\"/>\n <sear:FACET_VALUES VALUE=\"4\" KEY=\"NARCIS
143
+ (Royal Netherlands Academy of Arts and Sciences)\"/>\n <sear:FACET_VALUES
144
+ VALUE=\"94\" KEY=\"ebrary Books\"/>\n <sear:FACET_VALUES VALUE=\"18\"
145
+ KEY=\"DBpia Articles\"/>\n <sear:FACET_VALUES VALUE=\"17\" KEY=\"Wiley
146
+ Online Library\"/>\n <sear:FACET_VALUES VALUE=\"514\" KEY=\"ERIC
147
+ (U.S. Dept. of Education)\"/>\n <sear:FACET_VALUES VALUE=\"10123\"
148
+ KEY=\"SciVerse ScienceDirect (Elsevier)\"/>\n <sear:FACET_VALUES
149
+ VALUE=\"3025\" KEY=\"Arts &amp; Sciences (JSTOR)\"/>\n <sear:FACET_VALUES
150
+ VALUE=\"1851\" KEY=\"Duke University Press Journals Online\"/>\n <sear:FACET_VALUES
151
+ VALUE=\"1648\" KEY=\"Oxford Journals (Oxford University Press)\"/>\n <sear:FACET_VALUES
152
+ VALUE=\"970\" KEY=\"SciVerse ScienceDirect Books (Elsevier)\"/>\n <sear:FACET_VALUES
153
+ VALUE=\"150\" KEY=\"Informa - Taylor &amp; Francis (CrossRef)\"/>\n <sear:FACET_VALUES
154
+ VALUE=\"47\" KEY=\"Ebook Library (EBL) (Ebooks Corp.)\"/>\n <sear:FACET_VALUES
155
+ VALUE=\"1\" KEY=\"CLEO Revues.org (CrossRef)\"/>\n <sear:FACET_VALUES
156
+ VALUE=\"9406\" KEY=\"Academic Law Reviews (LexisNexis)\"/>\n <sear:FACET_VALUES
157
+ VALUE=\"1173\" KEY=\"University of Chicago Press Journals\"/>\n <sear:FACET_VALUES
158
+ VALUE=\"304\" KEY=\"Sage Publications (CrossRef)\"/>\n <sear:FACET_VALUES
159
+ VALUE=\"8\" KEY=\"KISS (Korean studies Information Service System)\"/>\n <sear:FACET_VALUES
160
+ VALUE=\"2860\" KEY=\"Cambridge Journals Online (Cambridge University Press)\"/>\n
161
+ \ <sear:FACET_VALUES VALUE=\"38284\" KEY=\"OneFile (GALE)\"/>\n </sear:FACET>\n
162
+ \ <sear:FACET COUNT=\"20\" NAME=\"jtitle\">\n <sear:FACET_VALUES
163
+ VALUE=\"2\" KEY=\"공간과 사회\"/>\n <sear:FACET_VALUES VALUE=\"89\" KEY=\"Journal
164
+ Of Banking And Finance\"/>\n <sear:FACET_VALUES VALUE=\"2\" KEY=\"Canadian
165
+ Journal of Development Studies\"/>\n <sear:FACET_VALUES VALUE=\"102\"
166
+ KEY=\"Journal of World Business\"/>\n <sear:FACET_VALUES VALUE=\"2\"
167
+ KEY=\"Area\"/>\n <sear:FACET_VALUES VALUE=\"70\" KEY=\"Public Culture\"/>\n
168
+ \ <sear:FACET_VALUES VALUE=\"343\" KEY=\"The New York Times\"/>\n
169
+ \ <sear:FACET_VALUES VALUE=\"42\" KEY=\"International Labor And Working-class
170
+ History\"/>\n <sear:FACET_VALUES VALUE=\"4\" KEY=\"International
171
+ Social Science Journal\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"한국언어문화\"/>\n
172
+ \ <sear:FACET_VALUES VALUE=\"1\" KEY=\"Educational Theory\"/>\n <sear:FACET_VALUES
173
+ VALUE=\"28\" KEY=\"Refugee Survey Quarterly\"/>\n <sear:FACET_VALUES
174
+ VALUE=\"1\" KEY=\"Economy And Society\"/>\n <sear:FACET_VALUES VALUE=\"21\"
175
+ KEY=\"UNB - United News of Bangladesh\"/>\n <sear:FACET_VALUES VALUE=\"2\"
176
+ KEY=\"Canadian Journal Of Development Studies/revue Canadienne D'études Du
177
+ Développement\"/>\n <sear:FACET_VALUES VALUE=\"1\" KEY=\"담론201\"/>\n
178
+ \ <sear:FACET_VALUES VALUE=\"97\" KEY=\"Annals Of The American Academy
179
+ Of Political And Social Science\"/>\n <sear:FACET_VALUES VALUE=\"2\"
180
+ KEY=\"Contemporary Sociology: A Journal Of Reviews\"/>\n <sear:FACET_VALUES
181
+ VALUE=\"1\" KEY=\"로컬리티 인문학\"/>\n <sear:FACET_VALUES VALUE=\"3\" KEY=\"International
182
+ Journal of Urban and Regional Research\"/>\n </sear:FACET>\n </sear:FACETLIST>\n
183
+ \ <sear:DOCSET TOTAL_TIME=\"680\" LASTHIT=\"9\" FIRSTHIT=\"0\" TOTALHITS=\"85613\"
184
+ HIT_TIME=\"529\">\n <sear:DOC LOCAL=\"false\" SEARCH_ENGINE_TYPE=\"Primo
185
+ Central Search Engine\" SEARCH_ENGINE=\"PrimoCentralThirdNode\" NO=\"1\" RANK=\"0.07413188\"
186
+ ID=\"184765259\">\n <prim:PrimoNMBib>\n <prim:record>\n
187
+ \ <prim:control>\n <prim:sourcerecordid>S1090-9516(10)00042-8</prim:sourcerecordid>\n
188
+ \ <prim:sourceid>sciversesciencedirect_elsevier</prim:sourceid>\n
189
+ \ <prim:recordid>TN_sciversesciencedirect_elsevierS1090-9516(10)00042-8</prim:recordid>\n
190
+ \ <prim:sourcesystem>Other</prim:sourcesystem>\n </prim:control>\n
191
+ \ <prim:display>\n <prim:type>article</prim:type>\n
192
+ \ <prim:title>Multilingual organizations as ‘linguascapes’:
193
+ Negotiating the position of English through discursive practices</prim:title>\n
194
+ \ <prim:creator>Steyaert, Chris ; Ostendorp, Anja ; Gaibrois,
195
+ Claudine</prim:creator>\n <prim:ispartof>Journal of World Business,
196
+ 2011, Vol.46(3), pp.270-278</prim:ispartof>\n <prim:identifier>&lt;b>ISSN:
197
+ &lt;/b>1090-9516 ; &lt;b>DOI: &lt;/b>10.1016/j.jwb.2010.07.003</prim:identifier>\n
198
+ \ <prim:subject>Negotiated multilingualism ; Discourse analysis
199
+ ; Linguascape ; Englishization ; Globalization from below</prim:subject>\n
200
+ \ <prim:description>To address the complexity of multilingual
201
+ communication, this paper applies a discursive approach to analyze how people
202
+ account for the ways that specific languages are used in multilingual companies.
203
+ Through our discourse analysis, we identify six different ways of accounting
204
+ for language use. Further, we map the various tensions between these accounts
205
+ through which we can understand how the rise of English alters the discursive
206
+ negotiation in two different organizational contexts. Inspired by Appadurai's
207
+ understanding of “globalization from below”, we suggest the term linguascape
208
+ to conceptualize how the flow of languages that cross a specific organizational
209
+ space is discursively mediated.</prim:description>\n <prim:language>eng</prim:language>\n
210
+ \ <prim:source>SciVerse ScienceDirect Journals</prim:source>\n
211
+ \ <prim:lds50>peer_reviewed</prim:lds50>\n <prim:version>3</prim:version>\n
212
+ \ </prim:display>\n <prim:links>\n <prim:openurl>$$Topenurl_article</prim:openurl>\n
213
+ \ <prim:backlink>$$Uhttp://dx.doi.org/10.1016/j.jwb.2010.07.003$$EView_record_in_SciVerse_ScienceDirect
214
+ _Journals_(Elsevier)</prim:backlink>\n <prim:openurlfulltext>$$Topenurlfull_article</prim:openurlfulltext>\n
215
+ \ </prim:links>\n <prim:search>\n <prim:creatorcontrib>Steyaert,
216
+ Chris</prim:creatorcontrib>\n <prim:creatorcontrib>Ostendorp,
217
+ Anja</prim:creatorcontrib>\n <prim:creatorcontrib>Gaibrois,
218
+ Claudine</prim:creatorcontrib>\n <prim:title>Multilingual organizations
219
+ as ‘linguascapes’: Negotiating the position of English through discursive
220
+ practices</prim:title>\n <prim:description>To address the complexity
221
+ of multilingual communication, this paper applies a discursive approach to
222
+ analyze how people account for the ways that specific languages are used in
223
+ multilingual companies. Through our discourse analysis, we identify six different
224
+ ways of accounting for language use. Further, we map the various tensions
225
+ between these accounts through which we can understand how the rise of English
226
+ alters the discursive negotiation in two different organizational contexts.
227
+ Inspired by Appadurai's understanding of “globalization from below”, we suggest
228
+ the term linguascape to conceptualize how the flow of languages that cross
229
+ a specific organizational space is discursively mediated.</prim:description>\n
230
+ \ <prim:subject>Negotiated Multilingualism</prim:subject>\n
231
+ \ <prim:subject>Discourse Analysis</prim:subject>\n <prim:subject>Linguascape</prim:subject>\n
232
+ \ <prim:subject>Englishization</prim:subject>\n <prim:subject>Globalization
233
+ From Below</prim:subject>\n <prim:general>English</prim:general>\n
234
+ \ <prim:general>10.1016/j.jwb.2010.07.003</prim:general>\n <prim:general>SciVerse
235
+ ScienceDirect Journals</prim:general>\n <prim:sourceid>sciversesciencedirect_elsevier</prim:sourceid>\n
236
+ \ <prim:recordid>sciversesciencedirect_elsevierS1090-9516(10)00042-8</prim:recordid>\n
237
+ \ <prim:issn>10909516</prim:issn>\n <prim:issn>1090-9516</prim:issn>\n
238
+ \ <prim:rsrctype>article</prim:rsrctype>\n <prim:creationdate>2011</prim:creationdate>\n
239
+ \ <prim:addtitle>Journal of World Business</prim:addtitle>\n
240
+ \ <prim:searchscope>sciversesciencedirect_elsevier</prim:searchscope>\n
241
+ \ <prim:searchscope>elsevier_sciencedirect</prim:searchscope>\n
242
+ \ <prim:scope>sciversesciencedirect_elsevier</prim:scope>\n
243
+ \ <prim:scope>elsevier_sciencedirect</prim:scope>\n </prim:search>\n
244
+ \ <prim:sort>\n <prim:title>Multilingual organizations
245
+ as ‘linguascapes’: Negotiating the position of English through discursive
246
+ practices</prim:title>\n <prim:author>Steyaert, Chris ; Ostendorp,
247
+ Anja ; Gaibrois, Claudine</prim:author>\n <prim:creationdate>20110000</prim:creationdate>\n
248
+ \ </prim:sort>\n <prim:facets>\n <prim:language>eng</prim:language>\n
249
+ \ <prim:creationdate>2011</prim:creationdate>\n <prim:topic>Negotiated
250
+ Multilingualism</prim:topic>\n <prim:topic>Discourse Analysis</prim:topic>\n
251
+ \ <prim:topic>Linguascape</prim:topic>\n <prim:topic>Englishization</prim:topic>\n
252
+ \ <prim:topic>Globalization From Below</prim:topic>\n <prim:collection>ScienceDirect
253
+ (Elsevier)</prim:collection>\n <prim:collection>SciVerse ScienceDirect
254
+ (Elsevier)</prim:collection>\n <prim:prefilter>articles</prim:prefilter>\n
255
+ \ <prim:rsrctype>articles</prim:rsrctype>\n <prim:creatorcontrib>Steyaert,
256
+ Chris</prim:creatorcontrib>\n <prim:creatorcontrib>Ostendorp,
257
+ Anja</prim:creatorcontrib>\n <prim:creatorcontrib>Gaibrois,
258
+ Claudine</prim:creatorcontrib>\n <prim:jtitle>Journal Of World
259
+ Business</prim:jtitle>\n <prim:toplevel>peer_reviewed</prim:toplevel>\n
260
+ \ <prim:frbrgroupid>8038343634252234115</prim:frbrgroupid>\n
261
+ \ <prim:frbrtype>5</prim:frbrtype>\n </prim:facets>\n
262
+ \ <prim:frbr>\n <prim:t>2</prim:t>\n <prim:k1>2011</prim:k1>\n
263
+ \ <prim:k2>10909516</prim:k2>\n <prim:k3>10.1016/j.jwb.2010.07.003</prim:k3>\n
264
+ \ <prim:k4>46</prim:k4>\n <prim:k5>3</prim:k5>\n
265
+ \ <prim:k6>270</prim:k6>\n <prim:k7>journal of
266
+ world business</prim:k7>\n <prim:k8>multilingual organizations
267
+ as ‘linguascapes’ negotiating the position of english through discursive practices</prim:k8>\n
268
+ \ <prim:k9>multilingualorganizatices</prim:k9>\n <prim:k12>multilingualorganizations</prim:k12>\n
269
+ \ <prim:k15>chrissteyaert</prim:k15>\n <prim:k16>steyaertchris</prim:k16>\n
270
+ \ </prim:frbr>\n <prim:delivery>\n <prim:delcategory>Remote
271
+ Search Resource</prim:delcategory>\n <prim:fulltext>fulltext</prim:fulltext>\n
272
+ \ </prim:delivery>\n <prim:ranking>\n <prim:booster1>1</prim:booster1>\n
273
+ \ <prim:booster2>1</prim:booster2>\n <prim:pcg_type>publisher</prim:pcg_type>\n
274
+ \ </prim:ranking>\n <prim:addata>\n <prim:aulast>Steyaert</prim:aulast>\n
275
+ \ <prim:aufirst>Chris</prim:aufirst>\n <prim:au>Steyaert,
276
+ Chris</prim:au>\n <prim:au>Ostendorp, Anja</prim:au>\n <prim:au>Gaibrois,
277
+ Claudine</prim:au>\n <prim:atitle>Multilingual organizations
278
+ as ‘linguascapes’: Negotiating the position of English through discursive
279
+ practices</prim:atitle>\n <prim:jtitle>Journal of World Business</prim:jtitle>\n
280
+ \ <prim:date>2011</prim:date>\n <prim:risdate>2011</prim:risdate>\n
281
+ \ <prim:volume>46</prim:volume>\n <prim:issue>3</prim:issue>\n
282
+ \ <prim:spage>270</prim:spage>\n <prim:epage>278</prim:epage>\n
283
+ \ <prim:pages>270-278</prim:pages>\n <prim:issn>1090-9516</prim:issn>\n
284
+ \ <prim:genre>article</prim:genre>\n <prim:ristype>JOUR</prim:ristype>\n
285
+ \ <prim:abstract>To address the complexity of multilingual communication,
286
+ this paper applies a discursive approach to analyze how people account for
287
+ the ways that specific languages are used in multilingual companies. Through
288
+ our discourse analysis, we identify six different ways of accounting for language
289
+ use. Further, we map the various tensions between these accounts through which
290
+ we can understand how the rise of English alters the discursive negotiation
291
+ in two different organizational contexts. Inspired by Appadurai's understanding
292
+ of “globalization from below”, we suggest the term linguascape to conceptualize
293
+ how the flow of languages that cross a specific organizational space is discursively
294
+ mediated.</prim:abstract>\n <prim:doi>10.1016/j.jwb.2010.07.003</prim:doi>\n
295
+ \ </prim:addata>\n </prim:record>\n </prim:PrimoNMBib>\n
296
+ \ <sear:GETIT GetIt2=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
297
+ GetIt1=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
298
+ deliveryCategory=\"Remote Search Resource\"/>\n <sear:LINKS>\n <sear:openurl><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&rft.jtitle=Journal%20of%20World%20Business&rft.btitle=&rft.aulast=Steyaert&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Steyaert%2C%20Chris&rft.aucorp=&rft.date=2011&rft.volume=46&rft.issue=3&rft.part=&rft.quarter=&rft.ssn=&rft.spage=270&rft.epage=278&rft.pages=270-278&rft.artnum=&rft.issn=1090-9516&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1016/j.jwb.2010.07.003&rft.eisbn=&rft_dat=<sciversesciencedirect_elsevier>S1090-9516(10)00042-8</sciversesciencedirect_elsevier>&rft_id=info:oai/>]]></sear:openurl>\n
299
+ \ <sear:backlink>http://dx.doi.org/10.1016/j.jwb.2010.07.003</sear:backlink>\n
300
+ \ <sear:thumbnail/>\n <sear:openurlfulltext><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&rft.jtitle=Journal%20of%20World%20Business&rft.btitle=&rft.aulast=Steyaert&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Steyaert%2C%20Chris&rft.aucorp=&rft.date=2011&rft.volume=46&rft.issue=3&rft.part=&rft.quarter=&rft.ssn=&rft.spage=270&rft.epage=278&rft.pages=270-278&rft.artnum=&rft.issn=1090-9516&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1016/j.jwb.2010.07.003&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<sciversesciencedirect_elsevier>S1090-9516(10)00042-8</sciversesciencedirect_elsevier>&rft_id=info:oai/>]]></sear:openurlfulltext>\n
301
+ \ </sear:LINKS>\n </sear:DOC>\n <sear:DOC LOCAL=\"false\"
302
+ SEARCH_ENGINE_TYPE=\"Primo Central Search Engine\" SEARCH_ENGINE=\"PrimoCentralThirdNode\"
303
+ NO=\"2\" RANK=\"0.046819586\" ID=\"211789680\">\n <PrimoNMBib xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\">\n
304
+ \ <record>\n <control>\n <sourcerecordid>581Annals48</sourcerecordid>\n
305
+ \ <sourceid>lexisnexis_lawreviews</sourceid>\n <recordid>TN_lexisnexis_lawreviews581Annals48</recordid>\n
306
+ \ <sourcesystem>Other</sourcesystem>\n </control>\n
307
+ \ <display>\n <type>article</type>\n <title>Globalization
308
+ from Below: Toward a Collectively Rational and Democratic Global Commonwealth</title>\n
309
+ \ <creator>Christopher Chase-Dunn</creator>\n <ispartof>581
310
+ Annals 48 (2002)</ispartof>\n <identifier>&lt;b>ISSN: &lt;/b>0002-7162
311
+ ; &lt;b>EISSN: &lt;/b>1552-3349</identifier>\n <subject>Sociopolitical;
312
+ \ Opportunities; Institutional; Transnational; International; Semiperiphery;
313
+ \ Institutions; Intermediate; Economically; Hierarchical; Governments</subject>\n
314
+ \ <description>THE world-systems perspective is a historical
315
+ and structural theoretical framework that analyzes national societies as parts
316
+ of a larger stratified sociopolitical and economic system (Shannon 1996).
317
+ The focus is on the structural features of the larger system itself. It is
318
+ a world economy with a hierarchical division of labor for the production of
319
+ different kinds of goods. There are economically and militarily powerful countries
320
+ in the core, dependent, and dominated regions in the periphery, and a middle
321
+ sector of countries (the semiperiphery) in which states have intermediate
322
+ levels of economic and political/military power. The world market includes
323
+ both international trade and all the national economies, so the world-system
324
+ is the whole system, not just international relations. Local, regional, national,
325
+ international, transnational, and global networks of interaction constitute
326
+ the world-system. This set of nested and overlapping networks of human interaction
327
+ is itself located in the biosphere and the physical regimes of the planet
328
+ Earth, the solar system, our galaxy, and the larger processes and structures
329
+ of the physical universe. The world-systems perspective is both materialist
330
+ and institutional. It analyzes the evolution of human institutions while taking
331
+ account of the constraints and opportunities posed by physics, biology, and
332
+ the natural environment (Chase-Dunn and Hall 1997). WORLD-SYSTEMS PERSPECTIVE
333
+ The modern world-system is a global set of interaction networks that include
334
+ all the national societies. But world-systems have not always been global.
335
+ The modern world-system originated out of an expanding multicore Afro-Eurasian
336
+ world-system in which the Europeans rose ...</description>\n <source>Academic
337
+ Law Reviews (LexisNexis®)</source>\n <lds50>peer_reviewed</lds50>\n
338
+ \ </display>\n <links>\n <openurl>$$Topenurl_article</openurl>\n
339
+ \ <linktorsrc>$$Uhttp://www.lexisnexis.com/hottopics/lnacademic/?verb=sr&amp;csi=7327&amp;sr=cite(581+Annals+48)$$EView_record_in_LexisNexis&amp;#174;(subscribers_only)</linktorsrc>\n
340
+ \ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
341
+ \ </links>\n <search>\n <creatorcontrib>Christopher
342
+ Chase-Dunn</creatorcontrib>\n <title>Globalization from Below:
343
+ Toward a Collectively Rational and Democratic Global Commonwealth</title>\n
344
+ \ <description>THE world-systems perspective is a historical
345
+ and structural theoretical framework that analyzes national societies as parts
346
+ of a larger stratified sociopolitical and economic system (Shannon 1996).
347
+ The focus is on the structural features of the larger system itself. It is
348
+ a world economy with a hierarchical division of labor for the production of
349
+ different kinds of goods. There are economically and militarily powerful countries
350
+ in the core, dependent, and dominated regions in the periphery, and a middle
351
+ sector of countries (the semiperiphery) in which states have intermediate
352
+ levels of economic and political/military power. The world market includes
353
+ both international trade and all the national economies, so the world-system
354
+ is the whole system, not just international relations. Local, regional, national,
355
+ international, transnational, and global networks of interaction constitute
356
+ the world-system. This set of nested and overlapping networks of human interaction
357
+ is itself located in the biosphere and the physical regimes of the planet
358
+ Earth, the solar system, our galaxy, and the larger processes and structures
359
+ of the physical universe. The world-systems perspective is both materialist
360
+ and institutional. It analyzes the evolution of human institutions while taking
361
+ account of the constraints and opportunities posed by physics, biology, and
362
+ the natural environment (Chase-Dunn and Hall 1997). WORLD-SYSTEMS PERSPECTIVE
363
+ The modern world-system is a global set of interaction networks that include
364
+ all the national societies. But world-systems have not always been global.
365
+ The modern world-system originated out of an expanding multicore Afro-Eurasian
366
+ world-system in which the Europeans rose ...</description>\n <subject>Sociopolitical</subject>\n
367
+ \ <subject>Opportunities</subject>\n <subject>Institutional</subject>\n
368
+ \ <subject>Transnational</subject>\n <subject>International</subject>\n
369
+ \ <subject>Semiperiphery</subject>\n <subject>Institutions</subject>\n
370
+ \ <subject>Intermediate</subject>\n <subject>Economically</subject>\n
371
+ \ <subject>Hierarchical</subject>\n <subject>Governments</subject>\n
372
+ \ <sourceid>lexisnexis_lawreviews</sourceid>\n <recordid>lexisnexis_lawreviews581Annals48</recordid>\n
373
+ \ <issn>0002-7162</issn>\n <issn>00027162</issn>\n
374
+ \ <issn>1552-3349</issn>\n <issn>15523349</issn>\n
375
+ \ <rsrctype>article</rsrctype>\n <creationdate>2002</creationdate>\n
376
+ \ <addtitle>Annals</addtitle>\n <addtitle>Annals
377
+ of the American Academy of Political and Social Science</addtitle>\n <searchscope>lexisnexis_lawreviews</searchscope>\n
378
+ \ <searchscope>lexisnexis_alawr</searchscope>\n <scope>lexisnexis_lawreviews</scope>\n
379
+ \ <scope>lexisnexis_alawr</scope>\n </search>\n
380
+ \ <sort>\n <title>Globalization from Below: Toward
381
+ a Collectively Rational and Democratic Global Commonwealth</title>\n <author>Christopher
382
+ Chase-Dunn</author>\n <creationdate>20020501</creationdate>\n
383
+ \ </sort>\n <facets>\n <creationdate>2002</creationdate>\n
384
+ \ <topic>Sociopolitical</topic>\n <topic>Opportunities</topic>\n
385
+ \ <topic>Institutional</topic>\n <topic>Transnational</topic>\n
386
+ \ <topic>International</topic>\n <topic>Semiperiphery</topic>\n
387
+ \ <topic>Institutions</topic>\n <topic>Intermediate</topic>\n
388
+ \ <topic>Economically</topic>\n <topic>Hierarchical</topic>\n
389
+ \ <topic>Governments</topic>\n <collection>Academic
390
+ Law Reviews (LexisNexis)</collection>\n <prefilter>articles</prefilter>\n
391
+ \ <rsrctype>articles</rsrctype>\n <creatorcontrib>By
392
+ Christopher Chase-Dunn</creatorcontrib>\n <jtitle>Annals Of
393
+ The American Academy Of Political And Social Science</jtitle>\n <toplevel>peer_reviewed</toplevel>\n
394
+ \ <frbrgroupid>558362689</frbrgroupid>\n <frbrtype>6</frbrtype>\n
395
+ \ </facets>\n <frbr>\n <t>2</t>\n
396
+ \ <k1>2002</k1>\n <k2>00027162</k2>\n <k2>15523349</k2>\n
397
+ \ <k4>581</k4>\n <k6>48</k6>\n <k7>annals
398
+ of the american academy of political social science</k7>\n <k8>globalization
399
+ from below toward collectively rational democratic global commonwealth</k8>\n
400
+ \ <k9>globalizationfrombelealth</k9>\n <k12>globalizationfrombelowtow</k12>\n
401
+ \ <k15>bychristopherchasedunn</k15>\n <k16>bychristopherchasedunn</k16>\n
402
+ \ </frbr>\n <delivery>\n <delcategory>Remote
403
+ Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n
404
+ \ </delivery>\n <ranking>\n <booster1>1</booster1>\n
405
+ \ <booster2>1</booster2>\n <pcg_type>aggregator</pcg_type>\n
406
+ \ </ranking>\n <addata>\n <au>By Christopher
407
+ Chase-Dunn</au>\n <atitle>Globalization from Below: Toward
408
+ a Collectively Rational and Democratic Global Commonwealth</atitle>\n <jtitle>Annals
409
+ of the American Academy of Political and Social Science</jtitle>\n <date>20020501</date>\n
410
+ \ <risdate>20020501</risdate>\n <volume>581</volume>\n
411
+ \ <spage>48</spage>\n <epage>172</epage>\n <issn>0002-7162</issn>\n
412
+ \ <eissn>1552-3349</eissn>\n <genre>article</genre>\n
413
+ \ <ristype>JOUR</ristype>\n <abstract>THE world-systems
414
+ perspective is a historical and structural theoretical framework that analyzes
415
+ national societies as parts of a larger stratified sociopolitical and economic
416
+ system (Shannon 1996). The focus is on the structural features of the larger
417
+ system itself. It is a world economy with a hierarchical division of labor
418
+ for the production of different kinds of goods. There are economically and
419
+ militarily powerful countries in the core, dependent, and dominated regions
420
+ in the periphery, and a middle sector of countries (the semiperiphery) in
421
+ which states have intermediate levels of economic and political/military power.
422
+ The world market includes both international trade and all the national economies,
423
+ so the world-system is the whole system, not just international relations.
424
+ Local, regional, national, international, transnational, and global networks
425
+ of interaction constitute the world-system. This set of nested and overlapping
426
+ networks of human interaction is itself located in the biosphere and the physical
427
+ regimes of the planet Earth, the solar system, our galaxy, and the larger
428
+ processes and structures of the physical universe. The world-systems perspective
429
+ is both materialist and institutional. It analyzes the evolution of human
430
+ institutions while taking account of the constraints and opportunities posed
431
+ by physics, biology, and the natural environment (Chase-Dunn and Hall 1997).
432
+ WORLD-SYSTEMS PERSPECTIVE The modern world-system is a global set of interaction
433
+ networks that include all the national societies. But world-systems have not
434
+ always been global. The modern world-system originated out of an expanding
435
+ multicore Afro-Eurasian world-system in which the Europeans rose ...</abstract>\n
436
+ \ </addata>\n </record>\n </PrimoNMBib>\n
437
+ \ <sear:GETIT GetIt2=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
438
+ GetIt1=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
439
+ deliveryCategory=\"Remote Search Resource\"/>\n <sear:LINKS>\n <sear:openurl><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-lexisnexis_lawreviews&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Globalization%20from%20Below:%20Toward%20a%20Collectively%20Rational%20and%20Democratic%20Global%20Commonwealth&rft.jtitle=Annals%20of%20the%20American%20Academy%20of%20Political%20and%20Social%20Science&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=By%20Christopher%20Chase-Dunn&rft.aucorp=&rft.date=20020501&rft.volume=581&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=48&rft.epage=172&rft.pages=&rft.artnum=&rft.issn=0002-7162&rft.eissn=1552-3349&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.eisbn=&rft_dat=<lexisnexis_lawreviews>581Annals48</lexisnexis_lawreviews>&rft_id=info:oai/>]]></sear:openurl>\n
440
+ \ <sear:linktorsrc>http://www.lexisnexis.com/hottopics/lnacademic/?verb=sr&amp;csi=7327&amp;sr=cite(581+Annals+48)</sear:linktorsrc>\n
441
+ \ <sear:thumbnail/>\n <sear:openurlfulltext><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-lexisnexis_lawreviews&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Globalization%20from%20Below:%20Toward%20a%20Collectively%20Rational%20and%20Democratic%20Global%20Commonwealth&rft.jtitle=Annals%20of%20the%20American%20Academy%20of%20Political%20and%20Social%20Science&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=By%20Christopher%20Chase-Dunn&rft.aucorp=&rft.date=20020501&rft.volume=581&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=48&rft.epage=172&rft.pages=&rft.artnum=&rft.issn=0002-7162&rft.eissn=1552-3349&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<lexisnexis_lawreviews>581Annals48</lexisnexis_lawreviews>&rft_id=info:oai/>]]></sear:openurlfulltext>\n
442
+ \ </sear:LINKS>\n </sear:DOC>\n <sear:DOC LOCAL=\"false\"
443
+ SEARCH_ENGINE_TYPE=\"Primo Central Search Engine\" SEARCH_ENGINE=\"PrimoCentralThirdNode\"
444
+ NO=\"3\" RANK=\"0.035256714\" ID=\"172452148\">\n <PrimoNMBib xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\">\n
445
+ \ <record>\n <control>\n <sourcerecordid>67161994</sourcerecordid>\n
446
+ \ <sourceid>gale_ofa</sourceid>\n <recordid>TN_gale_ofa67161994</recordid>\n
447
+ \ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
448
+ \ </control>\n <display>\n <type>article</type>\n
449
+ \ <title>Globalization From Below : INTERNATIONAL SOLIDARITY
450
+ IS THE KEY TO CONSOLIDATING THE LEGACY OF SEATTLE.(grassroots social movements)</title>\n
451
+ \ <creator>Brecher, Jeremy ; Costello, Tim ; Smith, Brendan</creator>\n
452
+ \ <ispartof>The Nation, Dec 4, 2000, Vol.271(18), p.19</ispartof>\n
453
+ \ <identifier>&lt;b>ISSN: &lt;/b>0027-8378</identifier>\n <subject>International
454
+ Economic Relations -- Social Aspects ; Activists -- Behavior ; Environmentalism
455
+ -- Political Aspects ; Social Movements -- Political Aspects ; Feminism --
456
+ Political Aspects ; Labor Movement -- Political Aspects</subject>\n <source>Cengage
457
+ Learning, Inc.</source>\n <version>1</version>\n </display>\n
458
+ \ <links>\n <openurl>$$Topenurl_article</openurl>\n
459
+ \ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
460
+ \ </links>\n <search>\n <creatorcontrib>Brecher,
461
+ Jeremy</creatorcontrib>\n <creatorcontrib>Costello, Tim</creatorcontrib>\n
462
+ \ <creatorcontrib>Smith, Brendan</creatorcontrib>\n <title>Globalization
463
+ From Below : INTERNATIONAL SOLIDARITY IS THE KEY TO CONSOLIDATING THE LEGACY
464
+ OF SEATTLE.(grassroots social movements)</title>\n <subject>International
465
+ economic relations--Social aspects</subject>\n <subject>Activists--Behavior</subject>\n
466
+ \ <subject>Environmentalism--Political aspects</subject>\n <subject>Social
467
+ movements--Political aspects</subject>\n <subject>Feminism--Political
468
+ aspects</subject>\n <subject>Labor movement--Political aspects</subject>\n
469
+ \ <subject>00WOR</subject>\n <subject>World</subject>\n
470
+ \ <subject>Demonstrations and protests</subject>\n <subject>International
471
+ Monetary Fund</subject>\n <subject>World Trade Organization</subject>\n
472
+ \ <general>The Nation Company L.P.</general>\n <general>Cengage
473
+ Learning, Inc.</general>\n <sourceid>gale_ofa</sourceid>\n
474
+ \ <recordid>gale_ofa67161994</recordid>\n <issn>0027-8378</issn>\n
475
+ \ <issn>00278378</issn>\n <rsrctype>article</rsrctype>\n
476
+ \ <creationdate>2000</creationdate>\n <recordtype>article</recordtype>\n
477
+ \ <addtitle>The Nation</addtitle>\n <searchscope>OneFile</searchscope>\n
478
+ \ <scope>OneFile</scope>\n </search>\n <sort>\n
479
+ \ <title>Globalization From Below : INTERNATIONAL SOLIDARITY
480
+ IS THE KEY TO CONSOLIDATING THE LEGACY OF SEATTLE.(grassroots social movements)</title>\n
481
+ \ <author>Brecher, Jeremy ; Costello, Tim ; Smith, Brendan</author>\n
482
+ \ <creationdate>20001204</creationdate>\n </sort>\n
483
+ \ <facets>\n <creationdate>2000</creationdate>\n
484
+ \ <topic>International Economic Relations–Social Aspects</topic>\n
485
+ \ <topic>Activists–Behavior</topic>\n <topic>Environmentalism–Political
486
+ Aspects</topic>\n <topic>Social Movements–Political Aspects</topic>\n
487
+ \ <topic>Feminism–Political Aspects</topic>\n <topic>Labor
488
+ Movement–Political Aspects</topic>\n <collection>OneFile (GALE)</collection>\n
489
+ \ <prefilter>articles</prefilter>\n <rsrctype>articles</rsrctype>\n
490
+ \ <creatorcontrib>Brecher, Jeremy</creatorcontrib>\n <creatorcontrib>Costello,
491
+ Tim</creatorcontrib>\n <creatorcontrib>Smith, Brendan</creatorcontrib>\n
492
+ \ <jtitle>The Nation</jtitle>\n <frbrgroupid>6516380186211662130</frbrgroupid>\n
493
+ \ <frbrtype>5</frbrtype>\n </facets>\n <frbr>\n
494
+ \ <t>2</t>\n <k1>2000</k1>\n <k2>00278378</k2>\n
495
+ \ <k4>271</k4>\n <k5>18</k5>\n <k6>19</k6>\n
496
+ \ <k7>nation</k7>\n <k8>globalization from below
497
+ international solidarity is the key to consolidating the legacy of seattle</k8>\n
498
+ \ <k9>globalizationfrombelattle</k9>\n <k12>globalizationfrombelowint</k12>\n
499
+ \ <k15>jeremybrecher</k15>\n <k16>brecherjeremy</k16>\n
500
+ \ </frbr>\n <delivery>\n <delcategory>Remote
501
+ Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n
502
+ \ </delivery>\n <ranking>\n <booster1>1</booster1>\n
503
+ \ <booster2>1</booster2>\n <pcg_type>aggregator</pcg_type>\n
504
+ \ </ranking>\n <addata>\n <au>Brecher,
505
+ Jeremy</au>\n <au>Costello, Tim</au>\n <au>Smith,
506
+ Brendan</au>\n <atitle>Globalization From Below : INTERNATIONAL
507
+ SOLIDARITY IS THE KEY TO CONSOLIDATING THE LEGACY OF SEATTLE.(grassroots social
508
+ movements)</atitle>\n <jtitle>The Nation</jtitle>\n <date>20001204</date>\n
509
+ \ <risdate>20001204</risdate>\n <volume>271</volume>\n
510
+ \ <issue>18</issue>\n <spage>19</spage>\n <issn>0027-8378</issn>\n
511
+ \ <genre>article</genre>\n <ristype>JOUR</ristype>\n
512
+ \ <pub>The Nation Company L.P.</pub>\n <lad01>gale_ofa</lad01>\n
513
+ \ </addata>\n </record>\n </PrimoNMBib>\n
514
+ \ <sear:GETIT GetIt2=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
515
+ GetIt1=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
516
+ deliveryCategory=\"Remote Search Resource\"/>\n <sear:LINKS>\n <sear:openurl><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Globalization%20From%20Below%20:%20INTERNATIONAL%20SOLIDARITY%20IS%20THE%20KEY%20TO%20CONSOLIDATING%20THE%20LEGACY%20OF%20SEATTLE.(grassroots%20social%20movements)&rft.jtitle=The%20Nation&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Brecher%2C%20Jeremy&rft.aucorp=&rft.date=20001204&rft.volume=271&rft.issue=18&rft.part=&rft.quarter=&rft.ssn=&rft.spage=19&rft.epage=&rft.pages=&rft.artnum=&rft.issn=0027-8378&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.eisbn=&rft_dat=<gale_ofa>67161994</gale_ofa>&rft_id=info:oai/>]]></sear:openurl>\n
517
+ \ <sear:thumbnail/>\n <sear:openurlfulltext><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-gale_ofa&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Globalization%20From%20Below%20:%20INTERNATIONAL%20SOLIDARITY%20IS%20THE%20KEY%20TO%20CONSOLIDATING%20THE%20LEGACY%20OF%20SEATTLE.(grassroots%20social%20movements)&rft.jtitle=The%20Nation&rft.btitle=&rft.aulast=&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Brecher%2C%20Jeremy&rft.aucorp=&rft.date=20001204&rft.volume=271&rft.issue=18&rft.part=&rft.quarter=&rft.ssn=&rft.spage=19&rft.epage=&rft.pages=&rft.artnum=&rft.issn=0027-8378&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<gale_ofa>67161994</gale_ofa>&rft_id=info:oai/>]]></sear:openurlfulltext>\n
518
+ \ </sear:LINKS>\n </sear:DOC>\n <sear:DOC LOCAL=\"false\"
519
+ SEARCH_ENGINE_TYPE=\"Primo Central Search Engine\" SEARCH_ENGINE=\"PrimoCentralThirdNode\"
520
+ NO=\"4\" RANK=\"0.03283568\" ID=\"299297826\">\n <PrimoNMBib xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\">\n
521
+ \ <record>\n <control>\n <sourcerecordid>10.1086/518061</sourcerecordid>\n
522
+ \ <sourceid>ucp</sourceid>\n <recordid>TN_ucp10.1086/518061</recordid>\n
523
+ \ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
524
+ \ </control>\n <display>\n <type>article</type>\n
525
+ \ <title>Globalization from Below: Transnational Activists and
526
+ Protest Networks (Book-Review)</title>\n <creator>Myers, DanielJ</creator>\n
527
+ \ <ispartof>American Journal of Sociology, Vol.112(5), p.1572-1573</ispartof>\n
528
+ \ <identifier><![CDATA[<b>ISSN: </b>0002-9602 ; <b>E-ISSN: </b>1537-5390
529
+ ; <b>DOI: </b>10.1086/518061]]></identifier>\n <source>University
530
+ of Chicago Press Journals</source>\n <lds50>peer_reviewed</lds50>\n
531
+ \ </display>\n <links>\n <openurl>$$Topenurl_article</openurl>\n
532
+ \ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
533
+ \ </links>\n <search>\n <creatorcontrib>Myers,
534
+ DanielJ</creatorcontrib>\n <title>Globalization from Below:
535
+ Transnational Activists and Protest Networks (Book-Review)</title>\n <general>10.1086/518061</general>\n
536
+ \ <sourceid>ucp</sourceid>\n <recordid>ucp10.1086/518061</recordid>\n
537
+ \ <issn>0002-9602</issn>\n <issn>1537-5390</issn>\n
538
+ \ <rsrctype>article</rsrctype>\n <creationdate>2007</creationdate>\n
539
+ \ <addtitle>American Journal of Sociology</addtitle>\n <searchscope>ucp</searchscope>\n
540
+ \ <searchscope>University of Chicago Press Journals</searchscope>\n
541
+ \ <scope>ucp</scope>\n <scope>University of Chicago
542
+ Press Journals</scope>\n </search>\n <sort>\n <title>Globalization
543
+ from Below: Transnational Activists and Protest Networks (Book-Review)</title>\n
544
+ \ <author>Myers, DanielJ</author>\n <creationdate>20070300</creationdate>\n
545
+ \ </sort>\n <facets>\n <creationdate>2007</creationdate>\n
546
+ \ <collection>University of Chicago Press Journals</collection>\n
547
+ \ <prefilter>articles</prefilter>\n <rsrctype>articles</rsrctype>\n
548
+ \ <creatorcontrib>Myers, DanielJ.</creatorcontrib>\n <jtitle>American
549
+ Journal of Sociology</jtitle>\n <toplevel>peer_reviewed</toplevel>\n
550
+ \ <frbrgroupid>266517745</frbrgroupid>\n <frbrtype>6</frbrtype>\n
551
+ \ </facets>\n <frbr>\n <t>2</t>\n
552
+ \ <k1>2007</k1>\n <k2>00029602</k2>\n <k2>15375390</k2>\n
553
+ \ <k3>10.1086/518061</k3>\n <k4>112</k4>\n <k5>5</k5>\n
554
+ \ <k6>1572</k6>\n <k7>american journal of sociology</k7>\n
555
+ \ <k15>danieljmyers</k15>\n <k16>myersdanielj</k16>\n
556
+ \ </frbr>\n <delivery>\n <delcategory>Remote
557
+ Search Resource</delcategory>\n <fulltext>no_fulltext</fulltext>\n
558
+ \ </delivery>\n <ranking>\n <booster1>1</booster1>\n
559
+ \ <booster2>1</booster2>\n <pcg_type>publisher</pcg_type>\n
560
+ \ </ranking>\n <addata>\n <aulast>Myers</aulast>\n
561
+ \ <aufirst>DanielJ.</aufirst>\n <au>Myers, DanielJ.</au>\n
562
+ \ <jtitle>American Journal of Sociology</jtitle>\n <date>200703</date>\n
563
+ \ <volume>112</volume>\n <issue>5</issue>\n <spage>1572</spage>\n
564
+ \ <epage>1573</epage>\n <issn>0002-9602</issn>\n
565
+ \ <eissn>1537-5390</eissn>\n <format>journal</format>\n
566
+ \ <genre>article</genre>\n <ristype>JOUR</ristype>\n
567
+ \ <pub>The University of Chicago Press</pub>\n <doi>10.1086/518061</doi>\n
568
+ \ </addata>\n </record>\n </PrimoNMBib>\n
569
+ \ <sear:GETIT GetIt2=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
570
+ GetIt1=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
571
+ deliveryCategory=\"Remote Search Resource\"/>\n <sear:LINKS>\n <sear:openurl><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-ucp&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=&rft.jtitle=American%20Journal%20of%20Sociology&rft.btitle=&rft.aulast=Myers&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Myers%2C%20DanielJ.&rft.aucorp=&rft.date=200703&rft.volume=112&rft.issue=5&rft.part=&rft.quarter=&rft.ssn=&rft.spage=1572&rft.epage=1573&rft.pages=&rft.artnum=&rft.issn=0002-9602&rft.eissn=1537-5390&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1086/518061&rft.eisbn=&rft_dat=<ucp>10.1086/518061</ucp>&rft_id=info:oai/>]]></sear:openurl>\n
572
+ \ <sear:thumbnail/>\n <sear:openurlfulltext><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-ucp&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=&rft.jtitle=American%20Journal%20of%20Sociology&rft.btitle=&rft.aulast=Myers&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Myers%2C%20DanielJ.&rft.aucorp=&rft.date=200703&rft.volume=112&rft.issue=5&rft.part=&rft.quarter=&rft.ssn=&rft.spage=1572&rft.epage=1573&rft.pages=&rft.artnum=&rft.issn=0002-9602&rft.eissn=1537-5390&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1086/518061&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<ucp>10.1086/518061</ucp>&rft_id=info:oai/>]]></sear:openurlfulltext>\n
573
+ \ </sear:LINKS>\n </sear:DOC>\n <sear:DOC LOCAL=\"false\"
574
+ SEARCH_ENGINE_TYPE=\"Primo Central Search Engine\" SEARCH_ENGINE=\"PrimoCentralThirdNode\"
575
+ NO=\"5\" RANK=\"0.027729224\" ID=\"218042679\">\n <PrimoNMBib xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\">\n
576
+ \ <record>\n <control>\n <sourcerecordid>10.1177/009430610603600252</sourcerecordid>\n
577
+ \ <sourceid>crossref</sourceid>\n <recordid>TN_crossref10.1177/009430610603600252</recordid>\n
578
+ \ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
579
+ \ </control>\n <display>\n <type>article</type>\n
580
+ \ <title>Product Review: Globalization from Below: Transnational
581
+ Activists and Protest Networks</title>\n <creator>Smith, J.</creator>\n
582
+ \ <ispartof>Contemporary Sociology: A Journal of Reviews, 2007,
583
+ Vol.36(2), pp.191-192</ispartof>\n <identifier>&lt;b>ISSN:&lt;/b>
584
+ 0094-3061 ; &lt;b>DOI:&lt;/b> http://dx.doi.org/10.1177/009430610603600252</identifier>\n
585
+ \ <language>eng</language>\n <source>Sage Publications
586
+ (via CrossRef)</source>\n <lds50>peer_reviewed</lds50>\n </display>\n
587
+ \ <links>\n <openurl>$$Topenurl_article</openurl>\n
588
+ \ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
589
+ \ <addlink>$$Uhttp://fe.p.prod.primo.saas.exlibrisgroup.com:1701/primo_library/libweb/aboutCrossref.html$$DView
590
+ CrossRef copyright notice</addlink>\n </links>\n <search>\n
591
+ \ <creatorcontrib>Smith, J.</creatorcontrib>\n <title>Product
592
+ Review: Globalization from Below: Transnational Activists and Protest Networks</title>\n
593
+ \ <general>English</general>\n <general>10.1177/009430610603600252</general>\n
594
+ \ <sourceid>crossref</sourceid>\n <recordid>crossref10.1177/009430610603600252</recordid>\n
595
+ \ <issn>0094-3061</issn>\n <issn>00943061</issn>\n
596
+ \ <rsrctype>article</rsrctype>\n <creationdate>2007</creationdate>\n
597
+ \ <addtitle>Contemporary Sociology: A Journal of Reviews</addtitle>\n
598
+ \ <searchscope>crossref_sp</searchscope>\n <searchscope>CrossRef</searchscope>\n
599
+ \ <searchscope>Crossref</searchscope>\n <searchscope>crossref</searchscope>\n
600
+ \ <scope>crossref_sp</scope>\n <scope>CrossRef</scope>\n
601
+ \ <scope>Crossref</scope>\n <scope>crossref</scope>\n
602
+ \ </search>\n <sort>\n <title>Product
603
+ Review: Globalization from Below: Transnational Activists and Protest Networks</title>\n
604
+ \ <author>Smith, J.</author>\n <creationdate>20070301</creationdate>\n
605
+ \ </sort>\n <facets>\n <language>eng</language>\n
606
+ \ <creationdate>2007</creationdate>\n <collection>Sage
607
+ Publications (CrossRef)</collection>\n <prefilter>articles</prefilter>\n
608
+ \ <rsrctype>articles</rsrctype>\n <creatorcontrib>Smith,
609
+ J.</creatorcontrib>\n <jtitle>Contemporary Sociology: A Journal
610
+ Of Reviews</jtitle>\n <toplevel>peer_reviewed</toplevel>\n
611
+ \ <frbrgroupid>330710846</frbrgroupid>\n <frbrtype>6</frbrtype>\n
612
+ \ </facets>\n <frbr>\n <t>2</t>\n
613
+ \ <k1>2007</k1>\n <k2>00943061</k2>\n <k3>10.1177/009430610603600252</k3>\n
614
+ \ <k4>36</k4>\n <k5>2</k5>\n <k6>191</k6>\n
615
+ \ <k7>contemporary sociology journal of reviews</k7>\n <k8>product
616
+ review globalization from below transnational activists protest networks</k8>\n
617
+ \ <k9>productreviewglobaliworks</k9>\n <k12>productreviewglobalizatio</k12>\n
618
+ \ <k15>jsmith</k15>\n <k16>smithj</k16>\n </frbr>\n
619
+ \ <delivery>\n <delcategory>Remote Search Resource</delcategory>\n
620
+ \ <fulltext>fulltext</fulltext>\n </delivery>\n
621
+ \ <ranking>\n <booster1>1</booster1>\n <booster2>1</booster2>\n
622
+ \ <pcg_type>aggregator_crossref</pcg_type>\n </ranking>\n
623
+ \ <addata>\n <aulast>Smith</aulast>\n <aufirst>J.</aufirst>\n
624
+ \ <au>Smith, J.</au>\n <atitle>Product Review:
625
+ Globalization from Below: Transnational Activists and Protest Networks</atitle>\n
626
+ \ <jtitle>Contemporary Sociology: A Journal of Reviews</jtitle>\n
627
+ \ <date>20070301</date>\n <risdate>20070301</risdate>\n
628
+ \ <volume>36</volume>\n <issue>2</issue>\n <spage>191</spage>\n
629
+ \ <epage>192</epage>\n <issn>0094-3061</issn>\n
630
+ \ <eissn>0094-3061</eissn>\n <genre>article</genre>\n
631
+ \ <ristype>JOUR</ristype>\n <doi>10.1177/009430610603600252</doi>\n
632
+ \ </addata>\n </record>\n </PrimoNMBib>\n
633
+ \ <sear:GETIT GetIt2=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
634
+ GetIt1=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
635
+ deliveryCategory=\"Remote Search Resource\"/>\n <sear:LINKS>\n <sear:openurl><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-crossref&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Product%20Review:%20Globalization%20from%20Below:%20Transnational%20Activists%20and%20Protest%20Networks&rft.jtitle=Contemporary%20Sociology:%20A%20Journal%20of%20Reviews&rft.btitle=&rft.aulast=Smith&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Smith%2C%20J.&rft.aucorp=&rft.date=20070301&rft.volume=36&rft.issue=2&rft.part=&rft.quarter=&rft.ssn=&rft.spage=191&rft.epage=192&rft.pages=&rft.artnum=&rft.issn=0094-3061&rft.eissn=0094-3061&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1177/009430610603600252&rft.eisbn=&rft_dat=<crossref>10.1177/009430610603600252</crossref>&rft_id=info:oai/>]]></sear:openurl>\n
636
+ \ <sear:thumbnail/>\n <sear:openurlfulltext><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-crossref&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Product%20Review:%20Globalization%20from%20Below:%20Transnational%20Activists%20and%20Protest%20Networks&rft.jtitle=Contemporary%20Sociology:%20A%20Journal%20of%20Reviews&rft.btitle=&rft.aulast=Smith&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Smith%2C%20J.&rft.aucorp=&rft.date=20070301&rft.volume=36&rft.issue=2&rft.part=&rft.quarter=&rft.ssn=&rft.spage=191&rft.epage=192&rft.pages=&rft.artnum=&rft.issn=0094-3061&rft.eissn=0094-3061&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1177/009430610603600252&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<crossref>10.1177/009430610603600252</crossref>&rft_id=info:oai/>]]></sear:openurlfulltext>\n
637
+ \ <sear:addlink>http://fe.p.prod.primo.saas.exlibrisgroup.com:1701/primo_library/libweb/aboutCrossref.html</sear:addlink>\n
638
+ \ </sear:LINKS>\n </sear:DOC>\n <sear:DOC LOCAL=\"false\"
639
+ SEARCH_ENGINE_TYPE=\"Primo Central Search Engine\" SEARCH_ENGINE=\"PrimoCentralThirdNode\"
640
+ NO=\"6\" RANK=\"0.027729223\" ID=\"184910815\">\n <PrimoNMBib xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\">\n
641
+ \ <record>\n <control>\n <sourcerecordid>10.1177/009430610703600252</sourcerecordid>\n
642
+ \ <sourceid>crossref</sourceid>\n <recordid>TN_crossref10.1177/009430610703600252</recordid>\n
643
+ \ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
644
+ \ </control>\n <display>\n <type>article</type>\n
645
+ \ <title>Globalization from Below: Transnational Activists and
646
+ Protest Networks</title>\n <creator>Smith, J.</creator>\n <ispartof>Contemporary
647
+ Sociology: A Journal of Reviews, 2007, Vol.36(2), pp.191-192</ispartof>\n
648
+ \ <identifier>&lt;b>ISSN:&lt;/b> 0094-3061 ; &lt;b>DOI:&lt;/b>
649
+ http://dx.doi.org/10.1177/009430610703600252</identifier>\n <language>eng</language>\n
650
+ \ <source>Sage Publications (via CrossRef)</source>\n <lds50>peer_reviewed</lds50>\n
651
+ \ <version>2</version>\n </display>\n <links>\n
652
+ \ <openurl>$$Topenurl_article</openurl>\n <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
653
+ \ <addlink>$$Uhttp://fe.p.prod.primo.saas.exlibrisgroup.com:1701/primo_library/libweb/aboutCrossref.html$$DView
654
+ CrossRef copyright notice</addlink>\n </links>\n <search>\n
655
+ \ <creatorcontrib>Smith, J.</creatorcontrib>\n <title>Globalization
656
+ from Below: Transnational Activists and Protest Networks</title>\n <general>English</general>\n
657
+ \ <general>10.1177/009430610703600252</general>\n <sourceid>crossref</sourceid>\n
658
+ \ <recordid>crossref10.1177/009430610703600252</recordid>\n
659
+ \ <issn>0094-3061</issn>\n <issn>00943061</issn>\n
660
+ \ <rsrctype>article</rsrctype>\n <creationdate>2007</creationdate>\n
661
+ \ <addtitle>Contemporary Sociology: A Journal of Reviews</addtitle>\n
662
+ \ <searchscope>crossref_sp</searchscope>\n <searchscope>CrossRef</searchscope>\n
663
+ \ <searchscope>Crossref</searchscope>\n <searchscope>crossref</searchscope>\n
664
+ \ <scope>crossref_sp</scope>\n <scope>CrossRef</scope>\n
665
+ \ <scope>Crossref</scope>\n <scope>crossref</scope>\n
666
+ \ </search>\n <sort>\n <title>Globalization
667
+ from Below: Transnational Activists and Protest Networks</title>\n <author>Smith,
668
+ J.</author>\n <creationdate>20070301</creationdate>\n </sort>\n
669
+ \ <facets>\n <language>eng</language>\n <creationdate>2007</creationdate>\n
670
+ \ <collection>Sage Publications (CrossRef)</collection>\n <prefilter>articles</prefilter>\n
671
+ \ <rsrctype>articles</rsrctype>\n <creatorcontrib>Smith,
672
+ J.</creatorcontrib>\n <jtitle>Contemporary Sociology: A Journal
673
+ Of Reviews</jtitle>\n <toplevel>peer_reviewed</toplevel>\n
674
+ \ <frbrgroupid>8392744814617276471</frbrgroupid>\n <frbrtype>5</frbrtype>\n
675
+ \ </facets>\n <frbr>\n <t>2</t>\n
676
+ \ <k1>2007</k1>\n <k2>00943061</k2>\n <k3>10.1177/009430610703600252</k3>\n
677
+ \ <k4>36</k4>\n <k5>2</k5>\n <k6>191</k6>\n
678
+ \ <k7>contemporary sociology journal of reviews</k7>\n <k8>globalization
679
+ from below transnational activists protest networks</k8>\n <k9>globalizationfrombelworks</k9>\n
680
+ \ <k12>globalizationfrombelowtra</k12>\n <k15>jsmith</k15>\n
681
+ \ <k16>smithj</k16>\n </frbr>\n <delivery>\n
682
+ \ <delcategory>Remote Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n
683
+ \ </delivery>\n <ranking>\n <booster1>1</booster1>\n
684
+ \ <booster2>1</booster2>\n <pcg_type>aggregator_crossref</pcg_type>\n
685
+ \ </ranking>\n <addata>\n <aulast>Smith</aulast>\n
686
+ \ <aufirst>J.</aufirst>\n <au>Smith, J.</au>\n
687
+ \ <atitle>Globalization from Below: Transnational Activists
688
+ and Protest Networks</atitle>\n <jtitle>Contemporary Sociology:
689
+ A Journal of Reviews</jtitle>\n <date>20070301</date>\n <risdate>20070301</risdate>\n
690
+ \ <volume>36</volume>\n <issue>2</issue>\n <spage>191</spage>\n
691
+ \ <epage>192</epage>\n <issn>0094-3061</issn>\n
692
+ \ <eissn>0094-3061</eissn>\n <genre>article</genre>\n
693
+ \ <ristype>JOUR</ristype>\n <doi>10.1177/009430610703600252</doi>\n
694
+ \ </addata>\n </record>\n </PrimoNMBib>\n
695
+ \ <sear:GETIT GetIt2=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
696
+ GetIt1=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
697
+ deliveryCategory=\"Remote Search Resource\"/>\n <sear:LINKS>\n <sear:openurl><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-crossref&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Globalization%20from%20Below:%20Transnational%20Activists%20and%20Protest%20Networks&rft.jtitle=Contemporary%20Sociology:%20A%20Journal%20of%20Reviews&rft.btitle=&rft.aulast=Smith&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Smith%2C%20J.&rft.aucorp=&rft.date=20070301&rft.volume=36&rft.issue=2&rft.part=&rft.quarter=&rft.ssn=&rft.spage=191&rft.epage=192&rft.pages=&rft.artnum=&rft.issn=0094-3061&rft.eissn=0094-3061&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1177/009430610703600252&rft.eisbn=&rft_dat=<crossref>10.1177/009430610703600252</crossref>&rft_id=info:oai/>]]></sear:openurl>\n
698
+ \ <sear:thumbnail/>\n <sear:openurlfulltext><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-crossref&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Globalization%20from%20Below:%20Transnational%20Activists%20and%20Protest%20Networks&rft.jtitle=Contemporary%20Sociology:%20A%20Journal%20of%20Reviews&rft.btitle=&rft.aulast=Smith&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Smith%2C%20J.&rft.aucorp=&rft.date=20070301&rft.volume=36&rft.issue=2&rft.part=&rft.quarter=&rft.ssn=&rft.spage=191&rft.epage=192&rft.pages=&rft.artnum=&rft.issn=0094-3061&rft.eissn=0094-3061&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1177/009430610703600252&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<crossref>10.1177/009430610703600252</crossref>&rft_id=info:oai/>]]></sear:openurlfulltext>\n
699
+ \ <sear:addlink>http://fe.p.prod.primo.saas.exlibrisgroup.com:1701/primo_library/libweb/aboutCrossref.html</sear:addlink>\n
700
+ \ </sear:LINKS>\n </sear:DOC>\n <sear:DOC LOCAL=\"false\"
701
+ SEARCH_ENGINE_TYPE=\"Primo Central Search Engine\" SEARCH_ENGINE=\"PrimoCentralThirdNode\"
702
+ NO=\"7\" RANK=\"0.023111328\" ID=\"234765749\">\n <PrimoNMBib xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\">\n
703
+ \ <record>\n <control>\n <sourcerecordid>10.1093/rsq/hdq006</sourcerecordid>\n
704
+ \ <sourceid>oxford</sourceid>\n <recordid>TN_oxford10.1093/rsq/hdq006</recordid>\n
705
+ \ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
706
+ \ </control>\n <display>\n <type>article</type>\n
707
+ \ <title>Transnational Criminal Law as a Governance Strategy
708
+ in the Global Labour Market: Criminalizing Globalization from Below</title>\n
709
+ \ <creator>Guilfoyle, Douglas</creator>\n <ispartof>Refugee
710
+ Survey Quarterly, 2010, Vol. 29(1), pp.185-205</ispartof>\n <identifier><![CDATA[<b>ISSN:
711
+ </b>1020-4067 ; <b>E-ISSN: </b>1471-695X ; <b>DOI: </b>10.1093/rsq/hdq006]]></identifier>\n
712
+ \ <description>This article examines the consequence of treating
713
+ irregular labour migration as a criminal law issue, rather than one of trade
714
+ or development. If States are increasingly committed to the free movement
715
+ of goods and skilled workers, why is the movement of unskilled workers a crime?
716
+ Adopting an economic analysis, it is clear that irregular migrants provide
717
+ labour-receiving States with a pool of workers who are cheap to employ, easy
718
+ to fire, and who are effectively unable or unwilling to invoke employment
719
+ rights. That is, migrant workers can be a significant source of cheap and
720
+ rightless labour. Furthermore, this may be viewed not as a market distortion
721
+ but a highly regulated part of the ordinary functioning of destination economies.
722
+ The economic benefits of irregular migrants result from their status: a status
723
+ regulated and perpetuated by law. High- and medium-income States may become
724
+ structurally dependent upon this externalized “ghetto” of low-cost foreign
725
+ labour, thus profiting from irregular migration while denouncing it. This
726
+ article argues that, if irregular migration economically benefits destination
727
+ States and is driven both by lack of development in labour-sending States
728
+ and migrants’ opportunity to remit money home, then the answer must lie in
729
+ expanded systems of “regular” labour migration closely linked to development
730
+ policy. Policy approaches must consider not only a trade/migrant–labour nexus
731
+ but a trade/migrant–labour/development nexus. The article concludes by advocating
732
+ that a set of principles of sustainable return is in the self-interest of
733
+ labour-receiving States and outlining the content and utility of such principles.
734
+ While the article aims to provide a theoretical account in an outline form
735
+ that is adaptable to a variety of situations, it uses the example of African
736
+ irregular migration into Spain and Spanish/EU responses to illustrate the
737
+ argument.</description>\n <source>Oxford University Press</source>\n
738
+ \ <lds50>peer_reviewed</lds50>\n </display>\n <links>\n
739
+ \ <openurl>$$Topenurl_article</openurl>\n <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
740
+ \ </links>\n <search>\n <creatorcontrib>Guilfoyle,
741
+ Douglas</creatorcontrib>\n <title>Transnational Criminal Law
742
+ as a Governance Strategy in the Global Labour Market: Criminalizing Globalization
743
+ from Below</title>\n <description>This article examines the
744
+ consequence of treating irregular labour migration as a criminal law issue,
745
+ rather than one of trade or development. If States are increasingly committed
746
+ to the free movement of goods and skilled workers, why is the movement of
747
+ unskilled workers a crime? Adopting an economic analysis, it is clear that
748
+ irregular migrants provide labour-receiving States with a pool of workers
749
+ who are cheap to employ, easy to fire, and who are effectively unable or unwilling
750
+ to invoke employment rights. That is, migrant workers can be a significant
751
+ source of cheap and rightless labour. Furthermore, this may be viewed not
752
+ as a market distortion but a highly regulated part of the ordinary functioning
753
+ of destination economies. The economic benefits of irregular migrants result
754
+ from their status: a status regulated and perpetuated by law. High- and medium-income
755
+ States may become structurally dependent upon this externalized “ghetto” of
756
+ low-cost foreign labour, thus profiting from irregular migration while denouncing
757
+ it. This article argues that, if irregular migration economically benefits
758
+ destination States and is driven both by lack of development in labour-sending
759
+ States and migrants’ opportunity to remit money home, then the answer must
760
+ lie in expanded systems of “regular” labour migration closely linked to development
761
+ policy. Policy approaches must consider not only a trade/migrant–labour nexus
762
+ but a trade/migrant–labour/development nexus. The article concludes by advocating
763
+ that a set of principles of sustainable return is in the self-interest of
764
+ labour-receiving States and outlining the content and utility of such principles.
765
+ While the article aims to provide a theoretical account in an outline form
766
+ that is adaptable to a variety of situations, it uses the example of African
767
+ irregular migration into Spain and Spanish/EU responses to illustrate the
768
+ argument.</description>\n <general>hdq006</general>\n <general>10.1093/rsq/hdq006</general>\n
769
+ \ <general>Oxford Journals</general>\n <sourceid>oxford</sourceid>\n
770
+ \ <recordid>oxford10.1093/rsq/hdq006</recordid>\n <issn>1020-4067</issn>\n
771
+ \ <issn>10204067</issn>\n <issn>1471-695X</issn>\n
772
+ \ <issn>1471695X</issn>\n <rsrctype>article</rsrctype>\n
773
+ \ <creationdate>2010</creationdate>\n <addtitle>Refugee
774
+ Survey Quarterly</addtitle>\n <searchscope>oxford</searchscope>\n
775
+ \ <scope>oxford</scope>\n </search>\n <sort>\n
776
+ \ <title>Transnational Criminal Law as a Governance Strategy
777
+ in the Global Labour Market: Criminalizing Globalization from Below</title>\n
778
+ \ <author>Guilfoyle, Douglas</author>\n <creationdate>20100800</creationdate>\n
779
+ \ </sort>\n <facets>\n <creationdate>2010</creationdate>\n
780
+ \ <collection>Oxford Journals (Oxford University Press)</collection>\n
781
+ \ <prefilter>articles</prefilter>\n <rsrctype>articles</rsrctype>\n
782
+ \ <creatorcontrib>Guilfoyle, Douglas</creatorcontrib>\n <jtitle>Refugee
783
+ Survey Quarterly</jtitle>\n <toplevel>peer_reviewed</toplevel>\n
784
+ \ <frbrgroupid>513970567</frbrgroupid>\n <frbrtype>6</frbrtype>\n
785
+ \ </facets>\n <frbr>\n <t>2</t>\n
786
+ \ <k1>2010</k1>\n <k2>10204067</k2>\n <k2>1471695X</k2>\n
787
+ \ <k3>10.1093/rsq/hdq006</k3>\n <k4>29</k4>\n
788
+ \ <k5>1</k5>\n <k6>185</k6>\n <k7>refugee
789
+ survey quarterly</k7>\n <k8>transnational criminal law as governance
790
+ strategy in the global labour market criminalizing globalization from below</k8>\n
791
+ \ <k9>transnationalcriminabelow</k9>\n <k12>transnationalcriminallawa</k12>\n
792
+ \ <k15>douglasguilfoyle</k15>\n <k16>guilfoyledouglas</k16>\n
793
+ \ </frbr>\n <delivery>\n <delcategory>Remote
794
+ Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n
795
+ \ </delivery>\n <ranking>\n <booster1>1</booster1>\n
796
+ \ <booster2>1</booster2>\n <pcg_type>publisher</pcg_type>\n
797
+ \ </ranking>\n <addata>\n <aulast>Guilfoyle</aulast>\n
798
+ \ <aufirst>Douglas</aufirst>\n <au>Guilfoyle,
799
+ Douglas</au>\n <atitle>Transnational Criminal Law as a Governance
800
+ Strategy in the Global Labour Market: Criminalizing Globalization from Below</atitle>\n
801
+ \ <jtitle>Refugee Survey Quarterly</jtitle>\n <date>201008</date>\n
802
+ \ <risdate>201008</risdate>\n <volume>29</volume>\n
803
+ \ <issue>1</issue>\n <spage>185</spage>\n <epage>205</epage>\n
804
+ \ <pages>185-205</pages>\n <issn>1020-4067</issn>\n
805
+ \ <eissn>1471-695X</eissn>\n <format>journal</format>\n
806
+ \ <genre>article</genre>\n <ristype>JOUR</ristype>\n
807
+ \ <abstract>This article examines the consequence of treating
808
+ irregular labour migration as a criminal law issue, rather than one of trade
809
+ or development. If States are increasingly committed to the free movement
810
+ of goods and skilled workers, why is the movement of unskilled workers a crime?
811
+ Adopting an economic analysis, it is clear that irregular migrants provide
812
+ labour-receiving States with a pool of workers who are cheap to employ, easy
813
+ to fire, and who are effectively unable or unwilling to invoke employment
814
+ rights. That is, migrant workers can be a significant source of cheap and
815
+ rightless labour. Furthermore, this may be viewed not as a market distortion
816
+ but a highly regulated part of the ordinary functioning of destination economies.
817
+ The economic benefits of irregular migrants result from their status: a status
818
+ regulated and perpetuated by law. High- and medium-income States may become
819
+ structurally dependent upon this externalized “ghetto” of low-cost foreign
820
+ labour, thus profiting from irregular migration while denouncing it. This
821
+ article argues that, if irregular migration economically benefits destination
822
+ States and is driven both by lack of development in labour-sending States
823
+ and migrants’ opportunity to remit money home, then the answer must lie in
824
+ expanded systems of “regular” labour migration closely linked to development
825
+ policy. Policy approaches must consider not only a trade/migrant–labour nexus
826
+ but a trade/migrant–labour/development nexus. The article concludes by advocating
827
+ that a set of principles of sustainable return is in the self-interest of
828
+ labour-receiving States and outlining the content and utility of such principles.
829
+ While the article aims to provide a theoretical account in an outline form
830
+ that is adaptable to a variety of situations, it uses the example of African
831
+ irregular migration into Spain and Spanish/EU responses to illustrate the
832
+ argument.</abstract>\n <pub>Oxford University Press</pub>\n
833
+ \ <doi>10.1093/rsq/hdq006</doi>\n </addata>\n </record>\n
834
+ \ </PrimoNMBib>\n <sear:GETIT GetIt2=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
835
+ GetIt1=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
836
+ deliveryCategory=\"Remote Search Resource\"/>\n <sear:LINKS>\n <sear:openurl><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-oxford&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=Transnational%20Criminal%20Law%20as%20a%20Governance%20Strategy%20in%20the%20Global%20Labour%20Market:%20Criminalizing%20Globalization%20from%20Below&rft.jtitle=Refugee%20Survey%20Quarterly&rft.btitle=&rft.aulast=Guilfoyle&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Guilfoyle%2C%20Douglas&rft.aucorp=&rft.date=201008&rft.volume=29&rft.issue=1&rft.part=&rft.quarter=&rft.ssn=&rft.spage=185&rft.epage=205&rft.pages=185-205&rft.artnum=&rft.issn=1020-4067&rft.eissn=1471-695X&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1093/rsq/hdq006&rft.eisbn=&rft_dat=<oxford>10.1093/rsq/hdq006</oxford>&rft_id=info:oai/>]]></sear:openurl>\n
837
+ \ <sear:thumbnail/>\n <sear:openurlfulltext><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-oxford&rft_val_fmt=info:ofi/fmt:kev:mtx:journal&rft.genre=article&rft.atitle=Transnational%20Criminal%20Law%20as%20a%20Governance%20Strategy%20in%20the%20Global%20Labour%20Market:%20Criminalizing%20Globalization%20from%20Below&rft.jtitle=Refugee%20Survey%20Quarterly&rft.btitle=&rft.aulast=Guilfoyle&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Guilfoyle%2C%20Douglas&rft.aucorp=&rft.date=201008&rft.volume=29&rft.issue=1&rft.part=&rft.quarter=&rft.ssn=&rft.spage=185&rft.epage=205&rft.pages=185-205&rft.artnum=&rft.issn=1020-4067&rft.eissn=1471-695X&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1093/rsq/hdq006&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<oxford>10.1093/rsq/hdq006</oxford>&rft_id=info:oai/>]]></sear:openurlfulltext>\n
838
+ \ </sear:LINKS>\n </sear:DOC>\n <sear:DOC LOCAL=\"false\"
839
+ SEARCH_ENGINE_TYPE=\"Primo Central Search Engine\" SEARCH_ENGINE=\"PrimoCentralThirdNode\"
840
+ NO=\"8\" RANK=\"0.022642773\" ID=\"81405091\">\n <PrimoNMBib xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\">\n
841
+ \ <record>\n <control>\n <sourcerecordid>10.1111/j.1468-2427.2005.00630.x</sourcerecordid>\n
842
+ \ <sourceid>wj</sourceid>\n <recordid>TN_wj10.1111/j.1468-2427.2005.00630.x</recordid>\n
843
+ \ <sourcesystem>Other</sourcesystem>\n </control>\n
844
+ \ <display>\n <type>article</type>\n <title>Globalization
845
+ from Below: The Ranking of Global Immigrant Cities</title>\n <creator>Benton‐short,
846
+ Lisa ; Price, Marie D. ; Friedman, Samantha</creator>\n <ispartof>International
847
+ Journal of Urban and Regional Research, 2005, Vol.29(4), pp.945-959</ispartof>\n
848
+ \ <identifier><![CDATA[<b>ISSN: </b>0309-1317 ; <b>E-ISSN: </b>1468-2427
849
+ ; <b>DOI: </b>10.1111/j.1468-2427.2005.00630.x]]></identifier>\n <description>Immigration
850
+ to major cities is an important dimension of cultural globalization, one that
851
+ has been largely ignored in the global cities literature. Rates of immigration
852
+ to major world cities are an important indicator of global city status and
853
+ should be included in determining urban hierarchy indexes. Our study considers
854
+ immigration in more than 100 metropolitan areas, using data from national
855
+ censuses from more than 50 countries. We rank major cities of immigration
856
+ and compare them to well‐known global city hierarchies. Using immigration
857
+ data, we create an urban immigrant index. The index considers four factors
858
+ of immigration: (1) the percentage of foreign‐born, (2) the total number of
859
+ foreign‐born, (3) the diversity of the foreign‐born stock, and (4) whether
860
+ immigrants are from neighboring countries or non‐neighboring countries. This
861
+ is the first time that an international urban immigrant data set and index
862
+ have been created. The study explains the empirical challenge of acquiring
863
+ comparable international metropolitan data and the limits of this research.
864
+ Some of the cities that rank highly in the index are commonly cited as world
865
+ cities (London, New York and Frankfurt); others such as Toronto, Amsterdam
866
+ and Dubai seldom appear so highly ranked. L’Immigration vers les grandes villes
867
+ est une dimension importante de la mondialisation culturelle, dimension largement
868
+ ignorée dans la littérature sur les villes planétaires. Les taux d’immigration
869
+ vers les grandes villes mondiales sont un indicateur significatif du statut
870
+ de ville planétaire et devraient être pris en compte pour établir des répertoires
871
+ de hiérarchie urbaine. Cette étude, qui couvre l’immigration dans plus de
872
+ cent zones métropolitaines, utilise les données de recensements nationaux
873
+ provenant de plus de 50 pays. Elle classe les principales villes d’immigration
874
+ et les compare aux hiérarchies de villes planétaires reconnues. A partir des
875
+ données sur l’immigration, est créé un répertoire des immigrants urbains,
876
+ lequel se réfère à quatre facteurs d’immigration: (1) le pourcentage néà l’étranger,
877
+ (2) l’effectif total néà l’étranger, (3) la diversité de la population née
878
+ à l’étranger et (4) si les migrants viennent de pays voisins ou non. C’est
879
+ la première fois qu’un fichier de données et un répertoire d’immigrants urbains
880
+ internationaux sont créés. L’étude expose le défi empirique pour récupérer
881
+ des données métropolitaines internationales comparables, ainsi que les limites
882
+ de cette recherche. Certaines des villes placées en tête du répertoire sont
883
+ fréquemment citées comme villes mondiales (Londres, New York et Frankfort),
884
+ d’autres comme Toronto, Amsterdam et Dubaï apparaissent rarement à ce niveau
885
+ de classement.</description>\n <source>John Wiley &amp; Sons,
886
+ Inc.</source>\n <lds50>peer_reviewed</lds50>\n <version>3</version>\n
887
+ \ </display>\n <links>\n <openurl>$$Topenurl_article</openurl>\n
888
+ \ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
889
+ \ </links>\n <search>\n <creatorcontrib>Benton‐short,
890
+ Lisa</creatorcontrib>\n <creatorcontrib>Price, Marie D.</creatorcontrib>\n
891
+ \ <creatorcontrib>Friedman, Samantha</creatorcontrib>\n <title>Globalization
892
+ from Below: The Ranking of Global Immigrant Cities</title>\n <description>Immigration
893
+ to major cities is an important dimension of cultural globalization, one that
894
+ has been largely ignored in the global cities literature. Rates of immigration
895
+ to major world cities are an important indicator of global city status and
896
+ should be included in determining urban hierarchy indexes. Our study considers
897
+ immigration in more than 100 metropolitan areas, using data from national
898
+ censuses from more than 50 countries. We rank major cities of immigration
899
+ and compare them to well‐known global city hierarchies. Using immigration
900
+ data, we create an urban immigrant index. The index considers four factors
901
+ of immigration: (1) the percentage of foreign‐born, (2) the total number of
902
+ foreign‐born, (3) the diversity of the foreign‐born stock, and (4) whether
903
+ immigrants are from neighboring countries or non‐neighboring countries. This
904
+ is the first time that an international urban immigrant data set and index
905
+ have been created. The study explains the empirical challenge of acquiring
906
+ comparable international metropolitan data and the limits of this research.
907
+ Some of the cities that rank highly in the index are commonly cited as world
908
+ cities (London, New York and Frankfurt); others such as Toronto, Amsterdam
909
+ and Dubai seldom appear so highly ranked. L’Immigration vers les grandes villes
910
+ est une dimension importante de la mondialisation culturelle, dimension largement
911
+ ignorée dans la littérature sur les villes planétaires. Les taux d’immigration
912
+ vers les grandes villes mondiales sont un indicateur significatif du statut
913
+ de ville planétaire et devraient être pris en compte pour établir des répertoires
914
+ de hiérarchie urbaine. Cette étude, qui couvre l’immigration dans plus de
915
+ cent zones métropolitaines, utilise les données de recensements nationaux
916
+ provenant de plus de 50 pays. Elle classe les principales villes d’immigration
917
+ et les compare aux hiérarchies de villes planétaires reconnues. A partir des
918
+ données sur l’immigration, est créé un répertoire des immigrants urbains,
919
+ lequel se réfère à quatre facteurs d’immigration: (1) le pourcentage néà l’étranger,
920
+ (2) l’effectif total néà l’étranger, (3) la diversité de la population née
921
+ à l’étranger et (4) si les migrants viennent de pays voisins ou non. C’est
922
+ la première fois qu’un fichier de données et un répertoire d’immigrants urbains
923
+ internationaux sont créés. L’étude expose le défi empirique pour récupérer
924
+ des données métropolitaines internationales comparables, ainsi que les limites
925
+ de cette recherche. Certaines des villes placées en tête du répertoire sont
926
+ fréquemment citées comme villes mondiales (Londres, New York et Frankfort),
927
+ d’autres comme Toronto, Amsterdam et Dubaï apparaissent rarement à ce niveau
928
+ de classement.</description>\n <general>Blackwell Publishing
929
+ Ltd.</general>\n <general>10.1111/j.1468-2427.2005.00630.x</general>\n
930
+ \ <general>Wiley Online Library</general>\n <sourceid>wj</sourceid>\n
931
+ \ <recordid>wj10.1111/j.1468-2427.2005.00630.x</recordid>\n
932
+ \ <issn>0309-1317</issn>\n <issn>03091317</issn>\n
933
+ \ <issn>1468-2427</issn>\n <issn>14682427</issn>\n
934
+ \ <rsrctype>article</rsrctype>\n <creationdate>2005</creationdate>\n
935
+ \ <addtitle>International Journal of Urban and Regional Research</addtitle>\n
936
+ \ <searchscope>wj</searchscope>\n <searchscope>wiley</searchscope>\n
937
+ \ <scope>wj</scope>\n <scope>wiley</scope>\n
938
+ \ </search>\n <sort>\n <title>Globalization
939
+ from Below: The Ranking of Global Immigrant Cities</title>\n <author>Benton‐short,
940
+ Lisa ; Price, Marie D. ; Friedman, Samantha</author>\n <creationdate>20051200</creationdate>\n
941
+ \ </sort>\n <facets>\n <creationdate>2005</creationdate>\n
942
+ \ <collection>Wiley Online Library</collection>\n <prefilter>articles</prefilter>\n
943
+ \ <rsrctype>articles</rsrctype>\n <creatorcontrib>Benton‐short,
944
+ Lisa</creatorcontrib>\n <creatorcontrib>Price, Marie D.</creatorcontrib>\n
945
+ \ <creatorcontrib>Friedman, Samantha</creatorcontrib>\n <jtitle>International
946
+ Journal of Urban and Regional Research</jtitle>\n <toplevel>peer_reviewed</toplevel>\n
947
+ \ <frbrgroupid>5601034458896755094</frbrgroupid>\n <frbrtype>5</frbrtype>\n
948
+ \ </facets>\n <frbr>\n <t>2</t>\n
949
+ \ <k1>2005</k1>\n <k2>03091317</k2>\n <k2>14682427</k2>\n
950
+ \ <k3>10.1111/j.1468-2427.2005.00630.x</k3>\n <k4>29</k4>\n
951
+ \ <k5>4</k5>\n <k6>945</k6>\n <k7>international
952
+ journal of urban regional research</k7>\n <k8>globalization
953
+ from below the ranking of global immigrant cities</k8>\n <k9>globalizationfrombelities</k9>\n
954
+ \ <k12>globalizationfrombelowthe</k12>\n <k15>lisabenton‐short</k15>\n
955
+ \ <k16>benton‐shortlisa</k16>\n </frbr>\n <delivery>\n
956
+ \ <delcategory>Remote Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n
957
+ \ </delivery>\n <ranking>\n <booster1>1</booster1>\n
958
+ \ <booster2>1</booster2>\n <pcg_type>publisher</pcg_type>\n
959
+ \ </ranking>\n <addata>\n <aulast>BENTON‐SHORT</aulast>\n
960
+ \ <aulast>PRICE</aulast>\n <aulast>FRIEDMAN</aulast>\n
961
+ \ <aufirst>LISA</aufirst>\n <aufirst>MARIE D.</aufirst>\n
962
+ \ <aufirst>SAMANTHA</aufirst>\n <au>Benton‐short,
963
+ Lisa</au>\n <au>Price, Marie D.</au>\n <au>Friedman,
964
+ Samantha</au>\n <atitle>Globalization from Below: The Ranking
965
+ of Global Immigrant Cities</atitle>\n <jtitle>International
966
+ Journal of Urban and Regional Research</jtitle>\n <date>200512</date>\n
967
+ \ <risdate>200512</risdate>\n <volume>29</volume>\n
968
+ \ <issue>4</issue>\n <spage>945</spage>\n <epage>959</epage>\n
969
+ \ <issn>0309-1317</issn>\n <eissn>1468-2427</eissn>\n
970
+ \ <genre>article</genre>\n <ristype>JOUR</ristype>\n
971
+ \ <abstract>Immigration to major cities is an important dimension
972
+ of cultural globalization, one that has been largely ignored in the global
973
+ cities literature. Rates of immigration to major world cities are an important
974
+ indicator of global city status and should be included in determining urban
975
+ hierarchy indexes. Our study considers immigration in more than 100 metropolitan
976
+ areas, using data from national censuses from more than 50 countries. We rank
977
+ major cities of immigration and compare them to well‐known global city hierarchies.
978
+ Using immigration data, we create an urban immigrant index. The index considers
979
+ four factors of immigration: (1) the percentage of foreign‐born, (2) the total
980
+ number of foreign‐born, (3) the diversity of the foreign‐born stock, and (4)
981
+ whether immigrants are from neighboring countries or non‐neighboring countries.
982
+ This is the first time that an international urban immigrant data set and
983
+ index have been created. The study explains the empirical challenge of acquiring
984
+ comparable international metropolitan data and the limits of this research.
985
+ Some of the cities that rank highly in the index are commonly cited as world
986
+ cities (London, New York and Frankfurt); others such as Toronto, Amsterdam
987
+ and Dubai seldom appear so highly ranked. L’Immigration vers les grandes villes
988
+ est une dimension importante de la mondialisation culturelle, dimension largement
989
+ ignorée dans la littérature sur les villes planétaires. Les taux d’immigration
990
+ vers les grandes villes mondiales sont un indicateur significatif du statut
991
+ de ville planétaire et devraient être pris en compte pour établir des répertoires
992
+ de hiérarchie urbaine. Cette étude, qui couvre l’immigration dans plus de
993
+ cent zones métropolitaines, utilise les données de recensements nationaux
994
+ provenant de plus de 50 pays. Elle classe les principales villes d’immigration
995
+ et les compare aux hiérarchies de villes planétaires reconnues. A partir des
996
+ données sur l’immigration, est créé un répertoire des immigrants urbains,
997
+ lequel se réfère à quatre facteurs d’immigration: (1) le pourcentage néà l’étranger,
998
+ (2) l’effectif total néà l’étranger, (3) la diversité de la population née
999
+ à l’étranger et (4) si les migrants viennent de pays voisins ou non. C’est
1000
+ la première fois qu’un fichier de données et un répertoire d’immigrants urbains
1001
+ internationaux sont créés. L’étude expose le défi empirique pour récupérer
1002
+ des données métropolitaines internationales comparables, ainsi que les limites
1003
+ de cette recherche. Certaines des villes placées en tête du répertoire sont
1004
+ fréquemment citées comme villes mondiales (Londres, New York et Frankfort),
1005
+ d’autres comme Toronto, Amsterdam et Dubaï apparaissent rarement à ce niveau
1006
+ de classement.</abstract>\n <cop>Oxford, UK and Malden, USA</cop>\n
1007
+ \ <pub>Blackwell Publishing Ltd.</pub>\n <doi>10.1111/j.1468-2427.2005.00630.x</doi>\n
1008
+ \ </addata>\n </record>\n </PrimoNMBib>\n
1009
+ \ <sear:GETIT GetIt2=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
1010
+ GetIt1=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
1011
+ deliveryCategory=\"Remote Search Resource\"/>\n <sear:LINKS>\n <sear:openurl><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-wj&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Globalization%20from%20Below:%20The%20Ranking%20of%20Global%20Immigrant%20Cities&rft.jtitle=International%20Journal%20of%20Urban%20and%20Regional%20Research&rft.btitle=&rft.aulast=BENTON‐SHORT&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Benton‐short%2C%20Lisa&rft.aucorp=&rft.date=200512&rft.volume=29&rft.issue=4&rft.part=&rft.quarter=&rft.ssn=&rft.spage=945&rft.epage=959&rft.pages=&rft.artnum=&rft.issn=0309-1317&rft.eissn=1468-2427&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1111/j.1468-2427.2005.00630.x&rft.eisbn=&rft_dat=<wj>10.1111/j.1468-2427.2005.00630.x</wj>&rft_id=info:oai/>]]></sear:openurl>\n
1012
+ \ <sear:thumbnail/>\n <sear:openurlfulltext><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-wj&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Globalization%20from%20Below:%20The%20Ranking%20of%20Global%20Immigrant%20Cities&rft.jtitle=International%20Journal%20of%20Urban%20and%20Regional%20Research&rft.btitle=&rft.aulast=BENTON‐SHORT&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Benton‐short%2C%20Lisa&rft.aucorp=&rft.date=200512&rft.volume=29&rft.issue=4&rft.part=&rft.quarter=&rft.ssn=&rft.spage=945&rft.epage=959&rft.pages=&rft.artnum=&rft.issn=0309-1317&rft.eissn=1468-2427&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/10.1111/j.1468-2427.2005.00630.x&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<wj>10.1111/j.1468-2427.2005.00630.x</wj>&rft_id=info:oai/>]]></sear:openurlfulltext>\n
1013
+ \ </sear:LINKS>\n </sear:DOC>\n <sear:DOC LOCAL=\"false\"
1014
+ SEARCH_ENGINE_TYPE=\"Primo Central Search Engine\" SEARCH_ENGINE=\"PrimoCentralThirdNode\"
1015
+ NO=\"9\" RANK=\"0.022344036\" ID=\"226953889\">\n <PrimoNMBib xmlns=\"http://www.exlibrisgroup.com/xsd/primo/primo_nm_bib\">\n
1016
+ \ <record>\n <control>\n <sourcerecordid>10.2307/1049706</sourcerecordid>\n
1017
+ \ <sourceid>jstor</sourceid>\n <recordid>TN_jstor10.2307/1049706</recordid>\n
1018
+ \ <sourceformat>XML</sourceformat>\n <sourcesystem>Other</sourcesystem>\n
1019
+ \ </control>\n <display>\n <type>article</type>\n
1020
+ \ <title>Globalization from below: Toward a Collectively Rational
1021
+ and Democratic Global Commonwealth</title>\n <creator>Chase-dunn,
1022
+ Christopher</creator>\n <ispartof>Annals of the American Academy
1023
+ of Political and Social Science, 2002, Vol.581(), pp.48-61</ispartof>\n <identifier>&lt;b>ISSN:&lt;/b>
1024
+ 00027162</identifier>\n <subject>Economics; Politicalscience;
1025
+ Sociology</subject>\n <description>This article presents a
1026
+ model of the structures and processes of the modern world-system and proposes
1027
+ a project to transform the system into a democratic and collectively rational
1028
+ global commonwealth. Popular transnational social movements are challenging
1029
+ the ideological hegemony of corporate capitalism. The global women's movement,
1030
+ the labor movement, environmentalist movements, and indigenous movements are
1031
+ attempting to form strong alliances that can challenge the domination of an
1032
+ emerging transnational capitalist class. This article argues that new democratic
1033
+ socialist states in the semiperiphery will be crucial allies and sources of
1034
+ support for the antisystemic movements.</description>\n <language>eng</language>\n
1035
+ \ <source>JSTOR</source>\n <lds50>peer_reviewed</lds50>\n
1036
+ \ </display>\n <links>\n <openurl>$$Topenurl_article</openurl>\n
1037
+ \ <backlink>$$Uhttp://www.jstor.org/stable/10.2307/1049706?origin=api$$EView_this_record_in_JSTOR</backlink>\n
1038
+ \ <openurlfulltext>$$Topenurlfull_article</openurlfulltext>\n
1039
+ \ </links>\n <search>\n <creatorcontrib>Chase-Dunn,
1040
+ Christopher</creatorcontrib>\n <title>Globalization from below:
1041
+ Toward a Collectively Rational and Democratic Global Commonwealth</title>\n
1042
+ \ <description>This article presents a model of the structures
1043
+ and processes of the modern world-system and proposes a project to transform
1044
+ the system into a democratic and collectively rational global commonwealth.
1045
+ Popular transnational social movements are challenging the ideological hegemony
1046
+ of corporate capitalism. The global women's movement, the labor movement,
1047
+ environmentalist movements, and indigenous movements are attempting to form
1048
+ strong alliances that can challenge the domination of an emerging transnational
1049
+ capitalist class. This article argues that new democratic socialist states
1050
+ in the semiperiphery will be crucial allies and sources of support for the
1051
+ antisystemic movements.</description>\n <subject>economics</subject>\n
1052
+ \ <subject>politicalscience</subject>\n <subject>sociology</subject>\n
1053
+ \ <general>10.2307/1049706</general>\n <general>English</general>\n
1054
+ \ <general>JSOTR</general>\n <sourceid>jstor</sourceid>\n
1055
+ \ <recordid>jstor10.2307/1049706</recordid>\n <issn>0002-7162</issn>\n
1056
+ \ <issn>00027162</issn>\n <rsrctype>article</rsrctype>\n
1057
+ \ <creationdate>2002</creationdate>\n <recordtype>article</recordtype>\n
1058
+ \ <addtitle>Annals of the American Academy of Political and
1059
+ Social Science</addtitle>\n <searchscope>jstor</searchscope>\n
1060
+ \ <searchscope>jstor_asc7</searchscope>\n <scope>jstor</scope>\n
1061
+ \ <scope>jstor_asc7</scope>\n </search>\n <sort>\n
1062
+ \ <title>Globalization from below: Toward a Collectively Rational
1063
+ and Democratic Global Commonwealth</title>\n <author>Chase-Dunn,
1064
+ Christopher</author>\n <creationdate>20020501</creationdate>\n
1065
+ \ </sort>\n <facets>\n <language>eng</language>\n
1066
+ \ <creationdate>2002</creationdate>\n <topic>Economics</topic>\n
1067
+ \ <topic>Politicalscience</topic>\n <topic>Sociology</topic>\n
1068
+ \ <collection>Arts &amp; Sciences (JSTOR)</collection>\n <prefilter>articles</prefilter>\n
1069
+ \ <rsrctype>articles</rsrctype>\n <creatorcontrib>Chase-dunn,
1070
+ Christopher</creatorcontrib>\n <jtitle>Annals Of The American
1071
+ Academy Of Political And Social Science</jtitle>\n <toplevel>peer_reviewed</toplevel>\n
1072
+ \ <frbrgroupid>174407987</frbrgroupid>\n <frbrtype>6</frbrtype>\n
1073
+ \ </facets>\n <frbr>\n <t>2</t>\n
1074
+ \ <k1>2002</k1>\n <k2>00027162</k2>\n <k4>581</k4>\n
1075
+ \ <k6>48</k6>\n <k7>annals of the american academy
1076
+ of political social science</k7>\n <k8>globalization from below
1077
+ toward collectively rational democratic global commonwealth</k8>\n <k9>globalizationfrombelealth</k9>\n
1078
+ \ <k12>globalizationfrombelowtow</k12>\n <k15>christopherchasedunn</k15>\n
1079
+ \ <k16>chasedunnchristopher</k16>\n </frbr>\n <delivery>\n
1080
+ \ <delcategory>Remote Search Resource</delcategory>\n <fulltext>fulltext</fulltext>\n
1081
+ \ </delivery>\n <ranking>\n <booster1>1</booster1>\n
1082
+ \ <booster2>1</booster2>\n <pcg_type>aggregator</pcg_type>\n
1083
+ \ </ranking>\n <addata>\n <aulast>Chase-Dunn</aulast>\n
1084
+ \ <aufirst>Christopher</aufirst>\n <au>Chase-Dunn,
1085
+ Christopher</au>\n <atitle>Globalization from below: Toward
1086
+ a Collectively Rational and Democratic Global Commonwealth</atitle>\n <jtitle>Annals
1087
+ of the American Academy of Political and Social Science</jtitle>\n <volume>581</volume>\n
1088
+ \ <spage>48</spage>\n <epage>61</epage>\n <pages>48-61</pages>\n
1089
+ \ <issn>00027162</issn>\n <genre>article</genre>\n
1090
+ \ <ristype>JOUR</ristype>\n <abstract>This article
1091
+ presents a model of the structures and processes of the modern world-system
1092
+ and proposes a project to transform the system into a democratic and collectively
1093
+ rational global commonwealth. Popular transnational social movements are challenging
1094
+ the ideological hegemony of corporate capitalism. The global women's movement,
1095
+ the labor movement, environmentalist movements, and indigenous movements are
1096
+ attempting to form strong alliances that can challenge the domination of an
1097
+ emerging transnational capitalist class. This article argues that new democratic
1098
+ socialist states in the semiperiphery will be crucial allies and sources of
1099
+ support for the antisystemic movements.</abstract>\n <pub>American
1100
+ Academy of Political and Social Science;Sage Publications, Inc.</pub>\n <url>http://www.jstor.org/stable/10.2307/1049706?origin=api</url>\n
1101
+ \ <lad02>20020501</lad02>\n <date>20020501</date>\n
1102
+ \ <risdate>20020501</risdate>\n </addata>\n </record>\n
1103
+ \ </PrimoNMBib>\n <sear:GETIT GetIt2=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
1104
+ GetIt1=\"http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&amp;ctx_enc=info:ofi/enc:UTF-8&amp;ctx_tim=2012-08-07T12%3A53%3A55IST&amp;url_ver=Z39.88-2004&amp;url_ctx_fmt=infofi/fmt:kev:mtx:ctx&amp;rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-sciversesciencedirect_elsevier&amp;rft_val_fmt=info:ofi/fmt:kev:mtx:&amp;rft.genre=article&amp;rft.atitle=Multilingual%20organizations%20as%20‘linguascapes’:%20Negotiating%20the%20position%20of%20English%20through%20discursive%20practices&amp;rft.jtitle=Journal%20of%20World%20Business&amp;rft.btitle=&amp;rft.aulast=Steyaert&amp;rft.auinit=&amp;rft.auinit1=&amp;rft.auinitm=&amp;rft.ausuffix=&amp;rft.au=Steyaert%2C%20Chris&amp;rft.aucorp=&amp;rft.date=2011&amp;rft.volume=46&amp;rft.issue=3&amp;rft.part=&amp;rft.quarter=&amp;rft.ssn=&amp;rft.spage=270&amp;rft.epage=278&amp;rft.pages=270-278&amp;rft.artnum=&amp;rft.issn=1090-9516&amp;rft.eissn=&amp;rft.isbn=&amp;rft.sici=&amp;rft.coden=&amp;rft_id=info:doi/10.1016/j.jwb.2010.07.003&amp;svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&amp;svc.fulltext=yes&amp;rft.eisbn=&amp;rft_dat=&lt;sciversesciencedirect_elsevier>S1090-9516(10)00042-8&lt;/sciversesciencedirect_elsevier>&amp;rft_id=info:oai/>\"
1105
+ deliveryCategory=\"Remote Search Resource\"/>\n <sear:LINKS>\n <sear:openurl><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-jstor&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Globalization%20from%20below:%20Toward%20a%20Collectively%20Rational%20and%20Democratic%20Global%20Commonwealth&rft.jtitle=Annals%20of%20the%20American%20Academy%20of%20Political%20and%20Social%20Science&rft.btitle=&rft.aulast=Chase-Dunn&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Chase-Dunn%2C%20Christopher&rft.aucorp=&rft.date=20020501&rft.volume=581&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=48&rft.epage=61&rft.pages=48-61&rft.artnum=&rft.issn=00027162&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&rft.eisbn=&rft_dat=<jstor>10.2307/1049706</jstor>&rft_id=info:oai/>]]></sear:openurl>\n
1106
+ \ <sear:backlink>http://www.jstor.org/stable/10.2307/1049706?origin=api</sear:backlink>\n
1107
+ \ <sear:thumbnail/>\n <sear:openurlfulltext><![CDATA[http://sfx-demo.exlibrisgroup.com:3210/primo_demo?ctx_ver=Z39.88-2004&ctx_enc=info:ofi/enc:UTF-8&ctx_tim=2012-08-07T12%3A53%3A55IST&url_ver=Z39.88-2004&url_ctx_fmt=infofi/fmt:kev:mtx:ctx&rfr_id=info:sid/primo.exlibrisgroup.com:primo3-Article-jstor&rft_val_fmt=info:ofi/fmt:kev:mtx:&rft.genre=article&rft.atitle=Globalization%20from%20below:%20Toward%20a%20Collectively%20Rational%20and%20Democratic%20Global%20Commonwealth&rft.jtitle=Annals%20of%20the%20American%20Academy%20of%20Political%20and%20Social%20Science&rft.btitle=&rft.aulast=Chase-Dunn&rft.auinit=&rft.auinit1=&rft.auinitm=&rft.ausuffix=&rft.au=Chase-Dunn%2C%20Christopher&rft.aucorp=&rft.date=20020501&rft.volume=581&rft.issue=&rft.part=&rft.quarter=&rft.ssn=&rft.spage=48&rft.epage=61&rft.pages=48-61&rft.artnum=&rft.issn=00027162&rft.eissn=&rft.isbn=&rft.sici=&rft.coden=&rft_id=info:doi/&svc_val_fmt=info:ofi/fmt:kev:mtx:sch_svc&svc.fulltext=yes&rft.eisbn=&rft_dat=<jstor>10.2307/1049706</jstor>&rft_id=info:oai/>]]></sear:openurlfulltext>\n
1108
+ \ </sear:LINKS>\n </sear:DOC>\n </sear:DOCSET>\n </sear:RESULT>\n
1109
+ \ <sear:searchToken>0</sear:searchToken>\n </sear:JAGROOT>\n</sear:SEGMENTS>\n"
1110
+ http_version:
1111
+ recorded_at: Tue, 07 Aug 2012 17:53:55 GMT
1112
+ recorded_with: VCR 2.2.4