-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·243 lines (212 loc) · 15 KB
/
index.html
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<!DOCTYPE html>
<html>
<head>
<title>inScript Bible Browser | Digital Bible Society</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="google" value="notranslate" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="initial-scale=1.0,maximum-scale=1.0,user-scalable=no,width=device-width">
<meta property="og:title" content="inScript | Read, Listen, and Search the Scriptures." />
<meta property="og:type" content="website" />
<meta property="og:description" content="Bible study application with Greek and Hebrew integration, syntax highlighting, and other fun goodies." />
<meta property="og:url" content="https://www.inscript.html" />
<meta property="og:image" content="https://inscript.bible.cloud/images/inscript_facebook_1200x630.jpg" />
<noscript>
<meta http-equiv="refresh" content="1; url=content/texts/">
</noscript>
<!-- Icons -->
<link rel="apple-touch-icon" sizes="180x180" href="https://images.bible.cloud/icons-bc/apple-touch-icon.png">
<link rel="apple-touch-startup-image" href="https://inscript.bible.cloud/images/startup.png" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<link rel="icon" type="image/png" href="https://images.bible.cloud/icons-bc/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="https://images.bible.cloud/icons-bc/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="https://images.bible.cloud/icons-bc/manifest.json">
<link rel="mask-icon" href="https://images.bible.cloud/icons-bc/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="https://images.bible.cloud/icons-bc/favicon.ico">
<meta name="msapplication-config" content="//images.bible.cloud/icons-bc/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="css/fonts.css" />
<link rel="stylesheet" href="css/bible.css" />
<link rel="stylesheet" href="css/windows.css" />
<link rel="stylesheet" href="css/common.css" />
<!-- jquery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- app start -->
<script src="js/core/namespace.js"></script>
<script src="js/core/config-default.js"></script>
<script src="js/core/windowmanager.js"></script>
<script src="js/core/windowapp.js"></script>
<script src="js/core/startup.js"></script>
<!-- external libraries -->
<script src="js/lib/xregexp.js"></script>
<script src="js/lib/clipboard.js"></script>
<script src="js/lib/i18next-1.7.2.js"></script>
<script src="js/lib/jsdiff.js"></script>
<script src="js/resources/en.js"></script>
<script src="js/resources/fr.js"></script>
<script src="js/resources/de.js"></script>
<script src="js/resources/es.js"></script>
<script src="js/resources/ru.js"></script>
<script src="js/resources/hi.js"></script>
<script src="js/resources/ar.js"></script>
<script src="js/resources/af.js"></script>
<script src="js/resources/bn.js"></script>
<script src="js/resources/id.js"></script>
<script src="js/resources/sw.js"></script>
<script src="js/resources/tr.js"></script>
<script src="js/resources/ja.js"></script>
<script src="js/resources/zh-CN.js"></script>
<script src="js/resources/zh-TW.js"></script>
<!-- data -->
<script src="js/common/languagedata.js"></script>
<script src="js/common/countriesdata.js"></script>
<!-- common libraries -->
<script src="js/common/ajax.js"></script>
<script src="js/common/appsettings.js"></script>
<script src="js/common/eventlistener.js"></script>
<script src="js/common/timer.js"></script>
<script src="js/common/stringutility.js"></script>
<script src="js/common/detection.js"></script>
<script src="js/common/navigation.js"></script>
<script src="js/common/iso2iana.js"></script>
<script src="js/common/clickoff.js"></script>
<!-- bible -->
<script src="js/bible/bible.data.js"></script>
<script src="js/bible/bible.reference.js"></script>
<script src="js/bible/morphology.js"></script>
<!-- text loading -->
<script src="js/texts/textloader.js"></script>
<script src="js/texts/textprovider-local.js"></script>
<script src="js/texts/search.js"></script>
<!-- media -->
<script src="js/media/audiodatamanager.js"></script>
<script src="js/media/jesusfilmapi.js"></script>
<script src="js/media/medialibrary.js"></script>
<link rel="stylesheet" href="js/media/medialibrary.css" />
<!-- ui and window -->
<script src="js/ui/textchooser.js"></script>
<link rel="stylesheet" href="js/ui/textchooser.css" />
<script src="js/ui/textnavigator.js"></script>
<link rel="stylesheet" href="js/ui/textnavigator.css" />
<script src="js/ui/infowindow.js"></script>
<link rel="stylesheet" href="js/ui/infowindow.css" />
<script src="js/ui/movablewindow.js"></script>
<link rel="stylesheet" href="js/ui/movablewindow.css" />
<!-- plugins -->
<script src="js/plugins/lemmainfo.js"></script>
<link rel="stylesheet" href="js/plugins/lemmainfo.css" />
<script src="js/plugins/lemmamatch.js"></script>
<link rel="stylesheet" href="js/plugins/lemmamatch.css" />
<script src="js/plugins/lemmapopup.js"></script>
<link rel="stylesheet" href="js/plugins/lemmapopup.css" />
<script src="js/plugins/versematch.js"></script>
<link rel="stylesheet" href="js/plugins/versematch.css" />
<script src="js/plugins/eng2p.js"></script>
<link rel="stylesheet" href="js/plugins/eng2p.css" />
<script src="js/plugins/visualfilters.js"></script>
<link rel="stylesheet" href="js/plugins/visualfilters.css" />
<script src="js/plugins/crossreferences.js"></script>
<script src="js/plugins/notes.js"></script>
<script src="js/plugins/mediaplugin.js"></script>
<!-- windows -->
<script src="js/windows/textwindow.js"></script>
<link rel="stylesheet" href="js/windows/textwindow.css" />
<script src="js/windows/searchwindow.js"></script>
<link rel="stylesheet" href="js/windows/searchwindow.css" />
<script src="js/windows/mapswindow.js"></script>
<link rel="stylesheet" href="js/windows/mapswindow.css" />
<script src="js/windows/mediawindow.js"></script>
<link rel="stylesheet" href="js/windows/mediawindow.css" />
<script src="js/windows/parallelswindow.js"></script>
<link rel="stylesheet" href="js/windows/parallelswindow.css" />
<script src="js/windows/scroller.js"></script>
<script src="js/windows/scrolleraudio.js"></script>
<link rel="stylesheet" href="js/windows/scrolleraudio.css" />
<script src="js/windows/textcomparisonwindow.js"></script>
<link rel="stylesheet" href="js/windows/textcomparisonwindow.css" />
<script src="js/windows/audiowindow.js"></script>
<link rel="stylesheet" href="js/windows/audiowindow.css" />
<script src="js/windows/statisticswindow.js"></script>
<link rel="stylesheet" href="js/windows/statisticswindow.css" />
<script src="js/windows/deafbiblewindow.js"></script>
<link rel="stylesheet" href="js/windows/deafbiblewindow.css" />
<!-- menu items -->
<script src="js/menu/mainmenu.js"></script>
<link rel="stylesheet" href="js/menu/mainmenu.css" />
<script src="js/menu/topsearch.js"></script>
<link rel="stylesheet" href="js/menu/topsearch.css" />
<script src="js/menu/fullscreen.js"></script>
<link rel="stylesheet" href="js/menu/fullscreen.css" />
<script src="js/menu/addwindow.js"></script>
<link rel="stylesheet" href="js/menu/addwindow.css" />
<script src="js/menu/config.js"></script>
<link rel="stylesheet" href="js/menu/config.css" />
<script src="js/menu/about.js"></script>
<link rel="stylesheet" href="js/menu/about.css" />
<script src="js/menu/feedback.js"></script>
<link rel="stylesheet" href="js/menu/feedback.css" />
<script src="js/menu/restore.js"></script>
<link rel="stylesheet" href="js/menu/restore.css" />
<script src="js/menu/navigation.js"></script>
<link rel="stylesheet" href="js/menu/navigation.css" />
<script src="js/menu/config-fontsize.js"></script>
<link rel="stylesheet" href="js/menu/config-fontsize.css" />
<script src="js/menu/config-fontfamily.js"></script>
<link rel="stylesheet" href="js/menu/config-fontfamily.css" />
<script src="js/menu/config-theme.js"></script>
<link rel="stylesheet" href="js/menu/config-theme.css" />
<script src="js/menu/config-language.js"></script>
<link rel="stylesheet" href="js/menu/config-language.css" />
<script src="js/menu/config-toggles.js"></script>
<link rel="stylesheet" href="js/menu/config-toggles.css" />
<script src="js/menu/config-url.js"></script>
<link rel="stylesheet" href="js/menu/config-url.css" />
<!-- Fallback -->
<noscript>
<meta http-equiv="refresh" content="1; url=https://inscript.bible.cloud/texts/">
</noscript>
<!--[if lte IE 8]><meta http-equiv="refresh" content="1; url=https://content.dbs.org/texts/"><![endif]-->
<script>
sofia.config = $.extend(sofia.config, {
siteTitle: '',
settingsPrefix: '20170923',
baseContentUrl: 'https://inscript.bible.cloud/',
serverSearchPath: 'https://arc.dbs.org/api/bible-search/',
// Icon Skins (icons.svg, icons-pastel.svg, icons-black.svg)
icons: 'build/icons.svg',
// First Load Set
windows: [
{ type: 'bible', data: { textid: 'ENGWEB', fragmentid: 'JN3_16' } },
{ type: 'bible', data: { textid: 'ENGKJV', fragmentid: 'JN3_16' } }],
newBibleWindowVersion: 'ENGWEB',
deafBibleWindowDefaultBibleVersion: 'ASESLS',
newCommentaryWindowTextId: "comm_eng_tske",
// Switches
enableBibleSelectorTabs: false,
enableFeedback: true,
eng2pEnableAll: true,
enableAmericanBibleSociety: false,
enableDeafBibleWindow: false,
deafCentric: false,
// Enables the use of online sources (Google Maps, FCBH, Jesus Film, etc.)
enableOnlineSources: false,
});
</script>
</head>
<body>
<div id="startup">
<h1>inScript Bible Browser (4.0)</h1>
<p>inScript 4.0 is a Bible-study tool created by the Digital Bible Society for both online and offline use.</p>
<p>The software is open-source, browser-based, multi-lingual, and free-to-use. It requires no installation and supports a wide variety of web-browsers and media platforms: thumb drives, DVDs,
micro SD chips, etc.</p>
<p>Developed by <a href="http://www.dbs.org/">Digital Bible Society</a> with major contributions from <a href="http://j.hn/">John Dyer</a> and <a href="https://ebible.org/">Michael
Johnson</a>. Audio provided by <a href="http://www.faithcomesbyhearing.com/">Faith Comes by Hearing</a> and video by <A href="http://www.jesusfilm.org/">Jesus Film Project</a>.</p>
<br />
<h3>This page is visible when an error may have occurred. You might try updating your browser, or insuring JavaScript is enabled.</h3>
<p>If you have used older versions of inScript, you may also need to clear your browser cache.</p>
</div>
<script>$(document).ready(function () {
$("#app-logo").append('<a href="https://dbs.org"><svg id="logo" viewBox="0 0 216 41"><path fill="currentColor" d="M210.17 39.9l5.83-8.4h-11.658"/><path d="M.615 29.087c0 4.98-.137 9.822-.32 11.18.41-.046 1.644-.136 2.558-.136.685 0 1.553.046 1.92.09-.275-1.13-.367-6.29-.367-11.133v-6.79c0-5.43.183-9.73.274-11.133-.32.046-1.324.136-2.604.136-.593 0-1.46 0-1.873-.045.275.996.412 5.567.412 11.043v6.79zm17.68 11.134c-.367-3.03-.458-14.3-.504-22.493 3.84 4.028 15.35 16.973 18.823 20.186 2.558 2.444 3.106 2.897 3.38 2.897.23 0 .32-.227.32-2.263 0-1.63-.046-5.386-.046-7.876.046-7.33.275-17.197.503-19.506-.274.046-1.37.136-2.238.136-.55 0-1.325-.045-1.645-.09.32 4.21.457 16.384.502 22.177-3.655-2.942-16.995-17.832-20.923-21.68-.823-.77-1.142-1.086-1.325-1.086-.274 0-.366.182-.366 2.264 0 6.834-.137 24.124-.41 27.382.228-.045 1.69-.135 2.1-.135.595 0 1.234 0 1.828.09zm29.234-1.324c1.66 1.183 5.294 2.11 8.616 2.11 2.648 0 5.555-.67 7.84-2.213 3.633-2.52 4.516-6.53 4.516-8.743 0-3.857-1.194-6.995-7.372-11.058l-2.388-1.594c-4.828-3.19-5.503-5.092-5.503-7.92 0-3.447 2.7-5.915 6.592-5.915 4.257 0 6.54 1.8 7.528 2.983 0-1.75.26-4.423.415-4.938-.364-.05-1.35-.205-2.648-.41C63.88.94 62.167.682 60.144.682c-7.112 0-11.213 4.474-11.213 9.823 0 3.6 1.402 6.943 6.853 10.544l2.544 1.697c4.464 2.983 5.606 5.04 5.606 8.23 0 3.856-2.284 6.942-7.215 6.942-4.05 0-7.372-2.11-8.774-4.064.052 1.44-.26 4.32-.415 5.04zm44.856 1.926c3.737 0 7.525-.74 9.22-1.432.1-.987.448-2.864.797-3.85-2.243 1.58-5.732 2.27-9.57 2.27-11.063 0-15.348-7.604-15.348-14.32 0-3.553.946-7.01 3.787-9.676 1.695-1.53 4.485-3.21 9.668-3.21 5.482 0 9.27 1.73 11.014 3.457.05-1.48.35-3.406.648-4.245C100.808 9.32 97.22 7.94 91.24 7.94c-6.53 0-10.815 1.973-13.606 4.59-3.987 3.654-4.784 8.295-4.784 11.406 0 3.703 1.196 8.74 5.382 12.393 3.638 3.11 8.273 4.492 14.154 4.492zm16.744-12.74c0 5.433-.2 10.666-.398 12.197.498-.1 1.943-.15 2.79-.15.798 0 1.645 0 2.044.1-.2-1.877-.4-6.37-.4-11.604v-1.333c0-.148.05-.148.2-.148h5.732c.3 0 .398.1.598.296 1.943 2.52 5.98 8.395 8.422 10.716 1.744 1.777 2.79 2.27 4.984 2.27 1.046 0 2.442-.098 2.99-.345-.748-.344-2.193-1.43-4.037-3.406-2.99-3.16-6.13-7.307-8.92-10.862 3.488-2.32 5.332-5.283 5.332-8.887 0-3.11-1.645-5.58-3.887-6.913-1.894-1.135-4.735-1.53-7.874-1.53-1.595 0-5.084.197-5.93.197-.75 0-1.347 0-2.194-.1.45 1.432.548 6.123.548 12.097v7.406zm4.037-16.687c0-.198 0-.247.15-.297.598-.148 1.844-.197 3.19-.197 4.833 0 7.823 2.667 7.823 7.11 0 2.914-1.495 5.037-3.24 6.222-.497.346-1.195.494-2.49.494-2.293 0-4.436-.148-5.283-.346-.1 0-.15-.05-.15-.296v-12.69zm26.214 16.688c0 5.432-.15 10.715-.348 12.196.45-.05 1.794-.15 2.79-.15.748 0 1.695.05 2.094.1-.3-1.235-.4-6.864-.4-12.147v-7.406c0-5.925.2-10.615.3-12.146-.35.05-1.445.15-2.84.15-.648 0-1.595 0-2.044-.05.3 1.086.45 6.073.45 12.047v7.406zm13.38 0c0 5.432-.2 10.517-.35 12.196.4-.1 1.696-.15 2.593-.15.698 0 1.644 0 2.242.1-.25-1.827-.398-6.864-.398-12V11.84c0-.742.05-.79.2-.84.348-.148 1.743-.198 2.64-.198 2.293 0 4.037.395 5.283 1.235 1.894 1.135 3.04 3.16 3.04 5.826 0 4.79-3.688 6.665-7.824 6.863.25.543.598 1.728.698 2.123 6.33 0 11.213-3.605 11.213-9.63 0-2.764-1.346-4.937-2.442-5.924-1.844-1.63-4.286-2.765-9.52-2.765-2.59 0-4.733.15-5.98.15-.647 0-1.345 0-1.843-.05.25 1.48.448 6.073.448 12.047v7.406zm20.682-15.997c1.246-.395 2.84-.593 5.93-.69 2.89-.1 3.988-.1 6.03-.1v16.787c0 5.432-.15 10.715-.348 12.196.548-.1 1.744-.15 2.89-.15.698 0 1.496 0 1.944.1-.15-1.58-.35-7.06-.35-12.344v-16.59c3.19 0 5.084.1 6.928.197 2.84.15 4.087.346 4.785.84.05-1.185.25-2.963.5-4-.798.198-4.038.346-6.63.346H180.77c-3.787 0-5.532-.15-6.578-.396-.1.988-.5 3.06-.748 3.802z"/></svg></a>');
});</script>
</body>
</html>