-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcatalogue.js
132 lines (132 loc) · 3.67 KB
/
catalogue.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
Catalogue = [
{
type: "bible",
version: { abbrev: "KJV", full: "King James Version" },
lang: "eng",
licence: "Public Domain",
source: "http://ebible.org/kjv/",
files: {
raw: { type: "local", file: "raw/eng-kjv_osis.xml", format: "OSIS" },
simpleXml: "cooked/simple-xml/kjv.xml",
sqlite: "cooked/sqlite/kjv.db"
}
},
{
type: "bible",
version: { abbrev: "LEB", full: "Lexham English Bible" },
lang: "eng",
licence: "Custom",
licence_url: "http://lexhamenglishbible.com/license/",
source: "http://lexhamenglishbible.com/",
files: {
raw: { type: "local", file: "raw/LEB.xml", format: "OSIS" },
simpleXml: "cooked/simple-xml/LEB.xml",
sqlite: "cooked/sqlite/LEB.db"
}
},
{
type: "bible",
version: { abbrev: "SBLGNT", full: "SBL Greek New Testament" },
lang: "grc-koi",
licence: "Custom",
licence_url: "http://sblgnt.com/license/",
source: "http://sblgnt.com/download/",
files: {
raw: { type: "local", file: "raw/SBLGNT.osis.xml", format: "OSIS" },
simpleXml: "cooked/simple-xml/sbl.xml",
sqlite: "cooked/sqlite/sbl.db"
},
note: "Marked up with morphological tags from <a href='https://github.com/morphgnt/sblgnt'>morphgnt</a> and Strongs numbers from <a href='https://github.com/morphgnt/strongs-dictionary-xml'>strongs-dictionary-xml</a>",
},
{
type: "commentary",
name: "SBL Greek New Testament Apparatus",
licence: "Custom",
licence_url: "http://sblgnt.com/license/",
source: "http://sblgnt.com/download/",
files: {
raw: { type: "local", file: "raw/SBLGNTapp.osis.xml", format: "OSIS" }
}
},
{
type: "bible",
version: { abbrev: "WLC", full: "Westminster-Leningrad Codex" },
lang: "hbo",
licence: "Public Domain",
source: "https://github.com/openscriptures/morphhb/tree/master/wlc",
files: {
raw: { type: "remote", url: "https://github.com/openscriptures/morphhb/tree/master/wlc", format: "OSIS" },
simpleXml: "cooked/simple-xml/wlc.xml",
sqlite: "cooked/sqlite/wlc.db"
}
},
{
type: "bible",
version: { abbrev: "POR-Almeida", full: "Tradução de João Ferreira de Almeida" },
lang: "por",
licence: "Public Domain",
files: {
simpleXml: "cooked/simple-xml/por.xml",
sqlite: "cooked/sqlite/por.db"
}
},
{
type: "bible",
version: { abbrev: "ReinaV", full: "Reina Valera Actualizada" },
lang: "spa",
licence: "Public Domain(?)",
files: {
simpleXml: "cooked/simple-xml/rva.xml",
sqlite: "cooked/sqlite/rva.db"
}
},
{
type: "bible",
version: { abbrev: "ReinaV", full: "Reina Valera 1909" },
lang: "spa",
licence: "Public Domain",
files: {
simpleXml: "cooked/simple-xml/rvr.xml",
sqlite: "cooked/sqlite/rvr.db"
}
},
{
type: "bible",
version: { abbrev: "SE", full: "Sagradas Escrituras" },
lang: "spa",
licence: "Public Domain",
files: {
simpleXml: "cooked/simple-xml/se.xml",
sqlite: "cooked/sqlite/se.db"
}
},
{
type: "lexicon",
name: "Brown-Driver-Briggs Hebrew Lexicon with Strong's number tags",
licence: "Public Domain",
source: "https://github.com/openscriptures/HebrewLexicon",
files: {
xml: "cooked/strongified-bdb.xml",
lift: "cooked/strongified-bdb-lift.xml",
sqlite: "cooked/sqlite/bdb.db"
}
},
{
type: "lexicon",
name: "Strong's Hebrew Dictionary",
licence: "Public Domain",
source: "https://github.com/openscriptures/HebrewLexicon",
files: {
lift: "cooked/HebrewStrong-lift.xml",
}
},
{
type: "other",
name: "Bible-in-a-year reading programme",
licence: "Unknown",
source: "http://wolf.ox.ac.uk/~sjg/biay.xlsx",
files: {
json: "cooked/bible-in-a-year.json"
},
}
];