libis-services 0.1.7 → 0.1.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: eb98081d6394e2093ac0b8faac32ab71565907a5
4
- data.tar.gz: dfa48fcdcf42bc7da12135dad5ef2dcac93e7ee3
3
+ metadata.gz: 28b1a082cd32ba0fbc505f9c8820a9dcc73adc45
4
+ data.tar.gz: ee6eceae4a7122012a0fbbb9fa1a323dc5c0eca7
5
5
  SHA512:
6
- metadata.gz: 630bb576af4a70ab7cfe42bb0f2acca199f6912382b859249c90bad41e6c55450afe504e0e116a4132f4c84d037650bfde2a9ff97271240834cd73af96cf2ef3
7
- data.tar.gz: b6c80cfadae173fa8ee98a8662c644a843b8e5a09a7267083859396c9711d31c356e7e0d098656491a3d9ef992594badfc1106ccfccb67840e9c82834f97b989
6
+ metadata.gz: 0ed2ed0ac5362c1ae088dd290ce650c3a1d2f25f53f125c496f97a0b264e32414d93763503bc67a0bce127107f289fcafaec2d0c5a16125dba2b36eb9e4cc635
7
+ data.tar.gz: 8cbae17f0c14a29e427a1796e3b29aa4bc62a3adc5eb7d9b99a03be2ab022c6dd4c4eae67e763dfa3fc0d0de9bf9a90160b253098bbf7d09d8fc119b1623f758
@@ -1,42 +1,22 @@
1
- require 'oci8'
2
-
3
1
  module Libis
4
2
  module Services
5
3
 
6
4
  class OracleClient
7
5
 
8
- attr_reader :oci
9
-
10
6
  def initialize(database, user, password)
11
7
  @database = database
12
8
  @user = user
13
9
  @password = password
14
- @oci = OCI8.new(user, password, database)
15
- ObjectSpace.define_finalizer( self, self.class.finalize(@oci) )
16
- end
17
-
18
- def self.finalize(oci)
19
- proc { oci.logoff }
20
- end
21
-
22
- # @param [Boolean] value
23
- def blocking=(value)
24
- oci.non_blocking = !value
25
- blocking?
26
- end
27
-
28
- def blocking?
29
- !oci.non_blocking?
30
10
  end
31
11
 
32
12
  def call(procedure, parameters = [])
33
13
  params = ''
34
14
  params = "'" + parameters.join("','") + "'" if parameters and parameters.size > 0
35
- oci.exec("call #{procedure}(#{params})")
15
+ system "echo \"call #{procedure}(#{params});\" | sqlplus -S #{@user}/#{@password}@#{@database}"
36
16
  end
37
17
 
38
- def execute(statement, *bindvars, &block)
39
- oci.exec(statement, *bindvars, &block)
18
+ def execute(sql)
19
+ process_result `echo "#{sql}" | sqlplus -S #{@user}/#{@password}@#{@database}`
40
20
  end
41
21
 
42
22
  def run(script, parameters = [])
@@ -18,36 +18,66 @@ module Libis
18
18
  def get(path, params = {}, headers = {}, &block)
19
19
  response = client[path].get({params: params}.merge headers, &block)
20
20
  parse_result response, &block
21
- rescue ::RestClient::Exception => e
21
+ rescue ::RestClient::ServerBrokeConnection, IOError, EOFError, Errno::ECONNRESET, Errno::ECONNABORTED, Errno::EPIPE => e
22
+ unless (tries ||= 0) > 3; sleep(5 ** tries); tries += 1; retry; end
22
23
  return {error_type: e.class.name, error_name: e.message, response: parse_result(e.response, &block)}
24
+ rescue Net::ReadTimeout, Timeout::Error => e
25
+ unless (tries ||= 0) > 1; sleep(5 ** tries); tries += 1; retry; end
26
+ return {error_type: e.class.name, error_name: e.message, response: parse_result(e.response, &block)}
27
+ rescue Exception => e
28
+ return {error_type: e.class.name, error_name: e.message, response: nil}
23
29
  end
24
30
 
25
31
  def post_url(path, params = {}, headers = {}, &block)
26
32
  response = client[path].post({params: params}.merge headers, &block)
27
33
  parse_result response, &block
28
- rescue ::RestClient::Exception => e
34
+ rescue ::RestClient::ServerBrokeConnection, IOError, EOFError, Errno::ECONNRESET, Errno::ECONNABORTED, Errno::EPIPE => e
35
+ unless (tries ||= 0) > 3; sleep(5 ** tries); tries += 1; retry; end
36
+ return {error_type: e.class.name, error_name: e.message, response: parse_result(e.response, &block)}
37
+ rescue Net::ReadTimeout, Timeout::Error => e
38
+ unless (tries ||= 0) > 1; sleep(5 ** tries); tries += 1; retry; end
29
39
  return {error_type: e.class.name, error_name: e.message, response: parse_result(e.response, &block)}
40
+ rescue Exception => e
41
+ return {error_type: e.class.name, error_name: e.message, response: nil}
30
42
  end
31
43
 
32
44
  def post_data(path, payload, headers = {}, &block)
33
45
  response = client[path].post(payload, headers, &block)
34
46
  parse_result response, &block
35
- rescue ::RestClient::Exception => e
47
+ rescue ::RestClient::ServerBrokeConnection, IOError, EOFError, Errno::ECONNRESET, Errno::ECONNABORTED, Errno::EPIPE => e
48
+ unless (tries ||= 0) > 3; sleep(5 ** tries); tries += 1; retry; end
49
+ return {error_type: e.class.name, error_name: e.message, response: parse_result(e.response, &block)}
50
+ rescue Net::ReadTimeout, Timeout::Error => e
51
+ unless (tries ||= 0) > 1; sleep(5 ** tries); tries += 1; retry; end
36
52
  return {error_type: e.class.name, error_name: e.message, response: parse_result(e.response, &block)}
53
+ rescue Exception => e
54
+ return {error_type: e.class.name, error_name: e.message, response: nil}
37
55
  end
38
56
 
39
57
  def put_url(path, params = {}, headers = {}, &block)
40
58
  response = client[path].put({params: params}.merge headers, &block)
41
59
  parse_result response, &block
42
- rescue ::RestClient::Exception => e
60
+ rescue ::RestClient::ServerBrokeConnection, IOError, EOFError, Errno::ECONNRESET, Errno::ECONNABORTED, Errno::EPIPE => e
61
+ unless (tries ||= 0) > 3; sleep(5 ** tries); tries += 1; retry; end
43
62
  return {error_type: e.class.name, error_name: e.message, response: parse_result(e.response, &block)}
63
+ rescue Net::ReadTimeout, Timeout::Error => e
64
+ unless (tries ||= 0) > 1; sleep(5 ** tries); tries += 1; retry; end
65
+ return {error_type: e.class.name, error_name: e.message, response: parse_result(e.response, &block)}
66
+ rescue Exception => e
67
+ return {error_type: e.class.name, error_name: e.message, response: nil}
44
68
  end
45
69
 
46
70
  def put_data(path, payload, headers = {}, &block)
47
71
  response = client[path].put(payload, headers, &block)
48
72
  parse_result response, &block
49
- rescue ::RestClient::Exception => e
73
+ rescue ::RestClient::ServerBrokeConnection, IOError, EOFError, Errno::ECONNRESET, Errno::ECONNABORTED, Errno::EPIPE => e
74
+ unless (tries ||= 0) > 3; sleep(5 ** tries); tries += 1; retry; end
75
+ return {error_type: e.class.name, error_name: e.message, response: parse_result(e.response, &block)}
76
+ rescue Net::ReadTimeout, Timeout::Error => e
77
+ unless (tries ||= 0) > 1; sleep(5 ** tries); tries += 1; retry; end
50
78
  return {error_type: e.class.name, error_name: e.message, response: parse_result(e.response, &block)}
79
+ rescue Exception => e
80
+ return {error_type: e.class.name, error_name: e.message, response: nil}
51
81
  end
52
82
 
53
83
  protected
@@ -22,11 +22,13 @@ module Libis
22
22
  attribute :id, String
23
23
  attribute :name, String
24
24
  attribute :parent_id, String
25
+ attribute :collection_order, Integer
25
26
  attribute :description, String
26
27
  attribute :md_dc, MetaData
27
28
  attribute :md_source, Array[MetaData]
28
29
  attribute :navigate, Boolean
29
30
  attribute :publish, Boolean
31
+ attribute :thumbnail, String
30
32
  attribute :external_id, String
31
33
  attribute :external_system, String
32
34
 
@@ -37,6 +37,15 @@ module Libis
37
37
 
38
38
  return yield(response) if block_given?
39
39
  parse_result(response, parse_options)
40
+
41
+ rescue IOError, EOFError, Errno::ECONNRESET, Errno::ECONNABORTED, Errno::EPIPE => e
42
+ debug "Exception: #{e.class.name} '#{e.message}'"
43
+ unless (tries ||= 0) > 2; sleep(5 ** tries); tries += 1; retry; end
44
+ raise Libis::Services::ServiceError, "Persistent network error: #{e.class.name} '#{e.message}'"
45
+ rescue Net::ReadTimeout, Timeout::Error => e
46
+ debug "Exception: #{e.class.name} '#{e.message}'"
47
+ unless (tries ||= 0) > 1; sleep(5 ** tries); tries += 1; retry; end
48
+ raise Libis::Services::ServiceError, "Network timeout error: #{e.class.name} '#{e.message}'"
40
49
  end
41
50
 
42
51
  protected
@@ -1,5 +1,5 @@
1
1
  module Libis
2
2
  module Services
3
- VERSION = '0.1.7'
3
+ VERSION = '0.1.9'
4
4
  end
5
5
  end
@@ -6,10 +6,11 @@ require 'libis/services/alma/sru_service'
6
6
 
7
7
  describe 'Alma' do
8
8
 
9
+ # noinspection RubyLiteralArrayInspection
9
10
  let(:record) {
10
11
  {
11
- leader: '01205nas a2200337u 4500',
12
- controlfield: ['9930800070101471', '20151015113543.0', '881205c19679999be r|p|| 0|||a|dut c'],
12
+ leader: '01960nas a2200553u 4500',
13
+ controlfield: ['9930800070101471', '20160801110041.0', '881205c19679999be r|p|| 0|||a|dut c'],
13
14
  datafield: [
14
15
  {
15
16
  subfield: '(BeLVLBS)003080007LBS01-Aleph',
@@ -41,12 +42,6 @@ describe 'Alma' do
41
42
  }, {
42
43
  subfield: 'Digitale kopie van de gedrukte uitgave',
43
44
  :@tag => '500', :@ind1 => ' ', :@ind2 => ' '
44
- }, {
45
- subfield: 'E-journals',
46
- :@tag => '653', :@ind1 => ' ', :@ind2 => '6'
47
- }, {
48
- subfield: 'Collectie Kerk en Leven',
49
- :@tag => '699', :@ind1 => ' ', :@ind2 => ' '
50
45
  }, {
51
46
  subfield: ['KADOC', 'C1', 'Kerken en religie', '(ODIS-HT)'],
52
47
  :@tag => '650', :@ind1 => ' ', :@ind2 => '7'
@@ -59,9 +54,69 @@ describe 'Alma' do
59
54
  }, {
60
55
  subfield: ['KADOC', 'Studiecentrum voor Zielzorg en Predicatie', '(ODIS-ORG)24894'],
61
56
  :@tag => '650', :@ind1 => ' ', :@ind2 => '7'
57
+ }, {
58
+ subfield: 'E-journals',
59
+ :@tag => '653', :@ind1 => ' ', :@ind2 => '6'
60
+ }, {
61
+ subfield: 'Collectie Kerk en Leven',
62
+ :@tag => '699', :@ind1 => ' ', :@ind2 => ' '
62
63
  }, {
63
64
  subfield: 'KYE000486',
64
65
  :@tag => '983', :@ind1 => ' ', :@ind2 => ' '
66
+ }, {
67
+ subfield: ['EKAD', '(1967)7-35, 37-52'],
68
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
69
+ }, {
70
+ subfield: ['EKAD', '(1968)1-14, 17-49'],
71
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
72
+ }, {
73
+ subfield: ['EKAD', '(1969)1-10, 12-37, 39-49'],
74
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
75
+ }, {
76
+ subfield: ['EKAD', '(1970)1-50 volledig'],
77
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
78
+ }, {
79
+ subfield: ['EKAD', '(1971)1-28, 30-31, 33-37, 41-49'],
80
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
81
+ }, {
82
+ subfield: ['EKAD', '(1972)22, 30-32, 34-36, 38-50'],
83
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
84
+ }, {
85
+ subfield: ['EKAD', '(1973)1-50 volledig'],
86
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
87
+ }, {
88
+ subfield: ['EKAD', '(1974)1-25, 27-50'],
89
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
90
+ }, {
91
+ subfield: ['EKAD', '(1975)-(1992)volledig'],
92
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
93
+ }, {
94
+ subfield: ['EKAD', '(1993)1-10, 12-50'],
95
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
96
+ }, {
97
+ subfield: ['EKAD', '(1994)-(1996)volledig'],
98
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
99
+ }, {
100
+ subfield: ['EKAD', '(1997)volledig'],
101
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
102
+ }, {
103
+ subfield: ['EKAD', '(1998)1-53'],
104
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
105
+ }, {
106
+ subfield: ['EKAD', '(2000)1-16, 18-52'],
107
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
108
+ }, {
109
+ subfield: ['EKAD', '(2001)-(2003)volledig'],
110
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
111
+ }, {
112
+ subfield: ['EKAD', '(2004)1-53'],
113
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
114
+ }, {
115
+ subfield: ['EKAD', '(2005)1-8, 10-52'],
116
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
117
+ }, {
118
+ subfield: ['EKAD', '(2006)1-26, 29, 32-52'],
119
+ :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
65
120
  }, {
66
121
  subfield: ['EKAD', '(2007)39-42, 44, 46-49, 51-52'],
67
122
  :@tag => '993', :@ind1 => ' ', :@ind2 => ' '
@@ -97,7 +152,7 @@ describe 'Alma' do
97
152
  :@tag => '035', :@ind1 => ' ', :@ind2 => ' '
98
153
  })
99
154
  record[:datafield] << {
100
- subfield: ['KADOC', 'online', '201510', 'W', 'Collectie Kerk en Leven', 'local'],
155
+ subfield: ['KADOC', 'online', '201609', 'W', 'Collectie Kerk en Leven', 'local'],
101
156
  :@tag => '996', :@ind1 => ' ', :@ind2 => ' '
102
157
  }
103
158
  }
@@ -105,6 +160,7 @@ describe 'Alma' do
105
160
  it 'get record' do
106
161
  result = subject.get_marc('9930800070101480', 'l7xx8879c82a7d7b453a887a6e6dca8300fd').
107
162
  to_hash(:convert_tags_to => lambda { |tag| tag.snakecase.to_sym })
163
+ puts result
108
164
  check_container(record, result[:bib][:record])
109
165
  end
110
166
 
data/spec/ie_data.rb CHANGED
@@ -15,7 +15,7 @@ def expected_ies
15
15
  "objectType" => "INTELLECTUAL_ENTITY",
16
16
  "creationDate" => "2015-10-13 14:41:56",
17
17
  "createdBy" => "testadmin",
18
- "modificationDate" => "2015-11-18 16:22:13",
18
+ "modificationDate" => "2016-07-04 11:07:00",
19
19
  "modifiedBy" => "testadmin",
20
20
  "owner" => "CRS00.TESTINS.TESTDEP",
21
21
  "groupID" => "ABC123"
@@ -52,21 +52,16 @@ def expected_ies
52
52
  "Collection" => [
53
53
  {
54
54
  "collectionId" => "23082442",
55
- "collectionParentId" => "",
56
- "name" => "",
57
55
  "externalId" => "9999",
58
56
  "externalSystem" => "CollectiveAccess",
59
- "publish" => "",
60
- "navigate" => ""
61
57
  }
62
58
  ]
63
59
  },
