weft-qda 0.9.6
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/weft.rb +21 -0
- data/lib/weft/WEFT-VERSION-STRING.rb +1 -0
- data/lib/weft/application.rb +130 -0
- data/lib/weft/backend.rb +39 -0
- data/lib/weft/backend/marshal.rb +26 -0
- data/lib/weft/backend/mysql.rb +267 -0
- data/lib/weft/backend/n6.rb +366 -0
- data/lib/weft/backend/sqlite.rb +633 -0
- data/lib/weft/backend/sqlite/category_tree.rb +104 -0
- data/lib/weft/backend/sqlite/schema.rb +152 -0
- data/lib/weft/backend/sqlite/upgradeable.rb +55 -0
- data/lib/weft/category.rb +157 -0
- data/lib/weft/coding.rb +355 -0
- data/lib/weft/document.rb +118 -0
- data/lib/weft/filters.rb +243 -0
- data/lib/weft/wxgui.rb +687 -0
- data/lib/weft/wxgui/category.xpm +26 -0
- data/lib/weft/wxgui/dialogs.rb +128 -0
- data/lib/weft/wxgui/document.xpm +25 -0
- data/lib/weft/wxgui/error_handler.rb +52 -0
- data/lib/weft/wxgui/inspectors.rb +361 -0
- data/lib/weft/wxgui/inspectors/category.rb +165 -0
- data/lib/weft/wxgui/inspectors/codereview.rb +275 -0
- data/lib/weft/wxgui/inspectors/document.rb +139 -0
- data/lib/weft/wxgui/inspectors/imagedocument.rb +56 -0
- data/lib/weft/wxgui/inspectors/script.rb +35 -0
- data/lib/weft/wxgui/inspectors/search.rb +265 -0
- data/lib/weft/wxgui/inspectors/textcontrols.rb +304 -0
- data/lib/weft/wxgui/lang.rb +17 -0
- data/lib/weft/wxgui/lang/en.rb +45 -0
- data/lib/weft/wxgui/mondrian.xpm +44 -0
- data/lib/weft/wxgui/search.xpm +25 -0
- data/lib/weft/wxgui/sidebar.rb +498 -0
- data/lib/weft/wxgui/utilities.rb +148 -0
- data/lib/weft/wxgui/weft16.xpm +31 -0
- data/lib/weft/wxgui/workarea.rb +249 -0
- data/test/001-document.rb +196 -0
- data/test/002-category.rb +138 -0
- data/test/003-code.rb +370 -0
- data/test/004-application.rb +52 -0
- data/test/006-filters.rb +139 -0
- data/test/009a-backend_sqlite_basic.rb +280 -0
- data/test/009b-backend_sqlite_complex.rb +175 -0
- data/test/009c_backend_sqlite_bench.rb +81 -0
- data/test/010-backend_nudist.rb +5 -0
- data/test/all-tests.rb +1 -0
- data/test/manual-gui-script.txt +24 -0
- data/test/testdata/autocoding-test.txt +15 -0
- data/test/testdata/iso-8859-1.txt +5 -0
- data/test/testdata/sample_doc.txt +19 -0
- data/test/testdata/search_results.txt +1254 -0
- data/test/testdata/text1-dos-ascii.txt +2 -0
- data/test/testdata/text1-unix-utf8.txt +2 -0
- data/weft-qda.rb +28 -0
- metadata +96 -0
@@ -0,0 +1,175 @@
|
|
1
|
+
require 'english'
|
2
|
+
$:.push('../lib/')
|
3
|
+
|
4
|
+
require 'weft'
|
5
|
+
require 'test/unit'
|
6
|
+
|
7
|
+
class TestSQLiteComplex < Test::Unit::TestCase
|
8
|
+
def sample_file(filename)
|
9
|
+
File.join( File.dirname( __FILE__), 'testdata', filename)
|
10
|
+
end
|
11
|
+
|
12
|
+
def setup
|
13
|
+
@dbfile = nil
|
14
|
+
@app = QDA::Application.new()
|
15
|
+
@app.extend(QDA::Backend::SQLite)
|
16
|
+
end
|
17
|
+
|
18
|
+
# delete any files hanging around
|
19
|
+
def teardown()
|
20
|
+
if @app.started?
|
21
|
+
# p @app
|
22
|
+
# @app.end()
|
23
|
+
if @app.dbfile and File.exist?(@app.dbfile)
|
24
|
+
File.delete(@app.dbfile)
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
# this tests an old search
|
30
|
+
def test_search_document_scan()
|
31
|
+
@app.start(:dbfile => @dbfile)
|
32
|
+
@app.install_clean()
|
33
|
+
doc = QDA::Document.new('About Something')
|
34
|
+
doc.append("This is various text that'll be used for testing")
|
35
|
+
doc.append("Some more text with different letters?")
|
36
|
+
@app.save_document(doc)
|
37
|
+
|
38
|
+
doc2 = QDA::Document.new('False Fake')
|
39
|
+
doc2.append("This is doesn't match")
|
40
|
+
doc2.append("Like Scorpio")
|
41
|
+
@app.save_document(doc2)
|
42
|
+
|
43
|
+
results = @app.get_search_fragments_scan('text', :wrap_both => 3 )
|
44
|
+
|
45
|
+
assert_equal(1, results.keys.length,
|
46
|
+
"results for 1 document returned")
|
47
|
+
assert_equal("various text that", results[doc.title][0],
|
48
|
+
"Correct first fragment returned")
|
49
|
+
assert_equal(8, results[doc.title][0].offset,
|
50
|
+
"Correct first fragment offset returned")
|
51
|
+
assert_equal("more text with", results[doc.title][1],
|
52
|
+
"Correct second fragment returned")
|
53
|
+
assert_equal(54, results[doc.title][1].offset,
|
54
|
+
"Correct second fragment offset returned")
|
55
|
+
|
56
|
+
results = @app.get_search_fragments_scan('text', :wrap_both => 10 )
|
57
|
+
assert_equal(1, results.keys.length,
|
58
|
+
"results for 1 document returned")
|
59
|
+
assert_equal("is various text that'll be", results[doc.title][0],
|
60
|
+
"Correct first fragment returned")
|
61
|
+
assert_equal("is various text that'll be", results[doc.title][0],
|
62
|
+
"Correct first fragment returned")
|
63
|
+
assert_equal("Some more text with different", results[doc.title][1],
|
64
|
+
"Correct second fragment returned")
|
65
|
+
|
66
|
+
results = @app.get_search_fragments_scan('testing', :wrap_both => 3 )
|
67
|
+
assert_equal(1, results[doc.title].length,
|
68
|
+
"1 result returned")
|
69
|
+
assert_equal("for testing\nSome", results[doc.title][0],
|
70
|
+
"Returned multiline string")
|
71
|
+
end
|
72
|
+
|
73
|
+
def test_preferences
|
74
|
+
@app.start(:dbfile => @dbfile)
|
75
|
+
@app.install_clean()
|
76
|
+
@app.save_preference('Foo', 5)
|
77
|
+
pref = @app.get_preference('Foo')
|
78
|
+
assert_equal(5, pref, "Integer preference restored")
|
79
|
+
|
80
|
+
@app.save_preference('Bar', 'a string')
|
81
|
+
pref = @app.get_preference('Bar')
|
82
|
+
|
83
|
+
assert_equal('a string', pref, "Integer preference restored")
|
84
|
+
|
85
|
+
@app.save_preference('Qux', { :a => 9.6 })
|
86
|
+
pref = @app.get_preference('Qux')
|
87
|
+
|
88
|
+
assert_equal({ :a => 9.6 }, pref, "Float in Hash preference restored")
|
89
|
+
end
|
90
|
+
|
91
|
+
# this test assumes search filters are working correctly
|
92
|
+
def test_search_fragments_pdf()
|
93
|
+
@app.start(:dbfile => @dbfile)
|
94
|
+
@app.install_clean()
|
95
|
+
|
96
|
+
filter = QDA::PDFFilter.new()
|
97
|
+
windxr = QDA::WordIndexer.new()
|
98
|
+
filter.add_indexer(windxr)
|
99
|
+
doc = filter.read('testdata/emacs-refcard-a4.pdf', 'i')
|
100
|
+
doc.title = 'jumble'
|
101
|
+
|
102
|
+
@app.save_document(doc)
|
103
|
+
@app.save_reverse_index(doc.dbid, windxr.words)
|
104
|
+
windxr.words.each_key do | word |
|
105
|
+
results = @app.get_search_fragments(word,
|
106
|
+
:whole_word => true,
|
107
|
+
:case_sensitive => false,
|
108
|
+
:wrap_both => 0)
|
109
|
+
assert_not_equal( 0, results[doc.title].length,
|
110
|
+
"Some results returned for known word #{word}")
|
111
|
+
results[doc.title].each_with_index do | result, i |
|
112
|
+
assert_equal(word.downcase, result.to_s.downcase )
|
113
|
+
# assert_equal(windxr.words[word][i], result.offset )
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
# this test assumes search filters are working correctly
|
119
|
+
def test_search_fragments_latin1()
|
120
|
+
@app.start(:dbfile => @dbfile)
|
121
|
+
@app.install_clean()
|
122
|
+
|
123
|
+
filter = QDA::TextFilter.new()
|
124
|
+
windxr = QDA::WordIndexer.new()
|
125
|
+
filter.add_indexer(windxr)
|
126
|
+
doc = filter.read(sample_file('iso-8859-1.txt'), 'iso-8859-1')
|
127
|
+
|
128
|
+
@app.save_document(doc)
|
129
|
+
@app.save_reverse_index(doc.dbid, windxr.words)
|
130
|
+
windxr.words.each_key do | word |
|
131
|
+
results = @app.get_search_fragments(word,
|
132
|
+
:whole_word => true,
|
133
|
+
:case_sensitive => false,
|
134
|
+
:wrap_both => 0)
|
135
|
+
assert_not_equal( 0, results[doc.title].length,
|
136
|
+
"Some results returned for known word #{word}")
|
137
|
+
results[doc.title].each_with_index do | result, i |
|
138
|
+
assert_equal(word.downcase, result.to_s.downcase )
|
139
|
+
assert_equal(windxr.words[word][i], result.offset )
|
140
|
+
end
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
def test_search_fragments_txt()
|
145
|
+
@app.start(:dbfile => @dbfile)
|
146
|
+
@app.install_clean()
|
147
|
+
|
148
|
+
# try a
|
149
|
+
filter = QDA::TextFilter.new()
|
150
|
+
windxr = QDA::WordIndexer.new()
|
151
|
+
filter.add_indexer(windxr)
|
152
|
+
doc = filter.read(sample_file('autocoding-test.txt'), 'indexing test')
|
153
|
+
|
154
|
+
@app.save_document(doc)
|
155
|
+
@app.save_reverse_index(doc.dbid, windxr.words)
|
156
|
+
|
157
|
+
results = @app.get_search_fragments('Speaker')
|
158
|
+
results.each do | word, fragments |
|
159
|
+
fragments.each do | f |
|
160
|
+
# check it tallies with source document
|
161
|
+
assert_equal(doc[f.offset, f.length], f)
|
162
|
+
assert_equal(doc[f.offset, f.length].to_s, f.to_s)
|
163
|
+
end
|
164
|
+
end
|
165
|
+
|
166
|
+
results = @app.get_search_fragments('Before', :wrap_both => 20)
|
167
|
+
results.each do | word, fragments |
|
168
|
+
fragments.each do | f |
|
169
|
+
# check it tallies with source document
|
170
|
+
assert_equal(doc[f.offset, f.length], f)
|
171
|
+
assert_equal(doc[f.offset, f.length].to_s, f.to_s)
|
172
|
+
end
|
173
|
+
end
|
174
|
+
end
|
175
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
require 'english'
|
2
|
+
$:.push('../lib/')
|
3
|
+
|
4
|
+
require 'weft'
|
5
|
+
require 'test/unit'
|
6
|
+
require 'benchmark'
|
7
|
+
|
8
|
+
class TestSQLiteBenchmark < Test::Unit::TestCase
|
9
|
+
# some re-usable test data
|
10
|
+
TEST_CATEGORY = QDA::Category.new("About 'Something'",
|
11
|
+
nil, 'the "memo"')
|
12
|
+
|
13
|
+
# runs the passed block +runs+ times, measuring the time taken, and
|
14
|
+
# outputs a nice message
|
15
|
+
def measure(title, runs)
|
16
|
+
out = Benchmark::measure do
|
17
|
+
runs.times { yield }
|
18
|
+
end
|
19
|
+
puts "#{title} (#{runs} runs):", out
|
20
|
+
end
|
21
|
+
|
22
|
+
def sample_file(filename)
|
23
|
+
File.join( File.dirname( __FILE__), 'testdata', filename)
|
24
|
+
end
|
25
|
+
|
26
|
+
def setup
|
27
|
+
@dbfile = nil
|
28
|
+
@app = QDA::Application.new()
|
29
|
+
@app.extend(QDA::Backend::SQLite)
|
30
|
+
end
|
31
|
+
|
32
|
+
# delete any files hanging around
|
33
|
+
def teardown()
|
34
|
+
if @app.started?
|
35
|
+
# p @app
|
36
|
+
# @app.end()
|
37
|
+
if @app.dbfile and File.exist?(@app.dbfile)
|
38
|
+
File.delete(@app.dbfile)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
# this tests an old search
|
44
|
+
def test_benchmark_save_document
|
45
|
+
@app.start(:dbfile => @dbfile)
|
46
|
+
@app.install_clean()
|
47
|
+
doc = QDA::Document.new('About Something')
|
48
|
+
doc.append("This is various text that'll be used for testing")
|
49
|
+
doc.append("Some more text with different letters?")
|
50
|
+
|
51
|
+
measure('Save Document', 25) do
|
52
|
+
doc.dbid = nil
|
53
|
+
@app.save_document(doc)
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
|
58
|
+
def test_benchmark_fetch_category
|
59
|
+
@app.start(:dbfile => @dbfile)
|
60
|
+
@app.install_clean()
|
61
|
+
cat = TEST_CATEGORY.dup
|
62
|
+
@app.save_category(cat)
|
63
|
+
|
64
|
+
runs = 1000
|
65
|
+
measure('Get Category', 1000) do
|
66
|
+
cat = @app.get_category(cat.dbid)
|
67
|
+
end
|
68
|
+
end
|
69
|
+
|
70
|
+
def test_benchmark_save_category
|
71
|
+
@app.start(:dbfile => @dbfile)
|
72
|
+
@app.install_clean()
|
73
|
+
|
74
|
+
catparent = nil
|
75
|
+
measure('Save Category', 25) do
|
76
|
+
cat = QDA::Category.new("About 'Something'", catparent, 'the "memo"')
|
77
|
+
@app.save_category(cat)
|
78
|
+
catparent = cat
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
data/test/all-tests.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Dir.glob('[0-9][0-9][0-9]*.rb') { | test | load test }
|
@@ -0,0 +1,24 @@
|
|
1
|
+
# Open File
|
2
|
+
- loads
|
3
|
+
# Import Text Document
|
4
|
+
|
5
|
+
# Import PDF Document
|
6
|
+
|
7
|
+
# Open Document
|
8
|
+
|
9
|
+
# Attempt Code With Empty
|
10
|
+
|
11
|
+
# Create Category
|
12
|
+
|
13
|
+
# Select by type-ahead
|
14
|
+
|
15
|
+
# Select by clicking
|
16
|
+
|
17
|
+
# Word Search
|
18
|
+
|
19
|
+
# Query
|
20
|
+
|
21
|
+
# Delete Document
|
22
|
+
|
23
|
+
|
24
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
On Collecting Badges of Mao Zedong�s Portrait
|
2
|
+
|
3
|
+
As the most well-known man of a generation, Mao Zedong had accomplished remarkable achievements during his lifetime. As the product of this generation, the badges with Mao�s portrait (simplified as �the badges� in the following) have long been the most heating objects scrambled by collectors. They have not only become important in the historical study, but also reached kind of artistic summit, evaluated from quantity, assortment, craftsmanship and quantity. I have collected 20,000 or more badges including more than 3,000 different types, and of 16 kinds of materials these badges are made.
|
4
|
+
In my opinion, finding a reasonable and scientific way of classification is quite necessary in badge-collection. It surely can help the collector fulfill the job much better, especially when the amount of the badges increases day by day. The way I employ is to classify the badges according to the characters on their backs. At first, sort out the badges on which the characters mean the same thing and put them together. Secondly, put together those on which the characters are at the same part of the badges. Thirdly, put together those on which the characters are of the same form. Then you will find it is easy to distinguish set-badges from thousands of others.
|
5
|
+
Badges made during the year 1966 to 1976 are called badges of �the Cultural Revolution�. No other kinds of badges can be compared with this kind in terms of quantity, assortment and quality. During �the Cultural Revolution�, people who were mostly dependent on politics made these badges with the finest craftsmanship chosen from the Centrality to the locality, from military units to factories. People used the best machines and finest raw materials to make the badges; that�s why they can be called as �the super badges in the world�. The badges of �the Cultural Revolution� initiated some new forms such as the set-badges. This freshness greatly excited badge-collectors.
|
6
|
+
The badges can be divided into three categories according to their functions. The first category is the badges for wearing; it occupies the largest part and constitutes 95 percent of the total. The second category is the badges for hanging, which were only made during �the Cultural Revolution�. At that time, some people thought the bigger the badge is, the more love for Chairman Mao they would show. So the badges they made became too big and heavy to be worn, but can only be hung. Only a few of this kind can be found, they constitute 0.5 percent of the total sum. The third category is the badges for decoration, it has two basic patterns: one refers to the badges that have bases or can stand by themselves; the other refers to those that cannot be laid out without the provision of stands, such as porcelain plates, bricks, etc. Besides the above-mentioned three categories, there is another kind�busts or full-length statues. These large badges only have simple forms and are not at all large in amount.
|
7
|
+
There are four categories of the badges according to their forms. The first category is single-badges. These badges are independent by themselves; each one has its own style and content. This category constitutes 85 percent of the total sum. The second category is pair-badges. The two badges of a pair always have internal relationship with each other. Generally speaking, they have no time order, and this category constitutes only 3 percent of all the badges. The third category is group-badges, which means a group of badges (no less than 3) expressing the same idea. They were made by the same people and had the same characters. They only constitute 2 percent of all the badges. The fourth category is set-badges. We name it this way because they came out as a set in conception, design, manufacturing and publication. There are numbers on each of a set-badge; the numbers are fairly standard, just like those on stamps. For instance, if there is one set-badge including ten indiv!idual badges, the numbers on them are 10-1, 10-2 � 10-10, respectively. This category of set-badge constitutes 10 percent of all the badges. I summarize six criteria for judging the set-badges, listed as the following:
|
8
|
+
1. A set of badges must be about one special idea, such as badges of �nine revolutionary sample Beijing operas�, badges of �Mao Zedong�s poems and verses�, badges of �Mao Zedong visiting some sacred places of revolution�, and so on.
|
9
|
+
2. Set-badges must have 5 common grounds. They are the identical publisher, the identical content of the characters on the back, the identical type and at the same place on the back, and also the identical marks on the back.
|
10
|
+
3. Set-badges must have the same style of making. For example, some badges all have the sun behind Mao�s head; some all have protruding secondary pictures at the lower place; or some all have a sentence quoted from Mao�s poems, and so on.
|
11
|
+
4. Each badge of the set must be relating to each other by means of supplementing and reciprocal explanation. For example, the set includes 5 badges about �Mao Zedong visiting some sacred places of revolution�, they are arranged in a strict chronological order, the five places are Shao-shan Town, Jing-gang-shan Mountain, Zun-yi City, Yan-an City and Tian An Men Buding.
|
12
|
+
5. A set must include at least 2 badges.
|
13
|
+
As for some sets, if they match all the above criteria except the second one, that�s nothing serious. However, a standard set must go with at least three points of the five in the second criterion. In the recent years, I have made a careful arrangement of my collection according to the six items. The collection and arrangement of set-badges have long been emphasized because it means a higher level of badge-collection.
|
14
|
+
About the materials for making the badges, I am afraid no one can tell exactly how many kinds there are. In the years when the badges were widely spread, people at least have found ten kinds of materials to make the badges. According to my collection, sixteen kinds of materials are used in badge-making. They are: glass, bakelite, stainless steel, lead, zinc, copper, bamboo, porcelain, enamel, hard plastic, soft plastic, luminous powder, chromium, iron sheet, ploxiglass, aluminum, etc. By collecting the badges made of all kinds of materials, I get to know the measures and scale of their manufacturing at that time, and further to have some knowledge about the craftsmanship in different areas of the nation.
|
15
|
+
The collectors themselves shall decide how to arrange these specially titled badges. In my point of view, there are two ways. One is to collect according to the pictures on the frontages; such as Mao�s waving hands or making inspection or wearing straw-hats or setting off �Go to An-yuan Coalmine�. The other is to collect according to the characters on the back, such as those commemorative medals signed with �the Revolutionary Committee�. And also badges made by the military commands and factories that produced badges and medals. In short, these specially titled badges have recorded the history of that time from different aspects; they not only enrich the content of collection but also provide evidence for historians.
|
16
|
+
I have also collected more than 1000 books about Mao Zedong or about Mao's badges or about �the Cultural Revolution�,I finished my manuscript more than 150,000 words for the badge. In 1997 I published the first CD-ROM of China about Mao Zedong's badges by a company in Beijing.
|
17
|
+
I'm looking forward to cooperating with you for showing the badge to the world, public saleing the badge, publishing my book or my CD-ROM and so on.
|
18
|
+
|
19
|
+
You can contact with the following adress:
|
@@ -0,0 +1,1254 @@
|
|
1
|
+
%R 02-3448
|
2
|
+
%K1 Asia
|
3
|
+
%K3 General
|
4
|
+
%A B G Barange
|
5
|
+
%T An annotated bibliography on tribal indebtedness
|
6
|
+
%J Bulletin of the tribal research Institute Chhindwara
|
7
|
+
%J1 Bull tribal res Inst Chhindwara
|
8
|
+
%D 1963
|
9
|
+
%V 3
|
10
|
+
%N 2
|
11
|
+
%P 60-6
|
12
|
+
|
13
|
+
|
14
|
+
%R 03-3950
|
15
|
+
%K1 East Indies, Oceania, Australasia
|
16
|
+
%K3 Cultural Anthropology, Ethnography
|
17
|
+
%A Z M Robolos
|
18
|
+
%T Promissory and debt aspects of the folk ritual in Misamis Oriental
|
19
|
+
%J Philippine sociological review
|
20
|
+
%J1 Philipp sociol Rev
|
21
|
+
%D 1964
|
22
|
+
%V 12
|
23
|
+
%N 1/2
|
24
|
+
%P 95-101
|
25
|
+
%O bibliogr.
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
|
32
|
+
%R 08-560
|
33
|
+
%K1 America
|
34
|
+
%K3 General
|
35
|
+
%A J L Kessell
|
36
|
+
%T Father Ramon and the big debt, Tumacacori, 1821-1823
|
37
|
+
%J New Mexico historical Review
|
38
|
+
%J1 New Mex hist Rev
|
39
|
+
%D 1969
|
40
|
+
%V 44
|
41
|
+
%N 1
|
42
|
+
%P 53-72
|
43
|
+
%O illus.
|
44
|
+
|
45
|
+
|
46
|
+
%R 08-3172
|
47
|
+
%K1 Africa
|
48
|
+
%K3 General
|
49
|
+
%A B Lindfors
|
50
|
+
%T Amos Tutuola: debts and assets
|
51
|
+
%J Cahiers d'etudes africaines
|
52
|
+
%J1 Cah Etud afr
|
53
|
+
%D 1970
|
54
|
+
%V 10
|
55
|
+
%P 306-34
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
%R 14-6799
|
61
|
+
%K1 Asia
|
62
|
+
%K2 South Asia
|
63
|
+
%K3 Cultural Anthropology, Ethnography
|
64
|
+
%A K Mohapatra
|
65
|
+
%A B Chowdhury
|
66
|
+
%T Report on the survey of indebtedness among the scheduled tribes of
|
67
|
+
Parlakhemindi subdivision in Ganjam district
|
68
|
+
%J Adibasi Bhubaneswar
|
69
|
+
%J1 Adibasi
|
70
|
+
%D 1973/4
|
71
|
+
%V 15
|
72
|
+
%N 1/4
|
73
|
+
%P 33-74
|
74
|
+
%O illus.
|
75
|
+
|
76
|
+
|
77
|
+
%R 13-394
|
78
|
+
%K1 General
|
79
|
+
%K3 Cultural Anthropology, Ethnography
|
80
|
+
%A L de Heusch
|
81
|
+
%T The debt of the maternal uncle: contribution to the study of complex
|
82
|
+
structures of kinship
|
83
|
+
%J Man NS
|
84
|
+
%J1 Man NS
|
85
|
+
%HL <a href="http://www.jstor.org/">Full text of back issues is
|
86
|
+
available as part of the JSTOR project</a>
|
87
|
+
%D 1974
|
88
|
+
%V 9
|
89
|
+
%N 4
|
90
|
+
%P 609-19
|
91
|
+
%O illus., bibliogr.
|
92
|
+
|
93
|
+
|
94
|
+
%R 13-6437
|
95
|
+
%K1 General
|
96
|
+
%K3 Cultural Anthropology, Ethnography
|
97
|
+
%A R H Barnes
|
98
|
+
%T Elementary and complex structures [comment on 'The debt of the
|
99
|
+
maternal uncle: contribution to the study of complex structures of
|
100
|
+
kinship', by L. de Heusch; with a reply by L. de Heusch]
|
101
|
+
%J Man NS
|
102
|
+
%J1 Man NS
|
103
|
+
%HL <a href="http://www.jstor.org/">Full text of back issues is
|
104
|
+
available as part of the JSTOR project</a>
|
105
|
+
%D 1975
|
106
|
+
%V 10
|
107
|
+
%N 3
|
108
|
+
%P 472-3
|
109
|
+
%O bibliogr.
|
110
|
+
|
111
|
+
%R 22-3238
|
112
|
+
%K1 Asia
|
113
|
+
%K2 South Asia
|
114
|
+
%K3 Cultural Anthropology, Ethnography
|
115
|
+
%A S K Basu
|
116
|
+
%T Socio-political relevance of indebtedness among the peasantry
|
117
|
+
%J Bulletin of the Cultural Research Institute
|
118
|
+
%J1 Bull cult res Inst Calcutta
|
119
|
+
%D 1975
|
120
|
+
%V 11
|
121
|
+
%N 1/2
|
122
|
+
%P 17-19
|
123
|
+
|
124
|
+
|
125
|
+
%R 15-2697
|
126
|
+
%K1 Africa
|
127
|
+
%K3 Cultural Anthropology, Ethnography
|
128
|
+
%A A Adler
|
129
|
+
%T Avunculate and matrilateral marriage in Africa [comment on 'The debt
|
130
|
+
of the maternal uncle: contribution to the study of complex structures
|
131
|
+
of kinship', by L. de Heusch]
|
132
|
+
%O English summary
|
133
|
+
%L French
|
134
|
+
%J L'homme
|
135
|
+
%J1 Homme
|
136
|
+
%D 1976
|
137
|
+
%V 16
|
138
|
+
%N 4
|
139
|
+
%P 7-27
|
140
|
+
%O illus., bibliogr.
|
141
|
+
|
142
|
+
|
143
|
+
|
144
|
+
%R 17-0887
|
145
|
+
%K1 Asia
|
146
|
+
%K2 South Asia
|
147
|
+
%K3 Cultural Anthropology, Ethnography
|
148
|
+
%A H S Saksena
|
149
|
+
%T Debt bondage: an anthropological view [India]
|
150
|
+
%J Eastern anthropologist
|
151
|
+
%J1 East Anthrop
|
152
|
+
%D 1978
|
153
|
+
%V 31
|
154
|
+
%N 3
|
155
|
+
%P 291-300
|
156
|
+
%O illus., bibliogr.
|
157
|
+
|
158
|
+
|
159
|
+
%R 17-6829
|
160
|
+
%K1 Asia
|
161
|
+
%K2 South Asia
|
162
|
+
%K3 Cultural Anthropology, Ethnography
|
163
|
+
%A S Singh
|
164
|
+
%T Indebtedness of scheduled castes [India]
|
165
|
+
%J Eastern anthropologist
|
166
|
+
%J1 East Anthrop
|
167
|
+
%D 1979
|
168
|
+
%V 32
|
169
|
+
%N 2
|
170
|
+
%P 121-4
|
171
|
+
%O illus.
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
%R 21-5582
|
176
|
+
%K1 Asia
|
177
|
+
%K2 South Asia
|
178
|
+
%K3 Cultural Anthropology, Ethnography
|
179
|
+
%A H Wahlquist
|
180
|
+
%T Rural indebtedness in northeastern Nepal. 1, The ethnography and its
|
181
|
+
implications
|
182
|
+
%J Ethnos Stockholm
|
183
|
+
%J1 Ethnos Stockh
|
184
|
+
%D 1981
|
185
|
+
%V 46
|
186
|
+
%N 3/4
|
187
|
+
%P 207-38
|
188
|
+
|
189
|
+
|
190
|
+
%R 21-2900
|
191
|
+
%K1 America
|
192
|
+
%K2 North America
|
193
|
+
%K3 Cultural Anthropology, Ethnography
|
194
|
+
%A J L McMullan
|
195
|
+
%T Social resistance and the exploited poor in the low-income marketplace: the case of debt collection in two Montreal communities
|
196
|
+
%O French summary
|
197
|
+
%J Canadian review of sociology and anthropology
|
198
|
+
%J1 Canad Rev Sociol Anthrop
|
199
|
+
%D 1982
|
200
|
+
%V 19
|
201
|
+
%N 3
|
202
|
+
%P 326-47
|
203
|
+
|
204
|
+
|
205
|
+
%R 1987-4484
|
206
|
+
%K1 ASIA
|
207
|
+
%K2 SOUTH ASIA
|
208
|
+
%K3 CULTURAL ETHNOGRAPHY
|
209
|
+
%A R S Mann
|
210
|
+
%A Kamlesh Mann
|
211
|
+
%T Encountering indebtedness: [the] case of [the] Bhils
|
212
|
+
%J Human science Journal of the anthropological Survey of India
|
213
|
+
%J1 Hum Sci J anthrop Surv India
|
214
|
+
%D 1983
|
215
|
+
%V 32
|
216
|
+
%P 89-101
|
217
|
+
%K Mann K[amlesh]
|
218
|
+
|
219
|
+
%R 1987-4484
|
220
|
+
%K1 ASIA
|
221
|
+
%K2 SOUTH ASIA
|
222
|
+
%K3 CULTURAL ETHNOGRAPHY
|
223
|
+
%A R S Mann
|
224
|
+
%A Kamlesh Mann
|
225
|
+
%T Encountering indebtedness: [the] case of [the] Bhils
|
226
|
+
%J Human science Journal of the anthropological Survey of India
|
227
|
+
%J1 Hum Sci J anthrop Surv India
|
228
|
+
%D 1983
|
229
|
+
%V 32
|
230
|
+
%P 89-101
|
231
|
+
%K Mann K[amlesh]
|
232
|
+
|
233
|
+
|
234
|
+
|
235
|
+
%R 1986-1596
|
236
|
+
%K1 ASIA
|
237
|
+
%K2 SOUTH ASIA
|
238
|
+
%K3 CULTURAL ETHNOGRAPHY
|
239
|
+
%A M M Islam. Mufakharul
|
240
|
+
%T M.L. Darling and 'The Punjab peasant in prosperity and debt': a fresh look
|
241
|
+
%J Journal of peasant studies
|
242
|
+
%J1 J Peasant Stud
|
243
|
+
%D 1985
|
244
|
+
%V 13
|
245
|
+
%P 83-98
|
246
|
+
|
247
|
+
|
248
|
+
%R 1987-1382
|
249
|
+
%K1 ASIA
|
250
|
+
%K2 CENTRAL ASIA & FAR EAST
|
251
|
+
%K3 ARCHAEOLOGY
|
252
|
+
%A Junming Li
|
253
|
+
%T Notes on the Han bamboo strips inscripted with debt manuscripts at Juyan
|
254
|
+
%L Chinese
|
255
|
+
%J Wen Wu
|
256
|
+
%J1 Wen Wu
|
257
|
+
%D 1986
|
258
|
+
%V 11
|
259
|
+
%P 35-41
|
260
|
+
|
261
|
+
|
262
|
+
%R 1988-8314
|
263
|
+
%K1 OTHER
|
264
|
+
%K2 OTHER
|
265
|
+
%K3 CULTURAL ETHNOGRAPHY
|
266
|
+
%A Otto Kreye
|
267
|
+
%A Alexander Schubert
|
268
|
+
%T Social implications of third world debt
|
269
|
+
%J Dialectical anthropology
|
270
|
+
%J1 Dialect Anthrop
|
271
|
+
%D 1987
|
272
|
+
%V 12
|
273
|
+
%P 261-70
|
274
|
+
%K Schubert A
|
275
|
+
|
276
|
+
|
277
|
+
|
278
|
+
%R 1989-8321
|
279
|
+
%K1 EUROPE
|
280
|
+
%K2 EUROPE
|
281
|
+
%K3 CULTURAL ETHNOGRAPHY
|
282
|
+
%A Danielle Bohler
|
283
|
+
%T Gaps of the earth and time: debt and pact in the grateful dead theme during the middle ages
|
284
|
+
%L French
|
285
|
+
%O English, German and Spanish summaries
|
286
|
+
%J L'Homme
|
287
|
+
%J1 Homme
|
288
|
+
%D 1989
|
289
|
+
%V 29
|
290
|
+
%N 3/4
|
291
|
+
%P 161-78
|
292
|
+
|
293
|
+
%R 1989-7210
|
294
|
+
%K1 OTHER
|
295
|
+
%K2 OTHER
|
296
|
+
%K3 ARCHAEOLOGY
|
297
|
+
%A Chris Gosden
|
298
|
+
%T Debt, production, and prehistory
|
299
|
+
%O UK data
|
300
|
+
%J Journal of anthropological archaeology
|
301
|
+
%J1 J anthrop Archaeol
|
302
|
+
%D 1989
|
303
|
+
%P 355-87
|
304
|
+
|
305
|
+
%R 1993-8943
|
306
|
+
%A C A Mayo
|
307
|
+
%A Angela Fernandez
|
308
|
+
%K1 AMERICAS
|
309
|
+
%K2 SOUTH AMERICA
|
310
|
+
%K3 CULTURAL ETHNOGRAPHY
|
311
|
+
%T El peonaje rural rioplatense en una epoca de transicion
|
312
|
+
%J Anuario de estudios americanos
|
313
|
+
%J1 Anu Estud amer
|
314
|
+
%D 1989
|
315
|
+
%V 46
|
316
|
+
%P 305-19
|
317
|
+
%K Haciendas
|
318
|
+
%K Debt bondage
|
319
|
+
%K4 Argentina
|
320
|
+
|
321
|
+
|
322
|
+
%R 1991-8442
|
323
|
+
%K1 AFRICA
|
324
|
+
%K2 AFRICA
|
325
|
+
%K3 OTHER
|
326
|
+
%A Jeff Haynes
|
327
|
+
%T Africa in the international system: problems and prospects
|
328
|
+
%O review article on 'The IMF, the World Bank and the African debt' ed B Onimode (London: Zed/Inst Afr Alternatives, 1989, 2 Vols), 'Africa in world politics' ed RI Onwuka and TM Shaw (London: Macmillan, 1989) and 'Organisation of African Unity: 25 years on' ed K Krafona (London: Afroworld, 1988)
|
329
|
+
%J Africa
|
330
|
+
%J1 Africa
|
331
|
+
%D 1990
|
332
|
+
%V 60
|
333
|
+
%P 435-8
|
334
|
+
|
335
|
+
%R 1991-6523
|
336
|
+
%K1 ASIA
|
337
|
+
%K2 SOUTH ASIA
|
338
|
+
%K3 CULTURAL ETHNOGRAPHY
|
339
|
+
%A S V Kumar
|
340
|
+
%A Vijaya Narayana Reddy
|
341
|
+
%T Indebtedness among the Gadaba: a symptom of underdevelopment
|
342
|
+
%J Man and life
|
343
|
+
%J1 Man Life
|
344
|
+
%D 1990
|
345
|
+
%V 16
|
346
|
+
%N 3/4
|
347
|
+
%P 183-6
|
348
|
+
%K Reddy VN
|
349
|
+
|
350
|
+
%R 1990-6551
|
351
|
+
%K1 OTHER
|
352
|
+
%K2 OTHER
|
353
|
+
%K3 CULTURAL ETHNOGRAPHY
|
354
|
+
%A T M Luhrmann
|
355
|
+
%T Our master, our brother: Levi-Strauss's debt to Rousseau
|
356
|
+
%J Cultural anthropology
|
357
|
+
%J1 Cult Anthrop
|
358
|
+
%D 1990
|
359
|
+
%P 396-413
|
360
|
+
|
361
|
+
%R 1991-6536
|
362
|
+
%K1 ASIA
|
363
|
+
%K2 SOUTH ASIA
|
364
|
+
%K3 CULTURAL ETHNOGRAPHY
|
365
|
+
%A M K Mitra
|
366
|
+
%A Mrinal K Mishra
|
367
|
+
%T Forward and backward linkages of rural indebtedness: a study of four tribal villages in Assam
|
368
|
+
%J Man and life
|
369
|
+
%J1 Man Life
|
370
|
+
%D 1990
|
371
|
+
%V 16
|
372
|
+
%N 1/2
|
373
|
+
%P 37-41
|
374
|
+
%K Mishra SK
|
375
|
+
|
376
|
+
|
377
|
+
%R 1991-8747
|
378
|
+
%K1 AFRICA
|
379
|
+
%K2 EAST AFRICA
|
380
|
+
%K3 CULTURAL ETHNOGRAPHY
|
381
|
+
%A Corinne A Kratz
|
382
|
+
%T Amusement and absolution: transforming narratives during confession of social debts [Okiek
|
383
|
+
%J American anthropologist
|
384
|
+
%J1 Amer Anthrop
|
385
|
+
%D 1991
|
386
|
+
%V 93
|
387
|
+
%P 826-51
|
388
|
+
|
389
|
+
%R 1994-1470
|
390
|
+
%A M Sramkova
|
391
|
+
%A M Toncrova
|
392
|
+
%K1 EUROPE
|
393
|
+
%K2 CENTRAL EUROPE
|
394
|
+
%K3 CULTURAL ETHNOGRAPHY
|
395
|
+
%T Debt of our ethnography
|
396
|
+
%O Czech minorities in Austria
|
397
|
+
%O English and German summaries
|
398
|
+
%L Czech
|
399
|
+
%J Narodopisna revue
|
400
|
+
%J1 Narod Rev
|
401
|
+
%D 1991
|
402
|
+
%V 1
|
403
|
+
%P 44-6, 61, 63
|
404
|
+
%K4 Austria
|
405
|
+
|
406
|
+
|
407
|
+
%R 1993-732
|
408
|
+
%A A Moya
|
409
|
+
%K1 AMERICAS
|
410
|
+
%K2 SOUTH AMERICA
|
411
|
+
%K3 CULTURAL ETHNOGRAPHY
|
412
|
+
%T Peonaje por deuda y unidad domestica en la hacienda ecuatoriana
|
413
|
+
%J Pueblos indigenas y educacion
|
414
|
+
%J1 Puebl indig Educ
|
415
|
+
%D 1992
|
416
|
+
%V 21
|
417
|
+
%P 109-17
|
418
|
+
%K Haciendas
|
419
|
+
%K Debt bondage
|
420
|
+
%K Households, haciendas
|
421
|
+
%K4 Ecuador
|
422
|
+
|
423
|
+
%R 1992-6449
|
424
|
+
%A S Romanoff
|
425
|
+
%K1 AMERICAS
|
426
|
+
%K2 SOUTH AMERICA
|
427
|
+
%K3 CULTURAL ETHNOGRAPHY
|
428
|
+
%T Food and debt among rubber tappers in the Bolivian Amazon
|
429
|
+
%J Human organization
|
430
|
+
%J1 Hum Org
|
431
|
+
%D 1992
|
432
|
+
%V 51
|
433
|
+
%N 2
|
434
|
+
%P 122-35
|
435
|
+
%K Rubber tappers
|
436
|
+
%K Food scarcity, rubber tappers
|
437
|
+
%K Patron and client, rubber tappers
|
438
|
+
%K4 Bolivia, Amazon river region
|
439
|
+
|
440
|
+
%R 1992-6973
|
441
|
+
%A P M Shipton
|
442
|
+
%K1 AFRICA
|
443
|
+
%K2 EAST AFRICA
|
444
|
+
%K3 CULTURAL ETHNOGRAPHY
|
445
|
+
%T Debts and trespasses: land, mortgages, and the ancestors in western
|
446
|
+
Kenya
|
447
|
+
%O French summary
|
448
|
+
%J Africa
|
449
|
+
%J1 Africa
|
450
|
+
%D 1992
|
451
|
+
%V 62
|
452
|
+
%N 3
|
453
|
+
%P 357-88
|
454
|
+
%K Luo
|
455
|
+
%K Land tenure, Luo
|
456
|
+
%K Mortgages, Luo
|
457
|
+
%K4 Kenya
|
458
|
+
|
459
|
+
|
460
|
+
%R 1993-9632
|
461
|
+
%A K Krishna
|
462
|
+
%A D Lahiri
|
463
|
+
%K1 ASIA
|
464
|
+
%K2 SOUTH ASIA
|
465
|
+
%K3 CULTURAL ETHNOGRAPHY
|
466
|
+
%T Incidence of human bondage in West Bengal
|
467
|
+
%J Man and life
|
468
|
+
%J1 Man Life
|
469
|
+
%D 1993
|
470
|
+
%V 19
|
471
|
+
%N 1/2
|
472
|
+
%P 1-13
|
473
|
+
%K Debt bondage
|
474
|
+
%K Forced labour
|
475
|
+
%K Agricultural workers
|
476
|
+
%K4 India, West Bengal
|
477
|
+
|
478
|
+
|
479
|
+
%R 3301-47
|
480
|
+
%K1 AUSTRALASIA and PACIFIC
|
481
|
+
%K2 NEW ZEALAND and POLYNESIA
|
482
|
+
%K3 CULTURAL ETHNOGRAPHY
|
483
|
+
%A Jocelyn S Linnekin
|
484
|
+
%T The teacher and his copra: debts, taxes, and resistance in colonial
|
485
|
+
Samoa
|
486
|
+
%J Ethnohistory
|
487
|
+
%J1 Ethnohistory
|
488
|
+
%D 1994
|
489
|
+
%V 41
|
490
|
+
%N 4
|
491
|
+
%P 539-59
|
492
|
+
|
493
|
+
%R 1994-7010
|
494
|
+
%A de Latour Dejean C H Pradelles
|
495
|
+
%K1 AFRICA
|
496
|
+
%K2 WEST AFRICA
|
497
|
+
%K3 CULTURAL ETHNOGRAPHY
|
498
|
+
%T Marriage payments, debt and fatherhood among the Bangoua: a Lacanian
|
499
|
+
analysis of a kinship system
|
500
|
+
%O French summary
|
501
|
+
%J Africa
|
502
|
+
%J1 Africa
|
503
|
+
%D 1994
|
504
|
+
%V 64
|
505
|
+
%N 1
|
506
|
+
%P 21-33
|
507
|
+
%K4 Cameroon
|
508
|
+
|
509
|
+
|
510
|
+
%R z96m03z-611
|
511
|
+
%A William Pietz
|
512
|
+
%T The spirit of civilization: blood sacrifice and monetary debt
|
513
|
+
%D 1995
|
514
|
+
%J Res
|
515
|
+
%J1 Res
|
516
|
+
%V 28
|
517
|
+
%P 23-38
|
518
|
+
%K IIAF2w4
|
519
|
+
|
520
|
+
%R 97f0102x-501
|
521
|
+
%A A. M. Reshetov
|
522
|
+
%T Paying the debt (2), In memory of [colleagues at] the Institute of
|
523
|
+
Ethnography, soldiers of the Great Patriotic War
|
524
|
+
%O English summary
|
525
|
+
%L Russian
|
526
|
+
%D 1995
|
527
|
+
%J Etnograficheskoe obozrenie
|
528
|
+
%J1 Etnogr obozr
|
529
|
+
%V 3
|
530
|
+
%N 3-20
|
531
|
+
%K Former Soviet Union
|
532
|
+
%K Russia
|
533
|
+
%K1 EUROPE
|
534
|
+
%K2 EASTERN EUROPE
|
535
|
+
%K3 CULTURAL ETHNOGRAPHY
|
536
|
+
|
537
|
+
|
538
|
+
%R 96v12z-139
|
539
|
+
%A Biko Agozino
|
540
|
+
%T The third debt to the third world. The politics of law and order in
|
541
|
+
Camp de Thiaroe
|
542
|
+
%D 1996
|
543
|
+
%J Third text
|
544
|
+
%J1 Third text
|
545
|
+
%V 36
|
546
|
+
%P 3-13
|
547
|
+
%K Senegal
|
548
|
+
%K1 AFRICA
|
549
|
+
%K2 WEST AFRICA
|
550
|
+
%K3 CULTURAL ETHNOGRAPHY
|
551
|
+
%F 0952-8822
|
552
|
+
|
553
|
+
%R 960809z-480
|
554
|
+
%A Michel Cartry
|
555
|
+
%T The murderer's sacrifical debt in societies in the Volta basin:
|
556
|
+
following up on the accounts left by colonial officials-ethnologists
|
557
|
+
%O in special issue 'Destinies of murderers'
|
558
|
+
%O English summary
|
559
|
+
%L French
|
560
|
+
%D 1996
|
561
|
+
%J Systemes de pensee en Afrique noire
|
562
|
+
%J1 Syst Pensee Afr noire
|
563
|
+
%V 14
|
564
|
+
%P 251-304
|
565
|
+
%K1 AFRICA
|
566
|
+
%K2 WEST AFRICA
|
567
|
+
%K3 CULTURAL ETHNOGRAPHY
|
568
|
+
%F 0294-7080
|
569
|
+
|
570
|
+
|
571
|
+
%R 1997-3-220
|
572
|
+
%A Tom Brass
|
573
|
+
%T Immobilised workers, footloose theory [India
|
574
|
+
%D 1997
|
575
|
+
%J Journal of peasant studies
|
576
|
+
%J1 J Peasant Stud
|
577
|
+
%V 24
|
578
|
+
%N 4
|
579
|
+
%P 337-58
|
580
|
+
%K Theory of sociology
|
581
|
+
%K Theory of anthropology
|
582
|
+
%K India
|
583
|
+
%K Labour force
|
584
|
+
%K Social structure
|
585
|
+
%K Capitalism
|
586
|
+
%K Feudalism
|
587
|
+
%K Debt bondage
|
588
|
+
%K1 OTHER
|
589
|
+
%K2 OTHER
|
590
|
+
%K3 CULTURAL ETHNOGRAPHY
|
591
|
+
|
592
|
+
%R 199702-54
|
593
|
+
%A John P. Palmer
|
594
|
+
%A Jurgis Vilis
|
595
|
+
%T Money, pseudo-money, and inflation in post-Soviet Lithuania
|
596
|
+
%D 1997
|
597
|
+
%J Cultural dynamics
|
598
|
+
%J1 Cult Dynam
|
599
|
+
%V 9
|
600
|
+
%N 2
|
601
|
+
%P 239-54
|
602
|
+
%K Lithuania
|
603
|
+
%K Economic history
|
604
|
+
%K Socioeconomic change
|
605
|
+
%K Money
|
606
|
+
%K Debt
|
607
|
+
%K Inflation
|
608
|
+
%K1 EUROPE
|
609
|
+
%K2 EASTERN EUROPE
|
610
|
+
%K3 CULTURAL ETHNOGRAPHY
|
611
|
+
|
612
|
+
%R 199706-12
|
613
|
+
%A Patricia Spyer
|
614
|
+
%T The eroticism of debt: pearl divers, traders, and sea wives in the
|
615
|
+
Aru islands, eastern Indonesia
|
616
|
+
%D 1997
|
617
|
+
%J American ethnologist
|
618
|
+
%J1 Amer Ethnol
|
619
|
+
%V 24
|
620
|
+
%N 3
|
621
|
+
%P 515-38
|
622
|
+
%K Indonesia
|
623
|
+
%K Aru
|
624
|
+
%K Pearl fishing
|
625
|
+
%K Trade
|
626
|
+
%K Wealth
|
627
|
+
%K Debt
|
628
|
+
%K Ethnic relations
|
629
|
+
%K Gender
|
630
|
+
%K Spirits
|
631
|
+
%K1 ASIA
|
632
|
+
%K2 SOUTH-EAST ASIA
|
633
|
+
%K3 CULTURAL ETHNOGRAPHY
|
634
|
+
|
635
|
+
|
636
|
+
%R dz980-8389
|
637
|
+
%A Jean-Pierre Albert
|
638
|
+
%T Sacrifice everywhere and nowhere
|
639
|
+
%L French
|
640
|
+
%O English and German summaries
|
641
|
+
%D 1998
|
642
|
+
%J Ethnologie francaise
|
643
|
+
%J1 Ethnol fr
|
644
|
+
%V 28
|
645
|
+
%N 2
|
646
|
+
%P 197-205
|
647
|
+
%K Religion
|
648
|
+
%K Religious thought
|
649
|
+
%K Christianity
|
650
|
+
%K Sacrifice
|
651
|
+
%K Debt
|
652
|
+
%K Secularisation
|
653
|
+
%K1 OTHER
|
654
|
+
%K2 OTHER
|
655
|
+
%K3 CULTURAL ETHNOGRAPHY
|
656
|
+
|
657
|
+
%R dz983-2340
|
658
|
+
%A Sara Berry
|
659
|
+
%T Unsettled accounts: stool debts, chieftaincy disputes and the question of Asante constitutionalism
|
660
|
+
%D 1998
|
661
|
+
%J Journal of African history
|
662
|
+
%J1 J Afr Hist
|
663
|
+
%V 39
|
664
|
+
%N 1
|
665
|
+
%P 39-62
|
666
|
+
%K Ghana
|
667
|
+
%K Ashanti
|
668
|
+
%K Colonial administration
|
669
|
+
%K Chiefs
|
670
|
+
%K Debt
|
671
|
+
%K Leadership
|
672
|
+
%K Political culture
|
673
|
+
%K Social conflict
|
674
|
+
%K Social change
|
675
|
+
%K1 AFRICA
|
676
|
+
%K2 WEST AFRICA
|
677
|
+
%K3 CULTURAL ETHNOGRAPHY
|
678
|
+
|
679
|
+
%R dz986-4863
|
680
|
+
%A Christopher G. Locke
|
681
|
+
%A Fredoun Z. Ahmadi-Esfahani
|
682
|
+
%T The origins of the international debt crisis
|
683
|
+
%D 1998
|
684
|
+
%J Comparative studies in society and history
|
685
|
+
%J1 Comp Stud Soc Hist
|
686
|
+
%V 40
|
687
|
+
%N 2
|
688
|
+
%P 223-46
|
689
|
+
%K Economic development
|
690
|
+
%K Developing countries
|
691
|
+
%K International relations
|
692
|
+
%K Debt
|
693
|
+
%K North-South relations
|
694
|
+
%K1 OTHER
|
695
|
+
%K2 OTHER
|
696
|
+
%K3 CULTURAL ETHNOGRAPHY
|
697
|
+
|
698
|
+
%R dz986-5303
|
699
|
+
%A Sven Ouzman
|
700
|
+
%T Conversations that captivate, paintings as postscripts
|
701
|
+
%O review article on Voices from the past: /Xam Bushmen and the Bleek and Lloyd collection eds J Deacon and TA Dowson (Cape Town: Witwatersrand Univ Pr, The Khoisan Heritage Series 4, 1996) and A debt of gratitude: Lucy Lloyd and the 'Bushman work' of G.W. Stow ed K Schoeman (Cape Town: South African Library, South Africn Library General Series 25, 1997)
|
702
|
+
%D 1998
|
703
|
+
%J South African archaeological bulletin
|
704
|
+
%J1 S Afr archaeol Bull
|
705
|
+
%V 53
|
706
|
+
%N 167
|
707
|
+
%P 39-43
|
708
|
+
%K South Africa
|
709
|
+
%K Ethnoarchaeology
|
710
|
+
%K Cultural anthropology
|
711
|
+
%K Rock art
|
712
|
+
%K San
|
713
|
+
%K Paintings
|
714
|
+
%K Work of Lucy Catherine Lloyd
|
715
|
+
%K1 AFRICA
|
716
|
+
%K2 SOUTHERN AFRICA
|
717
|
+
%K3 OTHER
|
718
|
+
|
719
|
+
%R dz983-967
|
720
|
+
%A Randal Smith
|
721
|
+
%T 'Money breaks blood ties': chiefs' courts and the transition from lineage debt to commercial debt in Sipolilo district
|
722
|
+
%D 1998
|
723
|
+
%J Journal of southern African studies
|
724
|
+
%J1 J south Afr Stud
|
725
|
+
%V 24
|
726
|
+
%N 3
|
727
|
+
%P 509-26
|
728
|
+
%K Rhodesia
|
729
|
+
%K Zimbabwe
|
730
|
+
%K Law and legislation
|
731
|
+
%K Colonial administration
|
732
|
+
%K Chiefs
|
733
|
+
%K Debt
|
734
|
+
%K Kinship
|
735
|
+
%K1 AFRICA
|
736
|
+
%K2 SOUTHERN AFRICA
|
737
|
+
%K3 CULTURAL ETHNOGRAPHY
|
738
|
+
|
739
|
+
%R dz986-4539
|
740
|
+
%A Cynthia Werner
|
741
|
+
%T Household networks and the security of mutual indebtness in rural Kazakstan
|
742
|
+
%D 1998
|
743
|
+
%J Central Asian survey
|
744
|
+
%J1 Cent Asian Surv
|
745
|
+
%V 17
|
746
|
+
%N 4
|
747
|
+
%P 597-612
|
748
|
+
%K Kazakhstan
|
749
|
+
%K Rural communities
|
750
|
+
%K Households
|
751
|
+
%K Economic anthropology
|
752
|
+
%K Debitage
|
753
|
+
%K Exchange
|
754
|
+
%K1 ASIA
|
755
|
+
%K2 CENTRAL ASIA and FAR EAST
|
756
|
+
%K3 CULTURAL ETHNOGRAPHY
|
757
|
+
|
758
|
+
%R dz986-4858
|
759
|
+
%A Heinzpeter Znoj
|
760
|
+
%T Hot money and war debts: transactional regimes in southwestern Sumatra
|
761
|
+
%D 1998
|
762
|
+
%J Comparative studies in society and history
|
763
|
+
%J1 Comp Stud Soc Hist
|
764
|
+
%V 40
|
765
|
+
%N 2
|
766
|
+
%P 193-222
|
767
|
+
%K Indonesia
|
768
|
+
%K Sumatra
|
769
|
+
%K Forest communities
|
770
|
+
%K Money
|
771
|
+
%K Debt
|
772
|
+
%K Economics
|
773
|
+
%K Wages
|
774
|
+
%K War and warfare
|
775
|
+
%K Gender
|
776
|
+
%K1 ASIA
|
777
|
+
%K2 SOUTH-EAST ASIA
|
778
|
+
%K3 CULTURAL ETHNOGRAPHY
|
779
|
+
|
780
|
+
|
781
|
+
%R 99y1012-353
|
782
|
+
%A Jan Breman
|
783
|
+
%T The study of industrial labour in post-colonial India - the informal
|
784
|
+
sector: a concluding review
|
785
|
+
%O in special issue 'The worlds of Indian industrial labour'
|
786
|
+
%D 1999
|
787
|
+
%J Contributions to Indian sociology (New Series)
|
788
|
+
%V 33
|
789
|
+
%N 1t2
|
790
|
+
%P 407-31
|
791
|
+
%K India
|
792
|
+
%K Informal sector (economics)
|
793
|
+
%K Industrialisation
|
794
|
+
%K Industry and industrial workers
|
795
|
+
%K Labour relations
|
796
|
+
%K Work environment
|
797
|
+
%K Debt
|
798
|
+
%K Power
|
799
|
+
%K1 ASIA
|
800
|
+
%K2 SOUTH ASIA
|
801
|
+
%K3 CULTURAL ETHNOGRAPHY
|
802
|
+
%F 0069-9667
|
803
|
+
|
804
|
+
%R 99y1012-352
|
805
|
+
%A Geert De_Neve
|
806
|
+
%T Asking for and giving baki: neo-bondage, or the interplay of bondage
|
807
|
+
and resistance in the Tamilnadu power-loom industry
|
808
|
+
%O in special issue 'The worlds of Indian industrial labour'
|
809
|
+
%D 1999
|
810
|
+
%J Contributions to Indian sociology (New Series)
|
811
|
+
%V 33
|
812
|
+
%N 1t2
|
813
|
+
%P 379-406
|
814
|
+
%K Tamil Nadu
|
815
|
+
%K India
|
816
|
+
%K Labour relations
|
817
|
+
%K Wages
|
818
|
+
%K Debt bondage
|
819
|
+
%K Industrial workers
|
820
|
+
%K Caste
|
821
|
+
%K Resistance
|
822
|
+
%K1 ASIA
|
823
|
+
%K2 SOUTH ASIA
|
824
|
+
%K3 CULTURAL ETHNOGRAPHY
|
825
|
+
%F 0069-9667
|
826
|
+
|
827
|
+
%R 99z1012x-707
|
828
|
+
%A Turo-Kimmo Lehtonen
|
829
|
+
%T Any room for aesthetics? Shopping practices of heavily indebted
|
830
|
+
consumers
|
831
|
+
%D 1999
|
832
|
+
%J Journal of material culture
|
833
|
+
%J1 J mater Cult
|
834
|
+
%V 4
|
835
|
+
%N 3
|
836
|
+
%P 243-62
|
837
|
+
%K Money
|
838
|
+
%K Aesthetics
|
839
|
+
%K Consumer behaviour
|
840
|
+
%K1 OTHER
|
841
|
+
%K2 OTHER
|
842
|
+
%K3 CULTURAL ETHNOGRAPHY
|
843
|
+
%F 1359-1835
|
844
|
+
|
845
|
+
|
846
|
+
%R 00l1112z-622
|
847
|
+
%A Greg Acciaioli
|
848
|
+
%T Kinship and debt: the social organization of Bugis migration and fish marketing at Lake Lindu, central Sulawesi
|
849
|
+
%D 2000
|
850
|
+
%J Bijdragen tot de taal-, land- en volkenkunde
|
851
|
+
%J1 Bijdr Taal Land Volkenk
|
852
|
+
%V 156
|
853
|
+
%N 3
|
854
|
+
%P 588-617, 635-54
|
855
|
+
%K Bugis
|
856
|
+
%K Patron and client
|
857
|
+
%K Debt
|
858
|
+
%K Migration
|
859
|
+
%K Entrepreneurs
|
860
|
+
%K Kinship
|
861
|
+
%K Community organisation
|
862
|
+
%K Social structure
|
863
|
+
%K Fishing communities
|
864
|
+
%K Marketing
|
865
|
+
%K Sulawesi
|
866
|
+
%K1 ASIA
|
867
|
+
%K2 SOUTH-EAST ASIA
|
868
|
+
%K3 CULTURAL ETHNOGRAPHY
|
869
|
+
%F 0006-2294
|
870
|
+
%O in special issue 'Authority and enterprise among the peoples of South Sulawesi'
|
871
|
+
|
872
|
+
%R 00j0809z-683
|
873
|
+
%A Rajashri Dasgupta
|
874
|
+
%T Old diseases die hard
|
875
|
+
%D 2000
|
876
|
+
%J Himal
|
877
|
+
%J1 Himal
|
878
|
+
%V 13
|
879
|
+
%N 10
|
880
|
+
%P 16-17, 19-20
|
881
|
+
%K Tuberculosis
|
882
|
+
%K Malaria
|
883
|
+
%K Health care
|
884
|
+
%K Poverty
|
885
|
+
%K Public health
|
886
|
+
%K Government policy
|
887
|
+
%K Debt
|
888
|
+
%K Development
|
889
|
+
%K Socioeconomic conditions
|
890
|
+
%K1 ASIA
|
891
|
+
%K2 SOUTH ASIA
|
892
|
+
%K3 OTHER
|
893
|
+
%F 1012-9804
|
894
|
+
|
895
|
+
%R 2000b3y-523
|
896
|
+
%A Pervaiz Nazir
|
897
|
+
%T Origins of debt, mortgage and alienation of land in early modern Punjab
|
898
|
+
%D 2000
|
899
|
+
%J Journal of peasant studies
|
900
|
+
%J1 J Peasant Stud
|
901
|
+
%V 27
|
902
|
+
%N 3
|
903
|
+
%P 55-91
|
904
|
+
%K India
|
905
|
+
%K Punjab
|
906
|
+
%K Land rights
|
907
|
+
%K Debt
|
908
|
+
%K Origins
|
909
|
+
%K1 ASIA
|
910
|
+
%K2 SOUTH ASIA
|
911
|
+
%K3 CULTURAL ETHNOGRAPHY
|
912
|
+
%F 0306-6150
|
913
|
+
|
914
|
+
|
915
|
+
%R 03B05y-1729
|
916
|
+
%A Carmen Bernand
|
917
|
+
%T A virtual project's real circuit: money, doubles and debts in the 16th
|
918
|
+
century Andes
|
919
|
+
%D 2001
|
920
|
+
%J Etudes rurales
|
921
|
+
%J1 Etud rural
|
922
|
+
%V 155/6
|
923
|
+
%P 261-76, 330
|
924
|
+
%K Andes
|
925
|
+
%K Sixteenth century
|
926
|
+
%K Rural communities
|
927
|
+
%K Money
|
928
|
+
%K Social change
|
929
|
+
%K Economic history
|
930
|
+
%K Belief
|
931
|
+
%L French
|
932
|
+
%K1 AMERICAS
|
933
|
+
%K2 SOUTH AMERICA
|
934
|
+
%K3 CULTURAL ETHNOGRAPHY
|
935
|
+
%F 0014-2182
|
936
|
+
%O English summary
|
937
|
+
|
938
|
+
%R 01a0102z-245
|
939
|
+
%A Francoise Douaire-Marsaudon
|
940
|
+
%T From one sex to the other: the kava ceremony and the reproduction of masculine identity in Polynesia
|
941
|
+
%D 2001
|
942
|
+
%J L'Homme
|
943
|
+
%J1 Homme
|
944
|
+
%V 157
|
945
|
+
%N 7-34
|
946
|
+
%K Kava
|
947
|
+
%K Rites and ceremonies
|
948
|
+
%K Chiefs
|
949
|
+
%K Men
|
950
|
+
%K Cosmology
|
951
|
+
%K Creation myths
|
952
|
+
%K Debt
|
953
|
+
%K Ancestors
|
954
|
+
%K Masculinity
|
955
|
+
%K Perception and representation
|
956
|
+
%L French
|
957
|
+
%K1 AUSTRALASIA and PACIFIC
|
958
|
+
%K2 NEW ZEALAND and POLYNESIA
|
959
|
+
%K3 CULTURAL ETHNOGRAPHY
|
960
|
+
%F 0439-4216
|
961
|
+
%O in thematic issue 'Representations et temporalites'; English summary
|
962
|
+
|
963
|
+
%R 00K0910-574
|
964
|
+
%A Gerardo Esquivel
|
965
|
+
%A Felipe Larrain
|
966
|
+
%A Jeffrey Sachs
|
967
|
+
%T Central America's foreign debt burden and the HIPC initiative
|
968
|
+
%D 2001
|
969
|
+
%J Bulletin of Latin American research
|
970
|
+
%J1 Bull Latin Amer Res
|
971
|
+
%V 20
|
972
|
+
%N 1
|
973
|
+
%P 1-28
|
974
|
+
%K Latin America
|
975
|
+
%K Honduras
|
976
|
+
%K Nicaragua
|
977
|
+
%K International economic relations
|
978
|
+
%K Debt
|
979
|
+
%K International associations
|
980
|
+
%K Economic policy
|
981
|
+
%K Economic conditions
|
982
|
+
%K Economic development
|
983
|
+
%K1 AMERICAS
|
984
|
+
%K2 CENTRAL AMERICA
|
985
|
+
%K3 CULTURAL ETHNOGRAPHY
|
986
|
+
%F 0261-3050
|
987
|
+
|
988
|
+
%R 01d0506y-1556
|
989
|
+
%A Andre Orlean
|
990
|
+
%T La monnaie entre economie et anthropologie
|
991
|
+
%D 2001
|
992
|
+
%J Journal des anthropologues
|
993
|
+
%J1 J Anthrop
|
994
|
+
%V 84
|
995
|
+
%N 17-25
|
996
|
+
%K Economic anthropology
|
997
|
+
%K Economics
|
998
|
+
%K Money
|
999
|
+
%K Trust
|
1000
|
+
%K Debt
|
1001
|
+
%L French
|
1002
|
+
%K1 OTHER
|
1003
|
+
%K2 OTHER
|
1004
|
+
%K3 CULTURAL ETHNOGRAPHY
|
1005
|
+
%F 1156-0428
|
1006
|
+
%O in issue 'Anthropologie et economie'
|
1007
|
+
|
1008
|
+
%R 01i0207y-334
|
1009
|
+
%A Owen Sichone
|
1010
|
+
%T Pure anthropology in a highly indebted poor ountry
|
1011
|
+
%D 2001
|
1012
|
+
%J Journal of southern African studies
|
1013
|
+
%J1 J south Afr Stud
|
1014
|
+
%V 27
|
1015
|
+
%N 2
|
1016
|
+
%P 369-79
|
1017
|
+
%K Zambia
|
1018
|
+
%K Modernity
|
1019
|
+
%K Meaning
|
1020
|
+
%K Miners
|
1021
|
+
%K Social classes
|
1022
|
+
%K Sociology
|
1023
|
+
%K1 AFRICA
|
1024
|
+
%K2 SOUTHERN AFRICA
|
1025
|
+
%K3 CULTURAL ETHNOGRAPHY
|
1026
|
+
%F 0305-7070
|
1027
|
+
%O review article on Expectations of modernity - Myths and meanings of urban life in the Zambian copperbelt by J Ferguson (Berkeley: Univ Cal Pr, 1999)
|
1028
|
+
|
1029
|
+
%R 01b0304z-28
|
1030
|
+
%A Asiya Siddiqi
|
1031
|
+
%T Ayesha's world: a butcher's family in nineteenth-century Bombay
|
1032
|
+
%D 2001
|
1033
|
+
%J Comparative studies in society and history
|
1034
|
+
%J1 Comp Stud Soc Hist
|
1035
|
+
%V 43
|
1036
|
+
%N 1
|
1037
|
+
%P 101-29
|
1038
|
+
%K Women
|
1039
|
+
%K Working class
|
1040
|
+
%K Cities and towns
|
1041
|
+
%K Legal history
|
1042
|
+
%K Moneylending
|
1043
|
+
%K Debt
|
1044
|
+
%K Identity
|
1045
|
+
%K Muslims
|
1046
|
+
%K Historical sources
|
1047
|
+
%K Nineteenth century
|
1048
|
+
%K India
|
1049
|
+
%K1 ASIA
|
1050
|
+
%K2 SOUTH ASIA
|
1051
|
+
%K3 CULTURAL ETHNOGRAPHY
|
1052
|
+
%F 0010-4175
|
1053
|
+
%O in special section 'Reconstructing women's worlds'
|
1054
|
+
|
1055
|
+
%R 02w0405y-2106
|
1056
|
+
%A Alain Testart
|
1057
|
+
%A Valerie Lecrivain
|
1058
|
+
%A Dimitri Karadimas
|
1059
|
+
%A Nicolas Govoroff
|
1060
|
+
%T Brideprice and debt-slavery, an example of a sociological law
|
1061
|
+
%D 2001
|
1062
|
+
%J Etudes rurales
|
1063
|
+
%J1 Etud rural
|
1064
|
+
%V 159/60
|
1065
|
+
%P 9-34, 269
|
1066
|
+
%K Slavery
|
1067
|
+
%K Debt bondage
|
1068
|
+
%K Bridewealth and dowry
|
1069
|
+
%K Geographical distribution
|
1070
|
+
%K Marriage customs
|
1071
|
+
%K Sociology
|
1072
|
+
%K Economic anthropology
|
1073
|
+
%K Legal anthropology
|
1074
|
+
%K Political anthropology
|
1075
|
+
%K Kinship
|
1076
|
+
%K Power
|
1077
|
+
%K Labour economics
|
1078
|
+
%L French
|
1079
|
+
%K1 OTHER
|
1080
|
+
%K2 OTHER
|
1081
|
+
%K3 CULTURAL ETHNOGRAPHY
|
1082
|
+
%F 0014-2182
|
1083
|
+
%O in special issue 'Exclusions'
|
1084
|
+
|
1085
|
+
|
1086
|
+
%R 02r1201z-9046
|
1087
|
+
%A Stefano Boni
|
1088
|
+
%T The encompassment of the autonomous wife: hierarchy in Akan marriage (Ghana)
|
1089
|
+
%D 2002
|
1090
|
+
%J Anthropos (St Augustin)
|
1091
|
+
%J1 Anthropos St Augustin
|
1092
|
+
%V 97
|
1093
|
+
%N 1
|
1094
|
+
%P 55-72
|
1095
|
+
%K Ghana
|
1096
|
+
%K Akan
|
1097
|
+
%K Marriage
|
1098
|
+
%K Gender
|
1099
|
+
%K Autonomy
|
1100
|
+
%K Income
|
1101
|
+
%K Husband and wife
|
1102
|
+
%K Debt
|
1103
|
+
%K Gender role and identity
|
1104
|
+
%K Hierarchies
|
1105
|
+
%K Ideology
|
1106
|
+
%K1 AFRICA
|
1107
|
+
%K2 WEST AFRICA
|
1108
|
+
%K3 CULTURAL ETHNOGRAPHY
|
1109
|
+
%F 0257-9774
|
1110
|
+
|
1111
|
+
%R 02g0809-5675
|
1112
|
+
%A Stephane Breton
|
1113
|
+
%T Monnaie et economie des personnes
|
1114
|
+
%D 2002
|
1115
|
+
%J L'Homme
|
1116
|
+
%J1 Homme
|
1117
|
+
%V 162
|
1118
|
+
%P 13-26
|
1119
|
+
%K Money
|
1120
|
+
%K Equivalence
|
1121
|
+
%K Exchange
|
1122
|
+
%K Gifts
|
1123
|
+
%K Economics
|
1124
|
+
%K Debt
|
1125
|
+
%L French
|
1126
|
+
%K1 OTHER
|
1127
|
+
%K2 OTHER
|
1128
|
+
%K3 CULTURAL ETHNOGRAPHY
|
1129
|
+
%F 0439-4216
|
1130
|
+
%O in thematic section 'Questions de monnaie'
|
1131
|
+
|
1132
|
+
%R 02g0809-5577
|
1133
|
+
%A Alain Marie
|
1134
|
+
%T An anthropo-logic tested against globalization: from the debtor relationship to social strife in the Ivory Coast
|
1135
|
+
%D 2002
|
1136
|
+
%J Cahiers d'etudes africaines
|
1137
|
+
%J1 Cah Etud afr
|
1138
|
+
%V 166
|
1139
|
+
%P 207-55
|
1140
|
+
%K Ivory Coast
|
1141
|
+
%K Social classes
|
1142
|
+
%K Debt
|
1143
|
+
%K Social conflict
|
1144
|
+
%K Individuality
|
1145
|
+
%K Civil society
|
1146
|
+
%K Ethnic relations
|
1147
|
+
%K Globalisation
|
1148
|
+
%L French
|
1149
|
+
%K1 AFRICA
|
1150
|
+
%K2 WEST AFRICA
|
1151
|
+
%K3 CULTURAL ETHNOGRAPHY
|
1152
|
+
%F 0008-0055
|
1153
|
+
%O English summary
|
1154
|
+
|
1155
|
+
%R 03r0102-396
|
1156
|
+
%A Allan D. Meyers
|
1157
|
+
%A David L. Carlson
|
1158
|
+
%T Peonage, power relations and the built environment at Hacienda Tabi, Yucatan, Mexico
|
1159
|
+
%D 2002
|
1160
|
+
%J International journal of historical archaeology
|
1161
|
+
%J1 Int J hist Archaeol
|
1162
|
+
%V 6
|
1163
|
+
%N 4
|
1164
|
+
%P 225-52
|
1165
|
+
%K Mexico
|
1166
|
+
%K Yucatan
|
1167
|
+
%K Haciedas
|
1168
|
+
%K Historical archaeology
|
1169
|
+
%K Power
|
1170
|
+
%K Debt bondage
|
1171
|
+
%K Social control
|
1172
|
+
%K Community organisation
|
1173
|
+
%K1 AMERICAS
|
1174
|
+
%K2 CENTRAL AMERICA
|
1175
|
+
%K3 ARCHAEOLOGY
|
1176
|
+
%F 1092-7697
|
1177
|
+
|
1178
|
+
%R 02g0809-5676
|
1179
|
+
%A Andre Orlean
|
1180
|
+
%T Money vs merchandise
|
1181
|
+
%D 2002
|
1182
|
+
%J L'Homme
|
1183
|
+
%J1 Homme
|
1184
|
+
%V 162
|
1185
|
+
%P 27-48
|
1186
|
+
%K Money
|
1187
|
+
%K Market economy
|
1188
|
+
%K Exchange
|
1189
|
+
%K Individualism
|
1190
|
+
%K Holism
|
1191
|
+
%K Trust
|
1192
|
+
%K Debt
|
1193
|
+
%L French
|
1194
|
+
%K1 OTHER
|
1195
|
+
%K2 OTHER
|
1196
|
+
%K3 CULTURAL ETHNOGRAPHY
|
1197
|
+
%F 0439-4216
|
1198
|
+
%O in thematic section 'Questions de monnaie'; English summary
|
1199
|
+
|
1200
|
+
%R 02k1011z-8086
|
1201
|
+
%A Saskia Sassen
|
1202
|
+
%T Governance hotspots: challenges we must confront in the post-September 11 world
|
1203
|
+
%D 2002
|
1204
|
+
%J Theory, culture and society
|
1205
|
+
%J1 Theory Cult Soc
|
1206
|
+
%V 19
|
1207
|
+
%N 4
|
1208
|
+
%P 233-44
|
1209
|
+
%K Globalisation
|
1210
|
+
%K United States
|
1211
|
+
%K International relations
|
1212
|
+
%K Terrorism
|
1213
|
+
%K War and warfare
|
1214
|
+
%K World organisation
|
1215
|
+
%K Political change
|
1216
|
+
%K Developing countries
|
1217
|
+
%K Debt
|
1218
|
+
%K Immigration
|
1219
|
+
%K Poverty
|
1220
|
+
%K1 OTHER
|
1221
|
+
%K2 OTHER
|
1222
|
+
%K3 CULTURAL ETHNOGRAPHY
|
1223
|
+
%F 0263-2764
|
1224
|
+
%O in thematic section 'State of emergency'
|
1225
|
+
|
1226
|
+
%R 02m11y-228
|
1227
|
+
%A Genevieve Serre
|
1228
|
+
%T Women without shadows or the impossible debt: the choice of not being mother
|
1229
|
+
%D 2002
|
1230
|
+
%J L'Autre: cliniques, cultures et societes
|
1231
|
+
%J1 Autre
|
1232
|
+
%V 3
|
1233
|
+
%N 2
|
1234
|
+
%P 247-56
|
1235
|
+
%K France
|
1236
|
+
%K Women
|
1237
|
+
%K Personal narrative
|
1238
|
+
%K Children
|
1239
|
+
%K Femininity
|
1240
|
+
%K Autonomy
|
1241
|
+
%K Motherhood
|
1242
|
+
%K Agency
|
1243
|
+
%K Choice
|
1244
|
+
%K Psychology
|
1245
|
+
%L French
|
1246
|
+
%K1 EUROPE
|
1247
|
+
%K2 WESTERN EUROPE
|
1248
|
+
%K3 CULTURAL ETHNOGRAPHY
|
1249
|
+
%O in thematic section 'Desirs d'enfant'; English and Spanish summaries
|
1250
|
+
|
1251
|
+
|
1252
|
+
|
1253
|
+
|
1254
|
+
|