Skip to content

Commit e7d3625

Browse files
committed
2 ac arts
1 parent 9114405 commit e7d3625

5 files changed

Lines changed: 54 additions & 4 deletions
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
title: "On the Allure of Buddhist Relics"
3+
authors:
4+
- sharf-rob
5+
external_url: "https://www.academia.edu/26441107/On_the_Allure_of_Buddhist_Relics"
6+
source_url: "https://doi.org/10.2307/2902880"
7+
drive_links:
8+
- "https://drive.google.com/file/d/1vrKvR8FxcJnlarh5DF6zzGSAXnXvOxR8/view?usp=drivesdk"
9+
alt_doi: "https://doi.org/10.1525/rep.1999.66.1.01p0040y"
10+
course: academic
11+
tags:
12+
- form
13+
- anthropology
14+
year: 1999
15+
journal: "Representations"
16+
publisher: "University of California Press"
17+
volume: 66
18+
pages: "75--99"
19+
openalexid: W1969823413
20+
---
21+
22+
> For many scholars who found themselves disenchanted with the romantisized and/or rationalized versions of Buddhism that once dominated the field, the discovery of relic and image worship was the smoking gun that provided irrefutable evidence that Buddhists are not bourgeois rationalists after all. The worship of relics exemplified the newfound otherness of Buddhism, for it would seem to involve the sanctification of that which is utterly profane and loathsome—the corporeal remains of the dead.
23+
24+
The allure of Buddhist relics is not limited to the faithful but extends also to Western academics with their own beliefs to demonstrate.
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
title: "Reception History and Limits of Interpretation: The Belgian Étienne Lamotte, Japanese Buddhologists, the Chinese Monk Yìnshùn 印順 and the Formation of a Global ‘Dà Zhìdù Lùn 大智度論 Scholarship’"
3+
authors:
4+
- "Stefania Travagnin"
5+
external_url: "https://glorisunglobalnetwork.org/wp-content/uploads/2019/06/hualin1.1_travagnin_final.pdf"
6+
source_url: "https://doi.org/10.15239/hijbs.01.01.09"
7+
drive_links:
8+
- "https://drive.google.com/file/d/1immBBMzEqdXkjSEQIU7wjJMICENGM-8b/view?usp=drivesdk"
9+
course: academic
10+
tags:
11+
- madhyamaka
12+
- mahayana-canon
13+
- modern
14+
year: 2019
15+
month: apr
16+
journal: hijbs
17+
volume: 1
18+
number: 1
19+
pages: "248--277"
20+
openalexid: W2937030102
21+
---
22+
23+
> Lamotte's argument led to various debates that gave rise to a wide array of hypotheses on who the author of Dà Zhìdù Lùn could have been.
24+
The theory that Dà Zhìdù Lùn could have been a text not (or not only) written by Nāgārjuna reached Chinese Buddhist monks and scholars as well, including the monk Yìnshùn (1906-2005).
25+
This paper will show the impact of Western scholarship on East Asian Buddhism, highlight the (pluri)directionality of knowledge.

_content/articles/tempering-belles-infideles-and-promoting-jolies_deleanu-f.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Tempering Belles Infidèles and Promoting Jolies Laides: Idle Thoughts on the Ideal Rendering of Buddhist Texts and Terminology"
2+
title: "Tempering *Belles Infidèles* and Promoting *Jolies Laides*: Idle Thoughts on the Ideal Rendering of Buddhist Texts and Terminology"
33
authors:
44
- deleanu-f
55
external_url: "https://www.jocbs.org/index.php/jocbs/article/download/19/19"

scripts/gdrive.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,12 +245,13 @@ def get_course_for_folder(folderid) -> str | None:
245245
def move_gfile(glink, folders):
246246
gfid = link_to_id(glink)
247247
public_fid, private_fid = folders
248-
file = gcache.move_file(gfid, public_fid or private_fid)
248+
gcache.move_file(gfid, public_fid or private_fid)
249249
shortcuts = gcache.get_shortcuts_to_file(gfid)
250+
file = gcache.get_item(gfid)
250251
if public_fid and private_fid:
251252
if len(shortcuts) != 1:
252253
print("Creating a (new, private) shortcut...")
253-
gcache.create_shortcut(gfid, file.get('name'), private_fid)
254+
gcache.create_shortcut(gfid, file['name'], private_fid, file['mimeType'])
254255
elif len(shortcuts) == 1:
255256
s=shortcuts[0]
256257
print(f"Moving existing shortcut from {FOLDER_LINK.format(s['parents'][0])} to {FOLDER_LINK.format(private_fid)} ...")

scripts/local_gdrive.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ def create_folder(self, folder_name: str, parent_id: str) -> str:
919919
})
920920
return new_folder_id
921921

922-
def create_shortcut(self, target_id: str, shortcut_name: str, folder_id: str, target_mime_type: str = None):
922+
def create_shortcut(self, target_id: str, shortcut_name: str, folder_id: str, target_mime_type: str):
923923
"""
924924
Writes a new shortcut to Drive in folder_id with name shortcut_name pointing to target_id
925925
"""

0 commit comments

Comments
 (0)