64
60
  :rights => {
65
61
  "accessRightsPolicy" => [
66
62
  {
67
- "policyId" => "50740",
68
- "policyParameters" => "",
69
- "policyDescription" => "AR_IP_RANGE_KUL"
63
+ "policyId" => "AR_EVERYONE",
64
+ "policyDescription" => "No restrictions"
70
65
  }
71
66
  ]
72
67
  }
@@ -142,22 +137,14 @@ def expected_mets
142
137
  "generalFileCharacteristics" => [
143
138
  {
144
139
  "label" => "Zonsondergang Sinebjerg",
145
- "note" => "",
146
- "fileCreationDate" => "",
147
- "fileModificationDate" => "",
148
- "FileEntityType" => "",
149
- "compositionLevel" => "",
150
140
  "fileLocationType" => "FILE",
151
- "fileLocation" => "",
152
141
  "fileOriginalName" => "DSC03102.jpg",
153
- "fileOriginalPath" => "",
154
142
  "fileOriginalID" =>
155
143
  "/operational_shared/operational_export_directory/IE403595/import/23230104//DSC03102.jpg",
156
144
  "fileExtension" => "jpg",
157
145
  "fileMIMEType" => "image/jpeg",
158
146
  "fileSizeBytes" => "216073",
159
147
  "formatLibraryId" => "fmt/44",
160
- "riskLibraryIdentifiers" => ""
161
148
  }
162
149
  ]
163
150
  },
@@ -470,7 +457,6 @@ def expected_mets
470
457
  "physicalCarrierMedia" => "SD card",
471
458
  "deliveryPriority" => "1",
472
459
  "orderingSequence" => "1",
473
- "RepresentationCode" => "HIGH",
474
460
  "RepresentationOriginalName" => "K&K/2015/08",
475
461
  "UserDefinedA" => "A1",
476
462
  "UserDefinedB" => "B1",
@@ -487,7 +473,7 @@ def expected_mets
487
473
  "objectType" => "REPRESENTATION",
488
474
  "creationDate" => "2015-10-13 14:41:56",
489
475
  "createdBy" => "testadmin",
490
- "modificationDate" => "2015-10-31 11:43:11",
476
+ "modificationDate" => "2016-07-04 11:07:00",
491
477
  "modifiedBy" => "testadmin",
492
478
  "owner" => "CRS00.TESTINS.TESTDEP",
493
479
  "groupID" => "originals"
@@ -637,7 +623,7 @@ def expected_mets
637
623
  "objectType" => "FILE",
638
624
  "creationDate" => "2015-10-31 11:19:45",
639
625
  "createdBy" => "testadmin",
640
- "modificationDate" => "2015-10-31 11:19:45",
626
+ "modificationDate" => "2015-10-31 11:19:46",
641
627
  "modifiedBy" => "testadmin",
642
628
  "owner" => "CRS00.TESTINS.TESTDEP"
643
629
  }
@@ -660,7 +646,7 @@ def expected_mets
660
646
  "objectType" => "FILE",
661
647
  "creationDate" => "2015-10-31 11:19:45",
662
648
  "createdBy" => "testadmin",
663
- "modificationDate" => "2015-10-31 11:19:45",
649
+ "modificationDate" => "2015-10-31 11:19:46",
664
650
  "modifiedBy" => "testadmin",
665
651
  "owner" => "CRS00.TESTINS.TESTDEP"
666
652
  }
@@ -683,7 +669,7 @@ def expected_mets
683
669
  "objectType" => "FILE",
684
670
  "creationDate" => "2015-10-31 11:19:45",
685
671
  "createdBy" => "testadmin",
686
- "modificationDate" => "2015-10-31 11:19:45",
672
+ "modificationDate" => "2015-10-31 11:19:46",
687
673
  "modifiedBy" => "testadmin",
688
674
  "owner" => "CRS00.TESTINS.TESTDEP"
689
675
  }
@@ -706,7 +692,7 @@ def expected_mets
706
692
  "objectType" => "FILE",
707
693
  "creationDate" => "2015-10-31 11:19:45",
708
694
  "createdBy" => "testadmin",
709
- "modificationDate" => "2015-10-31 11:19:45",
695
+ "modificationDate" => "2015-10-31 11:19:46",
710
696
  "modifiedBy" => "testadmin",
711
697
  "owner" => "CRS00.TESTINS.TESTDEP"
712
698
  }
@@ -6,364 +6,364 @@ require 'libis/services/primo/limo'
6
6
  describe 'Primo Limo service' do
7
7
  let(:subject) { Libis::Services::Primo::Limo.new }
8
8
 
9
- context 'marc' do
9
+ # context 'marc' do
10
+ #
11
+ # let(:record) {
12
+ # {
13
+ # leader: '10244cam 2200409 i 4500',
14
+ # controlfield: ['20150326194601.0', '130610s2014 xxk b 001 0 eng ', '9992161785401471'],
15
+ # datafield: [
16
+ # {
17
+ # subfield: %w(9781444167245 paperback),
18
+ # :@tag => '020', :@ind1 => ' ', :@ind2 => ' '
19
+ # }, {
20
+ # subfield: '40023930092',
21
+ # :@tag => '024', :@ind1 => '8', :@ind2 => ' '
22
+ # }, {
23
+ # subfield: '(BeLVLBS)9992161785401471',
24
+ # :@tag => '035', :@ind1 => ' ', :@ind2 => ' '
25
+ # }, {
26
+ # subfield: %w(DLC eng rda),
27
+ # :@tag => '040', :@ind1 => ' ', :@ind2 => ' '
28
+ # }, {
29
+ # subfield: ['The companion to development studies', 'edited by Vandana Desai and Robert B. Potter.'],
30
+ # :@tag => '245', :@ind1 => '0', :@ind2 => '4'
31
+ # }, {
32
+ # subfield: '3rd ed.',
33
+ # :@tag => '250', :@ind1 => ' ', :@ind2 => ' '
34
+ # }, {
35
+ # subfield: %w(London Routledge 2014.),
36
+ # :@tag => '264', :@ind1 => ' ', :@ind2 => '1'
37
+ # }, {
38
+ # subfield: ['XXII, 603 p.', '25 cm'],
39
+ # :@tag => '300', :@ind1 => ' ', :@ind2 => ' '
40
+ # }, {
41
+ # subfield: %w(text txt rdacontent),
42
+ # :@tag => '336', :@ind1 => ' ', :@ind2 => ' '
43
+ # }, {
44
+ # subfield: %w(unmediated n rdamedia),
45
+ # :@tag => '337', :@ind1 => ' ', :@ind2 => ' '
46
+ # }, {
47
+ # subfield: %w(volume nc rdacarrier),
48
+ # :@tag => '338', :@ind1 => ' ', :@ind2 => ' '
49
+ # }, {
50
+ # subfield: 'Development in a global-historical context / Ruth Craggs -- The Third World, developing countries, the South, emerging markets and rising powers / Klaus Dodds -- The nature of development studies / Robert B. Potter -- The impasse in development studies / Frans J. Schuurman -- Development and economic growth / A.P. Thirlwall -- Development and social welfare/human rights / Jennifer A. Elliott -- Development as freedom / Patricia Northover -- Race and development / Denise Ferreira da Silva -- Culture and development / Susanne Schech -- Ethics and development / Des Gasper -- New institutional economics and development / Philipp Lepenies -- Measuring development : from GDP to the HDI and wider approaches / Robert B. Potter -- The measurement of poverty / Howard White -- The millennium development goals / Jonathan Rigg -- BRICS and development / José E. Cassiolato -- Theories, strategies and ideologies of development : an overview / Robert B. Potter^^^^',
51
+ # :@tag => '505', :@ind1 => '0', :@ind2 => ' '
52
+ # }, {
53
+ # subfield: ['^^', "Smith, Ricardo and the world marketplace, 1776 to 2012 : back to the future and beyond / David Sapsford -- Enlightenment and the era of modernity / Marcus Power -- Dualistic and unilinear concepts of development / Tohy Binns -- Neoliberalism : globalization's neoconservative enforce of austerity / Dennis Conway -- Dependency theories : from ECLA to Andre Gunder Frank and beyond / Dennis Conway and Nikolas Heynen -- The New World Group of dependency scholars : reflections of a Caribbean avant-garde movement / Don D. Marshall -- World-systems theory : core, semiperipheral, and peripheral regions / Thomas Klak -- Indigenous knowledge and development / John Briggs -- Participatory development / Giles Mohan -- Postcolonialism / Cheryl McEwan -- Postmodernism and development / David Simon -- Post-development / James D. Sidaway -- Social capital and development / Anthony Bebbington and Katherine E. Foo -- Globalisation : an overview / Andrew Herod^^^^"],
54
+ # :@tag => '505', :@ind1 => '0', :@ind2 => ' '
55
+ # }, {
56
+ # subfield: ['^^', 'The new international division of labour / Alan Gilbert -- Global shift : industrialization and development / Ray Kiely -- Globalisation/localisation and development / Warwick E. Murray and John Overton -- Trade and industrial policy in developing countries / David Greenaway and Chris Milner -- The knowledge-based economy and digital divisions of labour / Mark Graham -- Corporate social responsibility and development / Dorothea Kleine -- The informal economy in cities of the South / Sylvia Chant -- Child labour / Sally Lloyd-Evans -- Migration and transnationalism / Katie D. Willis -- Diaspora and development / Claire Mercer and Ben Page -- Rural poverty / Edward Heinemann -- Rural livelihoods in a context of new scarcities / Annelies Zoomers -- Food security / Richard Tiffin -- Famine / Stephen Devereux -- Genetically modified crops and development / Matin Qaim -- Rural cooperatives : a new millennium? / Deborah R. Sick, Baburao S. Baviskar and Donald W. Attwood^^^^'],
57
+ # :@tag => '505', :@ind1 => '0', :@ind2 => ' '
58
+ # }, {
59
+ # subfield: ['^^', 'Land reform / Ruth Hall, Saturnino M. Borras Jr. and Ben White -- Gender, agriculture and land rights / Susie Jacobs -- The sustainable intensification of agriculture / Jules Pretty -- Urbanization in low- and middle-income nations in Africa, Asia and Latin America / David Satterthwaite -- Urban bias / Gareth A. Jones and Stuart Corbridge -- Global cities and the production of uneven development / Christof Parnreiter -- Studies in comparative urbanism / Colin McFarlane -- Prosperity or poverty? : Wealth, inequality and deprivation in urban areas / Carole Rakodi -- Housing the urban poor / Alan Gilbert -- Urbanization and environment in low- and middle-income nations / David Satterthwaite -- Transport and urban development / Eduardo Alcantara Vasconcellos -- Cities, crime and development / Paula Meth -- Sustainable development / Michael Redclift -- International regulation and the environment / Giles Atkinson --'],
60
+ # :@tag => '505', :@ind1 => '0', :@ind2 => ' '
61
+ # }, {
62
+ # subfield: "Climate change and development / Emily Boyd -- A changing climate and African development / Chukwumerije Okereke -- Vulnerability and disasters / Terry Cannon -- Ecosystem services and development / Tim Daw -- Natural resource management : a critical appraisal / Jayalaxshmi Mistry -- Water and hydropolitics / Jessica Budds and Alex Loftus -- Energy and development / Subhes C. Bhattacharyya -- Tourism and environment / Matthew Louis Bishop -- Transport and sustainability : developmental pathways / Robin Hickman -- Demographic change and gender / Tiziana Leone and Ernestina Coast -- Women and the state / Kathleen Staudt -- Gender, families and households / Ann Varley -- Feminism and feminist issues in the South : a critique of the \"development\" paradigm / Madhu Purnima Kishwar -- Rethinking gender and empowerment / Jane Parpart -- Gender and globalisation / Harriot Beazley and Vandana Desai^^^^",
63
+ # :@tag => '505', :@ind1 => '8', :@ind2 => ' '
64
+ # }, {
65
+ # subfield: ['^^', "Migrant women in the new economy : understanding the gender-migration-care nexus / Kavita Datta -- Women and political representation / Shirin M. Rai -- Sexuality and development / Andrea Cornwall -- Indigenous fertility control / Tulsi Patel -- Nutritional problems, policies and intervention strategies in developing economies / Prakash Shetty -- Motherhood, mortality and health care / Maya Unnithan-Kumar -- The development impacts of HIV/AIDS / Lora Sabin, Marion McNabb, and Mary Bachman DeSilva -- Ageing and poverty / Vandana Desai -- Health disparity : from \"health inequality\" to \"health inequity\" : the move to a moral paradigm in global health disparity / Hazel R. Barrett -- Disability / Ruth Evans -- Social protection in development context / Sarah Cook and Katja Hujo -- Female participation in education / Christopher Colclough -- The challenge of skill formation and training / Jeemol Unni^^^^"],
66
+ # :@tag => '505', :@ind1 => '8', :@ind2 => ' '
67
+ # }, {
68
+ # subfield: ['^^', "Development education, global citizenship and international volunteering / Matt Baillie Smith -- Gender- and age-based violence / Cathy McIlwaine -- Fragile states / Tom Goodfellow -- Refugees / Richard Black and Ceri Oeppen -- Humanitarian aid / Phil O'Keefe and Joanne Rose -- Global war on terror, development and civil society / Jude Howell -- Peace-building partnerships and human security / Timothy M. Shaw -- Nationalism / Michel Seymour -- Ethnic conflict and the state / Rajesh Venugopal -- Religions and development / Emma Tomalin -- Foreign aid in a changing world / Stephen Brown -- The rising powers as development donors and partners / Emma Mawdsley -- Aid conditionality / Jonathan R.W. Temple -- Aid effectiveness / Jonathan Glennie -- Global governance issues and the current crisis / Isabella Massa and José Brambila-Macias -- Change agents : a history of hope in NGOs, civil society, and the 99% / Alison Van Rooy -- Corruption and development / Susan Rose-Ackerman^^^^"],
69
+ # :@tag => '505', :@ind1 => '8', :@ind2 => ' '
70
+ # }, {
71
+ # subfield: ['^^', "The role of non-governmental organizations (NGOs) / Vandana Desai -- Non-government public action networks and global policy processes / Barbara Rugendyke -- Multilateral institutions : \"developing countries\" and \"emerging markets\" : stability or change? / Morten Bøås -- Is there a legal right to development? / Radha D'Souza."],
72
+ # :@tag => '505', :@ind1 => '8', :@ind2 => ' '
73
+ # }, {
74
+ # subfield: ["\"With over 115 concise and authoritative chapters covering a wide range of disciplines the book is divided into ten sections covering the nature of development, the theories and strategies of development, rural development, urbanization, gender, globalization, health and education, the political economy of violence and insecurity, environment and development, governance and development. This new third edition of The Companion to Development Studies is an essential read for students of development studies at all levels - from undergraduate to graduate - and across several disciplines including geography, international relations, politics, economics, sociology and anthropology\"--", 'Provided by publisher.'],
75
+ # :@tag => '520', :@ind1 => ' ', :@ind2 => ' '
76
+ # }, {
77
+ # subfield: ["\"The Companion to Development Studies contains over 109 chapters written by leading international experts within the field to provide a concise and authoritative overview of the key theoretical and practical issues dominating contemporary development studies. Covering a wide range of disciplines the book is divided into ten sections, each prefaced by a section introduction written by the editors. The sections cover: the nature of development, theories and strategies of development, globalization and development, rural development, urbanization and development, environment and development, gender, health and education, the political economy of violence and insecurity, and governance and development. This third edition has been extensively updated and contains 45 new contributions from leading authorities, dealing with pressing contemporary issues such as race and development, ethics and development, BRICs and development, global financial crisis, the knowledge based economy and digital divide, food security, GM crops, comparative urbanism, cities and crime, energy, water hydropolitics, climate change, disability, fragile states, global war on terror, ethnic conflict, legal rights to development, ecosystems services for development, just to name a few. Existing chapters have been thoroughly revised to include cutting-edge developments, and to present updated further reading and websites\"--", 'Provided by publisher.'],
78
+ # :@tag => '520', :@ind1 => ' ', :@ind2 => ' '
79
+ # }, {
80
+ # subfield: 'Includes bibliographical references and index.',
81
+ # :@tag => '504', :@ind1 => ' ', :@ind2 => ' '
82
+ # }, {
83
+ # subfield: 'Economic development.',
84
+ # :@tag => '650', :@ind1 => ' ', :@ind2 => '0'
85
+ # }, {
86
+ # subfield: 'Development economics.',
87
+ # :@tag => '650', :@ind1 => ' ', :@ind2 => '0'
88
+ # }, {
89
+ # subfield: 'Globalization.',
90
+ # :@tag => '650', :@ind1 => ' ', :@ind2 => '0'
91
+ # }, {
92
+ # subfield: %w(UDC 304.5 Development),
93
+ # :@tag => '650', :@ind1 => ' ', :@ind2 => '7'
94
+ # }, {
95
+ # subfield: ['Developing countries', 'Social conditions.'],
96
+ # :@tag => '651', :@ind1 => ' ', :@ind2 => '0'
97
+ # }, {
98
+ # subfield: ['Desai, Vandana', '1965-', 'edt'],
99
+ # :@tag => '700', :@ind1 => '1', :@ind2 => ' '
100
+ # }, {
101
+ # subfield: ['Potter, Robert B.', 'edt'],
102
+ # :@tag => '700', :@ind1 => '1', :@ind2 => ' '
103
+ # }, {
104
+ # subfield: %w(32KUL_LIBIS_NETWORK P 71174288370001471),
105
+ # :@tag => 'INST', :@ind1 => ' ', :@ind2 => ' '
106
+ # }, {
107
+ # subfield: %w(32KUL_KUL P 21355561730001488),
108
+ # :@tag => 'INST', :@ind1 => ' ', :@ind2 => ' '
109
+ # }
110
+ # ],
111
+ # :@xmlns => 'http://www.loc.gov/MARC21/slim', :'@xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance', :'@xsi:schema_location' => 'http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd'
112
+ # # }
113
+ # }
114
+ # }
115
+ #
116
+ # it 'get record' do
117
+ # result = subject.get_marc('32LIBIS_ALMA_DS71174288370001471')
118
+ # if result.is_a?(Libis::Tools::XmlDocument)
119
+ # result = result.to_hash(:convert_tags_to => lambda { |tag| tag.snakecase.to_sym })
120
+ # check_container(record, result[:record])
121
+ # end
122
+ # end
123
+ #
124
+ # end
10
125
 
