@openparachute/vault 0.2.2 → 0.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.claude/settings.local.json +31 -0
- package/.playwright-mcp/console-2026-04-14T04-17-25-395Z.log +2 -0
- package/.playwright-mcp/console-2026-04-14T04-18-11-767Z.log +1 -0
- package/.playwright-mcp/console-2026-04-14T04-19-07-733Z.log +2 -0
- package/.playwright-mcp/console-2026-04-14T04-20-45-440Z.log +2 -0
- package/.playwright-mcp/page-2026-04-14T04-17-25-536Z.yml +1 -0
- package/.playwright-mcp/page-2026-04-14T04-18-11-816Z.yml +1 -0
- package/.playwright-mcp/page-2026-04-14T04-18-31-674Z.yml +211 -0
- package/.playwright-mcp/page-2026-04-14T04-19-07-795Z.yml +59 -0
- package/.playwright-mcp/page-2026-04-14T04-19-36-239Z.yml +232 -0
- package/.playwright-mcp/page-2026-04-14T04-19-58-327Z.yml +182 -0
- package/.playwright-mcp/page-2026-04-14T04-20-10-517Z.yml +91 -0
- package/.playwright-mcp/page-2026-04-14T04-20-14-796Z.yml +70 -0
- package/.playwright-mcp/page-2026-04-14T04-20-45-509Z.yml +59 -0
- package/CHANGELOG.md +13 -0
- package/core/src/core.test.ts +12 -0
- package/core/src/notes.ts +4 -0
- package/core/src/types.ts +1 -0
- package/package.json +1 -1
- package/religions-abrahamic-filter.png +0 -0
- package/religions-buddhism-v2.png +0 -0
- package/religions-buddhism.png +0 -0
- package/religions-final.png +0 -0
- package/religions-v1.png +0 -0
- package/religions-v2.png +0 -0
- package/religions-zen.png +0 -0
- package/src/routing.test.ts +183 -0
- package/src/routing.ts +37 -1
- package/web/README.md +73 -0
- package/web/bun.lock +827 -0
- package/web/eslint.config.js +23 -0
- package/web/index.html +15 -0
- package/web/package.json +36 -0
- package/web/public/favicon.svg +1 -0
- package/web/public/icons.svg +24 -0
- package/web/src/App.tsx +149 -0
- package/web/src/Graph.tsx +200 -0
- package/web/src/NoteView.tsx +155 -0
- package/web/src/Sidebar.tsx +186 -0
- package/web/src/api.ts +21 -0
- package/web/src/index.css +50 -0
- package/web/src/main.tsx +10 -0
- package/web/src/types.ts +37 -0
- package/web/src/utils.ts +107 -0
- package/web/tsconfig.app.json +25 -0
- package/web/tsconfig.json +7 -0
- package/web/tsconfig.node.json +24 -0
- package/web/vite.config.ts +16 -0
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
{
|
|
2
|
+
"permissions": {
|
|
3
|
+
"allow": [
|
|
4
|
+
"mcp__parachute-vault__list-vaults",
|
|
5
|
+
"Bash(parachute vault:*)",
|
|
6
|
+
"Bash(bun /Users/unforced/Coding/parachute-vault/src/cli.ts vault create religions)",
|
|
7
|
+
"mcp__parachute-vault__update-vault-description",
|
|
8
|
+
"mcp__parachute-vault__create-notes",
|
|
9
|
+
"mcp__parachute-vault__create-link",
|
|
10
|
+
"WebFetch(domain:raw.githubusercontent.com)",
|
|
11
|
+
"Bash(curl -s http://localhost:1940/vaults/religions/api/tags)",
|
|
12
|
+
"Bash(curl -s http://localhost:1940/vaults/religions/api/graph)",
|
|
13
|
+
"Bash(python3 -c \"import sys,json; d=json.load\\(sys.stdin\\); print\\(f'Notes: {len\\(d[\\\\\"notes\\\\\"]\\)}, Links: {len\\(d[\\\\\"links\\\\\"]\\)}'\\)\")",
|
|
14
|
+
"Bash(python3 -c \"import sys,json; d=json.load\\(sys.stdin\\); print\\(list\\(d.keys\\(\\)\\)\\); print\\({k: len\\(v\\) if isinstance\\(v, list\\) else v for k,v in d.items\\(\\)}\\)\")",
|
|
15
|
+
"Bash(curl -s http://localhost:1940/vaults/religions/api/notes?limit=3)",
|
|
16
|
+
"Bash(python3 -c \"import sys,json; d=json.load\\(sys.stdin\\); print\\(type\\(d\\), list\\(d.keys\\(\\)\\) if isinstance\\(d,dict\\) else len\\(d\\)\\)\")",
|
|
17
|
+
"Bash(curl -s \"http://localhost:1940/vaults/religions/api/notes?limit=3\")",
|
|
18
|
+
"Bash(curl -s \"http://localhost:1940/vaults/religions/api/notes?limit=1&include_content=true\")",
|
|
19
|
+
"Bash(python3 -c \"import sys,json; d=json.load\\(sys.stdin\\); print\\(json.dumps\\(d[0], indent=2\\)[:800]\\)\")",
|
|
20
|
+
"Bash(curl -s \"http://localhost:1940/vaults/religions/api/links?limit=3\")",
|
|
21
|
+
"Bash(python3 -c \"import sys,json; d=json.load\\(sys.stdin\\); print\\(json.dumps\\(d[:3], indent=2\\)\\)\")",
|
|
22
|
+
"Bash(curl -s \"http://localhost:1940/vaults/religions/api/links\")",
|
|
23
|
+
"Bash(python3 -c \"import sys,json; d=json.load\\(sys.stdin\\); print\\(type\\(d\\)\\); print\\(list\\(d.keys\\(\\)\\) if isinstance\\(d,dict\\) else len\\(d\\)\\); print\\(json.dumps\\(d if isinstance\\(d,dict\\) else d[:2], indent=2\\)[:500]\\)\")",
|
|
24
|
+
"Bash(curl -s \"http://localhost:1940/vaults/religions/api/links?note_id=2026-04-07-20-21-49-947011\")",
|
|
25
|
+
"Bash(python3 -c \"import sys,json; d=json.load\\(sys.stdin\\); print\\(type\\(d\\)\\); print\\(json.dumps\\(d[:3] if isinstance\\(d,list\\) else d, indent=2\\)[:600]\\)\")",
|
|
26
|
+
"Bash(curl -s \"http://localhost:1940/api/links?note_id=2026-04-07-20-21-49-947011\")",
|
|
27
|
+
"Bash(curl -v \"http://localhost:1940/vaults/religions/api/links\")",
|
|
28
|
+
"Bash(curl -v \"http://localhost:1940/vaults/religions/api/links/\")"
|
|
29
|
+
]
|
|
30
|
+
}
|
|
31
|
+
}
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
[ 115ms] [INFO] %cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools font-weight:bold @ http://localhost:5173/node_modules/.vite/deps/react-dom_client.js?v=d86e5719:14336
|
|
2
|
+
[ 140ms] [ERROR] Failed to load resource: the server responded with a status of 404 (Not Found) @ http://localhost:5173/favicon.ico:0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
[ 29ms] [INFO] %cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools font-weight:bold @ http://localhost:5173/node_modules/.vite/deps/react-dom_client.js?v=d86e5719:14336
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
[ 28ms] [INFO] %cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools font-weight:bold @ http://localhost:5173/node_modules/.vite/deps/react-dom_client.js?v=d86e5719:14336
|
|
2
|
+
[ 49569ms] [ERROR] Encountered two children with the same key, `%s`. Keys should be unique so that components maintain their identity across updates. Non-unique keys may cause children to be duplicated and/or omitted — the behavior is unsupported and could change in a future version. 2026-04-07-20-50-46-718089 @ http://localhost:5173/@vite/client:509
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
[ 29ms] [INFO] %cDownload the React DevTools for a better development experience: https://react.dev/link/react-devtools font-weight:bold @ http://localhost:5173/node_modules/.vite/deps/react-dom_client.js?v=d86e5719:14336
|
|
2
|
+
[ 9816ms] [LOG] [vite] server connection lost. Polling for restart... @ http://localhost:5173/@vite/client:968
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
- generic [ref=e4]: Loading the world's religions...
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
- generic [ref=e4]: Loading the world's religions...
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
- generic [ref=e3]:
|
|
2
|
+
- generic [ref=e5]:
|
|
3
|
+
- generic [ref=e6]:
|
|
4
|
+
- heading "Religions of the World" [level=1] [ref=e7]
|
|
5
|
+
- paragraph [ref=e8]: Knowledge Graph
|
|
6
|
+
- textbox "Search notes..." [ref=e10]
|
|
7
|
+
- generic [ref=e11]:
|
|
8
|
+
- generic [ref=e12]:
|
|
9
|
+
- generic [ref=e13]: By Family
|
|
10
|
+
- button "Abrahamic 39" [ref=e14] [cursor=pointer]:
|
|
11
|
+
- generic [ref=e16]: Abrahamic
|
|
12
|
+
- generic [ref=e17]: "39"
|
|
13
|
+
- button "Dharmic 39" [ref=e18] [cursor=pointer]:
|
|
14
|
+
- generic [ref=e20]: Dharmic
|
|
15
|
+
- generic [ref=e21]: "39"
|
|
16
|
+
- button "East Asian 21" [ref=e22] [cursor=pointer]:
|
|
17
|
+
- generic [ref=e24]: East Asian
|
|
18
|
+
- generic [ref=e25]: "21"
|
|
19
|
+
- button "Iranian 6" [ref=e26] [cursor=pointer]:
|
|
20
|
+
- generic [ref=e28]: Iranian
|
|
21
|
+
- generic [ref=e29]: "6"
|
|
22
|
+
- button "Indigenous 6" [ref=e30] [cursor=pointer]:
|
|
23
|
+
- generic [ref=e32]: Indigenous
|
|
24
|
+
- generic [ref=e33]: "6"
|
|
25
|
+
- button "New Religious Movements 10" [ref=e34] [cursor=pointer]:
|
|
26
|
+
- generic [ref=e36]: New Religious Movements
|
|
27
|
+
- generic [ref=e37]: "10"
|
|
28
|
+
- generic [ref=e38]:
|
|
29
|
+
- generic [ref=e39]: By Type
|
|
30
|
+
- button "Traditions 24" [ref=e40] [cursor=pointer]:
|
|
31
|
+
- generic [ref=e42]: Traditions
|
|
32
|
+
- generic [ref=e43]: "24"
|
|
33
|
+
- button "Concepts 26" [ref=e44] [cursor=pointer]:
|
|
34
|
+
- generic [ref=e46]: Concepts
|
|
35
|
+
- generic [ref=e47]: "26"
|
|
36
|
+
- button "Figures 14" [ref=e48] [cursor=pointer]:
|
|
37
|
+
- generic [ref=e50]: Figures
|
|
38
|
+
- generic [ref=e51]: "14"
|
|
39
|
+
- button "Texts 13" [ref=e52] [cursor=pointer]:
|
|
40
|
+
- generic [ref=e54]: Texts
|
|
41
|
+
- generic [ref=e55]: "13"
|
|
42
|
+
- button "Practices 9" [ref=e56] [cursor=pointer]:
|
|
43
|
+
- generic [ref=e58]: Practices
|
|
44
|
+
- generic [ref=e59]: "9"
|
|
45
|
+
- button "Schools 18" [ref=e60] [cursor=pointer]:
|
|
46
|
+
- generic [ref=e62]: Schools
|
|
47
|
+
- generic [ref=e63]: "18"
|
|
48
|
+
- button "Themes 9" [ref=e64] [cursor=pointer]:
|
|
49
|
+
- generic [ref=e66]: Themes
|
|
50
|
+
- generic [ref=e67]: "9"
|
|
51
|
+
- button "Maps of Content 7" [ref=e68] [cursor=pointer]:
|
|
52
|
+
- generic [ref=e70]: Maps of Content
|
|
53
|
+
- generic [ref=e71]: "7"
|
|
54
|
+
- generic [ref=e72]: Powered by Parachute Vault
|
|
55
|
+
- generic [ref=e73]:
|
|
56
|
+
- img [ref=e74]:
|
|
57
|
+
- generic [ref=e909]:
|
|
58
|
+
- generic: Index
|
|
59
|
+
- generic: Abrahamic
|
|
60
|
+
- generic: Dharmic
|
|
61
|
+
- generic: East Asian
|
|
62
|
+
- generic: Iranian
|
|
63
|
+
- generic: Indigenous
|
|
64
|
+
- generic: New Religious Movements
|
|
65
|
+
- generic: Judaism
|
|
66
|
+
- generic: Christianity
|
|
67
|
+
- generic: Islam
|
|
68
|
+
- generic: Hinduism
|
|
69
|
+
- generic: Buddhism
|
|
70
|
+
- generic: Sikhism
|
|
71
|
+
- generic: Jainism
|
|
72
|
+
- generic: Bahá'í Faith
|
|
73
|
+
- generic: Shinto
|
|
74
|
+
- generic: Taoism
|
|
75
|
+
- generic: Confucianism
|
|
76
|
+
- generic: Zoroastrianism
|
|
77
|
+
- generic: African Traditional Religions
|
|
78
|
+
- generic: Native American Spiritualities
|
|
79
|
+
- generic: Australian Aboriginal Spirituality
|
|
80
|
+
- generic: Afro-Caribbean Diasporic Religions
|
|
81
|
+
- generic: Circumpolar Spiritualities
|
|
82
|
+
- generic: Mormonism
|
|
83
|
+
- generic: Rastafari
|
|
84
|
+
- generic: Cao Đài
|
|
85
|
+
- generic: Tenrikyo
|
|
86
|
+
- generic: Wicca and Modern Paganism
|
|
87
|
+
- generic: Unitarian Universalism
|
|
88
|
+
- generic: Falun Gong
|
|
89
|
+
- generic:
|
|
90
|
+
- generic: 119 notes
|
|
91
|
+
- generic: 711 connections
|
|
92
|
+
- generic [ref=e912]:
|
|
93
|
+
- generic [ref=e913]:
|
|
94
|
+
- generic [ref=e914]:
|
|
95
|
+
- generic [ref=e915]:
|
|
96
|
+
- generic [ref=e917]: Tradition
|
|
97
|
+
- generic [ref=e918]: /
|
|
98
|
+
- generic [ref=e919]: Dharmic
|
|
99
|
+
- generic [ref=e920]: Traditions/Buddhism
|
|
100
|
+
- button "×" [ref=e921] [cursor=pointer]
|
|
101
|
+
- generic [ref=e923]:
|
|
102
|
+
- heading "Buddhism" [level=1] [ref=e924]
|
|
103
|
+
- paragraph [ref=e925]:
|
|
104
|
+
- text: The tradition arising from the awakening of [Siddhartha Gautama](wikilink:Figures/Siddhartha Gautama) (the
|
|
105
|
+
- emphasis [ref=e926]: Buddha
|
|
106
|
+
- text: ", \"awakened one\") in northern India around the 5th century BCE. ~520 million adherents today, concentrated in East and Southeast Asia. Distinctive among religions for its non-theism, its analytical psychology of mind, and its insistence that liberation is something each person must verify for themselves."
|
|
107
|
+
- heading "The four noble truths" [level=2] [ref=e927]
|
|
108
|
+
- list [ref=e928]:
|
|
109
|
+
- listitem [ref=e929]:
|
|
110
|
+
- text: Life as ordinarily lived is
|
|
111
|
+
- emphasis [ref=e930]: dukkha
|
|
112
|
+
- text: — unsatisfactory, marked by suffering
|
|
113
|
+
- listitem [ref=e931]:
|
|
114
|
+
- text: The cause of dukkha is
|
|
115
|
+
- emphasis [ref=e932]: taṇhā
|
|
116
|
+
- text: — craving, grasping, thirst
|
|
117
|
+
- listitem [ref=e933]:
|
|
118
|
+
- text: "There is a way out: cessation of craving,"
|
|
119
|
+
- link "Nirvana" [ref=e934] [cursor=pointer]:
|
|
120
|
+
- /url: ""
|
|
121
|
+
- listitem [ref=e935]: "The way is the [Eightfold Path](wikilink:Concepts/Eightfold Path): right view, intention, speech, action, livelihood, effort, mindfulness, concentration"
|
|
122
|
+
- heading "Three marks of existence" [level=2] [ref=e936]
|
|
123
|
+
- paragraph [ref=e937]: "All conditioned phenomena are:"
|
|
124
|
+
- list [ref=e938]:
|
|
125
|
+
- listitem [ref=e939]:
|
|
126
|
+
- emphasis [ref=e940]: Anicca
|
|
127
|
+
- text: — impermanent
|
|
128
|
+
- listitem [ref=e941]:
|
|
129
|
+
- emphasis [ref=e942]: Dukkha
|
|
130
|
+
- text: — unsatisfactory
|
|
131
|
+
- listitem [ref=e943]:
|
|
132
|
+
- link "Anatta" [ref=e944] [cursor=pointer]:
|
|
133
|
+
- /url: ""
|
|
134
|
+
- text: —
|
|
135
|
+
- emphasis [ref=e945]: not-self
|
|
136
|
+
- text: (a key departure from
|
|
137
|
+
- link "Hindu" [ref=e946] [cursor=pointer]:
|
|
138
|
+
- /url: ""
|
|
139
|
+
- link "Atman" [ref=e947] [cursor=pointer]:
|
|
140
|
+
- /url: ""
|
|
141
|
+
- text: )
|
|
142
|
+
- heading "Sacred texts" [level=2] [ref=e948]
|
|
143
|
+
- list [ref=e949]:
|
|
144
|
+
- listitem [ref=e950]:
|
|
145
|
+
- link "Tripitaka" [ref=e951] [cursor=pointer]:
|
|
146
|
+
- /url: ""
|
|
147
|
+
- text: (Pali Canon) — the Theravada scriptures
|
|
148
|
+
- listitem [ref=e952]: "[Heart Sutra](wikilink:Texts/Heart Sutra), [Lotus Sutra](wikilink:Texts/Lotus Sutra), [Diamond Sutra](wikilink:Texts/Diamond Sutra) — great Mahayana texts"
|
|
149
|
+
- listitem [ref=e953]: "[Tibetan Book of the Dead](wikilink:Texts/Tibetan Book of the Dead)"
|
|
150
|
+
- listitem [ref=e954]: An immense additional library in Sanskrit, Chinese, Tibetan, Pali, Japanese
|
|
151
|
+
- heading "Major schools" [level=2] [ref=e955]
|
|
152
|
+
- list [ref=e956]:
|
|
153
|
+
- listitem [ref=e957]:
|
|
154
|
+
- link "Theravada" [ref=e958] [cursor=pointer]:
|
|
155
|
+
- /url: ""
|
|
156
|
+
- text: — "the way of the elders"; dominant in Sri Lanka, Thailand, Myanmar, Cambodia, Laos
|
|
157
|
+
- listitem [ref=e959]:
|
|
158
|
+
- link "Mahayana" [ref=e960] [cursor=pointer]:
|
|
159
|
+
- /url: ""
|
|
160
|
+
- text: — "the great vehicle"; dominant in China, Japan, Korea, Vietnam; introduced the
|
|
161
|
+
- link "Bodhisattva" [ref=e961] [cursor=pointer]:
|
|
162
|
+
- /url: ""
|
|
163
|
+
- text: ideal
|
|
164
|
+
- listitem [ref=e962]:
|
|
165
|
+
- link "Vajrayana" [ref=e963] [cursor=pointer]:
|
|
166
|
+
- /url: ""
|
|
167
|
+
- text: — the "diamond vehicle" of Tibetan Buddhism, with tantric methods
|
|
168
|
+
- listitem [ref=e964]:
|
|
169
|
+
- link "Zen" [ref=e965] [cursor=pointer]:
|
|
170
|
+
- /url: ""
|
|
171
|
+
- text: ", [Pure Land](wikilink:Schools/Pure Land),"
|
|
172
|
+
- link "Nichiren" [ref=e966] [cursor=pointer]:
|
|
173
|
+
- /url: ""
|
|
174
|
+
- text: — major East Asian Mahayana traditions
|
|
175
|
+
- heading "Practice" [level=2] [ref=e967]
|
|
176
|
+
- paragraph [ref=e968]:
|
|
177
|
+
- link "Meditation" [ref=e969] [cursor=pointer]:
|
|
178
|
+
- /url: ""
|
|
179
|
+
- text: in many forms (
|
|
180
|
+
- link "Vipassana" [ref=e970] [cursor=pointer]:
|
|
181
|
+
- /url: ""
|
|
182
|
+
- text: ","
|
|
183
|
+
- link "Zazen" [ref=e971] [cursor=pointer]:
|
|
184
|
+
- /url: ""
|
|
185
|
+
- text: ", visualization, mantra), ethical training (the five precepts), monastic discipline ("
|
|
186
|
+
- link "Vinaya" [ref=e972] [cursor=pointer]:
|
|
187
|
+
- /url: ""
|
|
188
|
+
- text: ), study, devotional offerings,
|
|
189
|
+
- link "Pilgrimage" [ref=e973] [cursor=pointer]:
|
|
190
|
+
- /url: ""
|
|
191
|
+
- text: to sites associated with the Buddha's life.
|
|
192
|
+
- heading "Distinctive note" [level=2] [ref=e974]
|
|
193
|
+
- paragraph [ref=e975]: "The Buddha is reported to have said: do not believe a teaching because it comes from a sage, a tradition, or a scripture; test it for yourself. This empirical attitude toward inner experience is one of Buddhism's most characteristic and influential features."
|
|
194
|
+
- generic [ref=e976]:
|
|
195
|
+
- generic [ref=e977]: Connected (15)
|
|
196
|
+
- generic [ref=e978]:
|
|
197
|
+
- button "Siddhartha Gautama" [ref=e979] [cursor=pointer]: Siddhartha Gautama
|
|
198
|
+
- button "Nirvana" [ref=e981] [cursor=pointer]: Nirvana
|
|
199
|
+
- button "Anatta" [ref=e983] [cursor=pointer]: Anatta
|
|
200
|
+
- button "Hinduism" [ref=e985] [cursor=pointer]: Hinduism
|
|
201
|
+
- button "Atman" [ref=e987] [cursor=pointer]: Atman
|
|
202
|
+
- button "Tripitaka" [ref=e989] [cursor=pointer]: Tripitaka
|
|
203
|
+
- button "Theravada" [ref=e991] [cursor=pointer]: Theravada
|
|
204
|
+
- button "Mahayana" [ref=e993] [cursor=pointer]: Mahayana
|
|
205
|
+
- button "Bodhisattva" [ref=e995] [cursor=pointer]: Bodhisattva
|
|
206
|
+
- button "Vajrayana" [ref=e997] [cursor=pointer]: Vajrayana
|
|
207
|
+
- button "Zen" [ref=e999] [cursor=pointer]: Zen
|
|
208
|
+
- button "Pure Land" [ref=e1001] [cursor=pointer]: Pure Land
|
|
209
|
+
- button "Meditation" [ref=e1003] [cursor=pointer]: Meditation
|
|
210
|
+
- button "Zazen" [ref=e1005] [cursor=pointer]: Zazen
|
|
211
|
+
- button "Pilgrimage" [ref=e1007] [cursor=pointer]: Pilgrimage
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
- generic [ref=e3]:
|
|
2
|
+
- generic [ref=e4]:
|
|
3
|
+
- generic [ref=e5]:
|
|
4
|
+
- heading "Religions of the World" [level=1] [ref=e6]
|
|
5
|
+
- paragraph [ref=e7]: Knowledge Graph
|
|
6
|
+
- textbox "Search notes..." [ref=e9]
|
|
7
|
+
- generic [ref=e10]:
|
|
8
|
+
- generic [ref=e11]:
|
|
9
|
+
- generic [ref=e12]: By Family
|
|
10
|
+
- button "Abrahamic 39" [ref=e13] [cursor=pointer]:
|
|
11
|
+
- generic [ref=e15]: Abrahamic
|
|
12
|
+
- generic [ref=e16]: "39"
|
|
13
|
+
- button "Dharmic 39" [ref=e17] [cursor=pointer]:
|
|
14
|
+
- generic [ref=e19]: Dharmic
|
|
15
|
+
- generic [ref=e20]: "39"
|
|
16
|
+
- button "East Asian 21" [ref=e21] [cursor=pointer]:
|
|
17
|
+
- generic [ref=e23]: East Asian
|
|
18
|
+
- generic [ref=e24]: "21"
|
|
19
|
+
- button "Iranian 6" [ref=e25] [cursor=pointer]:
|
|
20
|
+
- generic [ref=e27]: Iranian
|
|
21
|
+
- generic [ref=e28]: "6"
|
|
22
|
+
- button "Indigenous 6" [ref=e29] [cursor=pointer]:
|
|
23
|
+
- generic [ref=e31]: Indigenous
|
|
24
|
+
- generic [ref=e32]: "6"
|
|
25
|
+
- button "New Religious Movements 10" [ref=e33] [cursor=pointer]:
|
|
26
|
+
- generic [ref=e35]: New Religious Movements
|
|
27
|
+
- generic [ref=e36]: "10"
|
|
28
|
+
- generic [ref=e37]:
|
|
29
|
+
- generic [ref=e38]: By Type
|
|
30
|
+
- button "Traditions 24" [ref=e39] [cursor=pointer]:
|
|
31
|
+
- generic [ref=e41]: Traditions
|
|
32
|
+
- generic [ref=e42]: "24"
|
|
33
|
+
- button "Concepts 26" [ref=e43] [cursor=pointer]:
|
|
34
|
+
- generic [ref=e45]: Concepts
|
|
35
|
+
- generic [ref=e46]: "26"
|
|
36
|
+
- button "Figures 14" [ref=e47] [cursor=pointer]:
|
|
37
|
+
- generic [ref=e49]: Figures
|
|
38
|
+
- generic [ref=e50]: "14"
|
|
39
|
+
- button "Texts 13" [ref=e51] [cursor=pointer]:
|
|
40
|
+
- generic [ref=e53]: Texts
|
|
41
|
+
- generic [ref=e54]: "13"
|
|
42
|
+
- button "Practices 9" [ref=e55] [cursor=pointer]:
|
|
43
|
+
- generic [ref=e57]: Practices
|
|
44
|
+
- generic [ref=e58]: "9"
|
|
45
|
+
- button "Schools 18" [ref=e59] [cursor=pointer]:
|
|
46
|
+
- generic [ref=e61]: Schools
|
|
47
|
+
- generic [ref=e62]: "18"
|
|
48
|
+
- button "Themes 9" [ref=e63] [cursor=pointer]:
|
|
49
|
+
- generic [ref=e65]: Themes
|
|
50
|
+
- generic [ref=e66]: "9"
|
|
51
|
+
- button "Maps of Content 7" [ref=e67] [cursor=pointer]:
|
|
52
|
+
- generic [ref=e69]: Maps of Content
|
|
53
|
+
- generic [ref=e70]: "7"
|
|
54
|
+
- generic [ref=e71]: Powered by Parachute Vault
|
|
55
|
+
- generic [ref=e72]:
|
|
56
|
+
- img [ref=e73]
|
|
57
|
+
- generic:
|
|
58
|
+
- generic: 119 notes
|
|
59
|
+
- generic: 711 connections
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
- generic [ref=e3]:
|
|
2
|
+
- generic [ref=e4]:
|
|
3
|
+
- generic [ref=e5]:
|
|
4
|
+
- heading "Religions of the World" [level=1] [ref=e6]
|
|
5
|
+
- paragraph [ref=e7]: Knowledge Graph
|
|
6
|
+
- textbox "Search notes..." [ref=e9]
|
|
7
|
+
- generic [ref=e10]:
|
|
8
|
+
- generic [ref=e11]:
|
|
9
|
+
- generic [ref=e12]: By Family
|
|
10
|
+
- button "Abrahamic 39" [ref=e13] [cursor=pointer]:
|
|
11
|
+
- generic [ref=e15]: Abrahamic
|
|
12
|
+
- generic [ref=e16]: "39"
|
|
13
|
+
- button "Dharmic 39" [ref=e17] [cursor=pointer]:
|
|
14
|
+
- generic [ref=e19]: Dharmic
|
|
15
|
+
- generic [ref=e20]: "39"
|
|
16
|
+
- button "East Asian 21" [ref=e21] [cursor=pointer]:
|
|
17
|
+
- generic [ref=e23]: East Asian
|
|
18
|
+
- generic [ref=e24]: "21"
|
|
19
|
+
- button "Iranian 6" [ref=e25] [cursor=pointer]:
|
|
20
|
+
- generic [ref=e27]: Iranian
|
|
21
|
+
- generic [ref=e28]: "6"
|
|
22
|
+
- button "Indigenous 6" [ref=e29] [cursor=pointer]:
|
|
23
|
+
- generic [ref=e31]: Indigenous
|
|
24
|
+
- generic [ref=e32]: "6"
|
|
25
|
+
- button "New Religious Movements 10" [ref=e33] [cursor=pointer]:
|
|
26
|
+
- generic [ref=e35]: New Religious Movements
|
|
27
|
+
- generic [ref=e36]: "10"
|
|
28
|
+
- generic [ref=e37]:
|
|
29
|
+
- generic [ref=e38]: By Type
|
|
30
|
+
- button "Traditions 24" [ref=e39] [cursor=pointer]:
|
|
31
|
+
- generic [ref=e41]: Traditions
|
|
32
|
+
- generic [ref=e42]: "24"
|
|
33
|
+
- button "Concepts 26" [ref=e43] [cursor=pointer]:
|
|
34
|
+
- generic [ref=e45]: Concepts
|
|
35
|
+
- generic [ref=e46]: "26"
|
|
36
|
+
- button "Figures 14" [ref=e47] [cursor=pointer]:
|
|
37
|
+
- generic [ref=e49]: Figures
|
|
38
|
+
- generic [ref=e50]: "14"
|
|
39
|
+
- button "Texts 13" [ref=e51] [cursor=pointer]:
|
|
40
|
+
- generic [ref=e53]: Texts
|
|
41
|
+
- generic [ref=e54]: "13"
|
|
42
|
+
- button "Practices 9" [ref=e55] [cursor=pointer]:
|
|
43
|
+
- generic [ref=e57]: Practices
|
|
44
|
+
- generic [ref=e58]: "9"
|
|
45
|
+
- button "Schools 18" [ref=e59] [cursor=pointer]:
|
|
46
|
+
- generic [ref=e61]: Schools
|
|
47
|
+
- generic [ref=e62]: "18"
|
|
48
|
+
- button "Themes 9" [ref=e63] [cursor=pointer]:
|
|
49
|
+
- generic [ref=e65]: Themes
|
|
50
|
+
- generic [ref=e66]: "9"
|
|
51
|
+
- button "Maps of Content 7" [ref=e67] [cursor=pointer]:
|
|
52
|
+
- generic [ref=e69]: Maps of Content
|
|
53
|
+
- generic [ref=e70]: "7"
|
|
54
|
+
- generic [ref=e71]: Powered by Parachute Vault
|
|
55
|
+
- generic [ref=e72]:
|
|
56
|
+
- img [ref=e73]:
|
|
57
|
+
- generic [ref=e908]:
|
|
58
|
+
- generic: Index
|
|
59
|
+
- generic: Abrahamic
|
|
60
|
+
- generic: Dharmic
|
|
61
|
+
- generic: East Asian
|
|
62
|
+
- generic: Iranian
|
|
63
|
+
- generic: Indigenous
|
|
64
|
+
- generic: New Religious Movements
|
|
65
|
+
- generic: Judaism
|
|
66
|
+
- generic: Christianity
|
|
67
|
+
- generic: Islam
|
|
68
|
+
- generic: Hinduism
|
|
69
|
+
- generic: Buddhism
|
|
70
|
+
- generic: Sikhism
|
|
71
|
+
- generic: Jainism
|
|
72
|
+
- generic: Bahá'í Faith
|
|
73
|
+
- generic: Shinto
|
|
74
|
+
- generic: Taoism
|
|
75
|
+
- generic: Confucianism
|
|
76
|
+
- generic: Zoroastrianism
|
|
77
|
+
- generic: African Traditional Religions
|
|
78
|
+
- generic: Native American Spiritualities
|
|
79
|
+
- generic: Australian Aboriginal Spirituality
|
|
80
|
+
- generic: Afro-Caribbean Diasporic Religions
|
|
81
|
+
- generic: Circumpolar Spiritualities
|
|
82
|
+
- generic: Mormonism
|
|
83
|
+
- generic: Rastafari
|
|
84
|
+
- generic: Cao Đài
|
|
85
|
+
- generic: Tenrikyo
|
|
86
|
+
- generic: Wicca and Modern Paganism
|
|
87
|
+
- generic: Unitarian Universalism
|
|
88
|
+
- generic: Falun Gong
|
|
89
|
+
- generic:
|
|
90
|
+
- generic: 119 notes
|
|
91
|
+
- generic: 711 connections
|
|
92
|
+
- generic [ref=e911]:
|
|
93
|
+
- generic [ref=e912]:
|
|
94
|
+
- generic [ref=e913]:
|
|
95
|
+
- generic [ref=e914]:
|
|
96
|
+
- generic [ref=e916]: Tradition
|
|
97
|
+
- generic [ref=e917]: /
|
|
98
|
+
- generic [ref=e918]: Dharmic
|
|
99
|
+
- generic [ref=e919]: Traditions/Buddhism
|
|
100
|
+
- button "×" [ref=e920] [cursor=pointer]
|
|
101
|
+
- generic [ref=e922]:
|
|
102
|
+
- heading "Buddhism" [level=1] [ref=e923]
|
|
103
|
+
- paragraph [ref=e924]:
|
|
104
|
+
- text: The tradition arising from the awakening of
|
|
105
|
+
- link "Siddhartha Gautama" [ref=e925] [cursor=pointer]:
|
|
106
|
+
- /url: ""
|
|
107
|
+
- text: (the
|
|
108
|
+
- emphasis [ref=e926]: Buddha
|
|
109
|
+
- text: ", \"awakened one\") in northern India around the 5th century BCE. ~520 million adherents today, concentrated in East and Southeast Asia. Distinctive among religions for its non-theism, its analytical psychology of mind, and its insistence that liberation is something each person must verify for themselves."
|
|
110
|
+
- heading "The four noble truths" [level=2] [ref=e927]
|
|
111
|
+
- list [ref=e928]:
|
|
112
|
+
- listitem [ref=e929]:
|
|
113
|
+
- text: Life as ordinarily lived is
|
|
114
|
+
- emphasis [ref=e930]: dukkha
|
|
115
|
+
- text: — unsatisfactory, marked by suffering
|
|
116
|
+
- listitem [ref=e931]:
|
|
117
|
+
- text: The cause of dukkha is
|
|
118
|
+
- emphasis [ref=e932]: taṇhā
|
|
119
|
+
- text: — craving, grasping, thirst
|
|
120
|
+
- listitem [ref=e933]:
|
|
121
|
+
- text: "There is a way out: cessation of craving,"
|
|
122
|
+
- link "Nirvana" [ref=e934] [cursor=pointer]:
|
|
123
|
+
- /url: ""
|
|
124
|
+
- listitem [ref=e935]:
|
|
125
|
+
- text: The way is the
|
|
126
|
+
- link "Eightfold Path" [ref=e936] [cursor=pointer]:
|
|
127
|
+
- /url: ""
|
|
128
|
+
- text: ": right view, intention, speech, action, livelihood, effort, mindfulness, concentration"
|
|
129
|
+
- heading "Three marks of existence" [level=2] [ref=e937]
|
|
130
|
+
- paragraph [ref=e938]: "All conditioned phenomena are:"
|
|
131
|
+
- list [ref=e939]:
|
|
132
|
+
- listitem [ref=e940]:
|
|
133
|
+
- emphasis [ref=e941]: Anicca
|
|
134
|
+
- text: — impermanent
|
|
135
|
+
- listitem [ref=e942]:
|
|
136
|
+
- emphasis [ref=e943]: Dukkha
|
|
137
|
+
- text: — unsatisfactory
|
|
138
|
+
- listitem [ref=e944]:
|
|
139
|
+
- link "Anatta" [ref=e945] [cursor=pointer]:
|
|
140
|
+
- /url: ""
|
|
141
|
+
- text: —
|
|
142
|
+
- emphasis [ref=e946]: not-self
|
|
143
|
+
- text: (a key departure from
|
|
144
|
+
- link "Hindu" [ref=e947] [cursor=pointer]:
|
|
145
|
+
- /url: ""
|
|
146
|
+
- link "Atman" [ref=e948] [cursor=pointer]:
|
|
147
|
+
- /url: ""
|
|
148
|
+
- text: )
|
|
149
|
+
- heading "Sacred texts" [level=2] [ref=e949]
|
|
150
|
+
- list [ref=e950]:
|
|
151
|
+
- listitem [ref=e951]:
|
|
152
|
+
- link "Tripitaka" [ref=e952] [cursor=pointer]:
|
|
153
|
+
- /url: ""
|
|
154
|
+
- text: (Pali Canon) — the Theravada scriptures
|
|
155
|
+
- listitem [ref=e953]:
|
|
156
|
+
- link "Heart Sutra" [ref=e954] [cursor=pointer]:
|
|
157
|
+
- /url: ""
|
|
158
|
+
- text: ","
|
|
159
|
+
- link "Lotus Sutra" [ref=e955] [cursor=pointer]:
|
|
160
|
+
- /url: ""
|
|
161
|
+
- text: ","
|
|
162
|
+
- link "Diamond Sutra" [ref=e956] [cursor=pointer]:
|
|
163
|
+
- /url: ""
|
|
164
|
+
- text: — great Mahayana texts
|
|
165
|
+
- listitem [ref=e957]:
|
|
166
|
+
- link "Tibetan Book of the Dead" [ref=e958] [cursor=pointer]:
|
|
167
|
+
- /url: ""
|
|
168
|
+
- listitem [ref=e959]: An immense additional library in Sanskrit, Chinese, Tibetan, Pali, Japanese
|
|
169
|
+
- heading "Major schools" [level=2] [ref=e960]
|
|
170
|
+
- list [ref=e961]:
|
|
171
|
+
- listitem [ref=e962]:
|
|
172
|
+
- link "Theravada" [ref=e963] [cursor=pointer]:
|
|
173
|
+
- /url: ""
|
|
174
|
+
- text: — "the way of the elders"; dominant in Sri Lanka, Thailand, Myanmar, Cambodia, Laos
|
|
175
|
+
- listitem [ref=e964]:
|
|
176
|
+
- link "Mahayana" [ref=e965] [cursor=pointer]:
|
|
177
|
+
- /url: ""
|
|
178
|
+
- text: — "the great vehicle"; dominant in China, Japan, Korea, Vietnam; introduced the
|
|
179
|
+
- link "Bodhisattva" [ref=e966] [cursor=pointer]:
|
|
180
|
+
- /url: ""
|
|
181
|
+
- text: ideal
|
|
182
|
+
- listitem [ref=e967]:
|
|
183
|
+
- link "Vajrayana" [ref=e968] [cursor=pointer]:
|
|
184
|
+
- /url: ""
|
|
185
|
+
- text: — the "diamond vehicle" of Tibetan Buddhism, with tantric methods
|
|
186
|
+
- listitem [ref=e969]:
|
|
187
|
+
- link "Zen" [ref=e970] [cursor=pointer]:
|
|
188
|
+
- /url: ""
|
|
189
|
+
- text: ","
|
|
190
|
+
- link "Pure Land" [ref=e971] [cursor=pointer]:
|
|
191
|
+
- /url: ""
|
|
192
|
+
- text: ","
|
|
193
|
+
- link "Nichiren" [ref=e972] [cursor=pointer]:
|
|
194
|
+
- /url: ""
|
|
195
|
+
- text: — major East Asian Mahayana traditions
|
|
196
|
+
- heading "Practice" [level=2] [ref=e973]
|
|
197
|
+
- paragraph [ref=e974]:
|
|
198
|
+
- link "Meditation" [ref=e975] [cursor=pointer]:
|
|
199
|
+
- /url: ""
|
|
200
|
+
- text: in many forms (
|
|
201
|
+
- link "Vipassana" [ref=e976] [cursor=pointer]:
|
|
202
|
+
- /url: ""
|
|
203
|
+
- text: ","
|
|
204
|
+
- link "Zazen" [ref=e977] [cursor=pointer]:
|
|
205
|
+
- /url: ""
|
|
206
|
+
- text: ", visualization, mantra), ethical training (the five precepts), monastic discipline ("
|
|
207
|
+
- link "Vinaya" [ref=e978] [cursor=pointer]:
|
|
208
|
+
- /url: ""
|
|
209
|
+
- text: ), study, devotional offerings,
|
|
210
|
+
- link "Pilgrimage" [ref=e979] [cursor=pointer]:
|
|
211
|
+
- /url: ""
|
|
212
|
+
- text: to sites associated with the Buddha's life.
|
|
213
|
+
- heading "Distinctive note" [level=2] [ref=e980]
|
|
214
|
+
- paragraph [ref=e981]: "The Buddha is reported to have said: do not believe a teaching because it comes from a sage, a tradition, or a scripture; test it for yourself. This empirical attitude toward inner experience is one of Buddhism's most characteristic and influential features."
|
|
215
|
+
- generic [ref=e982]:
|
|
216
|
+
- generic [ref=e983]: Connected (15)
|
|
217
|
+
- generic [ref=e984]:
|
|
218
|
+
- button "Siddhartha Gautama" [ref=e985] [cursor=pointer]: Siddhartha Gautama
|
|
219
|
+
- button "Nirvana" [ref=e987] [cursor=pointer]: Nirvana
|
|
220
|
+
- button "Anatta" [ref=e989] [cursor=pointer]: Anatta
|
|
221
|
+
- button "Hinduism" [ref=e991] [cursor=pointer]: Hinduism
|
|
222
|
+
- button "Atman" [ref=e993] [cursor=pointer]: Atman
|
|
223
|
+
- button "Tripitaka" [ref=e995] [cursor=pointer]: Tripitaka
|
|
224
|
+
- button "Theravada" [ref=e997] [cursor=pointer]: Theravada
|
|
225
|
+
- button "Mahayana" [ref=e999] [cursor=pointer]: Mahayana
|
|
226
|
+
- button "Bodhisattva" [ref=e1001] [cursor=pointer]: Bodhisattva
|
|
227
|
+
- button "Vajrayana" [ref=e1003] [cursor=pointer]: Vajrayana
|
|
228
|
+
- button "Zen" [ref=e1005] [cursor=pointer]: Zen
|
|
229
|
+
- button "Pure Land" [ref=e1007] [cursor=pointer]: Pure Land
|
|
230
|
+
- button "Meditation" [ref=e1009] [cursor=pointer]: Meditation
|
|
231
|
+
- button "Zazen" [ref=e1011] [cursor=pointer]: Zazen
|
|
232
|
+
- button "Pilgrimage" [ref=e1013] [cursor=pointer]: Pilgrimage
|