Skip to content

Commit db43fea

Browse files
committed
new paper and rm dupe
1 parent 2f50e31 commit db43fea

4 files changed

Lines changed: 33 additions & 33 deletions

File tree

_content/articles/search-for-scientific-meaning-in-sati_phan-le-nhat-tram-et-al.md

Lines changed: 0 additions & 30 deletions
This file was deleted.
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
title: "The Buddhist Association of China and Constitutional Law in Buddhist Majority Nations"
3+
authors:
4+
- "André Laliberté"
5+
editor: "Tom Ginsburg and Ben Schonthal"
6+
external_url: "https://www.cambridge.org/core/services/aop-cambridge-core/content/view/6FD0CF999F6956C2F90B7B39F3597D47/9781009286046c14_285-304.pdf/the-buddhist-association-of-china-and-constitutional-law-in-buddhist-majority-nations.pdf"
7+
source_url: "https://doi.org/10.1017/9781009286022.019"
8+
drive_links:
9+
- "https://drive.google.com/file/d/15XHfxUBl0mUKVSvbRGG1K3amkIgrSc4J/view?usp=drivesdk"
10+
course: asia
11+
tags:
12+
- chinese
13+
- engaged
14+
year: 2022
15+
month: nov
16+
booktitle: "Buddhism and Comparative Constitutional Law"
17+
publisher: cambridge
18+
pages: "285--304"
19+
chapter: 14
20+
openalexid: W4309402563
21+
---
22+
23+
> The essay looks at the Buddhist Association of China (BAC), which the Chinese Communist Party (CCP) has promoted as an influential actor in Buddhist circles on the global stage, via one of its key instruments for influence in Chinese societies and abroad, the United Front Work Department (UFWD).
24+
> This chapter argues that Buddhist actors who seek to shape the legal-political framework of their societies according to their values are facing increasing competition from a fellow influential Buddhist association that conveys the positions of its political mentor rather than shared religious values.
25+
26+
Gives a good history of the CCP's relationship with Buddhism—from antagonism to co-option—and gives some thoughts about the relationship between Buddhism and the state across Asia.

scripts/android_go_through.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,8 @@ def sort_pdf_file(child):
416416
gf['id'],
417417
new_parent_id=gfolder[0] or gfolder[1],
418418
old_parent_id=gf.get('parent_id', REMOTE_FOLDER),
419-
reason=(isnt_unread and input("Any notes? ")) or "Preliminary sort",
419+
description = isnt_unread and input("Any notes? ")
420+
reason = description or "Preliminary sort",
420421
alternate_tags=tags,
421422
)
422423
if gfolder[0]:
@@ -428,7 +429,7 @@ def sort_pdf_file(child):
428429
work, _ = prompt_for_work(query.replace("_", " "))
429430
if work:
430431
gdrive.move_gfile(glink, gfolder)
431-
filepath = make_library_entry_for_work(work, course=course, glink=glink, pagecount=pagecount, tags=tags)
432+
filepath = make_library_entry_for_work(work, course=course, glink=glink, pagecount=pagecount, tags=tags, description=description)
432433
print(f"\nOpening {filepath}\n")
433434
system_open(filepath)
434435
fp.unlink()

scripts/openaleximporter.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def print_openalex_work(work: dict, indent=0):
9292
pass
9393
print(f"{s}URL: {work['open_access']['oa_url']}")
9494

95-
def make_library_entry_for_work(work, draft=False, course=None, glink='', pagecount=None, tags: list | None=None) -> str:
95+
def make_library_entry_for_work(work, draft=False, course=None, glink='', pagecount=None, tags: list | None=None, description: str | None=None) -> str:
9696
category = 'articles'
9797
subcat = ''
9898
match work['type']:
@@ -300,6 +300,9 @@ def make_library_entry_for_work(work, draft=False, course=None, glink='', pageco
300300
line_len = 1 + len(word)
301301
fd.write('\n>')
302302
fd.write('\n\n')
303+
if description:
304+
fd.write(description)
305+
fd.write('\n\n')
303306
return file_path
304307

305308
def draft_files_matching(query):

0 commit comments

Comments
 (0)