Skip to content

Commit 495f809

Browse files
committed
Lit Action v2
1 parent acdb064 commit 495f809

5 files changed

Lines changed: 40 additions & 5 deletions

File tree

‎.github/workflows/links.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
Links:
88
runs-on: ubuntu-latest
99
env:
10-
USER_AGENT: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Mobile Safari/537.36
10+
USER_AGENT: Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Mobile Safari/537.36
1111
steps:
1212
- name: Download prod build
1313
uses: dawidd6/action-download-artifact@master

‎_authors/desilva.md‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ title: "Lily de Silva"
55
Lily de Silva (1928–2005) was a Pali scholar at the University of Ceylon, Peradeniya, where she received a B.A. with First Class Honors in Pali and the Woodward Prize for Pali and, in 1967, her Ph.D.
66
She stayed at the University to teach and quickly became Chair of the Department of Pali and Buddhist Studies where she remained until her retirement in 1994.
77

8-
_~ From [Access to Insight](https://www.accesstoinsight.org/lib/authors/index.html#desilva) and [her obituary in the Daily Mirror](https://www.dailymirror.lk/opinion/dr-lily-de-silva-professor-emerita-a-great-scholar-in-pali-and-buddhism/172-94221)_
8+
_~ From [Access to Insight](http://www.dhammatalks.net/accesstoinsight/html/lib/authors/index.html#desilva) and [her obituary in the Daily Mirror](https://www.dailymirror.lk/opinion/dr-lily-de-silva-professor-emerita-a-great-scholar-in-pali-and-buddhism/172-94221)_

‎_content/monographs/rhetoric-of-literate-action_bazerman-charles.md‎

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ strategic terms about what they want their texts to accomplish, what form the
3535
texts might take, how to develop specific contents, and how to arrange the work
3636
of writing.
3737

38+
For a deep exploration of the theoretical understanding of written language undergirding this book, see its companion volume, [*A Theory of Literate Action*](/content/monographs/theory-of-literate-action_bazerman-charles).
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: "A Theory of Literate Action"
3+
authors:
4+
- "Charles Bazerman"
5+
editor: "Don Donahue"
6+
external_url: "https://wacclearinghouse.org/books/perspectives/literateaction-v2/"
7+
source_url: "https://doi.org/10.37514/PER-B.2013.4791"
8+
drive_links:
9+
- "https://drive.google.com/file/d/1z6TcI6T_2znxLQoa5jiA1uidsJDpVfI2/view?usp=drivesdk"
10+
- "https://drive.google.com/file/d/1G37FIhJHpfop0OLDbymWyYh0do9R9Y9u/view?usp=drivesdk"
11+
status: featured
12+
course: language
13+
tags:
14+
- rhetoric
15+
- writing
16+
- paper
17+
- society
18+
year: 2013
19+
month: aug
20+
olid: OL27480359M
21+
publisher: "Parlor Press"
22+
series: "Literate Action"
23+
number: 2
24+
pages: 197
25+
---
26+
27+
> With the emergence of literacy as part of human cultural evolution,
28+
new kinds of relations and activities formed that have created structures of
29+
participation in larger and more distant organizations, relying on accumulating
30+
knowledge and mediated through genre-shaped texts. It is for these activity
31+
contexts that individuals must produce texts, mobilizing the resources of
32+
language, and it is within these contexts that the texts will have their effect.
33+
34+
This second, companion volume to [*A Rhetoric of Literate Action*](/content/monographs/rhetoric-of-literate-action_bazerman-charles) supplies the theoretical understanding of what written language is and does which underlies that volume's practical advice.
35+
But far from being a mere appendix, this survey of psycho-social theories of media and culture serves well as a compelling introduction to the theory of language in general and its place in society.
36+

‎scripts/strutils.py‎

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -682,9 +682,7 @@ def authorstr(work: dict, maxn: int=2) -> str:
682682
"""Given a CORE or OpenAlex work, gives the authors string for the filename"""
683683
if 'authorships' in work:
684684
# https://docs.openalex.org/api-entities/works/work-object#authorships
685-
authors = list(map(lambda a: a['author']['display_name'], work['authorships']))
686-
with_commas = [author for author in authors if ',' in author]
687-
assert len(with_commas) == 0, f"Found authors with commas: {with_commas} (in work {work.get('id')})"
685+
authors = list(map(lambda a: author_name_to_normal(a['author']['display_name']), work['authorships']))
688686
elif 'authors' in work:
689687
# https://api.core.ac.uk/docs/v3#tag/Works/operation/optionsCustomWorks:~:text=List%20of%20author%20names
690688
if isinstance(work['authors'], str):

0 commit comments

Comments
 (0)