11
- let(:record) {
12
- {
13
- leader: '10244cam 2200409 i 4500',
14
- controlfield: ['20150326194601.0', '130610s2014 xxk b 001 0 eng ', '9992161785401471'],
15
- datafield: [
16
- {
17
- subfield: %w(9781444167245 paperback),
18
- :@tag => '020', :@ind1 => ' ', :@ind2 => ' '
19
- }, {
20
- subfield: '40023930092',
21
- :@tag => '024', :@ind1 => '8', :@ind2 => ' '
22
- }, {
23
- subfield: '(BeLVLBS)9992161785401471',
24
- :@tag => '035', :@ind1 => ' ', :@ind2 => ' '
25
- }, {
26
- subfield: %w(DLC eng rda),
27
- :@tag => '040', :@ind1 => ' ', :@ind2 => ' '
28
- }, {
29
- subfield: ['The companion to development studies', 'edited by Vandana Desai and Robert B. Potter.'],
30
- :@tag => '245', :@ind1 => '0', :@ind2 => '4'
31
- }, {
32
- subfield: '3rd ed.',
33
- :@tag => '250', :@ind1 => ' ', :@ind2 => ' '
34
- }, {
35
- subfield: %w(London Routledge 2014.),
36
- :@tag => '264', :@ind1 => ' ', :@ind2 => '1'
37
- }, {
38
- subfield: ['XXII, 603 p.', '25 cm'],
39
- :@tag => '300', :@ind1 => ' ', :@ind2 => ' '
40
- }, {
41
- subfield: %w(text txt rdacontent),
42
- :@tag => '336', :@ind1 => ' ', :@ind2 => ' '
43
- }, {
44
- subfield: %w(unmediated n rdamedia),
45
- :@tag => '337', :@ind1 => ' ', :@ind2 => ' '
46
- }, {
47
- subfield: %w(volume nc rdacarrier),
48
- :@tag => '338', :@ind1 => ' ', :@ind2 => ' '
49
- }, {
50
- subfield: 'Development in a global-historical context / Ruth Craggs -- The Third World, developing countries, the South, emerging markets and rising powers / Klaus Dodds -- The nature of development studies / Robert B. Potter -- The impasse in development studies / Frans J. Schuurman -- Development and economic growth / A.P. Thirlwall -- Development and social welfare/human rights / Jennifer A. Elliott -- Development as freedom / Patricia Northover -- Race and development / Denise Ferreira da Silva -- Culture and development / Susanne Schech -- Ethics and development / Des Gasper -- New institutional economics and development / Philipp Lepenies -- Measuring development : from GDP to the HDI and wider approaches / Robert B. Potter -- The measurement of poverty / Howard White -- The millennium development goals / Jonathan Rigg -- BRICS and development / José E. Cassiolato -- Theories, strategies and ideologies of development : an overview / Robert B. Potter^^^^',
51
- :@tag => '505', :@ind1 => '0', :@ind2 => ' '
52
- }, {
53
- subfield: ['^^', "Smith, Ricardo and the world marketplace, 1776 to 2012 : back to the future and beyond / David Sapsford -- Enlightenment and the era of modernity / Marcus Power -- Dualistic and unilinear concepts of development / Tohy Binns -- Neoliberalism : globalization's neoconservative enforce of austerity / Dennis Conway -- Dependency theories : from ECLA to Andre Gunder Frank and beyond / Dennis Conway and Nikolas Heynen -- The New World Group of dependency scholars : reflections of a Caribbean avant-garde movement / Don D. Marshall -- World-systems theory : core, semiperipheral, and peripheral regions / Thomas Klak -- Indigenous knowledge and development / John Briggs -- Participatory development / Giles Mohan -- Postcolonialism / Cheryl McEwan -- Postmodernism and development / David Simon -- Post-development / James D. Sidaway -- Social capital and development / Anthony Bebbington and Katherine E. Foo -- Globalisation : an overview / Andrew Herod^^^^"],
54
- :@tag => '505', :@ind1 => '0', :@ind2 => ' '
55
- }, {
56
- subfield: ['^^', 'The new international division of labour / Alan Gilbert -- Global shift : industrialization and development / Ray Kiely -- Globalisation/localisation and development / Warwick E. Murray and John Overton -- Trade and industrial policy in developing countries / David Greenaway and Chris Milner -- The knowledge-based economy and digital divisions of labour / Mark Graham -- Corporate social responsibility and development / Dorothea Kleine -- The informal economy in cities of the South / Sylvia Chant -- Child labour / Sally Lloyd-Evans -- Migration and transnationalism / Katie D. Willis -- Diaspora and development / Claire Mercer and Ben Page -- Rural poverty / Edward Heinemann -- Rural livelihoods in a context of new scarcities / Annelies Zoomers -- Food security / Richard Tiffin -- Famine / Stephen Devereux -- Genetically modified crops and development / Matin Qaim -- Rural cooperatives : a new millennium? / Deborah R. Sick, Baburao S. Baviskar and Donald W. Attwood^^^^'],
57
- :@tag => '505', :@ind1 => '0', :@ind2 => ' '
58
- }, {
59
- subfield: ['^^', 'Land reform / Ruth Hall, Saturnino M. Borras Jr. and Ben White -- Gender, agriculture and land rights / Susie Jacobs -- The sustainable intensification of agriculture / Jules Pretty -- Urbanization in low- and middle-income nations in Africa, Asia and Latin America / David Satterthwaite -- Urban bias / Gareth A. Jones and Stuart Corbridge -- Global cities and the production of uneven development / Christof Parnreiter -- Studies in comparative urbanism / Colin McFarlane -- Prosperity or poverty? : Wealth, inequality and deprivation in urban areas / Carole Rakodi -- Housing the urban poor / Alan Gilbert -- Urbanization and environment in low- and middle-income nations / David Satterthwaite -- Transport and urban development / Eduardo Alcantara Vasconcellos -- Cities, crime and development / Paula Meth -- Sustainable development / Michael Redclift -- International regulation and the environment / Giles Atkinson --'],
60
- :@tag => '505', :@ind1 => '0', :@ind2 => ' '
61
- }, {
62
- subfield: "Climate change and development / Emily Boyd -- A changing climate and African development / Chukwumerije Okereke -- Vulnerability and disasters / Terry Cannon -- Ecosystem services and development / Tim Daw -- Natural resource management : a critical appraisal / Jayalaxshmi Mistry -- Water and hydropolitics / Jessica Budds and Alex Loftus -- Energy and development / Subhes C. Bhattacharyya -- Tourism and environment / Matthew Louis Bishop -- Transport and sustainability : developmental pathways / Robin Hickman -- Demographic change and gender / Tiziana Leone and Ernestina Coast -- Women and the state / Kathleen Staudt -- Gender, families and households / Ann Varley -- Feminism and feminist issues in the South : a critique of the \"development\" paradigm / Madhu Purnima Kishwar -- Rethinking gender and empowerment / Jane Parpart -- Gender and globalisation / Harriot Beazley and Vandana Desai^^^^",
63
- :@tag => '505', :@ind1 => '8', :@ind2 => ' '
64
- }, {
65
- subfield: ['^^', "Migrant women in the new economy : understanding the gender-migration-care nexus / Kavita Datta -- Women and political representation / Shirin M. Rai -- Sexuality and development / Andrea Cornwall -- Indigenous fertility control / Tulsi Patel -- Nutritional problems, policies and intervention strategies in developing economies / Prakash Shetty -- Motherhood, mortality and health care / Maya Unnithan-Kumar -- The development impacts of HIV/AIDS / Lora Sabin, Marion McNabb, and Mary Bachman DeSilva -- Ageing and poverty / Vandana Desai -- Health disparity : from \"health inequality\" to \"health inequity\" : the move to a moral paradigm in global health disparity / Hazel R. Barrett -- Disability / Ruth Evans -- Social protection in development context / Sarah Cook and Katja Hujo -- Female participation in education / Christopher Colclough -- The challenge of skill formation and training / Jeemol Unni^^^^"],
66
- :@tag => '505', :@ind1 => '8', :@ind2 => ' '
67
- }, {
68
- subfield: ['^^', "Development education, global citizenship and international volunteering / Matt Baillie Smith -- Gender- and age-based violence / Cathy McIlwaine -- Fragile states / Tom Goodfellow -- Refugees / Richard Black and Ceri Oeppen -- Humanitarian aid / Phil O'Keefe and Joanne Rose -- Global war on terror, development and civil society / Jude Howell -- Peace-building partnerships and human security / Timothy M. Shaw -- Nationalism / Michel Seymour -- Ethnic conflict and the state / Rajesh Venugopal -- Religions and development / Emma Tomalin -- Foreign aid in a changing world / Stephen Brown -- The rising powers as development donors and partners / Emma Mawdsley -- Aid conditionality / Jonathan R.W. Temple -- Aid effectiveness / Jonathan Glennie -- Global governance issues and the current crisis / Isabella Massa and José Brambila-Macias -- Change agents : a history of hope in NGOs, civil society, and the 99% / Alison Van Rooy -- Corruption and development / Susan Rose-Ackerman^^^^"],
69
- :@tag => '505', :@ind1 => '8', :@ind2 => ' '
70
- }, {
71
- subfield: ['^^', "The role of non-governmental organizations (NGOs) / Vandana Desai -- Non-government public action networks and global policy processes / Barbara Rugendyke -- Multilateral institutions : \"developing countries\" and \"emerging markets\" : stability or change? / Morten Bøås -- Is there a legal right to development? / Radha D'Souza."],
72
- :@tag => '505', :@ind1 => '8', :@ind2 => ' '
73
- }, {
74
- subfield: ["\"With over 115 concise and authoritative chapters covering a wide range of disciplines the book is divided into ten sections covering the nature of development, the theories and strategies of development, rural development, urbanization, gender, globalization, health and education, the political economy of violence and insecurity, environment and development, governance and development. This new third edition of The Companion to Development Studies is an essential read for students of development studies at all levels - from undergraduate to graduate - and across several disciplines including geography, international relations, politics, economics, sociology and anthropology\"--", 'Provided by publisher.'],
75
- :@tag => '520', :@ind1 => ' ', :@ind2 => ' '
76
- }, {
77
- subfield: ["\"The Companion to Development Studies contains over 109 chapters written by leading international experts within the field to provide a concise and authoritative overview of the key theoretical and practical issues dominating contemporary development studies. Covering a wide range of disciplines the book is divided into ten sections, each prefaced by a section introduction written by the editors. The sections cover: the nature of development, theories and strategies of development, globalization and development, rural development, urbanization and development, environment and development, gender, health and education, the political economy of violence and insecurity, and governance and development. This third edition has been extensively updated and contains 45 new contributions from leading authorities, dealing with pressing contemporary issues such as race and development, ethics and development, BRICs and development, global financial crisis, the knowledge based economy and digital divide, food security, GM crops, comparative urbanism, cities and crime, energy, water hydropolitics, climate change, disability, fragile states, global war on terror, ethnic conflict, legal rights to development, ecosystems services for development, just to name a few. Existing chapters have been thoroughly revised to include cutting-edge developments, and to present updated further reading and websites\"--", 'Provided by publisher.'],
78
- :@tag => '520', :@ind1 => ' ', :@ind2 => ' '
79
- }, {
80
- subfield: 'Includes bibliographical references and index.',
81
- :@tag => '504', :@ind1 => ' ', :@ind2 => ' '
82
- }, {
83
- subfield: 'Economic development.',
84
- :@tag => '650', :@ind1 => ' ', :@ind2 => '0'
85
- }, {
86
- subfield: 'Development economics.',
87
- :@tag => '650', :@ind1 => ' ', :@ind2 => '0'
88
- }, {
89
- subfield: 'Globalization.',
90
- :@tag => '650', :@ind1 => ' ', :@ind2 => '0'
91
- }, {
92
- subfield: %w(UDC 304.5 Development),
93
- :@tag => '650', :@ind1 => ' ', :@ind2 => '7'
94
- }, {
95
- subfield: ['Developing countries', 'Social conditions.'],
96
- :@tag => '651', :@ind1 => ' ', :@ind2 => '0'
97
- }, {
98
- subfield: ['Desai, Vandana', '1965-', 'edt'],
99
- :@tag => '700', :@ind1 => '1', :@ind2 => ' '
100
- }, {
101
- subfield: ['Potter, Robert B.', 'edt'],
102
- :@tag => '700', :@ind1 => '1', :@ind2 => ' '
103
- }, {
104
- subfield: %w(32KUL_LIBIS_NETWORK P 71174288370001471),
105
- :@tag => 'INST', :@ind1 => ' ', :@ind2 => ' '
106
- }, {
107
- subfield: %w(32KUL_KUL P 21355561730001488),
108
- :@tag => 'INST', :@ind1 => ' ', :@ind2 => ' '
109
- }
110
- ],
111
- :@xmlns => 'http://www.loc.gov/MARC21/slim', :'@xmlns:xsi' => 'http://www.w3.org/2001/XMLSchema-instance', :'@xsi:schema_location' => 'http://www.loc.gov/MARC21/slim http://www.loc.gov/standards/marcxml/schema/MARC21slim.xsd'
112
- # }
113
- }
114
- }
115
-
116
- it 'get record' do
117
- result = subject.get_marc('32LIBIS_ALMA_DS71174288370001471')
118
- if result.is_a?(Libis::Tools::XmlDocument)
119
- result = result.to_hash(:convert_tags_to => lambda { |tag| tag.snakecase.to_sym })
120
- check_container(record, result[:record])
121
- end
122
- end
123
-
124
- end
125
-
126
- context 'pnx' do
127
-
128
- let(:record) {
129
- {
130
- control: {
131
- sourcerecordid: '71174288370001471',
132
- sourceid: '32LIBIS_ALMA_DS',
133
- recordid: '32LIBIS_ALMA_DS71174288370001471',
134
- originalsourceid: %w(32KUL_LIBIS_NETWORK 32KUL_KUL),
135
- sourceformat: 'MARC21',
136
- sourcesystem: 'Alma',
137
- almaid: %w(32KUL_LIBIS_NETWORK:71174288370001471 32KUL_KUL:21355561730001488)
138
- },
139
- display: {
140
- type: 'book',
141
- title: ['The companion to development studies', 'edited by Vandana Desai and Robert B. Potter.'],
142
- creator: 'Desai, Vandana (1965) (Editor) ; Potter, Robert B. (Editor)',
143
- edition: '3rd ed.',
144
- publisher: 'London: Routledge, 2014',
145
- creationdate: '2014',
146
- format: 'XXII, 603 p. 25 cm',
147
- identifier: '$$CISBN:$$V9781444167245',
148
- subject: ['Development', 'Developing countries Social conditions.', 'Economic development.', 'Development economics.', 'Globalization.'],
149
- # description: 'edited by Vandana Desai and Robert B. Potter.',
150
- language: 'eng',
151
- source: 'Catalogue',
152
- coverage: [
153
- 'Development in a global-historical context / Ruth Craggs -- The Third World, developing countries, the South, emerging markets and rising powers / Klaus Dodds -- The nature of development studies / Robert B. Potter -- The impasse in development studies / Frans J. Schuurman -- Development and economic growth / A.P. Thirlwall -- Development and social welfare/human rights / Jennifer A. Elliott -- Development as freedom / Patricia Northover -- Race and development / Denise Ferreira da Silva -- Culture and development / Susanne Schech -- Ethics and development / Des Gasper -- New institutional economics and development / Philipp Lepenies -- Measuring development : from GDP to the HDI and wider approaches / Robert B. Potter -- The measurement of poverty / Howard White -- The millennium development goals / Jonathan Rigg -- BRICS and development / José E. Cassiolato -- Theories, strategies and ideologies of development : an overview / Robert B. Potter^^^^',
154
- "Smith, Ricardo and the world marketplace, 1776 to 2012 : back to the future and beyond / David Sapsford -- Enlightenment and the era of modernity / Marcus Power -- Dualistic and unilinear concepts of development / Tohy Binns -- Neoliberalism : globalization's neoconservative enforce of austerity / Dennis Conway -- Dependency theories : from ECLA to Andre Gunder Frank and beyond / Dennis Conway and Nikolas Heynen -- The New World Group of dependency scholars : reflections of a Caribbean avant-garde movement / Don D. Marshall -- World-systems theory : core, semiperipheral, and peripheral regions / Thomas Klak -- Indigenous knowledge and development / John Briggs -- Participatory development / Giles Mohan -- Postcolonialism / Cheryl McEwan -- Postmodernism and development / David Simon -- Post-development / James D. Sidaway -- Social capital and development / Anthony Bebbington and Katherine E. Foo -- Globalisation : an overview / Andrew Herod^^^^",
155
- 'The new international division of labour / Alan Gilbert -- Global shift : industrialization and development / Ray Kiely -- Globalisation/localisation and development / Warwick E. Murray and John Overton -- Trade and industrial policy in developing countries / David Greenaway and Chris Milner -- The knowledge-based economy and digital divisions of labour / Mark Graham -- Corporate social responsibility and development / Dorothea Kleine -- The informal economy in cities of the South / Sylvia Chant -- Child labour / Sally Lloyd-Evans -- Migration and transnationalism / Katie D. Willis -- Diaspora and development / Claire Mercer and Ben Page -- Rural poverty / Edward Heinemann -- Rural livelihoods in a context of new scarcities / Annelies Zoomers -- Food security / Richard Tiffin -- Famine / Stephen Devereux -- Genetically modified crops and development / Matin Qaim -- Rural cooperatives : a new millennium? / Deborah R. Sick, Baburao S. Baviskar and Donald W. Attwood^^^^',
156
- 'Land reform / Ruth Hall, Saturnino M. Borras Jr. and Ben White -- Gender, agriculture and land rights / Susie Jacobs -- The sustainable intensification of agriculture / Jules Pretty -- Urbanization in low- and middle-income nations in Africa, Asia and Latin America / David Satterthwaite -- Urban bias / Gareth A. Jones and Stuart Corbridge -- Global cities and the production of uneven development / Christof Parnreiter -- Studies in comparative urbanism / Colin McFarlane -- Prosperity or poverty? : Wealth, inequality and deprivation in urban areas / Carole Rakodi -- Housing the urban poor / Alan Gilbert -- Urbanization and environment in low- and middle-income nations / David Satterthwaite -- Transport and urban development / Eduardo Alcantara Vasconcellos -- Cities, crime and development / Paula Meth -- Sustainable development / Michael Redclift -- International regulation and the environment / Giles Atkinson --',
157
- "Climate change and development / Emily Boyd -- A changing climate and African development / Chukwumerije Okereke -- Vulnerability and disasters / Terry Cannon -- Ecosystem services and development / Tim Daw -- Natural resource management : a critical appraisal / Jayalaxshmi Mistry -- Water and hydropolitics / Jessica Budds and Alex Loftus -- Energy and development / Subhes C. Bhattacharyya -- Tourism and environment / Matthew Louis Bishop -- Transport and sustainability : developmental pathways / Robin Hickman -- Demographic change and gender / Tiziana Leone and Ernestina Coast -- Women and the state / Kathleen Staudt -- Gender, families and households / Ann Varley -- Feminism and feminist issues in the South : a critique of the \"development\" paradigm / Madhu Purnima Kishwar -- Rethinking gender and empowerment / Jane Parpart -- Gender and globalisation / Harriot Beazley and Vandana Desai^^^^",
158
- "Migrant women in the new economy : understanding the gender-migration-care nexus / Kavita Datta -- Women and political representation / Shirin M. Rai -- Sexuality and development / Andrea Cornwall -- Indigenous fertility control / Tulsi Patel -- Nutritional problems, policies and intervention strategies in developing economies / Prakash Shetty -- Motherhood, mortality and health care / Maya Unnithan-Kumar -- The development impacts of HIV/AIDS / Lora Sabin, Marion McNabb, and Mary Bachman DeSilva -- Ageing and poverty / Vandana Desai -- Health disparity : from \"health inequality\" to \"health inequity\" : the move to a moral paradigm in global health disparity / Hazel R. Barrett -- Disability / Ruth Evans -- Social protection in development context / Sarah Cook and Katja Hujo -- Female participation in education / Christopher Colclough -- The challenge of skill formation and training / Jeemol Unni^^^^",
159
- "Development education, global citizenship and international volunteering / Matt Baillie Smith -- Gender- and age-based violence / Cathy McIlwaine -- Fragile states / Tom Goodfellow -- Refugees / Richard Black and Ceri Oeppen -- Humanitarian aid / Phil O'Keefe and Joanne Rose -- Global war on terror, development and civil society / Jude Howell -- Peace-building partnerships and human security / Timothy M. Shaw -- Nationalism / Michel Seymour -- Ethnic conflict and the state / Rajesh Venugopal -- Religions and development / Emma Tomalin -- Foreign aid in a changing world / Stephen Brown -- The rising powers as development donors and partners / Emma Mawdsley -- Aid conditionality / Jonathan R.W. Temple -- Aid effectiveness / Jonathan Glennie -- Global governance issues and the current crisis / Isabella Massa and José Brambila-Macias -- Change agents : a history of hope in NGOs, civil society, and the 99% / Alison Van Rooy -- Corruption and development / Susan Rose-Ackerman^^^^",
160
- "The role of non-governmental organizations (NGOs) / Vandana Desai -- Non-government public action networks and global policy processes / Barbara Rugendyke -- Multilateral institutions : \"developing countries\" and \"emerging markets\" : stability or change? / Morten Bøås -- Is there a legal right to development? / Radha D'Souza."
161
- ],
162
- availlibrary: '$$IKUL$$LKUL_WBIB_LIB$$1WBIB: Openrek-collectie (CBA)$$2(3 304.5 2014 )$$Savailable$$X32KUL_KUL$$YWBIB$$ZWBIB$$P1',
163
- lds04: [
164
- "\"With over 115 concise and authoritative chapters covering a wide range of disciplines the book is divided into ten sections covering the nature of development, the theories and strategies of development, rural development, urbanization, gender, globalization, health and education, the political economy of violence and insecurity, environment and development, governance and development. This new third edition of The Companion to Development Studies is an essential read for students of development studies at all levels - from undergraduate to graduate - and across several disciplines including geography, international relations, politics, economics, sociology and anthropology\"-- Provided by publisher.",
165
- "\"The Companion to Development Studies contains over 109 chapters written by leading international experts within the field to provide a concise and authoritative overview of the key theoretical and practical issues dominating contemporary development studies. Covering a wide range of disciplines the book is divided into ten sections, each prefaced by a section introduction written by the editors. The sections cover: the nature of development, theories and strategies of development, globalization and development, rural development, urbanization and development, environment and development, gender, health and education, the political economy of violence and insecurity, and governance and development. This third edition has been extensively updated and contains 45 new contributions from leading authorities, dealing with pressing contemporary issues such as race and development, ethics and development, BRICs and development, global financial crisis, the knowledge based economy and digital divide, food security, GM crops, comparative urbanism, cities and crime, energy, water hydropolitics, climate change, disability, fragile states, global war on terror, ethnic conflict, legal rights to development, ecosystems services for development, just to name a few. Existing chapters have been thoroughly revised to include cutting-edge developments, and to present updated further reading and websites\"-- Provided by publisher."
166
- ],
167
- lds10: 'P',
168
- lds13: '9781444167245',
169
- lds21: 'WBIBphysical201503',
170
- lds12: 'KUL,32LIBISNET,KUL',
171
- availinstitution: '$$IKUL$$Savailable',
172
- availpnx: 'available'
173
- },
174
- links: {
175
- thumbnail: %w($$Tbeeldendatabank_thumb $$Tamazon_thumb $$Tsyndetics_thumb $$Tgoogle_thumb),
176
- linktoexcerpt: '$$Tsyndetics_excerpt$$Elinktoexcerpt'
177
- },
178
- search: {
179
- creatorcontrib: [
180
- 'Desai Vandana',
181
- 'Desai Vandana 1965',
182
- 'Desai, V',
183
- 'Desai, Vandana 1965-',
184
- 'Vandana Desai',
185
- 'desaivandana1965',
186
- 'Potter Robert B',
187
- 'Potter, R',
188
- 'Potter, Robert B',
189
- 'Robert B Potter',
190
- 'potterrobertb',
191
- 'edited by Vandana Desai and Robert B. Potter.'
192
- ],
193
- title: 'The companion to development studies',
194
- subject: [
195
- 'Economic development.',
196
- 'Development economics.',
197
- 'Globalization.',
198
- '304.5 Development',
199
- 'Developing countries Social conditions.'
200
- ],
201
- fulltext: 'fulltext',
202
- general: [
203
- '(BeLVLBS)9992161785401471',
204
- 'LBS019992161785401471',
205
- '3rd ed.',
206
- 'London Routledge 2014.',
207
- 'text txt',
208
- 'unmediated n',
209
- 'volume nc',
210
- 'XXII, 603 p. 25 cm',
211
- 'Development in a global-historical context / Ruth Craggs -- The Third World, developing countries, the South, emerging markets and rising powers / Klaus Dodds -- The nature of development studies / Robert B. Potter -- The impasse in development studies / Frans J. Schuurman -- Development and economic growth / A.P. Thirlwall -- Development and social welfare/human rights / Jennifer A. Elliott -- Development as freedom / Patricia Northover -- Race and development / Denise Ferreira da Silva -- Culture and development / Susanne Schech -- Ethics and development / Des Gasper -- New institutional economics and development / Philipp Lepenies -- Measuring development : from GDP to the HDI and wider approaches / Robert B. Potter -- The measurement of poverty / Howard White -- The millennium development goals / Jonathan Rigg -- BRICS and development / José E. Cassiolato -- Theories, strategies and ideologies of development : an overview / Robert B. Potter^^^^',
212
- "Smith, Ricardo and the world marketplace, 1776 to 2012 : back to the future and beyond / David Sapsford -- Enlightenment and the era of modernity / Marcus Power -- Dualistic and unilinear concepts of development / Tohy Binns -- Neoliberalism : globalization's neoconservative enforce of austerity / Dennis Conway -- Dependency theories : from ECLA to Andre Gunder Frank and beyond / Dennis Conway and Nikolas Heynen -- The New World Group of dependency scholars : reflections of a Caribbean avant-garde movement / Don D. Marshall -- World-systems theory : core, semiperipheral, and peripheral regions / Thomas Klak -- Indigenous knowledge and development / John Briggs -- Participatory development / Giles Mohan -- Postcolonialism / Cheryl McEwan -- Postmodernism and development / David Simon -- Post-development / James D. Sidaway -- Social capital and development / Anthony Bebbington and Katherine E. Foo -- Globalisation : an overview / Andrew Herod^^^^",
213
- 'The new international division of labour / Alan Gilbert -- Global shift : industrialization and development / Ray Kiely -- Globalisation/localisation and development / Warwick E. Murray and John Overton -- Trade and industrial policy in developing countries / David Greenaway and Chris Milner -- The knowledge-based economy and digital divisions of labour / Mark Graham -- Corporate social responsibility and development / Dorothea Kleine -- The informal economy in cities of the South / Sylvia Chant -- Child labour / Sally Lloyd-Evans -- Migration and transnationalism / Katie D. Willis -- Diaspora and development / Claire Mercer and Ben Page -- Rural poverty / Edward Heinemann -- Rural livelihoods in a context of new scarcities / Annelies Zoomers -- Food security / Richard Tiffin -- Famine / Stephen Devereux -- Genetically modified crops and development / Matin Qaim -- Rural cooperatives : a new millennium? / Deborah R. Sick, Baburao S. Baviskar and Donald W. Attwood^^^^',
214
- 'Land reform / Ruth Hall, Saturnino M. Borras Jr. and Ben White -- Gender, agriculture and land rights / Susie Jacobs -- The sustainable intensification of agriculture / Jules Pretty -- Urbanization in low- and middle-income nations in Africa, Asia and Latin America / David Satterthwaite -- Urban bias / Gareth A. Jones and Stuart Corbridge -- Global cities and the production of uneven development / Christof Parnreiter -- Studies in comparative urbanism / Colin McFarlane -- Prosperity or poverty? : Wealth, inequality and deprivation in urban areas / Carole Rakodi -- Housing the urban poor / Alan Gilbert -- Urbanization and environment in low- and middle-income nations / David Satterthwaite -- Transport and urban development / Eduardo Alcantara Vasconcellos -- Cities, crime and development / Paula Meth -- Sustainable development / Michael Redclift -- International regulation and the environment / Giles Atkinson --',
215
- "Climate change and development / Emily Boyd -- A changing climate and African development / Chukwumerije Okereke -- Vulnerability and disasters / Terry Cannon -- Ecosystem services and development / Tim Daw -- Natural resource management : a critical appraisal / Jayalaxshmi Mistry -- Water and hydropolitics / Jessica Budds and Alex Loftus -- Energy and development / Subhes C. Bhattacharyya -- Tourism and environment / Matthew Louis Bishop -- Transport and sustainability : developmental pathways / Robin Hickman -- Demographic change and gender / Tiziana Leone and Ernestina Coast -- Women and the state / Kathleen Staudt -- Gender, families and households / Ann Varley -- Feminism and feminist issues in the South : a critique of the \"development\" paradigm / Madhu Purnima Kishwar -- Rethinking gender and empowerment / Jane Parpart -- Gender and globalisation / Harriot Beazley and Vandana Desai^^^^",
216
- "Migrant women in the new economy : understanding the gender-migration-care nexus / Kavita Datta -- Women and political representation / Shirin M. Rai -- Sexuality and development / Andrea Cornwall -- Indigenous fertility control / Tulsi Patel -- Nutritional problems, policies and intervention strategies in developing economies / Prakash Shetty -- Motherhood, mortality and health care / Maya Unnithan-Kumar -- The development impacts of HIV/AIDS / Lora Sabin, Marion McNabb, and Mary Bachman DeSilva -- Ageing and poverty / Vandana Desai -- Health disparity : from \"health inequality\" to \"health inequity\" : the move to a moral paradigm in global health disparity / Hazel R. Barrett -- Disability / Ruth Evans -- Social protection in development context / Sarah Cook and Katja Hujo -- Female participation in education / Christopher Colclough -- The challenge of skill formation and training / Jeemol Unni^^^^",
217
- "Development education, global citizenship and international volunteering / Matt Baillie Smith -- Gender- and age-based violence / Cathy McIlwaine -- Fragile states / Tom Goodfellow -- Refugees / Richard Black and Ceri Oeppen -- Humanitarian aid / Phil O'Keefe and Joanne Rose -- Global war on terror, development and civil society / Jude Howell -- Peace-building partnerships and human security / Timothy M. Shaw -- Nationalism / Michel Seymour -- Ethnic conflict and the state / Rajesh Venugopal -- Religions and development / Emma Tomalin -- Foreign aid in a changing world / Stephen Brown -- The rising powers as development donors and partners / Emma Mawdsley -- Aid conditionality / Jonathan R.W. Temple -- Aid effectiveness / Jonathan Glennie -- Global governance issues and the current crisis / Isabella Massa and José Brambila-Macias -- Change agents : a history of hope in NGOs, civil society, and the 99% / Alison Van Rooy -- Corruption and development / Susan Rose-Ackerman^^^^",
218
- "The role of non-governmental organizations (NGOs) / Vandana Desai -- Non-government public action networks and global policy processes / Barbara Rugendyke -- Multilateral institutions : \"developing countries\" and \"emerging markets\" : stability or change? / Morten Bøås -- Is there a legal right to development? / Radha D'Souza.",
219
- "\"With over 115 concise and authoritative chapters covering a wide range of disciplines the book is divided into ten sections covering the nature of development, the theories and strategies of development, rural development, urbanization, gender, globalization, health and education, the political economy of violence and insecurity, environment and development, governance and development. This new third edition of The Companion to Development Studies is an essential read for students of development studies at all levels - from undergraduate to graduate - and across several disciplines including geography, international relations, politics, economics, sociology and anthropology\"-- Provided by publisher.",
220
- "\"The Companion to Development Studies contains over 109 chapters written by leading international experts within the field to provide a concise and authoritative overview of the key theoretical and practical issues dominating contemporary development studies. Covering a wide range of disciplines the book is divided into ten sections, each prefaced by a section introduction written by the editors. The sections cover: the nature of development, theories and strategies of development, globalization and development, rural development, urbanization and development, environment and development, gender, health and education, the political economy of violence and insecurity, and governance and development. This third edition has been extensively updated and contains 45 new contributions from leading authorities, dealing with pressing contemporary issues such as race and development, ethics and development, BRICs and development, global financial crisis, the knowledge based economy and digital divide, food security, GM crops, comparative urbanism, cities and crime, energy, water hydropolitics, climate change, disability, fragile states, global war on terror, ethnic conflict, legal rights to development, ecosystems services for development, just to name a few. Existing chapters have been thoroughly revised to include cutting-edge developments, and to present updated further reading and websites\"-- Provided by publisher.",
221
- 'The companion to development studies',
222
- 'Desai Vandana',
223
- 'Desai Vandana 1965',
224
- 'Desai, V',
225
- 'Desai, Vandana 1965-',
226
- 'Vandana Desai',
227
- 'desaivandana1965',
228
- 'Potter Robert B',
229
- 'Potter, R',
230
- 'Potter, Robert B',
231
- 'Robert B Potter',
232
- 'potterrobertb',
233
- 'edited by Vandana Desai and Robert B Potter',
234
- '9992161785401471'
235
- ],
236
- sourceid: '32LIBIS_ALMA_DS',
237
- recordid: '32LIBIS_ALMA_DS71174288370001471',
238
- isbn: [
239
- '9781444167245 paperback',
240
- '40023930092',
241
- '9781444167245'
242
- ],
243
- toc: [
244
- 'Development in a global-historical context / Ruth Craggs -- The Third World, developing countries, the South, emerging markets and rising powers / Klaus Dodds -- The nature of development studies / Robert B. Potter -- The impasse in development studies / Frans J. Schuurman -- Development and economic growth / A.P. Thirlwall -- Development and social welfare/human rights / Jennifer A. Elliott -- Development as freedom / Patricia Northover -- Race and development / Denise Ferreira da Silva -- Culture and development / Susanne Schech -- Ethics and development / Des Gasper -- New institutional economics and development / Philipp Lepenies -- Measuring development : from GDP to the HDI and wider approaches / Robert B. Potter -- The measurement of poverty / Howard White -- The millennium development goals / Jonathan Rigg -- BRICS and development / José E. Cassiolato -- Theories, strategies and ideologies of development : an overview / Robert B. Potter^^^^',
245
- "Smith, Ricardo and the world marketplace, 1776 to 2012 : back to the future and beyond / David Sapsford -- Enlightenment and the era of modernity / Marcus Power -- Dualistic and unilinear concepts of development / Tohy Binns -- Neoliberalism : globalization's neoconservative enforce of austerity / Dennis Conway -- Dependency theories : from ECLA to Andre Gunder Frank and beyond / Dennis Conway and Nikolas Heynen -- The New World Group of dependency scholars : reflections of a Caribbean avant-garde movement / Don D. Marshall -- World-systems theory : core, semiperipheral, and peripheral regions / Thomas Klak -- Indigenous knowledge and development / John Briggs -- Participatory development / Giles Mohan -- Postcolonialism / Cheryl McEwan -- Postmodernism and development / David Simon -- Post-development / James D. Sidaway -- Social capital and development / Anthony Bebbington and Katherine E. Foo -- Globalisation : an overview / Andrew Herod^^^^",
246
- 'The new international division of labour / Alan Gilbert -- Global shift : industrialization and development / Ray Kiely -- Globalisation/localisation and development / Warwick E. Murray and John Overton -- Trade and industrial policy in developing countries / David Greenaway and Chris Milner -- The knowledge-based economy and digital divisions of labour / Mark Graham -- Corporate social responsibility and development / Dorothea Kleine -- The informal economy in cities of the South / Sylvia Chant -- Child labour / Sally Lloyd-Evans -- Migration and transnationalism / Katie D. Willis -- Diaspora and development / Claire Mercer and Ben Page -- Rural poverty / Edward Heinemann -- Rural livelihoods in a context of new scarcities / Annelies Zoomers -- Food security / Richard Tiffin -- Famine / Stephen Devereux -- Genetically modified crops and development / Matin Qaim -- Rural cooperatives : a new millennium? / Deborah R. Sick, Baburao S. Baviskar and Donald W. Attwood^^^^',
247
- 'Land reform / Ruth Hall, Saturnino M. Borras Jr. and Ben White -- Gender, agriculture and land rights / Susie Jacobs -- The sustainable intensification of agriculture / Jules Pretty -- Urbanization in low- and middle-income nations in Africa, Asia and Latin America / David Satterthwaite -- Urban bias / Gareth A. Jones and Stuart Corbridge -- Global cities and the production of uneven development / Christof Parnreiter -- Studies in comparative urbanism / Colin McFarlane -- Prosperity or poverty? : Wealth, inequality and deprivation in urban areas / Carole Rakodi -- Housing the urban poor / Alan Gilbert -- Urbanization and environment in low- and middle-income nations / David Satterthwaite -- Transport and urban development / Eduardo Alcantara Vasconcellos -- Cities, crime and development / Paula Meth -- Sustainable development / Michael Redclift -- International regulation and the environment / Giles Atkinson --',
248
- "Climate change and development / Emily Boyd -- A changing climate and African development / Chukwumerije Okereke -- Vulnerability and disasters / Terry Cannon -- Ecosystem services and development / Tim Daw -- Natural resource management : a critical appraisal / Jayalaxshmi Mistry -- Water and hydropolitics / Jessica Budds and Alex Loftus -- Energy and development / Subhes C. Bhattacharyya -- Tourism and environment / Matthew Louis Bishop -- Transport and sustainability : developmental pathways / Robin Hickman -- Demographic change and gender / Tiziana Leone and Ernestina Coast -- Women and the state / Kathleen Staudt -- Gender, families and households / Ann Varley -- Feminism and feminist issues in the South : a critique of the \"development\" paradigm / Madhu Purnima Kishwar -- Rethinking gender and empowerment / Jane Parpart -- Gender and globalisation / Harriot Beazley and Vandana Desai^^^^",
249
- "Migrant women in the new economy : understanding the gender-migration-care nexus / Kavita Datta -- Women and political representation / Shirin M. Rai -- Sexuality and development / Andrea Cornwall -- Indigenous fertility control / Tulsi Patel -- Nutritional problems, policies and intervention strategies in developing economies / Prakash Shetty -- Motherhood, mortality and health care / Maya Unnithan-Kumar -- The development impacts of HIV/AIDS / Lora Sabin, Marion McNabb, and Mary Bachman DeSilva -- Ageing and poverty / Vandana Desai -- Health disparity : from \"health inequality\" to \"health inequity\" : the move to a moral paradigm in global health disparity / Hazel R. Barrett -- Disability / Ruth Evans -- Social protection in development context / Sarah Cook and Katja Hujo -- Female participation in education / Christopher Colclough -- The challenge of skill formation and training / Jeemol Unni^^^^",
250
- "Development education, global citizenship and international volunteering / Matt Baillie Smith -- Gender- and age-based violence / Cathy McIlwaine -- Fragile states / Tom Goodfellow -- Refugees / Richard Black and Ceri Oeppen -- Humanitarian aid / Phil O'Keefe and Joanne Rose -- Global war on terror, development and civil society / Jude Howell -- Peace-building partnerships and human security / Timothy M. Shaw -- Nationalism / Michel Seymour -- Ethnic conflict and the state / Rajesh Venugopal -- Religions and development / Emma Tomalin -- Foreign aid in a changing world / Stephen Brown -- The rising powers as development donors and partners / Emma Mawdsley -- Aid conditionality / Jonathan R.W. Temple -- Aid effectiveness / Jonathan Glennie -- Global governance issues and the current crisis / Isabella Massa and José Brambila-Macias -- Change agents : a history of hope in NGOs, civil society, and the 99% / Alison Van Rooy -- Corruption and development / Susan Rose-Ackerman^^^^",
251
- "The role of non-governmental organizations (NGOs) / Vandana Desai -- Non-government public action networks and global policy processes / Barbara Rugendyke -- Multilateral institutions : \"developing countries\" and \"emerging markets\" : stability or change? / Morten Bøås -- Is there a legal right to development? / Radha D'Souza."
252
- ],
253
- rsrctype: 'book',
254
- creationdate: '2014',
255
- startdate: '20140101',
256
- enddate: '20141231',
257
- addsrcrecordid: %w(9992161785401471 9992121337301488),
258
- searchscope: %w(32LIBIS_ALMA_DS 32LIBIS_ALMA_DS_P KUL KUL_WBIB_LIB KUL_P 32LIBISNET 32LIBISNET_P),
259
- scope: %w(32LIBIS_ALMA_DS 32LIBIS_ALMA_DS_P KUL KUL_WBIB_LIB KUL_P 32LIBISNET 32LIBISNET_P),
260
- lsr04: %w(AcquisitionDate201503WBIBphysical CollectionWBIBWBIB Callnumber330452014 AcquisitionTagcluster3WBIBphysical),
261
- lsr35: '9992161785401471'
262
- },
263
- sort: {
264
- title: 'The companion to development studies',
265
- creationdate: '20140101',
266
- author: 'Desai, Vandana (1965) (Editor) ; Potter, Robert B. (Editor)',
267
- lso01: 'The companion to development studies',
268
- lso02: '20140101'
269
- },
270
- facets: {
271
- language: 'eng',
272
- creationdate: '2014',
273
- topic: [
274
- 'Economic development.',
275
- 'Development economics.',
276
- 'Globalization.',
277
- 'Development',
278
- 'Developing countries Social conditions.'
279
- ],
280
- collection: 'LIBISnet Catalogue',
281
- toplevel: 'print_copies',
282
- prefilter: 'books',
283
- rsrctype: 'books',
284
- creatorcontrib: [
285
- 'Desai, V',
286
- 'Potter, R'
287
- ],
288
- library: 'KUL_WBIB_LIB',
289
- atoz: 'T'
290
- },
291
- dedup: {
292
- t: '1',
293
- c2: '9781444167245P',
294
- c3: 'companiontodevelopmentstudiesengbookALMAAlma-P',
295
- c4: '2014',
296
- f3: '9781444167245',
297
- f5: 'companiontodevelopmentstudiesALMA-P',
298
- f6: '2014',
299
- f7: 'companion to development studiesALMA',
300
- f9: 'xxk',
301
- f13: '3rd ed.',
302
- f20: '9992161785401471'
303
- },
304
- frbr: {
305
- t: '1',
306
- k1: '$$KDESAIVANDANAPOTTERROBERTB$$AA',
307
- k3: '$$Kthe companion to development studies$$AT'
308
- },
309
- delivery: {
310
- institution: %w(KUL 32LIBISNET),
311
- delcategory: %w(Alma-P$$I32LIBISNET Alma-P$$IKUL)
312
- },
313
- ranking: {
314
- booster1: '1',
315
- booster2: '1'
316
- },
317
- addata: {
318
- aulast: 'Desai',
319
- aufirst: 'Vandana',
320
- addau: [
321
- 'Desai, Vandana',
322
- 'Potter, Robert B'
323
- ],
324
- btitle: [
325
- 'The companion to development studies',
326
- 'edited by Vandana Desai and Robert B. Potter.'
327
- ],
328
- date: '2014',
329
- risdate: '2014',
330
- isbn: '9781444167245',
331
- format: 'book',
332
- genre: 'book',
333
- ristype: 'BOOK',
334
- notes: 'Includes bibliographical references and index.',
335
- abstract: [
336
- "\"With over 115 concise and authoritative chapters covering a wide range of disciplines the book is divided into ten sections covering the nature of development, the theories and strategies of development, rural development, urbanization, gender, globalization, health and education, the political economy of violence and insecurity, environment and development, governance and development. This new third edition of The Companion to Development Studies is an essential read for students of development studies at all levels - from undergraduate to graduate - and across several disciplines including geography, international relations, politics, economics, sociology and anthropology\"--",
337
- "\"The Companion to Development Studies contains over 109 chapters written by leading international experts within the field to provide a concise and authoritative overview of the key theoretical and practical issues dominating contemporary development studies. Covering a wide range of disciplines the book is divided into ten sections, each prefaced by a section introduction written by the editors. The sections cover: the nature of development, theories and strategies of development, globalization and development, rural development, urbanization and development, environment and development, gender, health and education, the political economy of violence and insecurity, and governance and development. This third edition has been extensively updated and contains 45 new contributions from leading authorities, dealing with pressing contemporary issues such as race and development, ethics and development, BRICs and development, global financial crisis, the knowledge based economy and digital divide, food security, GM crops, comparative urbanism, cities and crime, energy, water hydropolitics, climate change, disability, fragile states, global war on terror, ethnic conflict, legal rights to development, ecosystems services for development, just to name a few. Existing chapters have been thoroughly revised to include cutting-edge developments, and to present updated further reading and websites\"--"
338
- ]
339
- },
340
- browse: {
341
- author: '$$DDesai, Vandana (1965) (Editor) ; Potter, Robert B. (Editor)$$EDesai, Vandana (1965) (Editor) ; Potter, Robert B. (Editor)',
342
- title: [
343
- '$$DThe companion to development studies',
344
- '$$Dedited by Vandana Desai and Robert B. Potter.$$EThe companion to development studies$$Eedited by Vandana Desai and Robert B. Potter.'
345
- ],
346
- subject: [
347
- '$$DDevelopment$$EDevelopment',
348
- '$$DDeveloping countries Social conditions.$$EDeveloping countries Social conditions.',
349
- '$$DEconomic development.$$EEconomic development.',
350
- '$$DDevelopment economics.$$EDevelopment economics.',
351
- '$$DGlobalization.$$EGlobalization.'
352
- ],
353
- institution: %w(KUL 32LIBISNET)
354
- }
355
-
356
- }
357
- }
358
-
359
- it 'get record' do
360
- result = subject.get_pnx('32LIBIS_ALMA_DS71174288370001471')
361
- if result.is_a?(Libis::Tools::XmlDocument)
362
- result = result.to_hash(:convert_tags_to => lambda { |tag| tag.snakecase.to_sym })
363
- check_container(record, result[:record])
364
- end
365
- end
366
-
367
- end
126
+ # context 'pnx' do
127
+ #
128
+ # let(:record) {
129
+ # {
130
+ # control: {
131
+ # sourcerecordid: '71174288370001471',
132
+ # sourceid: '32LIBIS_ALMA_DS',
133
+ # recordid: '32LIBIS_ALMA_DS71174288370001471',
134
+ # originalsourceid: %w(32KUL_LIBIS_NETWORK 32KUL_KUL),
135
+ # sourceformat: 'MARC21',
136
+ # sourcesystem: 'Alma',
137
+ # almaid: %w(32KUL_LIBIS_NETWORK:71174288370001471 32KUL_KUL:21355561730001488)
138
+ # },
139
+ # display: {
140
+ # type: 'book',
141
+ # title: ['The companion to development studies', 'edited by Vandana Desai and Robert B. Potter.'],
142
+ # creator: 'Desai, Vandana (1965) (Editor) ; Potter, Robert B. (Editor)',
143
+ # edition: '3rd ed.',
144
+ # publisher: 'London: Routledge, 2014',
145
+ # creationdate: '2014',
146
+ # format: 'XXII, 603 p. 25 cm',
147
+ # identifier: '$$CISBN:$$V9781444167245',
148
+ # subject: ['Development', 'Developing countries Social conditions.', 'Economic development.', 'Development economics.', 'Globalization.'],
149
+ # # description: 'edited by Vandana Desai and Robert B. Potter.',
150
+ # language: 'eng',
151
+ # source: 'Catalogue',
152
+ # coverage: [
153
+ # 'Development in a global-historical context / Ruth Craggs -- The Third World, developing countries, the South, emerging markets and rising powers / Klaus Dodds -- The nature of development studies / Robert B. Potter -- The impasse in development studies / Frans J. Schuurman -- Development and economic growth / A.P. Thirlwall -- Development and social welfare/human rights / Jennifer A. Elliott -- Development as freedom / Patricia Northover -- Race and development / Denise Ferreira da Silva -- Culture and development / Susanne Schech -- Ethics and development / Des Gasper -- New institutional economics and development / Philipp Lepenies -- Measuring development : from GDP to the HDI and wider approaches / Robert B. Potter -- The measurement of poverty / Howard White -- The millennium development goals / Jonathan Rigg -- BRICS and development / José E. Cassiolato -- Theories, strategies and ideologies of development : an overview / Robert B. Potter^^^^',
154
+ # "Smith, Ricardo and the world marketplace, 1776 to 2012 : back to the future and beyond / David Sapsford -- Enlightenment and the era of modernity / Marcus Power -- Dualistic and unilinear concepts of development / Tohy Binns -- Neoliberalism : globalization's neoconservative enforce of austerity / Dennis Conway -- Dependency theories : from ECLA to Andre Gunder Frank and beyond / Dennis Conway and Nikolas Heynen -- The New World Group of dependency scholars : reflections of a Caribbean avant-garde movement / Don D. Marshall -- World-systems theory : core, semiperipheral, and peripheral regions / Thomas Klak -- Indigenous knowledge and development / John Briggs -- Participatory development / Giles Mohan -- Postcolonialism / Cheryl McEwan -- Postmodernism and development / David Simon -- Post-development / James D. Sidaway -- Social capital and development / Anthony Bebbington and Katherine E. Foo -- Globalisation : an overview / Andrew Herod^^^^",
155
+ # 'The new international division of labour / Alan Gilbert -- Global shift : industrialization and development / Ray Kiely -- Globalisation/localisation and development / Warwick E. Murray and John Overton -- Trade and industrial policy in developing countries / David Greenaway and Chris Milner -- The knowledge-based economy and digital divisions of labour / Mark Graham -- Corporate social responsibility and development / Dorothea Kleine -- The informal economy in cities of the South / Sylvia Chant -- Child labour / Sally Lloyd-Evans -- Migration and transnationalism / Katie D. Willis -- Diaspora and development / Claire Mercer and Ben Page -- Rural poverty / Edward Heinemann -- Rural livelihoods in a context of new scarcities / Annelies Zoomers -- Food security / Richard Tiffin -- Famine / Stephen Devereux -- Genetically modified crops and development / Matin Qaim -- Rural cooperatives : a new millennium? / Deborah R. Sick, Baburao S. Baviskar and Donald W. Attwood^^^^',
156
+ # 'Land reform / Ruth Hall, Saturnino M. Borras Jr. and Ben White -- Gender, agriculture and land rights / Susie Jacobs -- The sustainable intensification of agriculture / Jules Pretty -- Urbanization in low- and middle-income nations in Africa, Asia and Latin America / David Satterthwaite -- Urban bias / Gareth A. Jones and Stuart Corbridge -- Global cities and the production of uneven development / Christof Parnreiter -- Studies in comparative urbanism / Colin McFarlane -- Prosperity or poverty? : Wealth, inequality and deprivation in urban areas / Carole Rakodi -- Housing the urban poor / Alan Gilbert -- Urbanization and environment in low- and middle-income nations / David Satterthwaite -- Transport and urban development / Eduardo Alcantara Vasconcellos -- Cities, crime and development / Paula Meth -- Sustainable development / Michael Redclift -- International regulation and the environment / Giles Atkinson --',
157
+ # "Climate change and development / Emily Boyd -- A changing climate and African development / Chukwumerije Okereke -- Vulnerability and disasters / Terry Cannon -- Ecosystem services and development / Tim Daw -- Natural resource management : a critical appraisal / Jayalaxshmi Mistry -- Water and hydropolitics / Jessica Budds and Alex Loftus -- Energy and development / Subhes C. Bhattacharyya -- Tourism and environment / Matthew Louis Bishop -- Transport and sustainability : developmental pathways / Robin Hickman -- Demographic change and gender / Tiziana Leone and Ernestina Coast -- Women and the state / Kathleen Staudt -- Gender, families and households / Ann Varley -- Feminism and feminist issues in the South : a critique of the \"development\" paradigm / Madhu Purnima Kishwar -- Rethinking gender and empowerment / Jane Parpart -- Gender and globalisation / Harriot Beazley and Vandana Desai^^^^",
158
+ # "Migrant women in the new economy : understanding the gender-migration-care nexus / Kavita Datta -- Women and political representation / Shirin M. Rai -- Sexuality and development / Andrea Cornwall -- Indigenous fertility control / Tulsi Patel -- Nutritional problems, policies and intervention strategies in developing economies / Prakash Shetty -- Motherhood, mortality and health care / Maya Unnithan-Kumar -- The development impacts of HIV/AIDS / Lora Sabin, Marion McNabb, and Mary Bachman DeSilva -- Ageing and poverty / Vandana Desai -- Health disparity : from \"health inequality\" to \"health inequity\" : the move to a moral paradigm in global health disparity / Hazel R. Barrett -- Disability / Ruth Evans -- Social protection in development context / Sarah Cook and Katja Hujo -- Female participation in education / Christopher Colclough -- The challenge of skill formation and training / Jeemol Unni^^^^",
159
+ # "Development education, global citizenship and international volunteering / Matt Baillie Smith -- Gender- and age-based violence / Cathy McIlwaine -- Fragile states / Tom Goodfellow -- Refugees / Richard Black and Ceri Oeppen -- Humanitarian aid / Phil O'Keefe and Joanne Rose -- Global war on terror, development and civil society / Jude Howell -- Peace-building partnerships and human security / Timothy M. Shaw -- Nationalism / Michel Seymour -- Ethnic conflict and the state / Rajesh Venugopal -- Religions and development / Emma Tomalin -- Foreign aid in a changing world / Stephen Brown -- The rising powers as development donors and partners / Emma Mawdsley -- Aid conditionality / Jonathan R.W. Temple -- Aid effectiveness / Jonathan Glennie -- Global governance issues and the current crisis / Isabella Massa and José Brambila-Macias -- Change agents : a history of hope in NGOs, civil society, and the 99% / Alison Van Rooy -- Corruption and development / Susan Rose-Ackerman^^^^",
160
+ # "The role of non-governmental organizations (NGOs) / Vandana Desai -- Non-government public action networks and global policy processes / Barbara Rugendyke -- Multilateral institutions : \"developing countries\" and \"emerging markets\" : stability or change? / Morten Bøås -- Is there a legal right to development? / Radha D'Souza."
161
+ # ],
162
+ # availlibrary: '$$IKUL$$LKUL_WBIB_LIB$$1WBIB: Openrek-collectie (CBA)$$2(3 304.5 2014 )$$Savailable$$X32KUL_KUL$$YWBIB$$ZWBIB$$P1',
163
+ # lds04: [
164
+ # "\"With over 115 concise and authoritative chapters covering a wide range of disciplines the book is divided into ten sections covering the nature of development, the theories and strategies of development, rural development, urbanization, gender, globalization, health and education, the political economy of violence and insecurity, environment and development, governance and development. This new third edition of The Companion to Development Studies is an essential read for students of development studies at all levels - from undergraduate to graduate - and across several disciplines including geography, international relations, politics, economics, sociology and anthropology\"-- Provided by publisher.",
165
+ # "\"The Companion to Development Studies contains over 109 chapters written by leading international experts within the field to provide a concise and authoritative overview of the key theoretical and practical issues dominating contemporary development studies. Covering a wide range of disciplines the book is divided into ten sections, each prefaced by a section introduction written by the editors. The sections cover: the nature of development, theories and strategies of development, globalization and development, rural development, urbanization and development, environment and development, gender, health and education, the political economy of violence and insecurity, and governance and development. This third edition has been extensively updated and contains 45 new contributions from leading authorities, dealing with pressing contemporary issues such as race and development, ethics and development, BRICs and development, global financial crisis, the knowledge based economy and digital divide, food security, GM crops, comparative urbanism, cities and crime, energy, water hydropolitics, climate change, disability, fragile states, global war on terror, ethnic conflict, legal rights to development, ecosystems services for development, just to name a few. Existing chapters have been thoroughly revised to include cutting-edge developments, and to present updated further reading and websites\"-- Provided by publisher."
166
+ # ],
167
+ # lds10: 'P',
168
+ # lds13: '9781444167245',
169
+ # lds21: 'WBIBphysical201503',
170
+ # lds12: 'KUL,32LIBISNET,KUL',
171
+ # availinstitution: '$$IKUL$$Savailable',
172
+ # availpnx: 'available'
173
+ # },
174
+ # links: {
175
+ # thumbnail: %w($$Tbeeldendatabank_thumb $$Tamazon_thumb $$Tsyndetics_thumb $$Tgoogle_thumb),
176
+ # linktoexcerpt: '$$Tsyndetics_excerpt$$Elinktoexcerpt'
177
+ # },
178
+ # search: {
179
+ # creatorcontrib: [
180
+ # 'Desai Vandana',
181
+ # 'Desai Vandana 1965',
182
+ # 'Desai, V',
183
+ # 'Desai, Vandana 1965-',
184
+ # 'Vandana Desai',
185
+ # 'desaivandana1965',
186
+ # 'Potter Robert B',
187
+ # 'Potter, R',
188
+ # 'Potter, Robert B',
189
+ # 'Robert B Potter',
190
+ # 'potterrobertb',
191
+ # 'edited by Vandana Desai and Robert B. Potter.'
192
+ # ],
193
+ # title: 'The companion to development studies',
194
+ # subject: [
195
+ # 'Economic development.',
196
+ # 'Development economics.',
197
+ # 'Globalization.',
198
+ # '304.5 Development',
199
+ # 'Developing countries Social conditions.'
200
+ # ],
201
+ # fulltext: 'fulltext',
202
+ # general: [
203
+ # '(BeLVLBS)9992161785401471',
204
+ # 'LBS019992161785401471',
205
+ # '3rd ed.',
206
+ # 'London Routledge 2014.',
207
+ # 'text txt',
208
+ # 'unmediated n',
209
+ # 'volume nc',
210
+ # 'XXII, 603 p. 25 cm',
211
+ # 'Development in a global-historical context / Ruth Craggs -- The Third World, developing countries, the South, emerging markets and rising powers / Klaus Dodds -- The nature of development studies / Robert B. Potter -- The impasse in development studies / Frans J. Schuurman -- Development and economic growth / A.P. Thirlwall -- Development and social welfare/human rights / Jennifer A. Elliott -- Development as freedom / Patricia Northover -- Race and development / Denise Ferreira da Silva -- Culture and development / Susanne Schech -- Ethics and development / Des Gasper -- New institutional economics and development / Philipp Lepenies -- Measuring development : from GDP to the HDI and wider approaches / Robert B. Potter -- The measurement of poverty / Howard White -- The millennium development goals / Jonathan Rigg -- BRICS and development / José E. Cassiolato -- Theories, strategies and ideologies of development : an overview / Robert B. Potter^^^^',
212
+ # "Smith, Ricardo and the world marketplace, 1776 to 2012 : back to the future and beyond / David Sapsford -- Enlightenment and the era of modernity / Marcus Power -- Dualistic and unilinear concepts of development / Tohy Binns -- Neoliberalism : globalization's neoconservative enforce of austerity / Dennis Conway -- Dependency theories : from ECLA to Andre Gunder Frank and beyond / Dennis Conway and Nikolas Heynen -- The New World Group of dependency scholars : reflections of a Caribbean avant-garde movement / Don D. Marshall -- World-systems theory : core, semiperipheral, and peripheral regions / Thomas Klak -- Indigenous knowledge and development / John Briggs -- Participatory development / Giles Mohan -- Postcolonialism / Cheryl McEwan -- Postmodernism and development / David Simon -- Post-development / James D. Sidaway -- Social capital and development / Anthony Bebbington and Katherine E. Foo -- Globalisation : an overview / Andrew Herod^^^^",
213
+ # 'The new international division of labour / Alan Gilbert -- Global shift : industrialization and development / Ray Kiely -- Globalisation/localisation and development / Warwick E. Murray and John Overton -- Trade and industrial policy in developing countries / David Greenaway and Chris Milner -- The knowledge-based economy and digital divisions of labour / Mark Graham -- Corporate social responsibility and development / Dorothea Kleine -- The informal economy in cities of the South / Sylvia Chant -- Child labour / Sally Lloyd-Evans -- Migration and transnationalism / Katie D. Willis -- Diaspora and development / Claire Mercer and Ben Page -- Rural poverty / Edward Heinemann -- Rural livelihoods in a context of new scarcities / Annelies Zoomers -- Food security / Richard Tiffin -- Famine / Stephen Devereux -- Genetically modified crops and development / Matin Qaim -- Rural cooperatives : a new millennium? / Deborah R. Sick, Baburao S. Baviskar and Donald W. Attwood^^^^',
214
+ # 'Land reform / Ruth Hall, Saturnino M. Borras Jr. and Ben White -- Gender, agriculture and land rights / Susie Jacobs -- The sustainable intensification of agriculture / Jules Pretty -- Urbanization in low- and middle-income nations in Africa, Asia and Latin America / David Satterthwaite -- Urban bias / Gareth A. Jones and Stuart Corbridge -- Global cities and the production of uneven development / Christof Parnreiter -- Studies in comparative urbanism / Colin McFarlane -- Prosperity or poverty? : Wealth, inequality and deprivation in urban areas / Carole Rakodi -- Housing the urban poor / Alan Gilbert -- Urbanization and environment in low- and middle-income nations / David Satterthwaite -- Transport and urban development / Eduardo Alcantara Vasconcellos -- Cities, crime and development / Paula Meth -- Sustainable development / Michael Redclift -- International regulation and the environment / Giles Atkinson --',
215
+ # "Climate change and development / Emily Boyd -- A changing climate and African development / Chukwumerije Okereke -- Vulnerability and disasters / Terry Cannon -- Ecosystem services and development / Tim Daw -- Natural resource management : a critical appraisal / Jayalaxshmi Mistry -- Water and hydropolitics / Jessica Budds and Alex Loftus -- Energy and development / Subhes C. Bhattacharyya -- Tourism and environment / Matthew Louis Bishop -- Transport and sustainability : developmental pathways / Robin Hickman -- Demographic change and gender / Tiziana Leone and Ernestina Coast -- Women and the state / Kathleen Staudt -- Gender, families and households / Ann Varley -- Feminism and feminist issues in the South : a critique of the \"development\" paradigm / Madhu Purnima Kishwar -- Rethinking gender and empowerment / Jane Parpart -- Gender and globalisation / Harriot Beazley and Vandana Desai^^^^",
216
+ # "Migrant women in the new economy : understanding the gender-migration-care nexus / Kavita Datta -- Women and political representation / Shirin M. Rai -- Sexuality and development / Andrea Cornwall -- Indigenous fertility control / Tulsi Patel -- Nutritional problems, policies and intervention strategies in developing economies / Prakash Shetty -- Motherhood, mortality and health care / Maya Unnithan-Kumar -- The development impacts of HIV/AIDS / Lora Sabin, Marion McNabb, and Mary Bachman DeSilva -- Ageing and poverty / Vandana Desai -- Health disparity : from \"health inequality\" to \"health inequity\" : the move to a moral paradigm in global health disparity / Hazel R. Barrett -- Disability / Ruth Evans -- Social protection in development context / Sarah Cook and Katja Hujo -- Female participation in education / Christopher Colclough -- The challenge of skill formation and training / Jeemol Unni^^^^",
217
+ # "Development education, global citizenship and international volunteering / Matt Baillie Smith -- Gender- and age-based violence / Cathy McIlwaine -- Fragile states / Tom Goodfellow -- Refugees / Richard Black and Ceri Oeppen -- Humanitarian aid / Phil O'Keefe and Joanne Rose -- Global war on terror, development and civil society / Jude Howell -- Peace-building partnerships and human security / Timothy M. Shaw -- Nationalism / Michel Seymour -- Ethnic conflict and the state / Rajesh Venugopal -- Religions and development / Emma Tomalin -- Foreign aid in a changing world / Stephen Brown -- The rising powers as development donors and partners / Emma Mawdsley -- Aid conditionality / Jonathan R.W. Temple -- Aid effectiveness / Jonathan Glennie -- Global governance issues and the current crisis / Isabella Massa and José Brambila-Macias -- Change agents : a history of hope in NGOs, civil society, and the 99% / Alison Van Rooy -- Corruption and development / Susan Rose-Ackerman^^^^",
218
+ # "The role of non-governmental organizations (NGOs) / Vandana Desai -- Non-government public action networks and global policy processes / Barbara Rugendyke -- Multilateral institutions : \"developing countries\" and \"emerging markets\" : stability or change? / Morten Bøås -- Is there a legal right to development? / Radha D'Souza.",
219
+ # "\"With over 115 concise and authoritative chapters covering a wide range of disciplines the book is divided into ten sections covering the nature of development, the theories and strategies of development, rural development, urbanization, gender, globalization, health and education, the political economy of violence and insecurity, environment and development, governance and development. This new third edition of The Companion to Development Studies is an essential read for students of development studies at all levels - from undergraduate to graduate - and across several disciplines including geography, international relations, politics, economics, sociology and anthropology\"-- Provided by publisher.",
220
+ # "\"The Companion to Development Studies contains over 109 chapters written by leading international experts within the field to provide a concise and authoritative overview of the key theoretical and practical issues dominating contemporary development studies. Covering a wide range of disciplines the book is divided into ten sections, each prefaced by a section introduction written by the editors. The sections cover: the nature of development, theories and strategies of development, globalization and development, rural development, urbanization and development, environment and development, gender, health and education, the political economy of violence and insecurity, and governance and development. This third edition has been extensively updated and contains 45 new contributions from leading authorities, dealing with pressing contemporary issues such as race and development, ethics and development, BRICs and development, global financial crisis, the knowledge based economy and digital divide, food security, GM crops, comparative urbanism, cities and crime, energy, water hydropolitics, climate change, disability, fragile states, global war on terror, ethnic conflict, legal rights to development, ecosystems services for development, just to name a few. Existing chapters have been thoroughly revised to include cutting-edge developments, and to present updated further reading and websites\"-- Provided by publisher.",
221
+ # 'The companion to development studies',
222
+ # 'Desai Vandana',
223
+ # 'Desai Vandana 1965',
224
+ # 'Desai, V',
225
+ # 'Desai, Vandana 1965-',
226
+ # 'Vandana Desai',
227
+ # 'desaivandana1965',
228
+ # 'Potter Robert B',
229
+ # 'Potter, R',
230
+ # 'Potter, Robert B',
231
+ # 'Robert B Potter',
232
+ # 'potterrobertb',
233
+ # 'edited by Vandana Desai and Robert B Potter',
234
+ # '9992161785401471'
235
+ # ],
236
+ # sourceid: '32LIBIS_ALMA_DS',
237
+ # recordid: '32LIBIS_ALMA_DS71174288370001471',
238
+ # isbn: [
239
+ # '9781444167245 paperback',
240
+ # '40023930092',
241
+ # '9781444167245'
242
+ # ],
243
+ # toc: [
244
+ # 'Development in a global-historical context / Ruth Craggs -- The Third World, developing countries, the South, emerging markets and rising powers / Klaus Dodds -- The nature of development studies / Robert B. Potter -- The impasse in development studies / Frans J. Schuurman -- Development and economic growth / A.P. Thirlwall -- Development and social welfare/human rights / Jennifer A. Elliott -- Development as freedom / Patricia Northover -- Race and development / Denise Ferreira da Silva -- Culture and development / Susanne Schech -- Ethics and development / Des Gasper -- New institutional economics and development / Philipp Lepenies -- Measuring development : from GDP to the HDI and wider approaches / Robert B. Potter -- The measurement of poverty / Howard White -- The millennium development goals / Jonathan Rigg -- BRICS and development / José E. Cassiolato -- Theories, strategies and ideologies of development : an overview / Robert B. Potter^^^^',
245
+ # "Smith, Ricardo and the world marketplace, 1776 to 2012 : back to the future and beyond / David Sapsford -- Enlightenment and the era of modernity / Marcus Power -- Dualistic and unilinear concepts of development / Tohy Binns -- Neoliberalism : globalization's neoconservative enforce of austerity / Dennis Conway -- Dependency theories : from ECLA to Andre Gunder Frank and beyond / Dennis Conway and Nikolas Heynen -- The New World Group of dependency scholars : reflections of a Caribbean avant-garde movement / Don D. Marshall -- World-systems theory : core, semiperipheral, and peripheral regions / Thomas Klak -- Indigenous knowledge and development / John Briggs -- Participatory development / Giles Mohan -- Postcolonialism / Cheryl McEwan -- Postmodernism and development / David Simon -- Post-development / James D. Sidaway -- Social capital and development / Anthony Bebbington and Katherine E. Foo -- Globalisation : an overview / Andrew Herod^^^^",
246
+ # 'The new international division of labour / Alan Gilbert -- Global shift : industrialization and development / Ray Kiely -- Globalisation/localisation and development / Warwick E. Murray and John Overton -- Trade and industrial policy in developing countries / David Greenaway and Chris Milner -- The knowledge-based economy and digital divisions of labour / Mark Graham -- Corporate social responsibility and development / Dorothea Kleine -- The informal economy in cities of the South / Sylvia Chant -- Child labour / Sally Lloyd-Evans -- Migration and transnationalism / Katie D. Willis -- Diaspora and development / Claire Mercer and Ben Page -- Rural poverty / Edward Heinemann -- Rural livelihoods in a context of new scarcities / Annelies Zoomers -- Food security / Richard Tiffin -- Famine / Stephen Devereux -- Genetically modified crops and development / Matin Qaim -- Rural cooperatives : a new millennium? / Deborah R. Sick, Baburao S. Baviskar and Donald W. Attwood^^^^',
247
+ # 'Land reform / Ruth Hall, Saturnino M. Borras Jr. and Ben White -- Gender, agriculture and land rights / Susie Jacobs -- The sustainable intensification of agriculture / Jules Pretty -- Urbanization in low- and middle-income nations in Africa, Asia and Latin America / David Satterthwaite -- Urban bias / Gareth A. Jones and Stuart Corbridge -- Global cities and the production of uneven development / Christof Parnreiter -- Studies in comparative urbanism / Colin McFarlane -- Prosperity or poverty? : Wealth, inequality and deprivation in urban areas / Carole Rakodi -- Housing the urban poor / Alan Gilbert -- Urbanization and environment in low- and middle-income nations / David Satterthwaite -- Transport and urban development / Eduardo Alcantara Vasconcellos -- Cities, crime and development / Paula Meth -- Sustainable development / Michael Redclift -- International regulation and the environment / Giles Atkinson --',
248
+ # "Climate change and development / Emily Boyd -- A changing climate and African development / Chukwumerije Okereke -- Vulnerability and disasters / Terry Cannon -- Ecosystem services and development / Tim Daw -- Natural resource management : a critical appraisal / Jayalaxshmi Mistry -- Water and hydropolitics / Jessica Budds and Alex Loftus -- Energy and development / Subhes C. Bhattacharyya -- Tourism and environment / Matthew Louis Bishop -- Transport and sustainability : developmental pathways / Robin Hickman -- Demographic change and gender / Tiziana Leone and Ernestina Coast -- Women and the state / Kathleen Staudt -- Gender, families and households / Ann Varley -- Feminism and feminist issues in the South : a critique of the \"development\" paradigm / Madhu Purnima Kishwar -- Rethinking gender and empowerment / Jane Parpart -- Gender and globalisation / Harriot Beazley and Vandana Desai^^^^",
249
+ # "Migrant women in the new economy : understanding the gender-migration-care nexus / Kavita Datta -- Women and political representation / Shirin M. Rai -- Sexuality and development / Andrea Cornwall -- Indigenous fertility control / Tulsi Patel -- Nutritional problems, policies and intervention strategies in developing economies / Prakash Shetty -- Motherhood, mortality and health care / Maya Unnithan-Kumar -- The development impacts of HIV/AIDS / Lora Sabin, Marion McNabb, and Mary Bachman DeSilva -- Ageing and poverty / Vandana Desai -- Health disparity : from \"health inequality\" to \"health inequity\" : the move to a moral paradigm in global health disparity / Hazel R. Barrett -- Disability / Ruth Evans -- Social protection in development context / Sarah Cook and Katja Hujo -- Female participation in education / Christopher Colclough -- The challenge of skill formation and training / Jeemol Unni^^^^",
250
+ # "Development education, global citizenship and international volunteering / Matt Baillie Smith -- Gender- and age-based violence / Cathy McIlwaine -- Fragile states / Tom Goodfellow -- Refugees / Richard Black and Ceri Oeppen -- Humanitarian aid / Phil O'Keefe and Joanne Rose -- Global war on terror, development and civil society / Jude Howell -- Peace-building partnerships and human security / Timothy M. Shaw -- Nationalism / Michel Seymour -- Ethnic conflict and the state / Rajesh Venugopal -- Religions and development / Emma Tomalin -- Foreign aid in a changing world / Stephen Brown -- The rising powers as development donors and partners / Emma Mawdsley -- Aid conditionality / Jonathan R.W. Temple -- Aid effectiveness / Jonathan Glennie -- Global governance issues and the current crisis / Isabella Massa and José Brambila-Macias -- Change agents : a history of hope in NGOs, civil society, and the 99% / Alison Van Rooy -- Corruption and development / Susan Rose-Ackerman^^^^",
251
+ # "The role of non-governmental organizations (NGOs) / Vandana Desai -- Non-government public action networks and global policy processes / Barbara Rugendyke -- Multilateral institutions : \"developing countries\" and \"emerging markets\" : stability or change? / Morten Bøås -- Is there a legal right to development? / Radha D'Souza."
252
+ # ],
253
+ # rsrctype: 'book',
254
+ # creationdate: '2014',
255
+ # startdate: '20140101',
256
+ # enddate: '20141231',
257
+ # addsrcrecordid: %w(9992161785401471 9992121337301488),
258
+ # searchscope: %w(32LIBIS_ALMA_DS 32LIBIS_ALMA_DS_P KUL KUL_WBIB_LIB KUL_P 32LIBISNET 32LIBISNET_P),
259
+ # scope: %w(32LIBIS_ALMA_DS 32LIBIS_ALMA_DS_P KUL KUL_WBIB_LIB KUL_P 32LIBISNET 32LIBISNET_P),
260
+ # lsr04: %w(AcquisitionDate201503WBIBphysical CollectionWBIBWBIB Callnumber330452014 AcquisitionTagcluster3WBIBphysical),
261
+ # lsr35: '9992161785401471'
262
+ # },
263
+ # sort: {
264
+ # title: 'The companion to development studies',
265
+ # creationdate: '20140101',
266
+ # author: 'Desai, Vandana (1965) (Editor) ; Potter, Robert B. (Editor)',
267
+ # lso01: 'The companion to development studies',
268
+ # lso02: '20140101'
269
+ # },
270
+ # facets: {
271
+ # language: 'eng',
272
+ # creationdate: '2014',
273
+ # topic: [
274
+ # 'Economic development.',
275
+ # 'Development economics.',
276
+ # 'Globalization.',
277
+ # 'Development',
278
+ # 'Developing countries Social conditions.'
279
+ # ],
280
+ # collection: 'LIBISnet Catalogue',
281
+ # toplevel: 'print_copies',
282
+ # prefilter: 'books',
283
+ # rsrctype: 'books',
284
+ # creatorcontrib: [
285
+ # 'Desai, V',
286
+ # 'Potter, R'
287
+ # ],
288
+ # library: 'KUL_WBIB_LIB',
289
+ # atoz: 'T'
290
+ # },
291
+ # dedup: {
292
+ # t: '1',
293
+ # c2: '9781444167245P',
294
+ # c3: 'companiontodevelopmentstudiesengbookALMAAlma-P',
295
+ # c4: '2014',
296
+ # f3: '9781444167245',
297
+ # f5: 'companiontodevelopmentstudiesALMA-P',
298
+ # f6: '2014',
299
+ # f7: 'companion to development studiesALMA',
300
+ # f9: 'xxk',
301
+ # f13: '3rd ed.',
302
+ # f20: '9992161785401471'
303
+ # },
304
+ # frbr: {
305
+ # t: '1',
306
+ # k1: '$$KDESAIVANDANAPOTTERROBERTB$$AA',
307
+ # k3: '$$Kthe companion to development studies$$AT'
308
+ # },
309
+ # delivery: {
310
+ # institution: %w(KUL 32LIBISNET),
311
+ # delcategory: %w(Alma-P$$I32LIBISNET Alma-P$$IKUL)
312
+ # },
313
+ # ranking: {
314
+ # booster1: '1',
315
+ # booster2: '1'
316
+ # },
317
+ # addata: {
318
+ # aulast: 'Desai',
319
+ # aufirst: 'Vandana',
320
+ # addau: [
321
+ # 'Desai, Vandana',
322
+ # 'Potter, Robert B'
323
+ # ],
324
+ # btitle: [
325
+ # 'The companion to development studies',
326
+ # 'edited by Vandana Desai and Robert B. Potter.'
327
+ # ],
328
+ # date: '2014',
329
+ # risdate: '2014',
330
+ # isbn: '9781444167245',
331
+ # format: 'book',
332
+ # genre: 'book',
333
+ # ristype: 'BOOK',
334
+ # notes: 'Includes bibliographical references and index.',
335
+ # abstract: [
336
+ # "\"With over 115 concise and authoritative chapters covering a wide range of disciplines the book is divided into ten sections covering the nature of development, the theories and strategies of development, rural development, urbanization, gender, globalization, health and education, the political economy of violence and insecurity, environment and development, governance and development. This new third edition of The Companion to Development Studies is an essential read for students of development studies at all levels - from undergraduate to graduate - and across several disciplines including geography, international relations, politics, economics, sociology and anthropology\"--",
337
+ # "\"The Companion to Development Studies contains over 109 chapters written by leading international experts within the field to provide a concise and authoritative overview of the key theoretical and practical issues dominating contemporary development studies. Covering a wide range of disciplines the book is divided into ten sections, each prefaced by a section introduction written by the editors. The sections cover: the nature of development, theories and strategies of development, globalization and development, rural development, urbanization and development, environment and development, gender, health and education, the political economy of violence and insecurity, and governance and development. This third edition has been extensively updated and contains 45 new contributions from leading authorities, dealing with pressing contemporary issues such as race and development, ethics and development, BRICs and development, global financial crisis, the knowledge based economy and digital divide, food security, GM crops, comparative urbanism, cities and crime, energy, water hydropolitics, climate change, disability, fragile states, global war on terror, ethnic conflict, legal rights to development, ecosystems services for development, just to name a few. Existing chapters have been thoroughly revised to include cutting-edge developments, and to present updated further reading and websites\"--"
338
+ # ]
339
+ # },
340
+ # browse: {
341
+ # author: '$$DDesai, Vandana (1965) (Editor) ; Potter, Robert B. (Editor)$$EDesai, Vandana (1965) (Editor) ; Potter, Robert B. (Editor)',
342
+ # title: [
343
+ # '$$DThe companion to development studies',
344
+ # '$$Dedited by Vandana Desai and Robert B. Potter.$$EThe companion to development studies$$Eedited by Vandana Desai and Robert B. Potter.'
345
+ # ],
346
+ # subject: [
347
+ # '$$DDevelopment$$EDevelopment',
348
+ # '$$DDeveloping countries Social conditions.$$EDeveloping countries Social conditions.',
349
+ # '$$DEconomic development.$$EEconomic development.',
350
+ # '$$DDevelopment economics.$$EDevelopment economics.',
351
+ # '$$DGlobalization.$$EGlobalization.'
352
+ # ],
353
+ # institution: %w(KUL 32LIBISNET)
354
+ # }
355
+ #
356
+ # }
357
+ # }
358
+ #
359
+ # it 'get record' do
360
+ # result = subject.get_pnx('32LIBIS_ALMA_DS71174288370001471')
361
+ # if result.is_a?(Libis::Tools::XmlDocument)
362
+ # result = result.to_hash(:convert_tags_to => lambda { |tag| tag.snakecase.to_sym })
363
+ # check_container(record, result[:record])
364
+ # end
365
+ # end
366
+ #
367
+ # end
368
368
 
369
369
  end