-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e32dbe0
commit 982d643
Showing
6 changed files
with
53 additions
and
3 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
In the Society of Vegecultural Cultivators | ||
|
||
|
||
|
||
Huw Barton, School of Archaeology and Ancient History, University of Leicester. LE1 7RH, UK. [email protected] | ||
|
||
|
||
|
||
Tim Denham, School of Geography and Environmental Science, Building 11, Monash University, Clayton Campus, VIC 3800, Australia. [email protected] | ||
|
||
|
||
|
||
|
||
|
||
Introduction | ||
|
||
|
||
|
||
This paper considers the implication of vegecultural systems of food production within a prehistoric context within Southeast Asia and contrasts this with the better described systems of plant cultivation known from the prehistory of Papua New Guinea. In doing this we also consider the social significance of vegecultural traditions as a more than simply a method of providing food in tropical contexts but as an embedded ‘practice’ that, over millennia, had become tightly woven into indigenous cosmologies. We consider long histories of vegeculture across Melanesia and Island Southeast Asia, primarily involving asexual propagation, transplanting, and low intensity plant management within forested environments We argue that mosaics, or a patchwork, of human-plant interactions existed across Island Southeast Asia and into Melanesia from the Pleistocene until the late Holocene and that this had important implications for the histories of people-plant interactions and instances of phenotypic change in some plants, but its absence in others. Finally we consider what this implies for the apparent late adoption of rice as a major staple across island Southeast Asia south of Taiwan; a transformation that was structured by behavioural predispositions (habitus), domesticatory relationships (domus), including exploitation practices, and plants (after Bourdieu 1990; Hodder 1990; Denham 2004). Rather than solely being inherited from Austronesian-speaking colonisers (Bellwood 2005), the deep antiquity of vegecultural forms of people-plant interaction did not pave the way for a new farming system and new farming technologies, and is more likely to have discouraged its adoption for many thousands of years. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import unittest | ||
from unittest import TestCase | ||
|
||
import convertapi | ||
|
||
from moodleapi.core.calendar import clean, time | ||
|
||
from .secret import SECRET_KEY | ||
|
||
|
||
class ToolsTestCase(TestCase): | ||
def setUp(self): | ||
generate_text() | ||
|
||
def test_clean(self): | ||
pass | ||
|
||
def test_time(self): | ||
pass | ||
|
||
|
||
def generate_text(): | ||
convertapi.api_secret = SECRET_KEY | ||
convertapi.convert( | ||
"txt", {"File": "html_example.txt"}, from_format="html" | ||
).save_files("docx_example.txt") | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |